From 13293995b521085d7449dcd2f105ebbcd0042b06 Mon Sep 17 00:00:00 2001 From: Armando Mendoza Sanchez <120752041+itsMando@users.noreply.github.com> Date: Thu, 6 Aug 2026 10:25:46 -0700 Subject: [PATCH 01/24] Feat/python glm parser (#25) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add design spec for pure-Python GLM parser Replaces the Nim-based `glm` pip package with a pure-Python `glmparser` module, removing the Nim toolchain from the from-source build. Benchmarking showed the compiled parser has no speed advantage to give up: a pure-Python prototype matched it on every sample model, because the Nim lexer allocates a ref-object Token per whitespace character and the binding serializes its AST to a JSON string for Python to re-parse. Spec also records three confirmed data-losing bugs in the current parser that the rewrite fixes (dropped #include on export, collapsed dotted attribute keys, discarded class blocks). Co-Authored-By: Claude Opus 5 * Add implementation plan for pure-Python GLM parser Ten TDD tasks covering the glmparser package, its pytest suite, the Nim-differential golden bootstrap, the glmhelper cutover, and doc updates. The module code in the plan was assembled and run against models/ before writing, which surfaced three bugs now fixed and pinned with tests: ${...} substitutions lexing their braces as block delimiters (broke 6 of 17 models), directive values swallowing trailing // comments, and a slow per-character regex form of the first fix. Verified: 0 unexpected diffs vs the Nim parser across all 17 models, round-trip stable, peak memory 61.6 -> 17.0 MB. Co-Authored-By: Claude Opus 5 * fix(plan): oversized-file test was 2.7 MB, under the 5 MB cap it asserts * feat(glmparser): add package scaffold, error type, pytest wiring Co-Authored-By: Claude Opus 5 * fix(plan): clamp GlmParseError offset at EOF; it crashed Tasks 3 and 5 The lexer's EOF token carries start == len(source), and both unterminated-block and unterminated-schedule errors are raised on it. splitlines() yields no phantom trailing entry for newline-terminated source, so line was one past the last real line and _render raised IndexError instead of the GlmParseError the tests expect. Found by the Task 1 reviewer. * fix(glmparser): clamp EOF offset to prevent IndexError in _render The lexer's EOF token carries start == len(source), and unterminated blocks/schedules raise GlmParseError on it. Without clamping, the line number can exceed len(splitlines()), causing IndexError in _render(). Add two regression tests: offset at EOF with trailing newline and without. Co-Authored-By: Claude Opus 5 * feat(glmparser): add streaming regex lexer * fix(plan): lexer word pattern needs three branches, not two Two independent bugs, each caught by a test the other regex passes: - $\{...\}|[^\s{};]+ leaks lbrace/rbrace on prefix${A}suffix - $\{...\}|[^\s{}$;]+ silently drops a bare $: a$b covers only ab Three branches (value | substitution | bare $) fix both at identical speed. Verified byte-identical to the prior regex across all 17 sample models. * fix(glmparser): use three-branch word regex to preserve bare dollar signs * fix(plan): bound ${...} substitution to one line An unterminated ${ with [^}]* runs to the next } anywhere in the file, swallowing a brace that closes an unrelated block. Measured on a two-object malformed input: the loose form silently drops the second object entirely. Excluding whitespace and ; from the fragment contains it. Verified byte- identical across all 17 sample models. Also documents the (? * feat(glmparser): parse schedules and sub-schedule blocks * feat(glmparser): add GLM writer with correct directive punctuation * fix(plan): give the lexer real quoted-string support The writer's defensive quoting protected nothing: the lexer had no quoted-string token, so a ; inside quotes still lexed as semi and terminated the value. Exporting {"weird": "a;b"} wrote weird "a;b"; and read back as {'weird': 'a', 'b"': ''} -- value truncated and a junk attribute fabricated, silently, in a file users load into simulations. Adds "[^"\n]*" and '[^'\n]*' branches ahead of the ordinary-value branch. Verified: fixes all corruption cases, 0 differences across all 17 sample models, round-trip stable. Also replaces the writer tests' substring assertions with real round-trip assertions -- the substring form passed 59/59 while the corruption was live. * fix(glmparser): add quoted-string lexing to enable writer defensive quoting The writer's _quote_if_needed function wrapped special values in quotes, but the lexer treated quotes as ordinary word characters and semicolons inside quotes still terminated values. Exporting {'weird': 'a;b'} would write 'weird "a;b";' but read back as {'weird': 'a', 'b"': ''} -- silent corruption with a fabricated junk attribute. Update lexer to consume quoted strings (both single and double quotes) as atomic tokens, preceding the ordinary-value branch so the entire quoted run is consumed before the fast path tries to match. This enables the writer's defensive quoting to genuinely protect special characters. Add round-trip tests that parse writer output back through the parser, catching malformations that substring assertions alone would miss. * fix(plan): writer refuses values it cannot round-trip Quoted-string lexing fixed the measured case but two combinations still corrupted silently: a value with both ; and a newline (the quoted branch excludes newline, by design, so the bound on unterminated quotes holds), and any value containing a literal " (the writer's backslash escaping was decorative -- GLM has no escape mechanism for the lexer to honor). Rather than extend the lexer a fifth time, the writer now raises a ValueError naming the offending attribute. server.py surfaces it as an HTTP error, so a user sees a real failure instead of a quietly corrupted model. Zero values in the 17 sample models contain ; " or newline, so this path is defensive. Verified: representable values still round-trip, all 17 models still export and round-trip cleanly. * fix(glmparser): refuse to write unrepresentable attribute values Values containing a double quote, or both a newline and semicolon, cannot survive a GLM round-trip due to lexer limitations (no escape mechanism, quoted-string branch stops at newline). Writing them anyway silently corrupts the model on reload, with truncated values and fabricated junk attributes appearing in GridLAB-D simulations. Instead of attempting (and failing) to protect these with quoting, refuse loudly in the writer with a ValueError. The export endpoint wraps this in exception handling that returns the error message to the user as an HTTP error, making the problem visible rather than silent. Clarify lexer comment that the quoted-string support is partial -- it protects semicolons and newlines alone, but not their combination with a double quote. No values in any of the 17 sample models contain these shapes, so this is defensive rather than routine. * feat(glmparser): add public load/loads/dump/dumps API * fix(plan): round-trip test now asserts full equality The structural-only comparison was justified by a claim I got wrong: that uuid4 hoisted names regenerate on each parse. They regenerate only when the same SOURCE TEXT is parsed twice. This cycle parses source once then re-parses the writer's output, and the writer emits hoisted children as ordinary top-level objects carrying their generated name as a literal, so nothing re-hoists. Measured: full equality holds for all 17 models (zero of which trigger hoisting) and for a synthetic model that does. The weak comparison skipped every object's attributes -- where essentially all real GLM content lives -- so a regression mangling attribute values would have gone uncaught. Also tests dump() with a str path, matching load()'s coverage. * test(glmparser): assert full round-trip equality for sample models * test(glmparser): freeze goldens after Nim differential parity * refactor(glmhelper): use pure-Python glmparser instead of Nim glm * docs: drop Nim toolchain requirement The .glm parser is now local-server/glmparser/, pure Python with no build step, so the Nim prerequisite, the separate GLM-parser install step, and the Apple Silicon build-from-source instructions are all stale. (CLAUDE.md was updated to match but is gitignored in this repo and has no git history, so it is not part of this commit.) * fix(docker): drop dead Nim toolchain build, exclude test goldens Dockerfile.backend still built the Nim glm compiler from source (Nim toolchain, choosenim, nimble) even though the backend now uses the pure-Python glmparser and nothing in the image imports the Nim extension — pure dead weight in every build. .dockerignore excluded **/glm but not local-server/tests, so the 15 MB of golden JSON fixtures shipped into the runtime image via COPY local-server/ ./. Excluded local-server/tests too. Co-Authored-By: Claude Opus 5 * fix(glmparser): correct directive EOL bound and value round-trip checks Three correctness fixes found in final review: - _value_to_eol anchored the line bound to the NEXT token's start instead of the directive keyword's own line. An empty `#set`/ `#define`/`#include` (nothing following it on that line) therefore consumed the following line's statement into its own value, silently dropping it. Anchor to the hash token's own end instead. - _unrepresentable rejected any value containing a double quote, even though `3"x5` round-trips fine -- it only breaks when the value starts/ends with a quote, needs quoting (has `;`/newline) and also contains `"`, or has both `;` and a newline. The old blanket rule made any model with an inch mark permanently un-exportable. - _schedule interpolated values directly instead of going through _quote_if_needed like every other value writer, so a schedule value hitting the above cases would silently corrupt on export instead of raising. test_glmparser.py: added regression tests for the empty-directive case and for interior-quote representability; adjusted the one existing test whose fixture value (an interior quote with no `;`/newline) is now correctly accepted rather than rejected. Also asserts ALL_MODELS resolves to exactly 17 files so a models/ path drift fails loudly instead of silently skipping the 34 golden/round-trip parametrized tests that are the only ones touching real GLM sample data. Co-Authored-By: Claude Opus 5 * docs: document the pytest suite in README and package.json The only place documenting local-server's 111-test pytest suite was CLAUDE.md, which is gitignored and invisible to a fresh clone. Add a "Running Tests" section to README.md (how to run it, where pytest comes from, how it relates to the separate socket-testing/ scripts) and a test:server npm script alongside the other local-server-rooted scripts. Co-Authored-By: Claude Opus 5 * fix(glmparser): keep every same-typed property in a class block class bodies were parsed into a dict keyed by property TYPE (_named_block), so a class declaring more than one property of the same type silently dropped all but the last. The only class in the 17 sample models is `class player { double value; }` -- one property, so the collision never fired and this survived every review. Give class bodies their own parse path (_class_block) producing an ORDERED LIST of {type, name} entries under a `properties` key, and a matching writer (_class). Module and object bodies are untouched -- this is classes-only. Regenerated the one golden with a non-empty classes array (model_base__model_startup.json) and updated the AST schema in the design doc. Co-Authored-By: Claude Opus 5 --------- Co-authored-by: Claude Opus 5 --- .dockerignore | 1 + Dockerfile.backend | 28 - README.md | 89 +- .../plans/2026-08-05-python-glm-parser.md | 2253 + .../2026-08-05-python-glm-parser-design.md | 249 + local-server/glmhelper.py | 7 +- local-server/glmparser/__init__.py | 46 + local-server/glmparser/errors.py | 62 + local-server/glmparser/lexer.py | 121 + local-server/glmparser/parser.py | 259 + local-server/glmparser/writer.py | 146 + local-server/pyproject.toml | 17 +- local-server/requirements.txt | 6 +- .../tests/golden/123__IEEE_123_Diesels.json | 314 + .../tests/golden/123__IEEE_123_Dynamic.json | 3936 + .../golden/123__IEEE_123_Inverters_Mixed.json | 146 + .../tests/golden/123__IEEE_123_Recorders.json | 468 + local-server/tests/golden/13__IEEE-13.json | 707 + .../tests/golden/3000__3000_model.json | 69195 +++++++ local-server/tests/golden/8500__ieee8500.json | 156834 ++++++++++++++ .../tests/golden/9500__IEEE_9500.json | 147292 +++++++++++++ .../tests/golden/9500__Inverters.json | 5257 + .../tests/golden/9500__Recorders.json | 27 + .../tests/golden/9500__Rotating_Machines.json | 179 + .../9500_with_coordinates__IEEE_9500.json | 160802 +++++++++++++++ .../9500_with_coordinates__Inverters.json | 5617 + ...0_with_coordinates__Rotating_Machines.json | 203 + .../tests/golden/model_base__model_base.json | 152254 ++++++++++++++ .../golden/model_base__model_schedules.json | 1229 + .../golden/model_base__model_startup.json | 158 + local-server/tests/test_glmparser.py | 907 + package.json | 1 + 32 files changed, 708708 insertions(+), 102 deletions(-) create mode 100644 docs/superpowers/plans/2026-08-05-python-glm-parser.md create mode 100644 docs/superpowers/specs/2026-08-05-python-glm-parser-design.md create mode 100644 local-server/glmparser/__init__.py create mode 100644 local-server/glmparser/errors.py create mode 100644 local-server/glmparser/lexer.py create mode 100644 local-server/glmparser/parser.py create mode 100644 local-server/glmparser/writer.py create mode 100644 local-server/tests/golden/123__IEEE_123_Diesels.json create mode 100644 local-server/tests/golden/123__IEEE_123_Dynamic.json create mode 100644 local-server/tests/golden/123__IEEE_123_Inverters_Mixed.json create mode 100644 local-server/tests/golden/123__IEEE_123_Recorders.json create mode 100644 local-server/tests/golden/13__IEEE-13.json create mode 100644 local-server/tests/golden/3000__3000_model.json create mode 100644 local-server/tests/golden/8500__ieee8500.json create mode 100644 local-server/tests/golden/9500__IEEE_9500.json create mode 100644 local-server/tests/golden/9500__Inverters.json create mode 100644 local-server/tests/golden/9500__Recorders.json create mode 100644 local-server/tests/golden/9500__Rotating_Machines.json create mode 100644 local-server/tests/golden/9500_with_coordinates__IEEE_9500.json create mode 100644 local-server/tests/golden/9500_with_coordinates__Inverters.json create mode 100644 local-server/tests/golden/9500_with_coordinates__Rotating_Machines.json create mode 100644 local-server/tests/golden/model_base__model_base.json create mode 100644 local-server/tests/golden/model_base__model_schedules.json create mode 100644 local-server/tests/golden/model_base__model_startup.json create mode 100644 local-server/tests/test_glmparser.py diff --git a/.dockerignore b/.dockerignore index cb7c4eb6..cf9491b4 100644 --- a/.dockerignore +++ b/.dockerignore @@ -12,6 +12,7 @@ lerna-debug.log* **/__pycache__ package-lock.json **/glm +local-server/tests **/.venv **/.env *.lock diff --git a/Dockerfile.backend b/Dockerfile.backend index 96edc8a9..d9257ef6 100644 --- a/Dockerfile.backend +++ b/Dockerfile.backend @@ -15,34 +15,6 @@ RUN apt-get update \ COPY local-server/requirements-server.txt ./requirements-server.txt RUN uv pip install --system -r requirements-server.txt -# ---- Nim toolchain: build the glm parser into a Python wheel ---------------- -# glm (https://github.com/itsMando/glm) is a Nim project that exposes a Python -# binary extension (lib/_glm.so). It needs Nim >= 2.0, a C compiler, and -# choosenim to fetch the toolchain (Debian's packaged Nim is too old). -RUN apt-get update \ - && apt-get install -y --no-install-recommends build-essential curl xz-utils \ - && rm -rf /var/lib/apt/lists/* - -ENV CHOOSENIM_NO_ANALYTICS=1 -RUN curl -sSf https://nim-lang.org/choosenim/init.sh | sh -s -- -y -ENV PATH="/root/.nimble/bin:${PATH}" - -# setup.py builds the binary (non-pure) wheel; these are its build-backend deps. -RUN uv pip install --system setuptools wheel - -# Clone the glm fork and build the Nim shared library (lib/_glm.so), then install -# straight from source into the system site-packages. setup.py copies the freshly -# built _glm.so into the package and tags the wheel for whatever platform we are -# building on, so this stays arch-agnostic (x86_64, arm64, ...) — unlike `nimble -# package`, which hard-codes a manylinux2014_x86_64 tag. The install carries over -# to the runtime stage via the /usr/local copy below. -RUN git clone https://github.com/itsMando/glm.git /tmp/glm \ - && cd /tmp/glm \ - && nimble install -y --depsOnly \ - && nimble release \ - && uv pip install --system --no-build-isolation /tmp/glm \ - && rm -rf /tmp/glm - # ---- runtime: slim image with only the installed packages + app ------------ FROM python:3.12-slim diff --git a/README.md b/README.md index 791885a0..df06fde0 100755 --- a/README.md +++ b/README.md @@ -70,18 +70,15 @@ This stops and removes the containers and network. Built images remain cached fo This section will walk you through installing dependencies and building GLIMPSE. Here's what you'll do: -1. ✅ Install Node.js (and optionally Nim) +1. ✅ Install Node.js 2. ✅ Clone the repository and install Node dependencies 3. ✅ Create and activate a Python environment -4. ✅ Install Python dependencies and plugins +4. ✅ Install Python dependencies 5. ✅ Start the development server #### Prerequisites 1. **[Node.js](https://nodejs.org/en)** — Required for all users -2. **[Nim](https://nim-lang.org/install.html)** — Only needed if: - - You're on Apple silicon (M chips), OR - - You plan to export modified GLM files ### Step 1: Clone the Repository @@ -154,64 +151,8 @@ If you used VENV or Conda, install requirements: pip install -r requirements.txt ``` -### Step 4: Install GLM Parser - -#### Standard Installation (Windows, Linux, Intel/AMD Mac) - -**With PIP:** - -```bash -pip install glm -``` - -**With UV:** - -```bash -uv pip install glm -``` - -#### Special Instructions for Apple Silicon (M Chips) - -You'll need to build the GLM parser from source using Nim. - -Clone the glm parser repository i forked: - -```bash -cd GLIMPSE/local-server/ -``` - -```bash -git clone https://github.com/itsMando/glm.git -``` - -```bash -cd glm -``` - -Build the parser (ensure [Nim](https://nim-lang.org/) is installed and in your PATH): - -```bash -nimble -v -``` - -```bash -nimble release -nimble package -``` - -Install the python binary distributable from `dist/` folder: - -**With PIP:** - -```bash -pip install dist/*.whl -``` - -**With UV:** - -```bash -uv pip install dist/*.whl -``` +The `.glm` parser ([`glmparser`](local-server/glmparser/)) is pure Python and ships as part of +`local-server/` — no separate install or build step is needed. ## Start GLIMPSE @@ -320,6 +261,28 @@ GLIMPSE can import and export CIM (Common Information Model) files. - Example CIM files are available [here](https://github.com/pnnl/GLIMPSE/tree/master/data/cim) - Modified models can be exported as CIM/XML files through the GLIMPSE interface +## Running Tests + +The `.glm` parser ([`local-server/glmparser/`](local-server/glmparser/)) has a `pytest` suite — +111 tests covering the parser/writer directly plus golden-file comparisons and full round-trip +checks against all 17 sample models in [`models/`](models/). It runs from `local-server/`: + +```bash +cd local-server +uv sync --group dev # pytest is a dev dependency, not in requirements-server.txt +.venv/bin/python -m pytest +``` + +or, from the repo root: + +```bash +npm run test:server +``` + +This is separate from [`socket-testing/`](socket-testing/), which exercises the SocketIO event API +described below and requires a running backend (`npm run dev:backend`) rather than being a pytest +suite. + ## Socket Events API GLIMPSE exposes a [SocketIO](https://socket.io/) event API so external scripts can diff --git a/docs/superpowers/plans/2026-08-05-python-glm-parser.md b/docs/superpowers/plans/2026-08-05-python-glm-parser.md new file mode 100644 index 00000000..7c2030f2 --- /dev/null +++ b/docs/superpowers/plans/2026-08-05-python-glm-parser.md @@ -0,0 +1,2253 @@ +# Pure-Python GLM Parser Implementation Plan + +> **For agentic workers:** REQUIRED SUB-SKILL: Use superpowers:subagent-driven-development (recommended) or superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox (`- [ ]`) syntax for tracking. + +**Goal:** Replace the Nim-backed `glm` pip package with a pure-Python `glmparser` module in `local-server/`, removing the Nim toolchain from the from-source build. + +**Architecture:** A four-file package — a regex tokenizer streamed through a one-token lookahead buffer, a recursive-descent parser producing the existing AST dict, a writer producing GLM text, and an error type that renders a caret under the offending source line. Public API mirrors the Nim binding (`load`/`loads`/`dump`/`dumps`/`version`) so the single consumer changes by one import line. + +**Tech Stack:** Python 3.12+, `re`, `uuid` (all stdlib). `pytest` as a dev-only dependency. No new runtime dependencies. + +**Spec:** `docs/superpowers/specs/2026-08-05-python-glm-parser-design.md` + +## Pre-verification + +The module code in Tasks 1–7 was assembled and run against the real corpus +before this plan was written. Measured results, which the implementer should +expect to reproduce: + +- **Nim differential: 0 unexpected diffs across all 17 `models/**/*.glm`.** The + only differences are the 60 intended dotted-key fixes (15 objects × 4 files). +- **Round-trip stable** on all 17 models. +- **Speed:** `ieee8500.glm` 196 ms vs Nim's 180 ms; `IEEE_9500.glm` 181 ms vs + 163 ms. Within ~10% — the streaming lexer trades a little throughput against + the materialized-list prototype for a large memory win. +- **Peak memory: 17.0 MB** on a 2.2 MB model, down from 61.6 MB for the + materialized-list prototype. + +Three bugs were found and fixed during that verification. All three are now +baked into the task code with tests pinning them; do not "simplify" them back +out: + +1. `${VSOURCE}` lexing as `word`/`lbrace`/`word`/`rbrace` — the stray `rbrace` + closed the enclosing object early and corrupted every following attribute. + Broke 6 of 17 models. +2. `_value_to_eol` slicing to the newline swallowed trailing `//` comments into + directive values. +3. The first fix, written as a per-character alternation, cost ~25% throughput; + the two-branch form in Task 2 restores it. + +## Global Constraints + +Every task's requirements implicitly include this section. + +- **Module name is `glmparser`, never `glm`.** `.gitignore:15` contains `**/glm`; a package named `glm` will not be committed. +- **The AST dict shape is a hard contract.** `server.py:498-502` ships it to the frontend, `GraphHelper.js:1676` reads `obj.name` as object type and `attributes.name` as node id, `GraphHelper.js:1661` posts the whole dict back to `/api/export/glm`. Keys: `clock`, `includes`, `objects`, `modules`, `classes`, `directives`, `definitions`, `schedules`. +- **`clock` is always present**, `{}` when the model has none. +- **`load` and `dump` must accept both a path and an open file object.** `glmhelper.py:23` passes a path to `load`; `glmhelper.py:33` passes an open file to `dump`. +- **Attribute values are sliced from the source string by offset, never re-joined from token text.** Re-joining with a separator corrupts `${VSOURCE}` into `$ {VSOURCE}`; re-joining without one corrupts multi-word values. +- **Two distinct value terminators.** Attribute values inside a block run to the next `;`. `#set`/`#define`/`#include` run to **end of line**. +- **Directive punctuation differs.** Write `#set name=value` and `#define name=value` with no trailing semicolon; write `#include "value";` with quotes and a semicolon. +- **Preserve `uuid4` hoisting** of anonymous nested objects and **last-wins** collapse of genuinely duplicate attribute keys. +- **Python >= 3.12** (`local-server/pyproject.toml` `requires-python`). +- All `pytest` commands run from the `local-server/` directory. + +--- + +## File Structure + +| File | Responsibility | +|---|---| +| `local-server/glmparser/__init__.py` | Public API only: `load`, `loads`, `dump`, `dumps`, `version`, `GlmParseError` | +| `local-server/glmparser/errors.py` | `GlmParseError` — offset → line/column, caret rendering | +| `local-server/glmparser/lexer.py` | Regex scan → `Token` stream with one-token lookahead | +| `local-server/glmparser/parser.py` | Tokens → AST dict | +| `local-server/glmparser/writer.py` | AST dict → GLM text | +| `local-server/tests/test_glmparser.py` | Unit + golden + round-trip tests | +| `local-server/tests/golden/*.json` | Frozen expected parser output | +| `local-server/pyproject.toml` | Add `pytest` dev group + pytest config | +| `local-server/glmhelper.py` | Swap `import glm` for `from glmparser import ...` | +| `README.md`, `CLAUDE.md` | Drop the Nim prerequisite | + +--- + +### Task 1: Package scaffold, error type, pytest wiring + +**Files:** +- Create: `local-server/glmparser/__init__.py` +- Create: `local-server/glmparser/errors.py` +- Create: `local-server/tests/test_glmparser.py` +- Modify: `local-server/pyproject.toml` + +**Interfaces:** +- Consumes: nothing. +- Produces: `GlmParseError(message: str, source: str = "", offset: int | None = None)` with attributes `raw_message: str`, `source: str`, `offset: int | None`, `line: int | None` (1-based), `column: int | None` (0-based). `str(err)` renders the caret block. + +- [ ] **Step 1: Add pytest config and dev group to `local-server/pyproject.toml`** + +Append these two blocks to the end of the file: + +```toml +[dependency-groups] +dev = ["pytest>=8.0"] + +[tool.pytest.ini_options] +pythonpath = ["."] +testpaths = ["tests"] +``` + +`pythonpath = ["."]` lets the tests import `glmparser` from the flat `local-server/` layout without an install step. + +- [ ] **Step 2: Install pytest** + +```bash +cd local-server && uv sync --group dev +``` + +If `uv` is unavailable, use `.venv/bin/pip install "pytest>=8.0"` instead. + +- [ ] **Step 3: Write the failing test** + +Create `local-server/tests/test_glmparser.py`: + +```python +"""Tests for the pure-Python GLM parser.""" +import pytest + +from glmparser.errors import GlmParseError + + +def test_error_computes_line_and_column_from_offset(): + source = "object node {\n name foo;\n bad!\n}\n" + offset = source.index("bad!") + err = GlmParseError("Unexpected token", source, offset) + assert err.line == 3 + assert err.column == 2 + + +def test_error_renders_caret_under_offending_column(): + source = "object node {\n name foo;\n bad!\n}\n" + err = GlmParseError("Unexpected token", source, source.index("bad!")) + rendered = str(err) + assert "line: 3" in rendered + assert "column: 2" in rendered + assert "Unexpected token" in rendered + # the caret sits directly beneath the first bad character + lines = rendered.splitlines() + caret_line = next(l for l in lines if l.strip() == "^") + assert caret_line.index("^") == 2 + + +def test_error_without_offset_is_plain_message(): + err = GlmParseError("something broke") + assert str(err) == "something broke" + assert err.line is None + + +def test_offset_at_eof_clamps_to_the_last_real_line(): + # The lexer's EOF token carries start == len(source), and unterminated + # blocks raise on it. Without clamping this is an IndexError, not a + # GlmParseError -- which breaks the unterminated-block/schedule tests. + source = "module powerflow {\n solver_method NR;\n" + err = GlmParseError("Unexpected end of file inside block", source, len(source)) + assert err.line == 2 + assert err.column == len(" solver_method NR;") + assert "Unexpected end of file inside block" in str(err) + + +def test_offset_at_eof_without_trailing_newline(): + source = "module powerflow {" + err = GlmParseError("boom", source, len(source)) + assert err.line == 1 + assert err.column == len(source) + + +def test_caret_prefix_preserves_tabs_for_alignment(): + source = "object node {\n\t\tbad!\n}\n" + err = GlmParseError("nope", source, source.index("bad!")) + caret_line = next(l for l in str(err).splitlines() if l.strip() == "^") + # tabs are copied through so the caret aligns at any tab width + assert caret_line == "\t\t^" +``` + +- [ ] **Step 4: Run tests to verify they fail** + +```bash +cd local-server && .venv/bin/python -m pytest tests/test_glmparser.py -v +``` + +Expected: FAIL — `ModuleNotFoundError: No module named 'glmparser'` + +- [ ] **Step 5: Create the package `__init__.py`** + +Create `local-server/glmparser/__init__.py`: + +```python +"""Pure-Python GridLAB-D .glm parser. + +Drop-in replacement for the Nim-backed `glm` pip package. The public surface is +`load`/`loads`/`dump`/`dumps`/`version`, matching what glmhelper.py calls. +""" + +__version__ = "1.0.0" + +__all__ = ["version"] + + +def version(): + return __version__ +``` + +The remaining exports get added in Task 7, once the pieces they re-export exist. + +- [ ] **Step 6: Implement `errors.py`** + +Create `local-server/glmparser/errors.py`: + +```python +"""Parse errors carrying enough context to point at the offending source line.""" + + +class GlmParseError(Exception): + """Raised when GLM source cannot be parsed. + + The rendered caret block goes into the exception message rather than to + stderr: server.py wraps route handlers in `except Exception` and puts the + message into the HTTP error body, so this is what reaches the UI. + """ + + def __init__(self, message, source="", offset=None): + self.raw_message = message + self.source = source + self.offset = offset + self.line = None + self.column = None + + if offset is not None and source: + self.line = source.count("\n", 0, offset) + 1 + self.column = offset - (source.rfind("\n", 0, offset) + 1) + + # An offset at EOF on newline-terminated source lands one line past + # the last real line, because splitlines() yields no phantom + # trailing entry. Clamp to the end of the last real line -- exactly + # where an "unexpected end of file" belongs. + # + # This is the common path, not an edge case: the lexer's EOF token + # carries start == len(source), and both `Unexpected end of file + # inside block` and `... inside schedule` are raised on it. Without + # the clamp those raise IndexError instead of GlmParseError. + lines = source.splitlines() + if self.line > len(lines): + self.line = len(lines) + self.column = len(lines[-1]) + + super().__init__(self._render()) + + def _render(self): + if self.line is None: + return self.raw_message + + lines = self.source.splitlines() + out = [ + f"ParserError: [line: {self.line}, column: {self.column}] " + f"{self.raw_message}" + ] + + if self.line - 2 >= 0: + out.append(lines[self.line - 2]) + + bad = lines[self.line - 1] + out.append(bad) + # Copy tabs through verbatim so the caret lands correctly at any tab width. + out.append( + "".join("\t" if c == "\t" else " " for c in bad[: self.column]) + "^" + ) + + if self.line < len(lines): + out.append(lines[self.line]) + + return "\n".join(out) +``` + +- [ ] **Step 7: Run tests to verify they pass** + +```bash +cd local-server && .venv/bin/python -m pytest tests/test_glmparser.py -v +``` + +Expected: 6 passed + +- [ ] **Step 8: Commit** + +```bash +git add local-server/glmparser/ local-server/tests/ local-server/pyproject.toml +git commit -m "feat(glmparser): add package scaffold, error type, pytest wiring" +``` + +--- + +### Task 2: Lexer + +**Files:** +- Create: `local-server/glmparser/lexer.py` +- Modify: `local-server/tests/test_glmparser.py` + +**Interfaces:** +- Consumes: `GlmParseError` from Task 1. +- Produces: + - `EOF: str` — the sentinel token kind, value `"eof"`. + - `Token` with slots `kind: str`, `text: str`, `start: int`, `end: int`. `start`/`end` are offsets of the **whole match** (so a `hash` token starts at `#`). + - `Lexer(source: str)` with `peek() -> Token`, `next() -> Token`, `error(message: str, token: Token | None = None) -> GlmParseError`. + - Token kinds: `"hash"`, `"kw"`, `"lbrace"`, `"rbrace"`, `"semi"`, `"word"`, `EOF`. + +- [ ] **Step 1: Write the failing tests** + +Append to `local-server/tests/test_glmparser.py`: + +```python +from glmparser.lexer import EOF, Lexer + + +def kinds(source): + lex = Lexer(source) + out = [] + while lex.peek().kind != EOF: + tok = lex.next() + out.append((tok.kind, tok.text)) + return out + + +def test_lexer_tokenizes_an_object_block(): + assert kinds("object node { name foo; }") == [ + ("kw", "object"), + ("word", "node"), + ("lbrace", "{"), + ("word", "name"), + ("word", "foo"), + ("semi", ";"), + ("rbrace", "}"), + ] + + +def test_lexer_discards_line_comments(): + assert kinds("name foo; // trailing comment\nname bar;") == [ + ("word", "name"), + ("word", "foo"), + ("semi", ";"), + ("word", "name"), + ("word", "bar"), + ("semi", ";"), + ] + + +def test_lexer_recognizes_hash_directives_without_the_hash_in_text(): + assert kinds("#set profiler=1") == [("hash", "set"), ("word", "profiler=1")] + assert kinds("#define VSOURCE=1") == [("hash", "define"), ("word", "VSOURCE=1")] + assert kinds('#include "a.glm";') == [ + ("hash", "include"), + ("word", '"a.glm"'), + ("semi", ";"), + ] + + +def test_hash_token_offsets_start_at_the_pound_sign(): + lex = Lexer("#set profiler=1") + tok = lex.peek() + assert tok.kind == "hash" + assert tok.start == 0 # points at '#', not at 's' + assert tok.end == len("#set") + + +def test_lexer_peek_does_not_consume(): + lex = Lexer("object node") + assert lex.peek().text == "object" + assert lex.peek().text == "object" + assert lex.next().text == "object" + assert lex.peek().text == "node" + + +def test_lexer_returns_eof_forever_past_the_end(): + lex = Lexer("name") + lex.next() + assert lex.next().kind == EOF + assert lex.next().kind == EOF + assert lex.peek().kind == EOF + + +def test_keywords_only_match_as_whole_words(): + # `object_name` must not lex as the `object` keyword plus `_name` + assert kinds("object_name foo;") == [ + ("word", "object_name"), + ("word", "foo"), + ("semi", ";"), + ] + + +def test_dollar_brace_substitution_is_one_token(): + # CRITICAL: if `${VSOURCE}` lexes as word/lbrace/word/rbrace, that rbrace + # closes the enclosing object early and every later attribute is corrupted. + # This breaks 6 of the 17 sample models. + assert kinds("positive_sequence_voltage ${VSOURCE};") == [ + ("word", "positive_sequence_voltage"), + ("word", "${VSOURCE}"), + ("semi", ";"), + ] + + +def test_substitution_adjacent_to_text_still_covers_the_source(): + # Split across tokens is fine -- the parser slices source by offset, which + # rejoins them -- but no brace may leak out as an lbrace/rbrace token. + assert [k for k, _ in kinds("prefix${A}suffix;")] == ["word", "word", "word", "semi"] + + +def test_a_bare_dollar_sign_is_not_dropped(): + # Excluding `$` from the value branch without a bare-`$` fallback makes + # finditer skip it silently: `a$b;` would cover only `ab;`. + assert kinds("a$b;") == [("word", "a"), ("word", "$"), ("word", "b"), ("semi", ";")] + assert kinds("$;") == [("word", "$"), ("semi", ";")] + + +def test_unterminated_substitution_stays_on_its_own_line(): + # With `[^}]*` an unterminated `${` runs to the next `}` ANYWHERE in the + # file, swallowing a brace that closes an unrelated block. Measured: the + # loose form silently drops `object other` entirely. + source = "object node {\n name ${A\n}\nobject other {\n name val;\n}" + lex = Lexer(source) + texts = [] + while lex.peek().kind != EOF: + texts.append(lex.next().text) + # no token may span the newline that follows `${A` + assert not any("\n" in t for t in texts) + + +def test_lexer_covers_every_non_whitespace_character(): + # Whitespace is intentionally skipped; nothing else may be. + for source in ("prefix${A}suffix;", "a$b;", "$;", "$", "x ${A}${B} y;"): + lex = Lexer(source) + covered = [] + while lex.peek().kind != EOF: + covered.append(lex.next().text) + assert "".join(covered) == "".join(source.split()), source + + +def test_urls_are_not_mistaken_for_comments(): + # `//` after a colon is part of a URL, not a comment. lexer.nim:218 does the + # same check. + assert kinds("#define stylesheet=http://example.org/gridlabd") == [ + ("hash", "define"), + ("word", "stylesheet=http://example.org/gridlabd"), + ] + + +def test_lexer_error_carries_position(): + lex = Lexer("object node {\n bad\n}") + lex.next() + err = lex.error("boom") + assert err.line == 1 +``` + +- [ ] **Step 2: Run tests to verify they fail** + +```bash +cd local-server && .venv/bin/python -m pytest tests/test_glmparser.py -v +``` + +Expected: FAIL — `ModuleNotFoundError: No module named 'glmparser.lexer'` + +- [ ] **Step 3: Implement `lexer.py`** + +Create `local-server/glmparser/lexer.py`: + +```python +"""Streaming tokenizer for GridLAB-D .glm source. + +One regex pass over the source, pulled through a single-token lookahead buffer. +Whitespace is skipped rather than tokenized -- the Nim implementation this +replaces heap-allocated a token object per space and newline, which is where +most of its runtime went. +""" +import re + +from .errors import GlmParseError + +# Order matters. Comments come first so `//` never lexes as two `word` tokens, +# and keywords precede `word` so the catch-all does not swallow them. +# +# Two subtleties, both load-bearing -- see the tests that pin them: +# +# `(?set|define|include)\b + | \b(?Pclock|module|object|class|schedule)\b + | (?P\{) + | (?P\}) + | (?P;) + | (?P"[^"\n]*"|'[^'\n]*'|[^\s{}$;]+|\$\{[^}\s;]*\}|\$) + """, + re.VERBOSE, +) + +EOF = "eof" + + +class Token: + __slots__ = ("kind", "text", "start", "end") + + def __init__(self, kind, text, start, end): + self.kind = kind + self.text = text + self.start = start + self.end = end + + def __repr__(self): + return f"Token({self.kind!r}, {self.text!r}, {self.start})" + + +class Lexer: + """Pull-based token stream with exactly one token of lookahead. + + One token is all the parser ever needs, which is what lets this stay a + generator instead of a materialized list -- the list costs ~62 MB on a + 2.2 MB model. + """ + + def __init__(self, source): + self.source = source + self._matches = _TOKEN_RE.finditer(source) + self._current = self._scan() + + def _scan(self): + for match in self._matches: + kind = match.lastgroup + if kind is None: # a comment; skip it + continue + # Offsets span the whole match, so a `hash` token starts at '#'. + return Token(kind, match.group(kind), match.start(), match.end()) + end = len(self.source) + return Token(EOF, "", end, end) + + def peek(self): + return self._current + + def next(self): + token = self._current + if token.kind != EOF: + self._current = self._scan() + return token + + def error(self, message, token=None): + target = token if token is not None else self._current + return GlmParseError(message, self.source, target.start) +``` + +- [ ] **Step 4: Run tests to verify they pass** + +```bash +cd local-server && .venv/bin/python -m pytest tests/test_glmparser.py -v +``` + +Expected: 21 passed + +- [ ] **Step 5: Commit** + +```bash +git add local-server/glmparser/lexer.py local-server/tests/test_glmparser.py +git commit -m "feat(glmparser): add streaming regex lexer" +``` + +--- + +### Task 3: Parser — clock, module, class, directives + +**Files:** +- Create: `local-server/glmparser/parser.py` +- Modify: `local-server/tests/test_glmparser.py` + +**Interfaces:** +- Consumes: `Lexer`, `EOF`, `Token` from Task 2; `GlmParseError` from Task 1. +- Produces: `Parser(source: str)` with `parse() -> dict`. Internal helpers that Tasks 4 and 5 build on: + - `_expect(kind: str) -> Token` + - `_value_to_semicolon() -> str` + - `_value_to_eol() -> str` + - `_attributes(children: list | None = None) -> dict` + - `_named_block() -> dict` — returns `{"name": str, "attributes": dict}` + +- [ ] **Step 1: Write the failing tests** + +Append to `local-server/tests/test_glmparser.py`: + +```python +from glmparser.parser import Parser + + +def parse(source): + return Parser(source).parse() + + +def test_empty_source_yields_the_full_ast_skeleton(): + ast = parse("") + assert ast == { + "clock": {}, + "includes": [], + "objects": [], + "modules": [], + "classes": [], + "directives": [], + "definitions": [], + "schedules": [], + } + + +def test_clock_block_parses_to_a_flat_dict(): + ast = parse("clock {\n timezone PST+8PDT;\n starttime '2000-01-01 0:00:00';\n};") + assert ast["clock"] == { + "timezone": "PST+8PDT", + "starttime": "2000-01-01 0:00:00", + } + + +def test_module_with_no_attributes(): + assert parse("module powerflow;")["modules"] == [ + {"name": "powerflow", "attributes": {}} + ] + + +def test_module_with_attributes(): + ast = parse("module powerflow {\n solver_method NR;\n lu_solver KLU;\n};") + assert ast["modules"] == [ + { + "name": "powerflow", + "attributes": {"solver_method": "NR", "lu_solver": "KLU"}, + } + ] + + +def test_class_blocks_reach_the_ast(): + # REGRESSION: the Nim parser collected classes then never emitted them. + ast = parse("class thermostat {\n double setpoint;\n};") + assert ast["classes"] == [ + {"name": "thermostat", "attributes": {"double": "setpoint"}} + ] + + +def test_set_and_define_directives_are_newline_terminated(): + # REGRESSION: running these to the next `;` makes them swallow later lines. + ast = parse("#set relax_naming_rules=1\n#set profiler=1\n\nmodule tape;\n") + assert ast["directives"] == [ + {"name": "relax_naming_rules", "value": "1"}, + {"name": "profiler", "value": "1"}, + ] + assert ast["modules"] == [{"name": "tape", "attributes": {}}] + + +def test_define_directive(): + ast = parse('#define VSOURCE=69715.045\n#include "Rotating_Machines.glm";\n') + assert ast["definitions"] == [{"name": "VSOURCE", "value": "69715.045"}] + assert ast["includes"] == [{"value": "Rotating_Machines.glm"}] + + +def test_include_strips_quotes_and_semicolon(): + ast = parse('#include "Inverters.glm";\n#include "Recorders.glm";\n') + assert ast["includes"] == [ + {"value": "Inverters.glm"}, + {"value": "Recorders.glm"}, + ] + + +def test_directive_value_stops_before_a_trailing_comment(): + # Slicing raw source to the newline drags the comment into the value. + ast = parse( + "#set deltamode_timestep=100000000\t\t//100 ms\n" + "#set deltamode_iteration_limit=10\t//Iteration limit\n" + ) + assert ast["directives"] == [ + {"name": "deltamode_timestep", "value": "100000000"}, + {"name": "deltamode_iteration_limit", "value": "10"}, + ] + + +def test_substitution_inside_an_attribute_value_does_not_close_the_block(): + # The `}` in `${VSOURCE}` must not terminate the enclosing block. + ast = parse( + "module powerflow {\n" + " positive_sequence_voltage ${VSOURCE};\n" + " solver_method NR;\n" + "};" + ) + assert ast["modules"][0]["attributes"] == { + "positive_sequence_voltage": "${VSOURCE}", + "solver_method": "NR", + } + + +def test_multi_word_and_substitution_values_are_preserved_exactly(): + ast = parse( + "module m {\n" + " positive_sequence_voltage ${VSOURCE};\n" + " rating .winter.emergency 200.00;\n" + "};" + ) + assert ast["modules"][0]["attributes"]["positive_sequence_voltage"] == "${VSOURCE}" + assert ast["modules"][0]["attributes"]["rating"] == ".winter.emergency 200.00" + + +def test_dotted_attribute_keys_stay_distinct(): + # REGRESSION: the Nim parser collapsed all four into one mangled `rating`. + ast = parse( + "module m {\n" + " rating.summer.continuous 200.00;\n" + " rating.summer.emergency 210.00;\n" + " rating.winter.continuous 220.00;\n" + " rating.winter.emergency 230.00;\n" + "};" + ) + assert ast["modules"][0]["attributes"] == { + "rating.summer.continuous": "200.00", + "rating.summer.emergency": "210.00", + "rating.winter.continuous": "220.00", + "rating.winter.emergency": "230.00", + } + + +def test_duplicate_keys_collapse_last_wins(): + ast = parse("module m {\n phases A;\n phases B;\n};") + assert ast["modules"][0]["attributes"] == {"phases": "B"} + + +def test_comments_are_ignored(): + ast = parse("// leading comment\nmodule tape; // trailing\n") + assert ast["modules"] == [{"name": "tape", "attributes": {}}] + + +def test_value_missing_semicolon_before_closing_brace(): + # `_value_to_semicolon` tolerates rbrace as a terminator so a final + # attribute without its `;` does not run away and eat the block. + ast = parse("module m {\n solver_method NR\n};") + assert ast["modules"] == [{"name": "m", "attributes": {"solver_method": "NR"}}] + + +def test_directive_without_equals_does_not_crash(): + ast = parse("#set profiler\n") + assert ast["directives"] == [{"name": "profiler", "value": ""}] + + +def test_directive_as_last_line_without_trailing_newline(): + # `_value_to_eol` must handle find("\n") returning -1. + ast = parse("#define VSOURCE=69715.045") + assert ast["definitions"] == [{"name": "VSOURCE", "value": "69715.045"}] + + +def test_empty_block(): + ast = parse("module m { };") + assert ast["modules"] == [{"name": "m", "attributes": {}}] + + +def test_unknown_top_level_token_raises_with_line_number(): + with pytest.raises(GlmParseError) as excinfo: + parse("module tape;\ngarbage\n") + assert excinfo.value.line == 2 + + +def test_unterminated_block_raises(): + with pytest.raises(GlmParseError): + parse("module powerflow {\n solver_method NR;\n") +``` + +- [ ] **Step 2: Run tests to verify they fail** + +```bash +cd local-server && .venv/bin/python -m pytest tests/test_glmparser.py -v +``` + +Expected: FAIL — `ModuleNotFoundError: No module named 'glmparser.parser'` + +- [ ] **Step 3: Implement `parser.py`** + +Create `local-server/glmparser/parser.py`: + +```python +"""GLM source -> AST dict. + +The output shape is a hard contract. server.py ships this dict straight to the +frontend, GraphHelper.js reads `name` and `attributes` off each object, and the +same dict comes back through /api/export/glm for writing. Every key must +survive the round-trip. +""" +import uuid + +from .lexer import EOF, Lexer + +# A value stops at any of these; `rbrace` and EOF are tolerated so a final +# attribute missing its semicolon does not run away. +_VALUE_END = (EOF, "rbrace", "semi") + + +class Parser: + def __init__(self, source): + self.source = source + self.lex = Lexer(source) + self.ast = { + "clock": {}, + "includes": [], + "objects": [], + "modules": [], + "classes": [], + "directives": [], + "definitions": [], + "schedules": [], + } + + # ---- helpers ------------------------------------------------------- + + def _expect(self, kind): + token = self.lex.next() + if token.kind != kind: + raise self.lex.error(f"Expected {kind}, found {token.text!r}", token) + return token + + def _value_to_semicolon(self): + """Attribute values run to the next `;`. + + Sliced out of the source rather than re-joined from token text, so + internal spacing survives exactly: `${VSOURCE}` and `1.0 + 2.0j` both + come back byte-for-byte. + """ + token = self.lex.peek() + if token.kind in _VALUE_END: + if token.kind == "semi": + self.lex.next() + return "" + + start = token.start + end = start + while self.lex.peek().kind not in _VALUE_END: + end = self.lex.next().end + if self.lex.peek().kind == "semi": + self.lex.next() + return self.source[start:end].strip("'\" \t\n") + + def _value_to_eol(self): + """`#set`/`#define`/`#include` run to end of line, not to a `;`. + + Conflating this with `_value_to_semicolon` makes a directive swallow + every line beneath it until the next semicolon appears. + + The slice ends at the last *token* consumed rather than at the newline. + That matters: slicing to the newline drags in a trailing `//` comment, + because the lexer discards comments but raw source still contains them. + `#set deltamode_timestep=100000000\t//100 ms` would otherwise yield the + value `100000000\t\t//100 ms`. + """ + start = self.lex.peek().start + newline = self.source.find("\n", start) + if newline == -1: + newline = len(self.source) + end = start + while self.lex.peek().kind != EOF and self.lex.peek().start < newline: + end = self.lex.next().end + return self.source[start:end].strip().rstrip(";").strip("'\" ") + + def _attributes(self, children=None): + """Parse `{ key value; ... }`. + + `children` collects bare nested objects; pass None where nesting is not + legal (clock, module, class). + """ + self._expect("lbrace") + attrs = {} + + while True: + token = self.lex.peek() + + if token.kind == "rbrace": + self.lex.next() + break + if token.kind == EOF: + raise self.lex.error("Unexpected end of file inside block", token) + if token.kind == "semi": + self.lex.next() + continue + + # `object child { ... };` nested bare -> the parent's children list + if token.kind == "kw" and token.text == "object": + if children is None: + raise self.lex.error("Nested object not allowed here", token) + self.lex.next() + children.append(self._object()) + continue + + key = self.lex.next().text + + # `configuration object line_conf { ... };` -> hoisted to top-level + # `objects` under a generated name, which the parent keeps as its + # attribute value. Frontend edge wiring resolves those references, + # so this behavior is load-bearing. + following = self.lex.peek() + if following.kind == "kw" and following.text == "object": + self.lex.next() + child = self._object() + generated = str(uuid.uuid4()) + child["attributes"]["name"] = generated + self.ast["objects"].append(child) + attrs[key] = generated + else: + attrs[key] = self._value_to_semicolon() + + if self.lex.peek().kind == "semi": + self.lex.next() + return attrs + + def _named_block(self): + """`module powerflow;` or `module powerflow { ... };`. Also `class`.""" + name = self._expect("word").text + if self.lex.peek().kind == "semi": + self.lex.next() + return {"name": name, "attributes": {}} + return {"name": name, "attributes": self._attributes()} + + def _directive(self, which): + if which == "include": + self.ast["includes"].append({"value": self._value_to_eol()}) + return + body = self._value_to_eol() + name, _, value = body.partition("=") + entry = {"name": name.strip(), "value": value.strip().strip("'\" ")} + self.ast["directives" if which == "set" else "definitions"].append(entry) + + # ---- entry point --------------------------------------------------- + + def parse(self): + while True: + token = self.lex.next() + + if token.kind == EOF: + break + if token.kind == "semi": + continue + + if token.kind == "kw": + if token.text == "clock": + self.ast["clock"] = self._attributes() + elif token.text == "object": + self.ast["objects"].append(self._object()) + elif token.text == "schedule": + self.ast["schedules"].append(self._schedule()) + elif token.text == "module": + self.ast["modules"].append(self._named_block()) + elif token.text == "class": + self.ast["classes"].append(self._named_block()) + elif token.kind == "hash": + self._directive(token.text) + else: + raise self.lex.error(f"Unexpected token {token.text!r}", token) + + return self.ast +``` + +Note: `_object` and `_schedule` are referenced here but land in Tasks 4 and 5. The tests in this task do not exercise either path. + +- [ ] **Step 4: Run tests to verify they pass** + +```bash +cd local-server && .venv/bin/python -m pytest tests/test_glmparser.py -v +``` + +Expected: 41 passed + +- [ ] **Step 5: Commit** + +```bash +git add local-server/glmparser/parser.py local-server/tests/test_glmparser.py +git commit -m "feat(glmparser): parse clock, module, class, and directives" +``` + +--- + +### Task 4: Parser — objects, nesting, and anonymous hoisting + +**Files:** +- Modify: `local-server/glmparser/parser.py` +- Modify: `local-server/tests/test_glmparser.py` + +**Interfaces:** +- Consumes: `_attributes`, `_expect` from Task 3. +- Produces: `Parser._object() -> dict` returning `{"name": str, "attributes": dict, "children": list}`. + +- [ ] **Step 1: Write the failing tests** + +Append to `local-server/tests/test_glmparser.py`: + +```python +import re + +UUID_RE = re.compile(r"^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$") + + +def test_simple_object(): + ast = parse("object node {\n name n1;\n phases ABC;\n};") + assert ast["objects"] == [ + { + "name": "node", + "attributes": {"name": "n1", "phases": "ABC"}, + "children": [], + } + ] + + +def test_object_type_may_carry_a_colon_id(): + ast = parse("object node:12 {\n name n1;\n};") + assert ast["objects"][0]["name"] == "node:12" + + +def test_bare_nested_object_becomes_a_child(): + ast = parse( + "object house {\n" + " name h1;\n" + " object ZIPload {\n" + " name z1;\n" + " };\n" + "};" + ) + assert len(ast["objects"]) == 1 + parent = ast["objects"][0] + assert parent["attributes"] == {"name": "h1"} + assert parent["children"] == [ + {"name": "ZIPload", "attributes": {"name": "z1"}, "children": []} + ] + + +def test_anonymous_object_is_hoisted_and_referenced_by_generated_name(): + ast = parse( + "object overhead_line {\n" + " name line1;\n" + " configuration object line_configuration {\n" + " name lc1;\n" + " };\n" + "};" + ) + # parent stays at index 0 only after the hoisted child is appended + parent = next(o for o in ast["objects"] if o["name"] == "overhead_line") + hoisted = next(o for o in ast["objects"] if o["name"] == "line_configuration") + + assert len(ast["objects"]) == 2 + assert parent["children"] == [] + + generated = parent["attributes"]["configuration"] + assert UUID_RE.match(generated) + # the generated name is what links parent to hoisted child + assert hoisted["attributes"]["name"] == generated + + +def test_deeply_nested_objects_recurse(): + ast = parse( + "object a {\n" + " name a1;\n" + " object b {\n" + " name b1;\n" + " object c {\n" + " name c1;\n" + " };\n" + " };\n" + "};" + ) + a = ast["objects"][0] + b = a["children"][0] + c = b["children"][0] + assert (a["name"], b["name"], c["name"]) == ("a", "b", "c") + assert c["attributes"] == {"name": "c1"} + + +def test_object_missing_opening_brace_raises(): + with pytest.raises(GlmParseError): + parse("object node\n name n1;\n};") +``` + +- [ ] **Step 2: Run tests to verify they fail** + +```bash +cd local-server && .venv/bin/python -m pytest tests/test_glmparser.py -v +``` + +Expected: FAIL — `AttributeError: 'Parser' object has no attribute '_object'` + +- [ ] **Step 3: Implement `_object`** + +In `local-server/glmparser/parser.py`, insert this method immediately after `_attributes` and before `_named_block`: + +```python + def _object(self): + """`object { ... };` -- the type may carry `.` or `:` suffixes.""" + name = self._expect("word").text + children = [] + attributes = self._attributes(children) + return {"name": name, "attributes": attributes, "children": children} +``` + +The `word` token pattern is `[^\s{};]+`, so `node:12` and `node.sub` already arrive as single tokens — no extra suffix handling is needed. + +- [ ] **Step 4: Run tests to verify they pass** + +```bash +cd local-server && .venv/bin/python -m pytest tests/test_glmparser.py -v +``` + +Expected: 47 passed + +- [ ] **Step 5: Commit** + +```bash +git add local-server/glmparser/parser.py local-server/tests/test_glmparser.py +git commit -m "feat(glmparser): parse objects, nesting, and anonymous hoisting" +``` + +--- + +### Task 5: Parser — schedules + +**Files:** +- Modify: `local-server/glmparser/parser.py` +- Modify: `local-server/tests/test_glmparser.py` + +**Interfaces:** +- Consumes: `_expect`, `_value_to_semicolon` from Task 3. +- Produces: `Parser._schedule() -> dict` returning `{"name": str, "values": list[str], "children": list[list[str]]}`. + +- [ ] **Step 1: Write the failing tests** + +Append to `local-server/tests/test_glmparser.py`: + +```python +def test_flat_schedule(): + ast = parse( + "schedule office_lights {\n" + " * 9-17 * * 1-5 1.0;\n" + " * 18-8 * * 1-5 0.1;\n" + "};" + ) + assert ast["schedules"] == [ + { + "name": "office_lights", + "values": ["* 9-17 * * 1-5 1.0", "* 18-8 * * 1-5 0.1"], + "children": [], + } + ] + + +def test_schedule_with_sub_blocks(): + ast = parse( + "schedule s {\n" + " {\n" + " * 9-17 * * 1-5 1.0;\n" + " * 18-8 * * 1-5 0.1;\n" + " }\n" + " {\n" + " * * * * 6-0 0.5;\n" + " }\n" + "};" + ) + assert ast["schedules"][0]["name"] == "s" + assert ast["schedules"][0]["values"] == [] + assert ast["schedules"][0]["children"] == [ + ["* 9-17 * * 1-5 1.0", "* 18-8 * * 1-5 0.1"], + ["* * * * 6-0 0.5"], + ] + + +def test_schedule_value_without_trailing_semicolon_still_terminates(): + ast = parse("schedule s {\n * * * * * 1.0\n};") + assert ast["schedules"][0]["values"] == ["* * * * * 1.0"] + + +def test_unterminated_schedule_raises(): + with pytest.raises(GlmParseError): + parse("schedule s {\n * * * * * 1.0;\n") +``` + +- [ ] **Step 2: Run tests to verify they fail** + +```bash +cd local-server && .venv/bin/python -m pytest tests/test_glmparser.py -v -k schedule +``` + +Expected: FAIL — `AttributeError: 'Parser' object has no attribute '_schedule'` + +- [ ] **Step 3: Implement `_schedule`** + +In `local-server/glmparser/parser.py`, insert this method immediately after `_object`: + +```python + def _schedule(self): + """`schedule { ... };` with optional `{ ... }` sub-blocks. + + Values are opaque cron-ish strings; nothing here interprets them. + """ + name = self._expect("word").text + self._expect("lbrace") + values = [] + groups = [] + + while True: + token = self.lex.peek() + + if token.kind == "rbrace": + self.lex.next() + break + if token.kind == EOF: + raise self.lex.error("Unexpected end of file inside schedule", token) + if token.kind == "semi": + self.lex.next() + continue + + if token.kind == "lbrace": + self.lex.next() + group = [] + while self.lex.peek().kind not in ("rbrace", EOF): + if self.lex.peek().kind == "semi": + self.lex.next() + continue + group.append(self._value_to_semicolon()) + self._expect("rbrace") + groups.append(group) + continue + + values.append(self._value_to_semicolon()) + + if self.lex.peek().kind == "semi": + self.lex.next() + return {"name": name, "values": values, "children": groups} +``` + +- [ ] **Step 4: Run tests to verify they pass** + +```bash +cd local-server && .venv/bin/python -m pytest tests/test_glmparser.py -v +``` + +Expected: 51 passed + +- [ ] **Step 5: Commit** + +```bash +git add local-server/glmparser/parser.py local-server/tests/test_glmparser.py +git commit -m "feat(glmparser): parse schedules and sub-schedule blocks" +``` + +--- + +### Task 6: Writer + +**Files:** +- Create: `local-server/glmparser/writer.py` +- Modify: `local-server/tests/test_glmparser.py` + +**Interfaces:** +- Consumes: nothing (takes a plain AST dict). +- Produces: `dumps(data: dict) -> str`. + +- [ ] **Step 1: Write the failing tests** + +Append to `local-server/tests/test_glmparser.py`: + +```python +from glmparser.writer import dumps as write_glm + + +def test_writes_clock_and_object(): + text = write_glm( + { + "clock": {"timezone": "PST+8PDT"}, + "objects": [ + {"name": "node", "attributes": {"name": "n1"}, "children": []} + ], + } + ) + assert "clock {" in text + assert "\ttimezone PST+8PDT;" in text + assert "object node {" in text + assert "\tname n1;" in text + + +def test_set_and_define_carry_no_semicolon(): + text = write_glm( + { + "directives": [{"name": "profiler", "value": "1"}], + "definitions": [{"name": "VSOURCE", "value": "69715.045"}], + } + ) + assert "#set profiler=1\n" in text + assert "#set profiler=1;" not in text + assert "#define VSOURCE=69715.045\n" in text + assert "#define VSOURCE=69715.045;" not in text + + +def test_include_is_quoted_and_semicolon_terminated(): + # REGRESSION: the Nim writer dropped includes entirely, so exported models + # lost their #include lines. It also would have dropped the quotes. + text = write_glm({"includes": [{"value": "Inverters.glm"}]}) + assert '#include "Inverters.glm";\n' in text + + +def test_module_without_attributes_uses_short_form(): + text = write_glm({"modules": [{"name": "tape", "attributes": {}}]}) + assert "module tape;\n" in text + assert "module tape {" not in text + + +def test_classes_are_written(): + text = write_glm( + {"classes": [{"name": "thermostat", "attributes": {"double": "setpoint"}}]} + ) + assert "class thermostat {" in text + assert "\tdouble setpoint;" in text + + +def test_nested_children_are_indented_inside_the_parent(): + text = write_glm( + { + "objects": [ + { + "name": "house", + "attributes": {"name": "h1"}, + "children": [ + { + "name": "ZIPload", + "attributes": {"name": "z1"}, + "children": [], + } + ], + } + ] + } + ) + assert "\tobject ZIPload {" in text + assert "\t\tname z1;" in text + + +def test_schedule_with_sub_blocks_round_trips_shape(): + text = write_glm( + { + "schedules": [ + {"name": "s", "values": ["* * * * * 1.0"], "children": [["* * * * 6-0 0.5"]]} + ] + } + ) + assert "schedule s {" in text + assert "\t* * * * * 1.0;" in text + assert "\t{\n" in text + assert "\t\t* * * * 6-0 0.5;" in text + + +def roundtrip_attributes(attributes): + """Write one object, parse it back, return its attributes. + + Substring assertions on writer output cannot catch malformation -- they pass + happily on text this project's own parser rejects or misreads. Anything + claiming a value survives export must go through the parser. + """ + text = write_glm( + {"objects": [{"name": "n", "attributes": attributes, "children": []}]} + ) + return parse(text)["objects"][0]["attributes"] + + +def test_values_containing_semicolons_survive_round_trip(): + # Quoting only works because the lexer consumes a quoted string whole. + # Without that, this reads back as {'weird': 'a', 'b"': ''}. + assert roundtrip_attributes({"weird": "a;b"}) == {"weird": "a;b"} + assert roundtrip_attributes({"k": "a;b;c"}) == {"k": "a;b;c"} + assert roundtrip_attributes({"k": "trailingsemi;"}) == {"k": "trailingsemi;"} + + +def test_ordinary_values_survive_round_trip(): + for value in ("NR", "1.0 + 2.0j", "${VSOURCE}", "a\nb", "200.00"): + assert roundtrip_attributes({"k": value}) == {"k": value}, value + + +def test_unrepresentable_values_raise_instead_of_corrupting(): + # GLM has no escape mechanism, so these cannot round-trip. Writing them + # anyway produces a model that silently reads back as different data, so + # the writer refuses. No value in any of the 17 sample models hits this. + for value in ('has "quote"', 'a;b said "x"', "newline\nand;semicolon"): + with pytest.raises(ValueError, match="Cannot export attribute"): + write_glm( + {"objects": [{"name": "n", "attributes": {"k": value}, "children": []}]} + ) + + +def test_unrepresentable_value_names_the_offending_attribute(): + with pytest.raises(ValueError, match="'bad_attr'"): + write_glm( + { + "objects": [ + {"name": "n", "attributes": {"bad_attr": 'x"y'}, "children": []} + ] + } + ) + + +def test_written_output_reparses_to_the_same_ast(): + ast = parse( + "clock {\n timezone PST+8PDT;\n};\n" + "#set profiler=1\n" + '#include "Inverters.glm";\n' + "module powerflow {\n solver_method NR;\n};\n" + "module tape;\n" + "class thermostat {\n double setpoint;\n};\n" + "schedule s {\n * * * * * 1.0;\n {\n * 9-17 * * 1-5 0.5;\n }\n};\n" + "object node {\n name n1;\n object ZIPload {\n name z1;\n };\n};\n" + ) + assert parse(write_glm(ast)) == ast + + +def test_missing_keys_are_tolerated(): + # the frontend may post back a dict lacking sections it never touched + assert write_glm({}) == "" +``` + +- [ ] **Step 2: Run tests to verify they fail** + +```bash +cd local-server && .venv/bin/python -m pytest tests/test_glmparser.py -v +``` + +Expected: FAIL — `ModuleNotFoundError: No module named 'glmparser.writer'` + +- [ ] **Step 3: Implement `writer.py`** + +Create `local-server/glmparser/writer.py`: + +```python +"""AST dict -> GLM text. + +Section order and punctuation follow the source models rather than the Nim +writer this replaces: `#set x=1` carries no semicolon, `#include "f.glm";` +carries both quotes and one. The Nim version got both wrong, which stayed +invisible only because it never emitted includes at all. +""" + +_INDENT = "\t" + + +def _unrepresentable(text): + """Return a reason if this value cannot survive a GLM round-trip, else None. + + GLM has no escape mechanism. The lexer's quoted-string branch stops at the + first `"` or newline, so a value carrying either one alongside a `;` cannot + be written and read back faithfully -- it comes back truncated, with a junk + attribute fabricated from the tail. + + Refuse loudly rather than emit a model file that silently reads back as + different data: server.py wraps export in `except Exception` and puts the + message in the HTTP error body, so the user sees a real error instead of a + quietly corrupted GridLAB-D model. + + No value in any of the 17 sample models contains `;`, `"`, or a newline, so + this path is defensive rather than routine. + """ + if '"' in text: + return "contains a double quote, which GLM cannot escape" + if "\n" in text and ";" in text: + return "contains both a newline and a semicolon" + return None + + +def _quote_if_needed(value, key): + text = str(value) + reason = _unrepresentable(text) + if reason is not None: + raise ValueError( + f"Cannot export attribute {key!r}: its value {reason}. " + f"Writing it would silently corrupt the model on reload." + ) + if ";" in text or "\n" in text: + return '"' + text + '"' + return text + + +def _attributes(attributes, depth): + pad = _INDENT * depth + return "".join( + f"{pad}{key} {_quote_if_needed(value, key)};\n" + for key, value in attributes.items() + ) + + +def _named_block(keyword, entry): + name = entry["name"] + attributes = entry.get("attributes") or {} + if not attributes: + return f"{keyword} {name};\n\n" + return f"{keyword} {name} {{\n{_attributes(attributes, 1)}}};\n\n" + + +def _object(obj, depth): + pad = _INDENT * depth + body = _attributes(obj.get("attributes") or {}, depth + 1) + for child in obj.get("children") or []: + body += _object(child, depth + 1) + # Blank line only between top-level objects; nested ones stay tight. + tail = "\n" if depth == 0 else "" + return f"{pad}object {obj['name']} {{\n{body}{pad}}};\n{tail}" + + +def _schedule(schedule): + body = "".join(f"{_INDENT}{value};\n" for value in schedule.get("values") or []) + for group in schedule.get("children") or []: + body += f"{_INDENT}{{\n" + body += "".join(f"{_INDENT * 2}{value};\n" for value in group) + body += f"{_INDENT}}}\n" + return f"schedule {schedule['name']} {{\n{body}}};\n\n" + + +def dumps(data): + """Render an AST dict as GLM text. + + Every section is optional: the frontend posts back whatever it holds, which + may omit sections the model never had. + """ + out = [] + + clock = data.get("clock") or {} + if clock: + out.append(f"clock {{\n{_attributes(clock, 1)}}};\n\n") + + directives = data.get("directives") or [] + if directives: + out.extend(f"#set {d['name']}={d['value']}\n" for d in directives) + out.append("\n") + + definitions = data.get("definitions") or [] + if definitions: + out.extend(f"#define {d['name']}={d['value']}\n" for d in definitions) + out.append("\n") + + includes = data.get("includes") or [] + if includes: + out.extend(f'#include "{inc["value"]}";\n' for inc in includes) + out.append("\n") + + for schedule in data.get("schedules") or []: + out.append(_schedule(schedule)) + + for module in data.get("modules") or []: + out.append(_named_block("module", module)) + + for klass in data.get("classes") or []: + out.append(_named_block("class", klass)) + + for obj in data.get("objects") or []: + out.append(_object(obj, 0)) + + return "".join(out) +``` + +- [ ] **Step 4: Run tests to verify they pass** + +```bash +cd local-server && .venv/bin/python -m pytest tests/test_glmparser.py -v +``` + +Expected: 64 passed + +- [ ] **Step 5: Commit** + +```bash +git add local-server/glmparser/writer.py local-server/tests/test_glmparser.py +git commit -m "feat(glmparser): add GLM writer with correct directive punctuation" +``` + +--- + +### Task 7: Public API and round-trip stability + +**Files:** +- Modify: `local-server/glmparser/__init__.py` +- Modify: `local-server/tests/test_glmparser.py` + +**Interfaces:** +- Consumes: `Parser` (Task 3), `dumps` (Task 6), `GlmParseError` (Task 1). +- Produces: `loads(text) -> dict`, `load(file) -> dict`, `dumps(data) -> str`, `dump(data, file) -> None`, `version() -> str`, and `GlmParseError` re-exported at package level. + +- [ ] **Step 1: Write the failing tests** + +Append to `local-server/tests/test_glmparser.py`: + +```python +import io +from pathlib import Path + +import glmparser + +REPO_ROOT = Path(__file__).resolve().parents[2] +MODELS = REPO_ROOT / "models" + +SAMPLE = """clock { + timezone PST+8PDT; +}; + +#set profiler=1 + +#define VSOURCE=69715.045 + +#include "Inverters.glm"; + +module powerflow { + solver_method NR; +}; + +module tape; + +object node { + name n1; + phases ABC; + object ZIPload { + name z1; + }; +}; +""" + + +def test_loads_and_dumps_are_exported(): + assert callable(glmparser.load) + assert callable(glmparser.loads) + assert callable(glmparser.dump) + assert callable(glmparser.dumps) + assert glmparser.version() == "1.0.0" + assert glmparser.GlmParseError is not None + + +def test_load_accepts_a_path(tmp_path): + path = tmp_path / "m.glm" + path.write_text(SAMPLE) + assert glmparser.load(path)["modules"][0]["name"] == "powerflow" + assert glmparser.load(str(path))["modules"][0]["name"] == "powerflow" + + +def test_load_accepts_an_open_file_object(tmp_path): + path = tmp_path / "m.glm" + path.write_text(SAMPLE) + with open(path) as handle: + assert glmparser.load(handle)["modules"][0]["name"] == "powerflow" + + +def test_dump_accepts_a_path(tmp_path): + path = tmp_path / "out.glm" + glmparser.dump(glmparser.loads(SAMPLE), path) + assert "module powerflow {" in path.read_text() + + as_str = tmp_path / "out2.glm" + glmparser.dump(glmparser.loads(SAMPLE), str(as_str)) + assert "module powerflow {" in as_str.read_text() + + +def test_dump_accepts_an_open_file_object(): + # glmhelper.py:33 passes an open file, so this form must work + buffer = io.StringIO() + glmparser.dump(glmparser.loads(SAMPLE), buffer) + assert "module powerflow {" in buffer.getvalue() + + +def test_round_trip_is_stable(): + first = glmparser.loads(SAMPLE) + text = glmparser.dumps(first) + second = glmparser.loads(text) + assert first == second + + +def test_round_trip_preserves_includes(): + # REGRESSION: the Nim round-trip silently dropped every #include. + first = glmparser.loads(SAMPLE) + second = glmparser.loads(glmparser.dumps(first)) + assert second["includes"] == [{"value": "Inverters.glm"}] + + +ALL_MODELS = sorted(MODELS.rglob("*.glm")) + + +@pytest.mark.parametrize( + "path", ALL_MODELS, ids=lambda p: str(p.relative_to(MODELS)) +) +def test_every_sample_model_round_trips_stably(path): + # Full equality, including every object's attributes -- which is where + # essentially all real GLM content lives (voltages, phases, impedances, + # ratings). A structural comparison would miss a regression that mangled, + # dropped, or reordered attribute values. + # + # uuid4 hoisted names do NOT make this flaky. They are regenerated only + # when the same SOURCE TEXT is parsed twice; this cycle parses the source + # once and then re-parses the writer's output, and the writer emits hoisted + # children as ordinary top-level objects carrying their generated name as a + # literal, so nothing re-hoists. Verified: holds for all 17 models (none of + # which trigger hoisting at all) and for a synthetic model that does. + first = glmparser.load(path) + second = glmparser.loads(glmparser.dumps(first)) + assert first == second +``` + +- [ ] **Step 2: Run tests to verify they fail** + +```bash +cd local-server && .venv/bin/python -m pytest tests/test_glmparser.py -v +``` + +Expected: FAIL — `AttributeError: module 'glmparser' has no attribute 'load'` + +- [ ] **Step 3: Rewrite `__init__.py` with the full public API** + +Replace the entire contents of `local-server/glmparser/__init__.py`: + +```python +"""Pure-Python GridLAB-D .glm parser. + +Drop-in replacement for the Nim-backed `glm` pip package. The public surface is +`load`/`loads`/`dump`/`dumps`/`version`, matching what glmhelper.py calls. + +Both `load` and `dump` accept either a filesystem path or an already-open file +object, because both forms are in use: glmhelper.py:23 passes a path to `load`, +glmhelper.py:33 passes an open file to `dump`. +""" +import os + +from .errors import GlmParseError +from .parser import Parser +from .writer import dumps + +__version__ = "1.0.0" + +__all__ = ["load", "loads", "dump", "dumps", "version", "GlmParseError"] + + +def loads(text): + """Parse GLM source text into the AST dict.""" + return Parser(text).parse() + + +def load(file): + """Parse a .glm file given a path or an open text file object.""" + if isinstance(file, (str, os.PathLike)): + with open(file, "r", encoding="utf-8", errors="replace") as handle: + return loads(handle.read()) + return loads(file.read()) + + +def dump(data, file): + """Write an AST dict as GLM to a path or an open writable file object.""" + text = dumps(data) + if isinstance(file, (str, os.PathLike)): + with open(file, "w", encoding="utf-8") as handle: + handle.write(text) + return None + file.write(text) + return None + + +def version(): + return __version__ +``` + +- [ ] **Step 4: Run tests to verify they pass** + +```bash +cd local-server && .venv/bin/python -m pytest tests/test_glmparser.py -v +``` + +Expected: all pass, including 17 parametrized round-trip cases + +- [ ] **Step 5: Commit** + +```bash +git add local-server/glmparser/__init__.py local-server/tests/test_glmparser.py +git commit -m "feat(glmparser): add public load/loads/dump/dumps API" +``` + +--- + +### Task 8: Differential validation against Nim, then freeze goldens + +Goldens cannot be dumped straight from the new parser — that asserts it agrees with itself. They also cannot come from Nim, whose output *is* the three bugs being fixed. This task establishes trust first, then freezes. + +**Files:** +- Create (temporarily, then delete): `local-server/tools/diff_parsers.py` +- Create: `local-server/tests/golden/*.json` +- Modify: `local-server/tests/test_glmparser.py` + +**Interfaces:** +- Consumes: `glmparser.load` from Task 7. +- Produces: `local-server/tests/golden/.json` files; a `normalize_uuids(obj)` helper in the test module. + +- [ ] **Step 1: Write the differential script** + +Create `local-server/tools/diff_parsers.py`. This is a migration aid and gets deleted in Step 4 — it requires the Nim `glm` package, which is the dependency being removed. + +```python +"""One-off: diff the new pure-Python parser against the Nim `glm` package. + +Requires the Nim wheel installed. Deleted once goldens are frozen. +Run from the repo root: python local-server/tools/diff_parsers.py +""" +import json +import re +import sys +from pathlib import Path + +sys.path.insert(0, str(Path(__file__).resolve().parents[1])) + +import glm # the Nim package +import glmparser + +UUID_RE = re.compile(r"^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$") + + +def normalize(node): + if isinstance(node, dict): + return { + k: ("" if isinstance(v, str) and UUID_RE.match(v) else normalize(v)) + for k, v in node.items() + } + if isinstance(node, list): + return [normalize(x) for x in node] + return node + + +def classify(nim_obj, py_obj): + """Return 'dotted-key' for the known fix-2 difference, else 'UNEXPECTED'.""" + extra = set(py_obj["attributes"]) - set(nim_obj["attributes"]) + if extra and all("." in key for key in extra): + return "dotted-key" + return "UNEXPECTED" + + +def main(): + root = Path(__file__).resolve().parents[2] + unexpected_total = 0 + + for path in sorted((root / "models").rglob("*.glm")): + nim = normalize(glm.load(str(path))) + py = normalize(glmparser.load(path)) + + notes = [] + # fix 3: `classes` is new, Nim never emitted it + if "classes" in py and "classes" not in nim: + notes.append(f"classes=+{len(py['classes'])} (fix 3)") + + dotted = unexpected = 0 + for nim_obj, py_obj in zip(nim["objects"], py["objects"]): + if nim_obj == py_obj: + continue + if classify(nim_obj, py_obj) == "dotted-key": + dotted += 1 + else: + unexpected += 1 + if unexpected == 1: + notes.append(f"\n nim: {str(nim_obj)[:200]}") + notes.append(f"\n py : {str(py_obj)[:200]}") + + for key in ("modules", "includes", "directives", "definitions", "clock"): + if nim.get(key) != py.get(key): + unexpected += 1 + notes.append(f"\n {key}: nim={nim.get(key)} py={py.get(key)}") + + unexpected_total += unexpected + status = "OK" if unexpected == 0 else "REVIEW" + print( + f"{status:<7}{path.name:<38} dotted={dotted:<4} unexpected={unexpected}" + + " ".join(notes) + ) + + print(f"\nTotal unexpected diffs: {unexpected_total}") + return 1 if unexpected_total else 0 + + +if __name__ == "__main__": + raise SystemExit(main()) +``` + +- [ ] **Step 2: Run the differential and account for every diff** + +```bash +cd /home/mend166/projects/GLIMPSE && local-server/.venv/bin/python local-server/tools/diff_parsers.py +``` + +Expected: every line reports `OK`, and `Total unexpected diffs: 0`. + +**Do not proceed past this step with a non-zero count.** Each `REVIEW` line is either a bug in the new parser or a fourth undocumented Nim behavior. Investigate and fix the parser; only differences attributable to the three documented fixes (dotted keys, added `classes`, restored `includes` on write) are acceptable. + +If the Nim `glm` package is not installed, install it with `local-server/.venv/bin/pip install glm`. On Apple Silicon it must be built from source per `README.md:175-199` — this is the last time that will be necessary. + +- [ ] **Step 3: Generate and commit the goldens** + +```bash +cd /home/mend166/projects/GLIMPSE && mkdir -p local-server/tests/golden && local-server/.venv/bin/python - <<'PY' +import json, re, sys +from pathlib import Path +sys.path.insert(0, "local-server") +import glmparser + +UUID_RE = re.compile(r"^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$") + +def normalize(node): + if isinstance(node, dict): + return {k: ("" if isinstance(v, str) and UUID_RE.match(v) else normalize(v)) + for k, v in node.items()} + if isinstance(node, list): + return [normalize(x) for x in node] + return node + +models = Path("models") +out = Path("local-server/tests/golden") +for path in sorted(models.rglob("*.glm")): + # Key on the relative path, not the stem: two models are named IEEE_9500.glm + # and two are named Inverters.glm, so stems collide and would overwrite. + slug = str(path.relative_to(models).with_suffix("")).replace("/", "__") + target = out / (slug + ".json") + target.write_text(json.dumps(normalize(glmparser.load(path)), indent=1, sort_keys=True)) + print("wrote", target) +PY +``` + +- [ ] **Step 3b: Verify one golden per model file** + +```bash +cd /home/mend166/projects/GLIMPSE && echo "models: $(find models -name '*.glm' | wc -l) goldens: $(ls local-server/tests/golden/*.json | wc -l)" +``` + +Expected: the two counts match. If goldens are fewer, the slug scheme collided and Step 3 needs fixing before continuing. + +- [ ] **Step 4: Add the golden test and delete the differential script** + +Append to `local-server/tests/test_glmparser.py`: + +```python +import json + +GOLDEN = Path(__file__).resolve().parent / "golden" + + +def normalize_uuids(node): + """Hoisted-object names are uuid4 and differ every run; blank them out. + + Reuses UUID_RE, defined alongside the hoisting tests above. + """ + if isinstance(node, dict): + return { + k: ( + "" + if isinstance(v, str) and UUID_RE.match(v) + else normalize_uuids(v) + ) + for k, v in node.items() + } + if isinstance(node, list): + return [normalize_uuids(x) for x in node] + return node + + +@pytest.mark.parametrize( + "path", ALL_MODELS, ids=lambda p: str(p.relative_to(MODELS)) +) +def test_model_matches_golden(path): + slug = str(path.relative_to(MODELS).with_suffix("")).replace("/", "__") + expected = json.loads((GOLDEN / f"{slug}.json").read_text()) + assert normalize_uuids(glmparser.load(path)) == expected +``` + +Then remove the migration script: + +```bash +rm -rf local-server/tools +``` + +- [ ] **Step 5: Run the full suite** + +```bash +cd local-server && .venv/bin/python -m pytest tests/ -v +``` + +Expected: all pass, with one `test_model_matches_golden` case per golden file. + +- [ ] **Step 6: Commit** + +```bash +git add local-server/tests/ +git commit -m "test(glmparser): freeze goldens after Nim differential parity" +``` + +--- + +### Task 9: Cut over glmhelper.py + +**Files:** +- Modify: `local-server/glmhelper.py:1`, `local-server/glmhelper.py:23`, `local-server/glmhelper.py:33` +- Modify: `local-server/tests/test_glmparser.py` + +**Interfaces:** +- Consumes: `glmparser.load`, `glmparser.dump` from Task 7. +- Produces: `GLMHelper` unchanged in signature — `parse_glm(file_paths: list) -> dict`, `json_to_glm(data, tmpdir) -> io.BytesIO`. + +- [ ] **Step 1: Write the failing test** + +Append to `local-server/tests/test_glmparser.py`: + +```python +from glmhelper import GLMHelper + + +def test_glmhelper_parses_through_the_new_module(tmp_path): + source = tmp_path / "tiny.glm" + source.write_text(SAMPLE) + result = GLMHelper().parse_glm([str(source)]) + assert "tiny.json" in result + assert result["tiny.json"]["modules"][0]["name"] == "powerflow" + + +def test_glmhelper_rejects_oversized_files(tmp_path): + big = tmp_path / "big.glm" + big.write_text("// pad\n" * 800_000) # 5.34 MB, over the 5 MB cap + with pytest.raises(ValueError, match="too large"): + GLMHelper().parse_glm([str(big)]) + + +def test_glmhelper_exports_a_zip(tmp_path): + helper = GLMHelper() + data = {"tiny.json": glmparser.loads(SAMPLE)} + buffer = helper.json_to_glm(data, str(tmp_path)) + + import zipfile + + with zipfile.ZipFile(buffer) as archive: + assert archive.namelist() == ["tiny.glm"] + text = archive.read("tiny.glm").decode() + assert "module powerflow {" in text + assert '#include "Inverters.glm";' in text +``` + +- [ ] **Step 2: Run tests to verify they fail** + +```bash +cd local-server && .venv/bin/python -m pytest tests/test_glmparser.py -v +``` + +Expected: `test_glmhelper_exports_a_zip` FAILs on the missing `#include "Inverters.glm";` line. + +Note the failure is *not* an import error — the Nim `glm` package is still installed at this point, so `glmhelper.py:1` imports fine and the first two tests may well pass. The export test is the one that pins the cutover, because dropping includes is exactly what the Nim writer does. + +- [ ] **Step 3: Swap the import** + +In `local-server/glmhelper.py`, change line 1: + +```python +import glm +``` + +to: + +```python +from glmparser import dump as glm_dump +from glmparser import load as glm_load +``` + +Then change line 23 from `result = glm.load(glm_path)` to: + +```python + result = glm_load(glm_path) +``` + +And line 33 from `glm.dump(data[filename], glm_file)` to: + +```python + glm_dump(data[filename], glm_file) +``` + +- [ ] **Step 4: Run tests to verify they pass** + +```bash +cd local-server && .venv/bin/python -m pytest tests/ -v +``` + +Expected: all pass + +- [ ] **Step 5: Verify the Nim package is genuinely unused** + +```bash +cd /home/mend166/projects/GLIMPSE && grep -rn "import glm$\|^import glm\|from glm import" --include=*.py --include=*.spec . | grep -v node_modules | grep -v "local-server/glm/" +``` + +Expected: no output. Any hit is a missed call site. + +- [ ] **Step 6: Smoke-test the real server** + +```bash +cd /home/mend166/projects/GLIMPSE && npm run dev:backend +``` + +In a second shell: + +```bash +curl -s -F "files=@models/123/IEEE_123_Dynamic.glm" http://localhost:5052/api/upload/glm | head -c 400 +``` + +Expected: a JSON body whose `data` key holds `IEEE_123_Dynamic.json` with a populated `objects` array. Stop the server afterward. + +- [ ] **Step 7: Commit** + +```bash +git add local-server/glmhelper.py local-server/tests/test_glmparser.py +git commit -m "refactor(glmhelper): use pure-Python glmparser instead of Nim glm" +``` + +--- + +### Task 10: Documentation + +**Files:** +- Modify: `README.md:73-199` +- Modify: `CLAUDE.md` + +**Interfaces:** +- Consumes: nothing. +- Produces: nothing (docs only). + +- [ ] **Step 1: Update `README.md` prerequisites** + +In the "Prerequisites" list around `README.md:80-84`, delete the entire Nim entry: + +```markdown +2. **[Nim](https://nim-lang.org/install.html)** — Only needed if: + - You're on Apple silicon (M chips), OR + - You plan to export modified GLM files +``` + +In the "Quick Overview" list at `README.md:73`, change: + +```markdown +1. ✅ Install Node.js (and optionally Nim) +``` + +to: + +```markdown +1. ✅ Install Node.js +``` + +- [ ] **Step 2: Delete the Apple Silicon build section** + +Remove the whole "#### Special Instructions for Apple Silicon (M Chips)" block (`README.md:173-199` and its trailing pip/uv install snippets) — building the parser from source is no longer a thing. Also remove the now-stale `uv pip install glm` line at `README.md:170`. + +- [ ] **Step 3: Update `CLAUDE.md`** + +In the "What GLIMPSE is" section, the sentence reading: + +```markdown +The `.glm` parser is the separate `glm` pip package (a Nim binary); Apple Silicon must build it +from source — see the README. +``` + +becomes: + +```markdown +The `.glm` parser is `local-server/glmparser/` — a pure-Python package with no build step. +``` + +In the "Backend helpers" section, update the `GLMHelper` bullet: + +```markdown +- `GLMHelper` ([glmhelper.py](local-server/glmhelper.py)) — GridLAB-D `.glm` ⇄ JSON via + [glmparser](local-server/glmparser/) (5 MB/file cap); `json_to_glm` zips exports. +``` + +In the "Tests" section, replace the "There is **no unit-test framework**" opening with: + +```markdown +The parser has a pytest suite; everything else is covered by the integration scripts in +[socket-testing/](socket-testing/). + +```bash +cd local-server && uv sync --group dev +cd local-server && pytest # parser unit + golden tests +``` +``` + +- [ ] **Step 4: Verify no stale Nim references remain** + +```bash +cd /home/mend166/projects/GLIMPSE && grep -rniE '\bnim\b|nimble|nim-lang' README.md CLAUDE.md +``` + +Expected: no output. + +- [ ] **Step 5: Commit** + +```bash +git add README.md CLAUDE.md +git commit -m "docs: drop Nim toolchain requirement" +``` + +--- + +## Verification + +After Task 10, from the repo root: + +```bash +cd local-server && .venv/bin/python -m pytest tests/ -v # full suite green +cd /home/mend166/projects/GLIMPSE && npm run lint # unchanged, still clean +``` + +Then delete the now-unused Nim clone, which is untracked and gitignored: + +```bash +rm -rf local-server/glm +local-server/.venv/bin/pip uninstall -y glm +``` + +Re-run the suite once more afterward to prove nothing still reaches for the Nim package. diff --git a/docs/superpowers/specs/2026-08-05-python-glm-parser-design.md b/docs/superpowers/specs/2026-08-05-python-glm-parser-design.md new file mode 100644 index 00000000..d3b8bc76 --- /dev/null +++ b/docs/superpowers/specs/2026-08-05-python-glm-parser-design.md @@ -0,0 +1,249 @@ +# Pure-Python GLM Parser — Design + +**Date:** 2026-08-05 +**Status:** Approved, pending implementation plan + +## Problem + +The `.glm` parser GLIMPSE depends on is the `glm` pip package — a Nim binary +(`local-server/glm/`, an untracked clone; `.gitignore:15` ignores `**/glm`). +Building GLIMPSE from source therefore requires a Nim toolchain for anyone on +Apple Silicon or anyone exporting modified GLM files, per `README.md:73-199`. +The goal is to remove Nim from the build entirely. + +## Why Python and not Rust + +Rust via PyO3/maturin would replace a Nim toolchain requirement with a Rust +toolchain requirement — identical friction, for a full rewrite. It only avoids +that by shipping prebuilt per-platform wheels, which the existing Nim code could +do equally well. Rust does not address the stated problem. + +The native speed is also not being earned. Measured against a throwaway +pure-Python prototype (median of 5 runs): + +| model | Nim | pure Python | +|---|---|---| +| `ieee8500.glm` (2.2 MB, 12,492 objects) | 179 ms | 182 ms | +| `IEEE_9500.glm` (2.15 MB) | 172 ms | 167 ms | +| `3000_model.glm` (1.04 MB) | 86 ms | 75 ms | + +Two reasons the compiled version has no headroom: + +1. `lexer.nim:246-249` heap-allocates a `ref object` Token for every space and + newline — over a million allocations on a 2 MB file. +2. `glm.nim:16-18` serializes the whole AST to a JSON string and calls + `pyImport("json").loads(...)` on it. Every load already pays a full Python + JSON parse (~18 ms) plus a 2.77 MB intermediate string. A Python parser + builds the dicts directly and skips the round-trip. + +Secondary wins: one pure wheel for every platform (killing the Apple Silicon +special case), and simpler PyInstaller bundling with no native `.so`/`.pyd`. + +## Constraints discovered + +- **The AST shape is a hard contract.** `server.py:498-502` ships the parser + output straight to the frontend; `GraphHelper.js:1676` reads `obj.name` as the + object type and `attributes.name` as the node id; `GraphHelper.js:1661` retains + the whole dict as `glmFileData` and posts it back to `/api/export/glm`, which + calls `dump`. Every key must survive the round-trip. +- **One consumer.** `glmhelper.py:1` is the only importer of `glm`. +- **Naming.** `.gitignore:15` (`**/glm`) means the new module cannot be called + `glm` or it will not be committed. +- **No dependency-file change needed.** `glm` appears in neither + `requirements.txt` nor `pyproject.toml` — it was always an implicit install. + +## Module layout + +``` +local-server/glmparser/ +├── __init__.py # public API only: load, loads, dump, dumps, version, GlmParseError +├── lexer.py # regex scan → streaming tokens with 1-token lookahead +├── parser.py # tokens → AST dict +├── writer.py # AST dict → GLM text +└── errors.py # GlmParseError with line/column/caret rendering +``` + +## Public API + +Mirrors the Nim surface. Both path and file-object forms are required: +`glmhelper.py:23` passes a path to `load`, `glmhelper.py:33` passes an open file +object to `dump`. + +```python +loads(text: str) -> dict +load(file: str | os.PathLike | TextIO) -> dict +dumps(data: dict) -> str +dump(data: dict, file: str | os.PathLike | TextIO) -> None +version() -> str +``` + +`glmhelper.py` changes by one line: `import glm` → `from glmparser import load, dump`. + +`version()` returns the `glmparser` package version string, tracked +independently of the Nim package's `v0.4.4`; it starts at `1.0.0`. `dump` +returns `None` where the Nim binding returned `0` — `glmhelper.py:33` discards +the result, so nothing depends on it. + +## Tokenizer + +A single `re.finditer` over one master alternation, pulled through a small +`peek()`/`next()` buffer rather than materialized into a list. The parser needs +exactly one token of lookahead, confirmed while building the prototype. + +Materializing the token list costs 62 MB peak on a 2.2 MB file (~140 MB at the +5 MB cap in `glmhelper.py:8`), which matters for the bundled Electron app. +Streaming keeps peak near source size plus output. + +Token kinds: `hash` (`set`/`define`/`include`), `kw` +(`clock`/`module`/`object`/`class`/`schedule`), `lbrace`, `rbrace`, `semi`, +`word`, `eof`. `//` comments are matched and discarded. Whitespace is skipped +rather than tokenized — this is the single biggest departure from the Nim lexer +and the main source of the speed parity. + +Each token carries its source start and end offsets, which serve both value +slicing and error reporting. + +## Value handling + +Attribute values are **sliced out of the retained source string by offset**, not +re-joined from token text. Re-joining with a separator corrupts `${VSOURCE}` +(becomes `$ {VSOURCE}`); re-joining without one corrupts multi-word values. +Slicing is exact and cheaper than both. + +Two terminator rules, which differ and must not be conflated: + +- Attribute values inside a block run to the next `;`. +- `#set`, `#define`, `#include` run to the **end of line**. Getting this wrong + causes the value to swallow subsequent lines — observed and fixed during + prototyping. + +## AST schema + +```python +{ + "clock": {str: str}, # {} when absent + "includes": [{"value": str}], + "objects": [{"name": str, "attributes": {str: str}, "children": [...]}], + "modules": [{"name": str, "attributes": {str: str}}], + "classes": [{"name": str, "properties": [{"type": str, "name": str}]}], # NEW + "directives": [{"name": str, "value": str}], + "definitions": [{"name": str, "value": str}], + "schedules": [{"name": str, "values": [str], "children": [[str]]}], +} +``` + +`classes` is the only added key. `GraphHelper.js:1673` iterates `file.objects` +and carries every other key through opaquely, so the addition is inert on the +frontend. + +A class body is an ordered `properties` list rather than a dict keyed by +property name or type: a GridLAB-D class legitimately repeats property types +(`double power_factor; double heatgain_fraction;`), and keying by type would +collapse same-typed properties, silently dropping all but the last. + +`clock` is always present, `{}` when the model has none — matching +`ast.nim:238-243`. + +### Anonymous object hoisting — preserved exactly + +`configuration object line_configuration { ... };` inside a parent object: +the child receives a `uuid4` string as `attributes["name"]`, is appended to +top-level `objects`, and the parent's attribute takes that generated name as its +value. Edge wiring in the frontend resolves those name references, so this +behavior is load-bearing. Matches `parser.nim:232-238`. + +Bare `object child { ... };` nested inside a parent instead goes to the parent's +`children` list. Matches `parser.nim:224-227`. + +## Behavior changes + +Three confirmed data-losing bugs in the Nim parser are fixed. Duplicate-key +last-wins collapse is deliberately preserved. + +| # | Bug | Fix | +|---|---|---| +| 1 | `#include` lines are captured by `load` but silently discarded by `dump` — `ast.nim:126-148` never reads the `includes` key back. Exporting `IEEE_9500` drops all 3 includes, producing an incomplete model. | Writer emits them. | +| 2 | Dotted keys collapse. `rating.summer.continuous` / `.emergency` / `winter.*` become one mangled `'rating': '.winter.emergency 200.00'` — the lexer splits on `.`, then Nim's `JsonNode.add` permits duplicate keys which collapse to the last during `json.loads`. 240 attribute lines across `models/`. | Dotted keys stay whole and distinct. | +| 3 | `class` blocks are parsed into `ast.classes` then never emitted — `ast.nim:262-270` omits them from `toJson`. They vanish on round-trip. | `classes` key added to AST and to writer output. No file in `models/` currently uses `class`; this is forward-looking. | +| 4 | Genuinely repeated attribute keys collapse to last-wins. | **Preserved** — this one is defensible as-is. | + +## Writer output format + +Section order, mirroring `ast.nim:150-215` with `includes` and `classes` added: + +1. `clock { ... };` +2. `#set name=value` — **no trailing semicolon** +3. `#define name=value` — **no trailing semicolon** +4. `#include "value";` — **quoted, with semicolon** +5. `schedule name { ... };` +6. `module name { ... };` (or `module name;` when attribute-less) +7. `class name { ... };` +8. `object type { ... };`, children nested inline + +The per-directive punctuation differs and matters. Source models use +`#set relax_naming_rules=1` with no semicolon but `#include "Inverters.glm";` +with both quotes and a semicolon (`IEEE_9500.glm:9-32`). Nim's writer emits a +semicolon for `#set` and drops the quotes for `#include`; the quote loss is +masked today only because includes never reach the writer. + +Attribute values are written unquoted — valid GLM and stable through our own +reader. Values containing `;` or a newline are quoted defensively. + +## Error handling + +`GlmParseError(Exception)` carrying line, column, and the offending source line, +rendering the caret display from `lexer.nim:82-104` **into the exception +message** rather than printing to stderr. + +This is a deliberate improvement: `server.py:504-507` wraps handlers in +`except Exception` and builds an HTTP error body, so a parse error surfaces in +the UI instead of vanishing into a terminal nobody is watching. + +## Testing + +`local-server/tests/test_glmparser.py`, goldens in `local-server/tests/golden/`, +`pytest` added as a `[dependency-groups] dev` entry in +`local-server/pyproject.toml`. + +- Every `models/**/*.glm` parses to its committed golden. `uuid4` hoisted-object + names are normalized to a placeholder before comparison, since they differ per + run. +- `glm → json → glm → json` is stable (second and third representations match). +- One explicit regression test per fix: includes survive export; + `rating.summer.continuous` remains a distinct key; `class` blocks reach the AST. +- Malformed input raises `GlmParseError` with the correct line number. + +### How goldens get trusted + +Goldens cannot simply be dumped from the new parser (that would assert it agrees +with itself) nor from the Nim parser (that output encodes the three bugs being +fixed). The sequence is: + +1. A one-off differential script runs both parsers over `models/**/*.glm` and + diffs, with uuid4 names normalized. +2. Every diff must be individually accounted for as one of the three known fixes. + Any diff that is not gets investigated as a bug in the new parser. +3. Once the only remaining diffs are the intended ones, the new parser's output + is frozen as the goldens and committed. +4. The differential script is discarded — it needs Nim, which is the dependency + being removed. The goldens are the durable artifact. + +## Out of scope + +- **GridLAB-D semantics.** `#include` files are not resolved or inlined, `${...}` + is not substituted, macros are not expanded. Values remain opaque strings, + exactly as today. +- **CLI binaries.** The Nim package shipped `glm2json`/`json2glm`; nothing in + GLIMPSE invokes them. +- **Deterministic hoisted-object names.** Keeping `uuid4` to match current + behavior, despite the export churn it causes. +- **Objects-format conversion.** No change to `GraphHelper.setGraphData`. + +## Follow-on doc changes + +- `README.md:73-199` — remove the Nim prerequisite and the Apple Silicon + build-from-source section. +- `CLAUDE.md` — update the line describing the parser as "the separate `glm` pip + package (a Nim binary)". +- `local-server/glm/` is untracked and gitignored; it can simply be deleted + locally once the cutover lands. No repo change. diff --git a/local-server/glmhelper.py b/local-server/glmhelper.py index 47995dc0..2ca5990a 100644 --- a/local-server/glmhelper.py +++ b/local-server/glmhelper.py @@ -1,4 +1,5 @@ -import glm +from glmparser import dump as glm_dump +from glmparser import load as glm_load import os import zipfile import io @@ -20,7 +21,7 @@ def parse_glm(self, file_paths: list) -> dict: f"Maximum allowed size is {self.max_file_size_mb} MB." ) - result = glm.load(glm_path) + result = glm_load(glm_path) glm_dicts[filename.split(".")[0] + ".json"] = result return glm_dicts @@ -30,7 +31,7 @@ def json_to_glm(self, data, tmpdir): glm_filename = filename if filename.endswith(".glm") else filename.replace(".json", ".glm") filepath = os.path.join(tmpdir, glm_filename) with open(filepath, "w") as glm_file: - glm.dump(data[filename], glm_file) + glm_dump(data[filename], glm_file) zip_buffer = io.BytesIO() with zipfile.ZipFile(zip_buffer, "w", zipfile.ZIP_DEFLATED) as zip_file: diff --git a/local-server/glmparser/__init__.py b/local-server/glmparser/__init__.py new file mode 100644 index 00000000..6b2ee2c8 --- /dev/null +++ b/local-server/glmparser/__init__.py @@ -0,0 +1,46 @@ +"""Pure-Python GridLAB-D .glm parser. + +Drop-in replacement for the Nim-backed `glm` pip package. The public surface is +`load`/`loads`/`dump`/`dumps`/`version`, matching what glmhelper.py calls. + +Both `load` and `dump` accept either a filesystem path or an already-open file +object, because both forms are in use: glmhelper.py:23 passes a path to `load`, +glmhelper.py:33 passes an open file to `dump`. +""" +import os + +from .errors import GlmParseError +from .parser import Parser +from .writer import dumps + +__version__ = "1.0.0" + +__all__ = ["load", "loads", "dump", "dumps", "version", "GlmParseError"] + + +def loads(text): + """Parse GLM source text into the AST dict.""" + return Parser(text).parse() + + +def load(file): + """Parse a .glm file given a path or an open text file object.""" + if isinstance(file, (str, os.PathLike)): + with open(file, "r", encoding="utf-8", errors="replace") as handle: + return loads(handle.read()) + return loads(file.read()) + + +def dump(data, file): + """Write an AST dict as GLM to a path or an open writable file object.""" + text = dumps(data) + if isinstance(file, (str, os.PathLike)): + with open(file, "w", encoding="utf-8") as handle: + handle.write(text) + return None + file.write(text) + return None + + +def version(): + return __version__ diff --git a/local-server/glmparser/errors.py b/local-server/glmparser/errors.py new file mode 100644 index 00000000..56b83d50 --- /dev/null +++ b/local-server/glmparser/errors.py @@ -0,0 +1,62 @@ +"""Parse errors carrying enough context to point at the offending source line.""" + + +class GlmParseError(Exception): + """Raised when GLM source cannot be parsed. + + The rendered caret block goes into the exception message rather than to + stderr: server.py wraps route handlers in `except Exception` and puts the + message into the HTTP error body, so this is what reaches the UI. + """ + + def __init__(self, message, source="", offset=None): + self.raw_message = message + self.source = source + self.offset = offset + self.line = None + self.column = None + + if offset is not None and source: + self.line = source.count("\n", 0, offset) + 1 + self.column = offset - (source.rfind("\n", 0, offset) + 1) + + # An offset at EOF on newline-terminated source lands one line past + # the last real line, because splitlines() yields no phantom + # trailing entry. Clamp to the end of the last real line -- exactly + # where an "unexpected end of file" belongs. + # + # This is the common path, not an edge case: the lexer's EOF token + # carries start == len(source), and both `Unexpected end of file + # inside block` and `... inside schedule` are raised on it. Without + # the clamp those raise IndexError instead of GlmParseError. + lines = source.splitlines() + if self.line > len(lines): + self.line = len(lines) + self.column = len(lines[-1]) + + super().__init__(self._render()) + + def _render(self): + if self.line is None: + return self.raw_message + + lines = self.source.splitlines() + out = [ + f"ParserError: [line: {self.line}, column: {self.column}] " + f"{self.raw_message}" + ] + + if self.line - 2 >= 0: + out.append(lines[self.line - 2]) + + bad = lines[self.line - 1] + out.append(bad) + # Copy tabs through verbatim so the caret lands correctly at any tab width. + out.append( + "".join("\t" if c == "\t" else " " for c in bad[: self.column]) + "^" + ) + + if self.line < len(lines): + out.append(lines[self.line]) + + return "\n".join(out) diff --git a/local-server/glmparser/lexer.py b/local-server/glmparser/lexer.py new file mode 100644 index 00000000..903deda3 --- /dev/null +++ b/local-server/glmparser/lexer.py @@ -0,0 +1,121 @@ +"""Streaming tokenizer for GridLAB-D .glm source. + +One regex pass over the source, pulled through a single-token lookahead buffer. +Whitespace is skipped rather than tokenized -- the Nim implementation this +replaces heap-allocated a token object per space and newline, which is where +most of its runtime went. +""" +import re + +from .errors import GlmParseError + +# The `word` group has five branches, in this order, and all five are needed: +# +# 0. `"[^"\n]*"` and `'[^'\n]*'` -- a quoted string, consumed WHOLE, including +# any `;` inside it. GLM genuinely uses quoted values (`starttime +# '2000-01-01 0:00:00';`). Without these branches a `;` inside quotes still +# lexes as a `semi` and terminates the value, so the writer's defensive +# quoting protects nothing: exporting `{"weird": "a;b"}` writes +# `weird "a;b";` and reads back as `{'weird': 'a', 'b"': ''}` -- the value +# truncated AND a junk attribute fabricated, silently. Must precede the +# ordinary-value branch so the whole quoted run is taken first. +# An unterminated quote falls through to branch 1, matching prior behavior. +# +# This is NOT full string support: `[^"\n]` excludes newline (so an +# unterminated quote cannot swallow the rest of the file, the same failure +# the `${...}` bound prevents) and there is no backslash-escape handling, +# because GLM has no escape mechanism to honor. Values carrying a `"`, or +# both a newline and a `;`, therefore cannot round-trip -- writer.py +# refuses to emit those rather than corrupting them silently. +# 1. `[^\s{}$;]+` -- the fast common path for ordinary identifiers and values. +# It excludes `$` so it stops cleanly at the start of a substitution. +# 2. `\$\{[^}\s;]*\}` -- a `${VSOURCE}` substitution, kept as ONE token. +# Without this the braces lex as lbrace/rbrace, and that stray rbrace +# silently closes the enclosing block early, corrupting every attribute +# after it. The `\s;` exclusion bounds the match to one line: with a plain +# `[^}]*`, an unterminated `${` runs on until the next `}` ANYWHERE in the +# file -- swallowing a brace that closes an unrelated block. Measured on +# `object node {\n name ${A\n}\nobject other {...}`: the loose form +# silently drops `object other` entirely (1 object parsed instead of 2). +# 3. `\$` -- a bare dollar sign not starting a substitution. Without this +# branch nothing matches a lone `$` and finditer skips it silently, so +# `a$b` tokenizes as `a`,`b` and a value of just `$` vanishes entirely. +# +# Branch 0 must come first: quoted strings must be consumed WHOLE. Branch 1 must +# come before branches 2-3 since it is the hot path, and putting it early costs +# nothing on `$` positions while keeping ordinary scanning at full speed. A +# single per-character alternation `(?:\$\{[^}]*\}|[^\s{};])+` also works but +# costs ~25% throughput. +_TOKEN_RE = re.compile( + r""" + (?set|define|include)\b + | \b(?Pclock|module|object|class|schedule)\b + | (?P\{) + | (?P\}) + | (?P;) + | (?P"[^"\n]*"|'[^'\n]*'|[^\s{}$;]+|\$\{[^}\s;]*\}|\$) # quoted string, value, substitution, bare $ + """, + re.VERBOSE, +) + +EOF = "eof" + + +class Token: + __slots__ = ("kind", "text", "start", "end") + + def __init__(self, kind, text, start, end): + self.kind = kind + self.text = text + self.start = start + self.end = end + + def __repr__(self): + return f"Token({self.kind!r}, {self.text!r}, {self.start})" + + +class Lexer: + """Pull-based token stream with exactly one token of lookahead. + + One token is all the parser ever needs, which is what lets this stay a + generator instead of a materialized list -- the list costs ~62 MB on a + 2.2 MB model. + """ + + def __init__(self, source): + self.source = source + self._matches = _TOKEN_RE.finditer(source) + self._current = self._scan() + + def _scan(self): + for match in self._matches: + kind = match.lastgroup + if kind is None: # a comment; skip it + continue + # Offsets span the whole match, so a `hash` token starts at '#'. + return Token(kind, match.group(kind), match.start(), match.end()) + end = len(self.source) + return Token(EOF, "", end, end) + + def peek(self): + return self._current + + def next(self): + token = self._current + if token.kind != EOF: + self._current = self._scan() + return token + + def error(self, message, token=None): + target = token if token is not None else self._current + return GlmParseError(message, self.source, target.start) diff --git a/local-server/glmparser/parser.py b/local-server/glmparser/parser.py new file mode 100644 index 00000000..3907a6fd --- /dev/null +++ b/local-server/glmparser/parser.py @@ -0,0 +1,259 @@ +"""GLM source -> AST dict. + +The output shape is a hard contract. server.py ships this dict straight to the +frontend, GraphHelper.js reads `name` and `attributes` off each object, and the +same dict comes back through /api/export/glm for writing. Every key must +survive the round-trip. +""" +import uuid + +from .lexer import EOF, Lexer + +# A value stops at any of these; `rbrace` and EOF are tolerated so a final +# attribute missing its semicolon does not run away. +_VALUE_END = (EOF, "rbrace", "semi") + + +class Parser: + def __init__(self, source): + self.source = source + self.lex = Lexer(source) + self.ast = { + "clock": {}, + "includes": [], + "objects": [], + "modules": [], + "classes": [], + "directives": [], + "definitions": [], + "schedules": [], + } + + # ---- helpers ------------------------------------------------------- + + def _expect(self, kind): + token = self.lex.next() + if token.kind != kind: + raise self.lex.error(f"Expected {kind}, found {token.text!r}", token) + return token + + def _value_to_semicolon(self): + """Attribute values run to the next `;`. + + Sliced out of the source rather than re-joined from token text, so + internal spacing survives exactly: `${VSOURCE}` and `1.0 + 2.0j` both + come back byte-for-byte. + """ + token = self.lex.peek() + if token.kind in _VALUE_END: + if token.kind == "semi": + self.lex.next() + return "" + + start = token.start + end = start + while self.lex.peek().kind not in _VALUE_END: + end = self.lex.next().end + if self.lex.peek().kind == "semi": + self.lex.next() + return self.source[start:end].strip("'\" \t\n") + + def _value_to_eol(self, hash_token): + """`#set`/`#define`/`#include` run to end of line, not to a `;`. + + The line bound is computed from the DIRECTIVE token's own end, not from + the next token's start: when nothing follows the keyword on that line, + anchoring to the next token finds the end of the FOLLOWING line and + silently swallows that statement into this directive's value. + + The slice ends at the last token consumed rather than at the newline, + because slicing to the newline drags in a trailing `//` comment -- the + lexer discards comments but the raw source still contains them. + """ + newline = self.source.find("\n", hash_token.end) + if newline == -1: + newline = len(self.source) + start = self.lex.peek().start + if start > newline: # nothing on this line after the keyword + return "" + end = start + while self.lex.peek().kind != EOF and self.lex.peek().start < newline: + end = self.lex.next().end + return self.source[start:end].strip().rstrip(";").strip("'\" ") + + def _attributes(self, children=None): + """Parse `{ key value; ... }`. + + `children` collects bare nested objects; pass None where nesting is not + legal (clock, module, class). + """ + self._expect("lbrace") + attrs = {} + + while True: + token = self.lex.peek() + + if token.kind == "rbrace": + self.lex.next() + break + if token.kind == EOF: + raise self.lex.error("Unexpected end of file inside block", token) + if token.kind == "semi": + self.lex.next() + continue + + # `object child { ... };` nested bare -> the parent's children list + if token.kind == "kw" and token.text == "object": + if children is None: + raise self.lex.error("Nested object not allowed here", token) + self.lex.next() + children.append(self._object()) + continue + + key = self.lex.next().text + + # `configuration object line_conf { ... };` -> hoisted to top-level + # `objects` under a generated name, which the parent keeps as its + # attribute value. Frontend edge wiring resolves those references, + # so this behavior is load-bearing. + following = self.lex.peek() + if following.kind == "kw" and following.text == "object": + self.lex.next() + child = self._object() + generated = str(uuid.uuid4()) + child["attributes"]["name"] = generated + self.ast["objects"].append(child) + attrs[key] = generated + else: + attrs[key] = self._value_to_semicolon() + + if self.lex.peek().kind == "semi": + self.lex.next() + return attrs + + def _object(self): + """`object { ... };` -- the type may carry `.` or `:` suffixes.""" + name = self._expect("word").text + children = [] + attributes = self._attributes(children) + return {"name": name, "attributes": attributes, "children": children} + + def _schedule(self): + """`schedule { ... };` with optional `{ ... }` sub-blocks. + + Values are opaque cron-ish strings; nothing here interprets them. + """ + name = self._expect("word").text + self._expect("lbrace") + values = [] + groups = [] + + while True: + token = self.lex.peek() + + if token.kind == "rbrace": + self.lex.next() + break + if token.kind == EOF: + raise self.lex.error("Unexpected end of file inside schedule", token) + if token.kind == "semi": + self.lex.next() + continue + + if token.kind == "lbrace": + self.lex.next() + group = [] + while self.lex.peek().kind not in ("rbrace", EOF): + if self.lex.peek().kind == "semi": + self.lex.next() + continue + group.append(self._value_to_semicolon()) + self._expect("rbrace") + groups.append(group) + continue + + values.append(self._value_to_semicolon()) + + if self.lex.peek().kind == "semi": + self.lex.next() + return {"name": name, "values": values, "children": groups} + + def _class_block(self): + """`class name { ; ... };` + + A class body is a LIST, not a dict. Its entries are ` ` + declarations and the same type recurs constantly in a normal class + (`double a; double b;`). Keying by type silently dropped all but the + last -- the shape module/object bodies use does not fit here. + """ + name = self._expect("word").text + if self.lex.peek().kind == "semi": + self.lex.next() + return {"name": name, "properties": []} + + self._expect("lbrace") + properties = [] + while True: + token = self.lex.peek() + if token.kind == "rbrace": + self.lex.next() + break + if token.kind == EOF: + raise self.lex.error("Unexpected end of file inside class", token) + if token.kind == "semi": + self.lex.next() + continue + property_type = self.lex.next().text + properties.append( + {"type": property_type, "name": self._value_to_semicolon()} + ) + + if self.lex.peek().kind == "semi": + self.lex.next() + return {"name": name, "properties": properties} + + def _named_block(self): + """`module powerflow;` or `module powerflow { ... };`. Also `class`.""" + name = self._expect("word").text + if self.lex.peek().kind == "semi": + self.lex.next() + return {"name": name, "attributes": {}} + return {"name": name, "attributes": self._attributes()} + + def _directive(self, which, hash_token): + if which == "include": + self.ast["includes"].append({"value": self._value_to_eol(hash_token)}) + return + body = self._value_to_eol(hash_token) + name, _, value = body.partition("=") + entry = {"name": name.strip(), "value": value.strip().strip("'\" ")} + self.ast["directives" if which == "set" else "definitions"].append(entry) + + # ---- entry point --------------------------------------------------- + + def parse(self): + while True: + token = self.lex.next() + + if token.kind == EOF: + break + if token.kind == "semi": + continue + + if token.kind == "kw": + if token.text == "clock": + self.ast["clock"] = self._attributes() + elif token.text == "object": + self.ast["objects"].append(self._object()) + elif token.text == "schedule": + self.ast["schedules"].append(self._schedule()) + elif token.text == "module": + self.ast["modules"].append(self._named_block()) + elif token.text == "class": + self.ast["classes"].append(self._class_block()) + elif token.kind == "hash": + self._directive(token.text, token) + else: + raise self.lex.error(f"Unexpected token {token.text!r}", token) + + return self.ast diff --git a/local-server/glmparser/writer.py b/local-server/glmparser/writer.py new file mode 100644 index 00000000..f4586b48 --- /dev/null +++ b/local-server/glmparser/writer.py @@ -0,0 +1,146 @@ +"""AST dict -> GLM text. + +Section order and punctuation follow the source models rather than the Nim +writer this replaces: `#set x=1` carries no semicolon, `#include "f.glm";` +carries both quotes and one. The Nim version got both wrong, which stayed +invisible only because it never emitted includes at all. +""" + +_INDENT = "\t" + + +def _unrepresentable(text): + """Return a reason if this value cannot survive a GLM round-trip, else None. + + Derived from measured behavior, not guessed. Three ways a value breaks: + + - It starts or ends with a quote character. `_value_to_semicolon` strips + leading/trailing `'` and `"` off every value, so those characters do not + come back. + - It needs quoting (contains `;` or a newline) but itself contains a `"`. + The lexer's quoted-string branch ends at the first inner `"`, so the + quoted form is mis-lexed. + - It contains both a `;` and a newline. The quoted-string branch excludes + newline (that bound is what stops an unterminated quote swallowing the + rest of the file), so no quoting strategy covers this. + + An interior `"` with no `;` or newline is fine: `3"x5` round-trips exactly. + Refusing it would make a model with an inch mark permanently un-exportable. + """ + if text[:1] in ('"', "'") or text[-1:] in ('"', "'"): + return "starts or ends with a quote character, which the reader strips" + if ";" in text or "\n" in text: + if '"' in text: + return "needs quoting but contains a double quote" + if ";" in text and "\n" in text: + return "contains both a newline and a semicolon" + return None + + +def _quote_if_needed(value, key): + text = str(value) + reason = _unrepresentable(text) + if reason is not None: + raise ValueError( + f"Cannot export attribute {key!r}: its value {reason}. " + f"Writing it would silently corrupt the model on reload." + ) + if ";" in text or "\n" in text: + return '"' + text + '"' + return text + + +def _attributes(attributes, depth): + pad = _INDENT * depth + return "".join( + f"{pad}{key} {_quote_if_needed(value, key)};\n" + for key, value in attributes.items() + ) + + +def _named_block(keyword, entry): + name = entry["name"] + attributes = entry.get("attributes") or {} + if not attributes: + return f"{keyword} {name};\n\n" + return f"{keyword} {name} {{\n{_attributes(attributes, 1)}}};\n\n" + + +def _class(entry): + """Classes carry an ordered `properties` list, not an `attributes` dict.""" + name = entry["name"] + properties = entry.get("properties") or [] + if not properties: + return f"class {name};\n\n" + body = "".join( + f"{_INDENT}{p['type']} {_quote_if_needed(p['name'], name)};\n" + for p in properties + ) + return f"class {name} {{\n{body}}};\n\n" + + +def _object(obj, depth): + pad = _INDENT * depth + body = _attributes(obj.get("attributes") or {}, depth + 1) + for child in obj.get("children") or []: + body += _object(child, depth + 1) + # Blank line only between top-level objects; nested ones stay tight. + tail = "\n" if depth == 0 else "" + return f"{pad}object {obj['name']} {{\n{body}{pad}}};\n{tail}" + + +def _schedule(schedule): + name = schedule["name"] + body = "".join( + f"{_INDENT}{_quote_if_needed(value, name)};\n" + for value in schedule.get("values") or [] + ) + for group in schedule.get("children") or []: + body += f"{_INDENT}{{\n" + body += "".join( + f"{_INDENT * 2}{_quote_if_needed(value, name)};\n" for value in group + ) + body += f"{_INDENT}}}\n" + return f"schedule {name} {{\n{body}}};\n\n" + + +def dumps(data): + """Render an AST dict as GLM text. + + Every section is optional: the frontend posts back whatever it holds, which + may omit sections the model never had. + """ + out = [] + + clock = data.get("clock") or {} + if clock: + out.append(f"clock {{\n{_attributes(clock, 1)}}};\n\n") + + directives = data.get("directives") or [] + if directives: + out.extend(f"#set {d['name']}={d['value']}\n" for d in directives) + out.append("\n") + + definitions = data.get("definitions") or [] + if definitions: + out.extend(f"#define {d['name']}={d['value']}\n" for d in definitions) + out.append("\n") + + includes = data.get("includes") or [] + if includes: + out.extend(f'#include "{inc["value"]}";\n' for inc in includes) + out.append("\n") + + for schedule in data.get("schedules") or []: + out.append(_schedule(schedule)) + + for module in data.get("modules") or []: + out.append(_named_block("module", module)) + + for klass in data.get("classes") or []: + out.append(_class(klass)) + + for obj in data.get("objects") or []: + out.append(_object(obj, 0)) + + return "".join(out) diff --git a/local-server/pyproject.toml b/local-server/pyproject.toml index a23f6b61..5f93e5c4 100644 --- a/local-server/pyproject.toml +++ b/local-server/pyproject.toml @@ -1,20 +1,27 @@ [project] name = "local-server" -version = "0.1.0" -description = "Add your description here" +version = "0.8.3" +description = "Back end server for GLIMPSE for GLM, CIM, JSON parsing and other functionalities through API or Websocket events" readme = "README.md" requires-python = ">=3.12" dependencies = [ - "cim-graph>=0.4.3a10", + "cim-graph", "flask>=3.1.2", "flask-cors>=6.0.2", "flask-socketio>=5.6.0", "gevent>=25.9.1", "gevent-websocket>=0.10.1", - "gridappsd-python>=2026.2.1", + "gridappsd-python", "jsonschema>=4.26.0", - "pyinstaller>=6.18.0", + "pyinstaller", "requests>=2.28.2", "setuptools>=80.9.0", "wheel>=0.45.1", ] + +[dependency-groups] +dev = ["pytest>=8.0"] + +[tool.pytest.ini_options] +pythonpath = ["."] +testpaths = ["tests"] diff --git a/local-server/requirements.txt b/local-server/requirements.txt index c8474d49..7acd5425 100755 --- a/local-server/requirements.txt +++ b/local-server/requirements.txt @@ -6,7 +6,7 @@ gevent-websocket requests wheel setuptools -cim-graph>=0.4.3a10 -gridappsd-python>=2026.2.1 +cim-graph +gridappsd-python jsonschema -pyinstaller>=6.18.0 \ No newline at end of file +pyinstaller \ No newline at end of file diff --git a/local-server/tests/golden/123__IEEE_123_Diesels.json b/local-server/tests/golden/123__IEEE_123_Diesels.json new file mode 100644 index 00000000..30f1666a --- /dev/null +++ b/local-server/tests/golden/123__IEEE_123_Diesels.json @@ -0,0 +1,314 @@ +{ + "classes": [], + "clock": {}, + "definitions": [], + "directives": [], + "includes": [], + "modules": [], + "objects": [ + { + "attributes": { + "Exciter_type": "SEXS", + "GGOV1_Acceleration_Limit_enable": "false", + "GGOV1_Dm": "0.0", + "GGOV1_Fuel_lag": "1", + "GGOV1_Ka": "10.0", + "GGOV1_Kdgov": "0.0", + "GGOV1_Kigov": "6.5", + "GGOV1_Kiload": "0.67", + "GGOV1_Kimw": "0.0", + "GGOV1_Kpgov": "2.5", + "GGOV1_Kpload": "2.0", + "GGOV1_Kturb": "1.5", + "GGOV1_Ldref": "1.0", + "GGOV1_Load_Limit_enable": "false", + "GGOV1_PID_enable": "true", + "GGOV1_Pmwset": "3.0", + "GGOV1_R": "0.03", + "GGOV1_Rselect": "0", + "GGOV1_Ta": "0.1", + "GGOV1_Tact": "0.05", + "GGOV1_Tb": "0.01", + "GGOV1_Tc": "0.2", + "GGOV1_Tdgov": "1.0", + "GGOV1_Teng": "0.0", + "GGOV1_Tfload": "3.0", + "GGOV1_Tpelec": "1.0", + "GGOV1_Tsa": "4.0", + "GGOV1_Tsb": "5.0", + "GGOV1_aset": "0.01", + "GGOV1_db": "0.0", + "GGOV1_maxerr": "0.05", + "GGOV1_minerr": "-0.05", + "GGOV1_rclose": "-050", + "GGOV1_ropen": "050", + "GGOV1_vmax": "1.0", + "GGOV1_vmin": "0.15", + "GGOV1_wfnl": "0.2", + "Gen_type": "DYN_SYNCHRONOUS", + "Governor_type": "GGOV1", + "KA": "50", + "Ra": ".006543", + "Rated_V": "4156", + "Rated_VA": "10000000", + "TA": "0.01", + "TB": "0.02", + "TC": "0.08", + "Ta": "0.05", + "Tdop": "1.748986", + "Tdopp": "0.017013", + "Tqop": "0.448458", + "Tqopp": "0.016817", + "Vset": "1.0", + "Xd": "1.77", + "Xdp": "0.128", + "Xdpp": "0.107", + "Xl": "0.066", + "Xq": "1.052", + "Xqp": "0.2232003883", + "Xqpp": "0.189", + "damping": "0.0", + "flags": "DELTAMODE", + "inertia": "0.553286", + "name": "Gen1", + "overload_limit": "1.00", + "parent": "node_150", + "power_out_A": "30000+3000j", + "power_out_B": "30000+3000j", + "power_out_C": "30000+3000j", + "rotor_speed_convergence": "${rotor_convergence}" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Exciter_type": "SEXS", + "GGOV1_Acceleration_Limit_enable": "false", + "GGOV1_Dm": "0.0", + "GGOV1_Fuel_lag": "1", + "GGOV1_Ka": "10.0", + "GGOV1_Kdgov": "0.0", + "GGOV1_Kigov": "6.5", + "GGOV1_Kiload": "0.67", + "GGOV1_Kimw": "0.0", + "GGOV1_Kpgov": "2.5", + "GGOV1_Kpload": "2.0", + "GGOV1_Kturb": "1.5", + "GGOV1_Ldref": "1.0", + "GGOV1_Load_Limit_enable": "false", + "GGOV1_PID_enable": "true", + "GGOV1_Pmwset": "3.0", + "GGOV1_R": "0.03", + "GGOV1_Rselect": "1", + "GGOV1_Ta": "0.1", + "GGOV1_Tact": "0.05", + "GGOV1_Tb": "0.01", + "GGOV1_Tc": "0.2", + "GGOV1_Tdgov": "1.0", + "GGOV1_Teng": "0.0", + "GGOV1_Tfload": "3.0", + "GGOV1_Tpelec": "1.0", + "GGOV1_Tsa": "4.0", + "GGOV1_Tsb": "5.0", + "GGOV1_aset": "0.01", + "GGOV1_db": "0.0", + "GGOV1_maxerr": "0.05", + "GGOV1_minerr": "-0.05", + "GGOV1_rclose": "-050", + "GGOV1_ropen": "050", + "GGOV1_vmax": "1.0", + "GGOV1_vmin": "0.15", + "GGOV1_wfnl": "0.2", + "Gen_type": "DYN_SYNCHRONOUS", + "Governor_type": "GGOV1", + "KA": "50", + "Ra": ".006543", + "Rated_V": "4156", + "Rated_VA": "1000000", + "SEXS_Q_V_droop": "0.05", + "SEXS_mode": "Q_V_DROOP", + "TA": "0.01", + "TB": "0.02", + "TC": "0.08", + "Ta": "0.05", + "Tdop": "1.748986", + "Tdopp": "0.017013", + "Tqop": "0.448458", + "Tqopp": "0.016817", + "Vset": "1.0", + "Xd": "1.77", + "Xdp": "0.128", + "Xdpp": "0.107", + "Xl": "0.066", + "Xq": "1.052", + "Xqp": "0.2232003883", + "Xqpp": "0.189", + "damping": "0.0", + "flags": "DELTAMODE", + "inertia": "0.553286", + "name": "Gen2", + "overload_limit": "1.00", + "parent": "load_50", + "power_out_A": "25000+8333j", + "power_out_B": "25000+8333j", + "power_out_C": "25000+8333j", + "rotor_speed_convergence": "${rotor_convergence}" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Exciter_type": "SEXS", + "GGOV1_Acceleration_Limit_enable": "false", + "GGOV1_Dm": "0.0", + "GGOV1_Fuel_lag": "1", + "GGOV1_Ka": "10.0", + "GGOV1_Kdgov": "0.0", + "GGOV1_Kigov": "6.5", + "GGOV1_Kiload": "0.67", + "GGOV1_Kimw": "0.0", + "GGOV1_Kpgov": "2.5", + "GGOV1_Kpload": "2.0", + "GGOV1_Kturb": "1.5", + "GGOV1_Ldref": "1.0", + "GGOV1_Load_Limit_enable": "false", + "GGOV1_PID_enable": "true", + "GGOV1_Pmwset": "3.0", + "GGOV1_R": "0.03", + "GGOV1_Rselect": "1", + "GGOV1_Ta": "0.1", + "GGOV1_Tact": "0.05", + "GGOV1_Tb": "0.01", + "GGOV1_Tc": "0.0", + "GGOV1_Tdgov": "1.0", + "GGOV1_Teng": "0.0", + "GGOV1_Tfload": "3.0", + "GGOV1_Tpelec": "1.0", + "GGOV1_Tsa": "4.0", + "GGOV1_Tsb": "5.0", + "GGOV1_aset": "0.01", + "GGOV1_db": "0.0", + "GGOV1_maxerr": "0.05", + "GGOV1_minerr": "-0.05", + "GGOV1_rclose": "-050", + "GGOV1_ropen": "050", + "GGOV1_vmax": "1.0", + "GGOV1_vmin": "0.15", + "GGOV1_wfnl": "0.2", + "Gen_type": "DYN_SYNCHRONOUS", + "Governor_type": "GGOV1", + "KA": "45", + "P_f_droop_setting_mode": "PSET_MODE", + "Ra": ".006543", + "Rated_V": "4156", + "Rated_VA": "450000", + "SEXS_Q_V_droop": "0.05", + "SEXS_mode": "Q_V_DROOP", + "TA": "0.01", + "TB": "0.03", + "TC": "0.07", + "Ta": "0.06", + "Tdop": "1.748986", + "Tdopp": "0.017013", + "Tqop": "0.448458", + "Tqopp": "0.016817", + "Vset": "1.0", + "Xd": "1.67", + "Xdp": "0.148", + "Xdpp": "0.107", + "Xl": "0.016", + "Xq": "1.082", + "Xqp": "0.2432003883", + "Xqpp": "0.189", + "damping": "0", + "flags": "DELTAMODE", + "inertia": "0.553286", + "name": "Gen3", + "overload_limit": "1.00", + "parent": "load_100", + "power_out_A": "50000+16667j", + "power_out_B": "50000+16667j", + "power_out_C": "50000+16667j", + "rotor_speed_convergence": "${rotor_convergence}" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "GGOV1_Dm": "0.0", + "GGOV1_Fuel_lag": "1", + "GGOV1_Ka": "10.0", + "GGOV1_Kdgov": "0.0", + "GGOV1_Kigov": "6.0", + "GGOV1_Kiload": "0.67", + "GGOV1_Kimw": "0.0", + "GGOV1_Kpgov": "2.5", + "GGOV1_Kpload": "2.0", + "GGOV1_Kturb": "1.5", + "GGOV1_Ldref": "1.0", + "GGOV1_Pmwset": "3.0", + "GGOV1_R": "0.03", + "GGOV1_Rselect": "1", + "GGOV1_Ta": "0.1", + "GGOV1_Tact": "0.05", + "GGOV1_Tb": "0.01", + "GGOV1_Tc": "0.0", + "GGOV1_Tdgov": "1.0", + "GGOV1_Teng": "0.0", + "GGOV1_Tfload": "3.0", + "GGOV1_Tpelec": "1.0", + "GGOV1_Tsa": "4.0", + "GGOV1_Tsb": "5.0", + "GGOV1_aset": "0.01", + "GGOV1_db": "0.0", + "GGOV1_maxerr": "0.05", + "GGOV1_minerr": "-0.05", + "GGOV1_rclose": "-050", + "GGOV1_ropen": "050", + "GGOV1_vmax": "1.0", + "GGOV1_vmin": "0.15", + "GGOV1_wfnl": "0.2", + "Gen_type": "DYN_SYNCHRONOUS", + "Governor_type": "GGOV1", + "KA": "45", + "Ra": ".006743", + "Rated_V": "4156", + "Rated_VA": "600000", + "SEXS_Q_V_droop": "0.05", + "SEXS_mode": "Q_V_DROOP", + "TA": "0.01", + "TB": "0.03", + "TC": "0.07", + "Ta": "0.062", + "Tdop": "1.648986", + "Tdopp": "0.013013", + "Tqop": "0.448458", + "Tqopp": "0.018817", + "Vset": "1.0", + "Xd": "1.69", + "Xdp": "0.143", + "Xdpp": "0.117", + "Xl": "0.074", + "Xq": "1.084", + "Xqp": "0.2232003883", + "Xqpp": "0.159", + "damping": "0.0", + "flags": "DELTAMODE", + "inertia": "0.553286", + "name": "Gen4", + "overload_limit": "1.00", + "parent": "node_300", + "power_out_A": "50000+16667j", + "power_out_B": "50000+16667j", + "power_out_C": "50000+16667j", + "rotor_speed_convergence": "${rotor_convergence}" + }, + "children": [], + "name": "diesel_dg" + } + ], + "schedules": [] +} \ No newline at end of file diff --git a/local-server/tests/golden/123__IEEE_123_Dynamic.json b/local-server/tests/golden/123__IEEE_123_Dynamic.json new file mode 100644 index 00000000..1e34c591 --- /dev/null +++ b/local-server/tests/golden/123__IEEE_123_Dynamic.json @@ -0,0 +1,3936 @@ +{ + "classes": [], + "clock": { + "starttime": "2001-08-01 12:00:00 PST", + "stoptime": "2001-08-01 12:03:00 PST", + "timezone": "PST+8PDT" + }, + "definitions": [ + { + "name": "rotor_convergence", + "value": "0.00000000000001" + } + ], + "directives": [ + { + "name": "suppress_repeat_messages", + "value": "1" + }, + { + "name": "relax_naming_rules", + "value": "1" + }, + { + "name": "profiler", + "value": "1" + }, + { + "name": "pauseatexit", + "value": "1" + }, + { + "name": "double_format", + "value": "%+.12lg" + }, + { + "name": "complex_format", + "value": "%+.12lg%+.12lg%c" + }, + { + "name": "complex_output_format", + "value": "POLAR_DEG" + }, + { + "name": "deltamode_timestep", + "value": "100000000" + }, + { + "name": "deltamode_maximumtime", + "value": "180000000000" + }, + { + "name": "deltamode_iteration_limit", + "value": "10" + }, + { + "name": "maximum_synctime", + "value": "6400" + } + ], + "includes": [ + { + "value": "IEEE_123_Diesels.glm" + }, + { + "value": "IEEE_123_Inverters_Mixed.glm" + }, + { + "value": "IEEE_123_Recorders.glm" + } + ], + "modules": [ + { + "attributes": {}, + "name": "tape" + }, + { + "attributes": { + "enable_subsecond_models": "true", + "maximum_event_length": "1800000", + "report_event_log": "false" + }, + "name": "reliability" + }, + { + "attributes": { + "all_powerflow_delta": "true", + "deltamode_timestep": "1 ms", + "enable_subsecond_models": "true", + "line_capacitance": "true", + "lu_solver": "KLU", + "solver_method": "NR" + }, + "name": "powerflow" + }, + { + "attributes": {}, + "name": "connection" + }, + { + "attributes": { + "deltamode_timestep": "1 ms", + "enable_subsecond_models": "true" + }, + "name": "generators" + }, + { + "attributes": {}, + "name": "climate" + } + ], + "objects": [ + { + "attributes": { + "configure": "config/gridlabd_config.json", + "message_type": "JSON", + "name": "GLD", + "publish_period": "1" + }, + "children": [], + "name": "helics_msg" + }, + { + "attributes": { + "interpolate": "NONE", + "name": "WA-Yakima", + "tmyfile": "WA-Yakima.tmy2" + }, + "children": [], + "name": "climate" + }, + { + "attributes": { + "check_mode": "ONCHANGE", + "eventgen_object": "testgendev0", + "grid_association": "true", + "name": "base_fault_check_object", + "strictly_radial": "false" + }, + "children": [], + "name": "fault_check" + }, + { + "attributes": { + "fault_type": "SW-ABC", + "flags": "DELTAMODE", + "manual_outages": "microgrid_switch0,2001-08-01 12:10:1.001 PST,2001-08-01 13:00:20.001 PST", + "name": "testgendev0" + }, + "children": [], + "name": "eventgen" + }, + { + "attributes": { + "fault_type": "SW-ABC", + "flags": "DELTAMODE", + "manual_outages": "microgrid_switch1,2001-08-01 12:10:1.001 PST,2001-08-01 13:00:5.001 PST", + "name": "testgendev1" + }, + "children": [], + "name": "eventgen" + }, + { + "attributes": { + "fault_type": "SW-ABC", + "flags": "DELTAMODE", + "manual_outages": "microgrid_switch2,2001-08-01 12:10:1.001 PST,2001-08-01 13:00:20.001 PST", + "name": "testgendev2" + }, + "children": [], + "name": "eventgen" + }, + { + "attributes": { + "fault_type": "SW-ABC", + "flags": "DELTAMODE", + "manual_outages": "microgrid_switch3,2001-08-01 12:10:1.001 PST,2001-08-01 13:00:20.001 PST", + "name": "testgendev3" + }, + "children": [], + "name": "eventgen" + }, + { + "attributes": { + "diameter": "0.721", + "geometric_mean_radius": "0.0244", + "name": "overhead_line_conductor_1", + "resistance": "0.306" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.398", + "geometric_mean_radius": "0.00446", + "name": "overhead_line_conductor_2", + "resistance": "1.12" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.563", + "geometric_mean_radius": "0.00814", + "name": "overhead_line_conductor_3", + "resistance": "0.592" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "conductor_diameter": "0.368", + "conductor_gmr": "0.0111", + "conductor_resistance": "0.97", + "name": "underground_line_conductor_1", + "neutral_diameter": "0.0640837", + "neutral_gmr": "0.00208", + "neutral_resistance": "14.8722", + "neutral_strands": "16.0", + "outer_diameter": "1.06" + }, + "children": [], + "name": "underground_line_conductor" + }, + { + "attributes": { + "distance_AB": "2.5", + "distance_AC": "7.0", + "distance_AE": "28.0", + "distance_AN": "5.656854", + "distance_BC": "4.5", + "distance_BE": "28.0", + "distance_BN": "4.272002", + "distance_CE": "28.0", + "distance_CN": "5.0", + "distance_NE": "24.0", + "name": "line_spacing_1" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "4.5", + "distance_AC": "2.5", + "distance_AE": "28.0", + "distance_AN": "4.27200187266", + "distance_BC": "7.0", + "distance_BE": "28.0", + "distance_BN": "5.0", + "distance_CE": "28.0", + "distance_CN": "5.65685424949", + "distance_NE": "24.0", + "name": "line_spacing_2" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "7.0", + "distance_AC": "4.5", + "distance_AE": "28.0", + "distance_AN": "5.0", + "distance_BC": "2.5", + "distance_BE": "28.0", + "distance_BN": "5.65685424949", + "distance_CE": "28.0", + "distance_CN": "4.27200187266", + "distance_NE": "24.0", + "name": "line_spacing_3" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "4.5", + "distance_AC": "7.0", + "distance_AE": "28.0", + "distance_AN": "5.0", + "distance_BC": "2.5", + "distance_BE": "28.0", + "distance_BN": "4.27200187266", + "distance_CE": "28.0", + "distance_CN": "5.65685424949", + "distance_NE": "24.0", + "name": "line_spacing_4" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "2.5", + "distance_AC": "4.5", + "distance_AE": "28.0", + "distance_AN": "4.27200187266", + "distance_BC": "7.0", + "distance_BE": "28.0", + "distance_BN": "5.65685424949", + "distance_CE": "28.0", + "distance_CN": "5.0", + "distance_NE": "24.0", + "name": "line_spacing_5" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "2.5", + "distance_AC": "7.0", + "distance_AE": "28.0", + "distance_AN": "5.65685424949", + "distance_BC": "4.5", + "distance_BE": "28.0", + "distance_BN": "4.27200187266", + "distance_CE": "28.0", + "distance_CN": "5.0", + "distance_NE": "24.0", + "name": "line_spacing_6" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AC": "7.0", + "distance_AE": "28.0", + "distance_AN": "5.65685424949", + "distance_CE": "28.0", + "distance_CN": "5.0", + "distance_NE": "24.0", + "name": "line_spacing_7" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "7.0", + "distance_AE": "28.0", + "distance_AN": "5.65685424949", + "distance_BE": "28.0", + "distance_BN": "5.0", + "distance_NE": "24.0", + "name": "line_spacing_8" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "28.0", + "distance_AN": "5.024937811", + "distance_NE": "24.0", + "name": "line_spacing_9" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "28.0", + "distance_BN": "5.024937811", + "distance_NE": "24.0", + "name": "line_spacing_10" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "28.0", + "distance_CN": "5.024937811", + "distance_NE": "24.0", + "name": "line_spacing_11" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "0.5", + "distance_AC": "1.0", + "distance_BC": "0.5", + "name": "line_spacing_12" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "conductor_A": "overhead_line_conductor_1", + "conductor_B": "overhead_line_conductor_1", + "conductor_C": "overhead_line_conductor_1", + "conductor_N": "overhead_line_conductor_3", + "name": "line_configuration_1", + "spacing": "line_spacing_1" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "overhead_line_conductor_1", + "conductor_B": "overhead_line_conductor_1", + "conductor_C": "overhead_line_conductor_1", + "conductor_N": "overhead_line_conductor_3", + "name": "line_configuration_2", + "spacing": "line_spacing_2" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "overhead_line_conductor_1", + "conductor_B": "overhead_line_conductor_1", + "conductor_C": "overhead_line_conductor_1", + "conductor_N": "overhead_line_conductor_3", + "name": "line_configuration_3", + "spacing": "line_spacing_3" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "overhead_line_conductor_1", + "conductor_B": "overhead_line_conductor_1", + "conductor_C": "overhead_line_conductor_1", + "conductor_N": "overhead_line_conductor_3", + "name": "line_configuration_4", + "spacing": "line_spacing_4" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "overhead_line_conductor_1", + "conductor_B": "overhead_line_conductor_1", + "conductor_C": "overhead_line_conductor_1", + "conductor_N": "overhead_line_conductor_3", + "name": "line_configuration_5", + "spacing": "line_spacing_5" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "overhead_line_conductor_1", + "conductor_B": "overhead_line_conductor_1", + "conductor_C": "overhead_line_conductor_1", + "conductor_N": "overhead_line_conductor_3", + "name": "line_configuration_6", + "spacing": "line_spacing_6" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "overhead_line_conductor_1", + "conductor_C": "overhead_line_conductor_1", + "conductor_N": "overhead_line_conductor_3", + "name": "line_configuration_7", + "spacing": "line_spacing_7" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "overhead_line_conductor_1", + "conductor_B": "overhead_line_conductor_1", + "conductor_N": "overhead_line_conductor_3", + "name": "line_configuration_8", + "spacing": "line_spacing_8" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "overhead_line_conductor_2", + "conductor_N": "overhead_line_conductor_2", + "name": "line_configuration_9", + "spacing": "line_spacing_9" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "overhead_line_conductor_1", + "conductor_N": "overhead_line_conductor_1", + "name": "line_configuration_10", + "spacing": "line_spacing_10" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "overhead_line_conductor_1", + "conductor_N": "overhead_line_conductor_1", + "name": "line_configuration_11", + "spacing": "line_spacing_11" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "underground_line_conductor_1", + "conductor_B": "underground_line_conductor_1", + "conductor_C": "underground_line_conductor_1", + "name": "line_configuration_12", + "spacing": "line_spacing_12" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "configuration": "line_configuration_10", + "from": "load_1", + "length": "175", + "name": "OH_line_1-2", + "phases": "BN", + "to": "load_2" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_11", + "from": "load_1", + "length": "250", + "name": "OH_line_1-3", + "phases": "CN", + "to": "node_3" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_1", + "from": "load_1", + "length": "300", + "name": "OH_line_1-7", + "phases": "ABCN", + "to": "load_7" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_11", + "from": "node_3", + "length": "200", + "name": "OH_line_3-4", + "phases": "CN", + "to": "load_4" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_11", + "from": "node_3", + "length": "325", + "name": "OH_line_3-5", + "phases": "CN", + "to": "load_5" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_11", + "from": "load_5", + "length": "250", + "name": "OH_line_5-6", + "phases": "CN", + "to": "load_6" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_1", + "from": "load_7", + "length": "200", + "name": "OH_line_7-8", + "phases": "ABCN", + "to": "node_8" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_10", + "from": "node_8", + "length": "225", + "name": "OH_line_8-12", + "phases": "BN", + "to": "load_12" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_9", + "from": "node_8", + "length": "225", + "name": "OH_line_8-9", + "phases": "AN", + "to": "load_9" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_1", + "from": "node_8", + "length": "300", + "name": "OH_line_8-13", + "phases": "ABCN", + "to": "node_13" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_11", + "from": "node_13", + "length": "150", + "name": "OH_line_13-34", + "phases": "CN", + "to": "load_34" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_2", + "from": "node_13", + "length": "825", + "name": "OH_line_13-18", + "phases": "ABCN", + "to": "node_18" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_9", + "from": "node_14", + "length": "250", + "name": "OH_line_14-11", + "phases": "AN", + "to": "load_11" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_9", + "from": "node_14", + "length": "250", + "name": "OH_line_14-10", + "phases": "AN", + "to": "load_10" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_11", + "from": "node_15", + "length": "375", + "name": "OH_line_15-16", + "phases": "CN", + "to": "load_16" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_11", + "from": "node_15", + "length": "350", + "name": "OH_line_15-17", + "phases": "CN", + "to": "load_17" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_9", + "from": "node_18", + "length": "250", + "name": "OH_line_18-19", + "phases": "AN", + "to": "load_19" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_2", + "from": "node_18", + "length": "300", + "name": "OH_line_18-21", + "phases": "ABCN", + "to": "node_21" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_9", + "from": "load_19", + "length": "325", + "name": "OH_line_19-20", + "phases": "AN", + "to": "load_20" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_10", + "from": "node_21", + "length": "525", + "name": "OH_line_21-22", + "phases": "BN", + "to": "load_22" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_2", + "from": "node_21", + "length": "250", + "name": "OH_line_21-23", + "phases": "ABCN", + "to": "node_23" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_11", + "from": "node_23", + "length": "550", + "name": "OH_line_23-24", + "phases": "CN", + "to": "load_24" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_2", + "from": "node_23", + "length": "275", + "name": "OH_line_23-25", + "phases": "ABCN", + "to": "node_25" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_2", + "from": "node_25", + "length": "200", + "name": "OH_line_25-28", + "phases": "ABCN", + "to": "load_28" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_7", + "from": "node_26", + "length": "275", + "name": "OH_line_26-27", + "phases": "ACN", + "to": "node_27" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_11", + "from": "node_26", + "length": "225", + "name": "OH_line_26-31", + "phases": "CN", + "to": "load_31" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_7", + "from": "node_26", + "length": "350", + "name": "OH_line_26-2601", + "phases": "ACN", + "to": "node_2501" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_9", + "from": "node_27", + "length": "500", + "name": "OH_line_27-33", + "phases": "AN", + "to": "load_33" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_2", + "from": "load_28", + "length": "300", + "name": "OH_line_28-29", + "phases": "ABCN", + "to": "load_29" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_2", + "from": "load_29", + "length": "350", + "name": "OH_line_29-30", + "phases": "ABCN", + "to": "load_30" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_2", + "from": "load_30", + "length": "200", + "name": "OH_line_30-250", + "phases": "ABCN", + "to": "node_250" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_11", + "from": "load_31", + "length": "300", + "name": "OH_line_31-32", + "phases": "CN", + "to": "load_32" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_11", + "from": "load_34", + "length": "100", + "name": "OH_line_34-15", + "phases": "CN", + "to": "node_15" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_8", + "from": "load_35", + "length": "650", + "name": "OH_line_35-36", + "phases": "ABN", + "to": "node_36" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_1", + "from": "load_35", + "length": "250", + "name": "OH_line_35-40", + "phases": "ABCN", + "to": "node_40" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_9", + "from": "node_36", + "length": "300", + "name": "OH_line_36-37", + "phases": "AN", + "to": "load_37" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_10", + "from": "node_36", + "length": "250", + "name": "OH_line_36-38", + "phases": "BN", + "to": "load_38" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_10", + "from": "load_38", + "length": "325", + "name": "OH_line_38-39", + "phases": "BN", + "to": "load_39" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_11", + "from": "node_40", + "length": "325", + "name": "OH_line_40-41", + "phases": "CN", + "to": "load_41" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_1", + "from": "node_40", + "length": "250", + "name": "OH_line_40-42", + "phases": "ABCN", + "to": "load_42" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_10", + "from": "load_42", + "length": "500", + "name": "OH_line_42-43", + "phases": "BN", + "to": "load_43" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_1", + "from": "load_42", + "length": "200", + "name": "OH_line_42-44", + "phases": "ABCN", + "to": "node_44" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_9", + "from": "node_44", + "length": "200", + "name": "OH_line_44-45", + "phases": "AN", + "to": "load_45" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_1", + "from": "node_44", + "length": "250", + "name": "OH_line_44-47", + "phases": "ABCN", + "to": "load_47" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_9", + "from": "load_45", + "length": "300", + "name": "OH_line_45-46", + "phases": "AN", + "to": "load_46" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_4", + "from": "load_47", + "length": "150", + "name": "OH_line_47-48", + "phases": "ABCN", + "to": "load_48" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_4", + "from": "load_47", + "length": "250", + "name": "OH_line_47-49", + "phases": "ABCN", + "to": "load_49" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_4", + "from": "load_49", + "length": "250", + "name": "OH_line_49-50", + "phases": "ABCN", + "to": "load_50" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_4", + "from": "load_50", + "length": "250", + "name": "OH_line_50-51", + "phases": "ABCN", + "to": "load_51" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_4", + "from": "load_51", + "length": "700", + "name": "OH_line_51-151", + "phases": "ABCN", + "to": "node_151" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_1", + "from": "load_52", + "length": "200", + "name": "OH_line_52-53", + "phases": "ABCN", + "to": "load_53" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_1", + "from": "load_53", + "length": "125", + "name": "OH_line_53-54", + "phases": "ABCN", + "to": "node_54" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_1", + "from": "node_54", + "length": "275", + "name": "OH_line_54-55", + "phases": "ABCN", + "to": "load_55" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_3", + "from": "node_54", + "length": "350", + "name": "OH_line_54-57", + "phases": "ABCN", + "to": "node_57" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_1", + "from": "load_55", + "length": "275", + "name": "OH_line_55-56", + "phases": "ABCN", + "to": "load_56" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_10", + "from": "node_57", + "length": "250", + "name": "OH_line_57-58", + "phases": "BN", + "to": "load_58" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_3", + "from": "node_57", + "length": "750", + "name": "OH_line_57-60", + "phases": "ABCN", + "to": "load_60" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_10", + "from": "load_58", + "length": "250", + "name": "OH_line_58-59", + "phases": "BN", + "to": "load_59" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_5", + "from": "load_60", + "length": "550", + "name": "OH_line_60-61", + "phases": "ABCN", + "to": "node_61" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_12", + "from": "load_60", + "length": "250", + "name": "OH_line_60-62", + "phases": "ABC", + "to": "load_62" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "line_configuration_12", + "from": "load_62", + "length": "175", + "name": "OH_line_62-63", + "phases": "ABC", + "to": "load_63" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "line_configuration_12", + "from": "load_63", + "length": "350", + "name": "OH_line_63-64", + "phases": "ABC", + "to": "load_64" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "line_configuration_12", + "from": "load_64", + "length": "425", + "name": "OH_line_64-65", + "phases": "ABC", + "to": "load_65" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "line_configuration_12", + "from": "load_65", + "length": "325", + "name": "OH_line_65-66", + "phases": "ABC", + "to": "load_66" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "line_configuration_9", + "from": "node_67", + "length": "200", + "name": "OH_line_67-68", + "phases": "AN", + "to": "load_68" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_3", + "from": "node_67", + "length": "275", + "name": "OH_line_67-72", + "phases": "ABCN", + "to": "node_72" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_3", + "from": "node_67", + "length": "250", + "name": "OH_line_67-97", + "phases": "ABCN", + "to": "node_97" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_9", + "from": "load_68", + "length": "275", + "name": "OH_line_68-69", + "phases": "AN", + "to": "load_69" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_9", + "from": "load_69", + "length": "325", + "name": "OH_line_69-70", + "phases": "AN", + "to": "load_70" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_9", + "from": "load_70", + "length": "275", + "name": "OH_line_70-71", + "phases": "AN", + "to": "load_71" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_11", + "from": "node_72", + "length": "275", + "name": "OH_line_72-73", + "phases": "CN", + "to": "load_73" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_3", + "from": "node_72", + "length": "200", + "name": "OH_line_72-76", + "phases": "ABCN", + "to": "load_76" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_11", + "from": "load_73", + "length": "350", + "name": "OH_line_73-74", + "phases": "CN", + "to": "load_74" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_11", + "from": "load_74", + "length": "400", + "name": "OH_line_74-75", + "phases": "CN", + "to": "load_75" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_6", + "from": "load_76", + "length": "400", + "name": "OH_line_76-77", + "phases": "ABCN", + "to": "load_77" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_6", + "from": "load_77", + "length": "100", + "name": "OH_line_77-78", + "phases": "ABCN", + "to": "node_78" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_6", + "from": "node_78", + "length": "225", + "name": "OH_line_78-79", + "phases": "ABCN", + "to": "load_79" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_6", + "from": "node_78", + "length": "475", + "name": "OH_line_78-80", + "phases": "ABCN", + "to": "load_80" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_6", + "from": "load_80", + "length": "475", + "name": "OH_line_80-81", + "phases": "ABCN", + "to": "node_81" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_6", + "from": "node_81", + "length": "250", + "name": "OH_line_81-82", + "phases": "CN", + "to": "load_82" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_11", + "from": "node_81", + "length": "675", + "name": "OH_line_81-84", + "phases": "CN", + "to": "load_84" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_6", + "from": "load_82", + "length": "250", + "name": "OH_line_82-83", + "phases": "CN", + "to": "load_83" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_11", + "from": "load_84", + "length": "475", + "name": "OH_line_84-85", + "phases": "CN", + "to": "load_85" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_6", + "from": "load_86", + "length": "450", + "name": "OH_line_86-87", + "phases": "ABCN", + "to": "load_87" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_9", + "from": "load_87", + "length": "175", + "name": "OH_line_87-88", + "phases": "AN", + "to": "load_88" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_6", + "from": "load_87", + "length": "275", + "name": "OH_line_87-89", + "phases": "ABCN", + "to": "node_89" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_10", + "from": "node_89", + "length": "225", + "name": "OH_line_89-90", + "phases": "BN", + "to": "load_90" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_6", + "from": "node_89", + "length": "225", + "name": "OH_line_89-91", + "phases": "ABCN", + "to": "node_91" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_11", + "from": "node_91", + "length": "300", + "name": "OH_line_91-92", + "phases": "CN", + "to": "load_92" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_6", + "from": "node_91", + "length": "225", + "name": "OH_line_91-93", + "phases": "ABCN", + "to": "node_93" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_9", + "from": "node_93", + "length": "275", + "name": "OH_line_93-94", + "phases": "AN", + "to": "load_94" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_6", + "from": "node_93", + "length": "300", + "name": "OH_line_93-95", + "phases": "ABCN", + "to": "load_95" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_10", + "from": "load_95", + "length": "200", + "name": "OH_line_95-96", + "phases": "BN", + "to": "load_96" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_3", + "from": "node_97", + "length": "275", + "name": "OH_line_97-98", + "phases": "ABCN", + "to": "load_98" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_3", + "from": "load_98", + "length": "550", + "name": "OH_line_98-99", + "phases": "ABCN", + "to": "load_99" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_3", + "from": "load_99", + "length": "300", + "name": "OH_line_99-100", + "phases": "ABCN", + "to": "load_100" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_3", + "from": "load_100", + "length": "800", + "name": "OH_line_100-450", + "phases": "ABCN", + "to": "node_450" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_11", + "from": "node_101", + "length": "225", + "name": "OH_line_101-102", + "phases": "CN", + "to": "load_102" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_3", + "from": "node_101", + "length": "275", + "name": "OH_line_101-105", + "phases": "ABCN", + "to": "node_105" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_11", + "from": "load_102", + "length": "325", + "name": "OH_line_102-103", + "phases": "CN", + "to": "load_103" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_11", + "from": "load_103", + "length": "700", + "name": "OH_line_103-104", + "phases": "CN", + "to": "load_104" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_10", + "from": "node_105", + "length": "225", + "name": "OH_line_105-106", + "phases": "BN", + "to": "load_106" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_3", + "from": "node_105", + "length": "325", + "name": "OH_line_105-108", + "phases": "ABCN", + "to": "node_108" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_10", + "from": "load_106", + "length": "575", + "name": "OH_line_106-107", + "phases": "BN", + "to": "load_107" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_9", + "from": "node_108", + "length": "450", + "name": "OH_line_108-109", + "phases": "AN", + "to": "load_109" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_3", + "from": "node_108", + "length": "1000", + "name": "OH_line_108-300", + "phases": "ABCN", + "to": "node_300" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_9", + "from": "load_109", + "length": "300", + "name": "OH_line_109-110", + "phases": "AN", + "to": "node_110" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_9", + "from": "node_110", + "length": "575", + "name": "OH_line_110-111", + "phases": "AN", + "to": "load_111" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_9", + "from": "node_110", + "length": "125", + "name": "OH_line_110-112", + "phases": "AN", + "to": "load_112" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_9", + "from": "load_112", + "length": "525", + "name": "OH_line_112-113", + "phases": "AN", + "to": "load_113" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_9", + "from": "load_113", + "length": "325", + "name": "OH_line_113-114", + "phases": "AN", + "to": "load_114" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_4", + "from": "node_135", + "length": "375", + "name": "OH_line_135-35", + "phases": "ABCN", + "to": "load_35" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_1", + "from": "node_149", + "length": "400", + "name": "OH_line_149-1", + "phases": "ABCN", + "to": "load_1" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_1", + "from": "node_152", + "length": "400", + "name": "OH_line_152-52", + "phases": "ABCN", + "to": "load_52" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_3", + "from": "node_197", + "length": "250", + "name": "OH_line_197-101", + "phases": "ABCN", + "to": "node_101" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_9", + "from": "node_1401", + "length": "425", + "name": "OH_line_1401-14", + "phases": "AN", + "to": "node_14" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration_6", + "from": "node_6701", + "length": "350", + "name": "OH_line_6701-67", + "phases": "ABCN", + "to": "node_67" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_3", + "nominal_voltage": "2401.7771", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_8", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_13", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_14", + "nominal_voltage": "2401.7771", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_15", + "nominal_voltage": "2401.7771", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_18", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_21", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_23", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_25", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_2501", + "nominal_voltage": "2401.7771", + "phases": "ACN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_26", + "nominal_voltage": "2401.7771", + "phases": "ACN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_27", + "nominal_voltage": "2401.7771", + "phases": "ACN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_36", + "nominal_voltage": "2401.7771", + "phases": "ABN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_40", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_44", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_54", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_57", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_61", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_67", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_72", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_78", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_81", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_89", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_91", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_93", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_97", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "node_101", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "node_105", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "node_108", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_110", + "nominal_voltage": "2401.7771", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "node_135", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_149", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_1491", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "node_150", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "bustype": "SWING", + "flags": "DELTAMODE", + "name": "node_1501", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "node_151", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_152", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "node_160", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_195", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_197", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_250", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_251", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "flags": "DELTAMODE", + "name": "node_300", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_350", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_450", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_451", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "node_610", + "nominal_voltage": "480.000", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_611", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_1401", + "nominal_voltage": "2401.7771", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_6701", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "node_1001", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "constant_power_A": "40000+20000j", + "flags": "DELTAMODE", + "name": "load_1", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_B": "20000+10000j", + "flags": "DELTAMODE", + "name": "load_2", + "nominal_voltage": "2401.7771", + "phases": "BN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_C": "40000+20000j", + "flags": "DELTAMODE", + "name": "load_4", + "nominal_voltage": "2401.7771", + "phases": "CN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_current_C": "-0.55781+9.2933j", + "flags": "DELTAMODE", + "name": "load_5", + "nominal_voltage": "2401.7771", + "phases": "CN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_impedance_C": "115.3707+57.6853j", + "flags": "DELTAMODE", + "name": "load_6", + "nominal_voltage": "2401.7771", + "phases": "CN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_A": "20000+10000j", + "flags": "DELTAMODE", + "name": "load_7", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_A": "40000+20000j", + "flags": "DELTAMODE", + "name": "load_9", + "nominal_voltage": "2401.7771", + "phases": "AN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_current_A": "8.3272-4.1636j", + "flags": "DELTAMODE", + "name": "load_10", + "nominal_voltage": "2401.7771", + "phases": "AN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_impedance_A": "115.3707+57.6853j", + "flags": "DELTAMODE", + "name": "load_11", + "nominal_voltage": "2401.7771", + "phases": "AN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_B": "20000+10000j", + "flags": "DELTAMODE", + "name": "load_12", + "nominal_voltage": "2401.7771", + "phases": "BN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_C": "40000+20000j", + "flags": "DELTAMODE", + "name": "load_16", + "nominal_voltage": "2401.7771", + "phases": "CN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_C": "20000+10000j", + "flags": "DELTAMODE", + "name": "load_17", + "nominal_voltage": "2401.7771", + "phases": "CN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_A": "40000+20000j", + "flags": "DELTAMODE", + "name": "load_19", + "nominal_voltage": "2401.7771", + "phases": "AN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_current_A": "16.6543-8.3272j", + "flags": "DELTAMODE", + "name": "load_20", + "nominal_voltage": "2401.7771", + "phases": "AN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_impedance_B": "115.3707+57.6853j", + "flags": "DELTAMODE", + "name": "load_22", + "nominal_voltage": "2401.7771", + "phases": "BN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_C": "40000+20000j", + "flags": "DELTAMODE", + "name": "load_24", + "nominal_voltage": "2401.7771", + "phases": "CN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_current_A": "16.6543-8.3272j", + "flags": "DELTAMODE", + "name": "load_28", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_impedance_A": "115.3707+57.6853j", + "flags": "DELTAMODE", + "name": "load_29", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_C": "40000+20000j", + "flags": "DELTAMODE", + "name": "load_30", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_C": "20000+10000j", + "flags": "DELTAMODE", + "name": "load_31", + "nominal_voltage": "2401.7771", + "phases": "CN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_C": "20000+10000j", + "flags": "DELTAMODE", + "name": "load_32", + "nominal_voltage": "2401.7771", + "phases": "CN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_current_A": "16.6543-8.3272j", + "flags": "DELTAMODE", + "name": "load_33", + "nominal_voltage": "2401.7771", + "phases": "AN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_impedance_C": "115.3707+57.6853j", + "flags": "DELTAMODE", + "name": "load_34", + "nominal_voltage": "2401.7771", + "phases": "CN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_A": "40000+20000j", + "flags": "DELTAMODE", + "name": "load_35", + "nominal_voltage": "2401.7771", + "phases": "ABCD" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_impedance_A": "115.3707+57.6853j", + "flags": "DELTAMODE", + "name": "load_37", + "nominal_voltage": "2401.7771", + "phases": "AN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_current_B": "-7.7694-5.1297j", + "flags": "DELTAMODE", + "name": "load_38", + "nominal_voltage": "2401.7771", + "phases": "BN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_B": "20000+10000j", + "flags": "DELTAMODE", + "name": "load_39", + "nominal_voltage": "2401.7771", + "phases": "BN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_C": "20000+10000j", + "flags": "DELTAMODE", + "name": "load_41", + "nominal_voltage": "2401.7771", + "phases": "CN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_A": "20000+10000j", + "flags": "DELTAMODE", + "name": "load_42", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_impedance_B": "115.3707+57.6853j", + "flags": "DELTAMODE", + "name": "load_43", + "nominal_voltage": "2401.7771", + "phases": "BN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_current_A": "8.3272-4.1636j", + "flags": "DELTAMODE", + "name": "load_45", + "nominal_voltage": "2401.7771", + "phases": "AN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_A": "20000+10000j", + "flags": "DELTAMODE", + "name": "load_46", + "nominal_voltage": "2401.7771", + "phases": "AN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_current_A": "14.5725-10.409j", + "constant_current_B": "-16.3007-7.4157j", + "constant_current_C": "1.7282+17.8247j", + "flags": "DELTAMODE", + "name": "load_47", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_impedance_A": "54.5672+38.9766j", + "constant_impedance_B": "54.5672+38.9766j", + "constant_impedance_C": "54.5672+38.9766j", + "flags": "DELTAMODE", + "name": "load_48", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_A": "35000+25000j", + "constant_power_B": "70000+50000j", + "constant_power_C": "35000+25000j", + "flags": "DELTAMODE", + "name": "load_49", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "constant_power_C": "40000+20000j", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_50", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_A": "20000+10000j", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_51", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_A": "40000+20000j", + "flags": "DELTAMODE", + "name": "load_52", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_A": "40000+20000j", + "flags": "DELTAMODE", + "name": "load_53", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_impedance_A": "230.7413+115.3707j", + "flags": "DELTAMODE", + "name": "load_55", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_B": "20000+10000j", + "flags": "DELTAMODE", + "name": "load_56", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_current_B": "-7.7694-5.1297j", + "flags": "DELTAMODE", + "name": "load_58", + "nominal_voltage": "2401.7771", + "phases": "BN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_B": "20000+10000j", + "flags": "DELTAMODE", + "name": "load_59", + "nominal_voltage": "2401.7771", + "phases": "BN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_A": "20000+10000j", + "flags": "DELTAMODE", + "name": "load_60", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_impedance_C": "115.3707+57.6853j", + "flags": "DELTAMODE", + "name": "load_62", + "nominal_voltage": "2401.7771", + "phases": "ABC" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_A": "40000+20000j", + "flags": "DELTAMODE", + "name": "load_63", + "nominal_voltage": "2401.7771", + "phases": "ABC" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_current_B": "-28.2336-19.757j", + "flags": "DELTAMODE", + "name": "load_64", + "nominal_voltage": "2401.7771", + "phases": "ABC" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_impedance_A": "327.4032+233.8595j", + "constant_impedance_B": "327.4032+233.8595j", + "constant_impedance_C": "163.7016+116.9297j", + "flags": "DELTAMODE", + "name": "load_65", + "nominal_voltage": "2401.7771", + "phases": "ABCD" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_C": "75000+35000j", + "flags": "DELTAMODE", + "name": "load_66", + "nominal_voltage": "2401.7771", + "phases": "ABC" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_A": "20000+10000j", + "flags": "DELTAMODE", + "name": "load_68", + "nominal_voltage": "2401.7771", + "phases": "AN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "GFA_enable": "true", + "GFA_freq_high_trip": "65 Hz", + "GFA_freq_low_trip": "55 Hz", + "constant_power_A": "40000+20000j", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_69", + "nominal_voltage": "2401.7771", + "phases": "AN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "GFA_enable": "true", + "GFA_freq_high_trip": "65 Hz", + "GFA_freq_low_trip": "55 Hz", + "constant_power_A": "20000+10000j", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_70", + "nominal_voltage": "2401.7771", + "phases": "AN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "GFA_enable": "true", + "GFA_freq_high_trip": "65 Hz", + "GFA_freq_low_trip": "55 Hz", + "constant_power_A": "40000+20000j", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_71", + "nominal_voltage": "2401.7771", + "phases": "AN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "GFA_enable": "true", + "GFA_freq_high_trip": "65 Hz", + "GFA_freq_low_trip": "55 Hz", + "constant_power_C": "40000+20000j", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_73", + "nominal_voltage": "2401.7771", + "phases": "CN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "GFA_enable": "true", + "GFA_freq_high_trip": "65 Hz", + "GFA_freq_low_trip": "55 Hz", + "constant_impedance_C": "115.3707+57.6853j", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_74", + "nominal_voltage": "2401.7771", + "phases": "CN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "GFA_enable": "true", + "GFA_freq_high_trip": "65 Hz", + "GFA_freq_low_trip": "55 Hz", + "constant_power_C": "40000+20000j", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_75", + "nominal_voltage": "2401.7771", + "phases": "CN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "GFA_enable": "true", + "GFA_freq_high_trip": "65 Hz", + "GFA_freq_low_trip": "55 Hz", + "constant_current_A": "31.4742-4.0341j", + "constant_current_B": "-12.0192-16.8269j", + "constant_current_C": "-8.5629+18.8224j", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_76", + "nominal_voltage": "2401.7771", + "phases": "ABCD" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "GFA_enable": "true", + "GFA_freq_high_trip": "65 Hz", + "GFA_freq_low_trip": "55 Hz", + "constant_power_A": "20000+10000j", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_761", + "nominal_voltage": "2401.7771", + "phases": "ABCD" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "GFA_enable": "true", + "GFA_freq_high_trip": "65 Hz", + "GFA_freq_low_trip": "55 Hz", + "constant_power_B": "40000+20000j", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_77", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "GFA_enable": "true", + "GFA_freq_high_trip": "65 Hz", + "GFA_freq_low_trip": "55 Hz", + "constant_impedance_A": "115.3707+57.6853j", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_79", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "GFA_enable": "true", + "GFA_freq_high_trip": "70 Hz", + "GFA_freq_low_trip": "58 Hz", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_80", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "GFA_enable": "true", + "GFA_freq_high_trip": "70 Hz", + "GFA_freq_low_trip": "58 Hz", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_82", + "nominal_voltage": "2401.7771", + "phases": "CN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "GFA_enable": "true", + "GFA_freq_high_trip": "70 Hz", + "GFA_freq_low_trip": "58 Hz", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_83", + "nominal_voltage": "2401.7771", + "phases": "CN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "GFA_enable": "true", + "GFA_freq_high_trip": "65 Hz", + "GFA_freq_low_trip": "55 Hz", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_84", + "nominal_voltage": "2401.7771", + "phases": "CN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "GFA_enable": "true", + "GFA_freq_high_trip": "65 Hz", + "GFA_freq_low_trip": "55 Hz", + "constant_power_C": "40000+20000j", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_85", + "nominal_voltage": "2401.7771", + "phases": "CN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "GFA_enable": "true", + "GFA_freq_high_trip": "65 Hz", + "GFA_freq_low_trip": "55 Hz", + "constant_power_B": "20000+10000j", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_86", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "GFA_enable": "true", + "GFA_freq_high_trip": "65 Hz", + "GFA_freq_low_trip": "55 Hz", + "constant_power_B": "40000+20000j", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_87", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "GFA_enable": "true", + "GFA_freq_high_trip": "65 Hz", + "GFA_freq_low_trip": "55 Hz", + "constant_power_A": "40000+20000j", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_88", + "nominal_voltage": "2401.7771", + "phases": "AN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "GFA_enable": "true", + "GFA_freq_high_trip": "65 Hz", + "GFA_freq_low_trip": "55 Hz", + "constant_current_B": "-15.5387-10.2595j", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_90", + "nominal_voltage": "2401.7771", + "phases": "BN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "GFA_enable": "true", + "GFA_freq_high_trip": "65 Hz", + "GFA_freq_low_trip": "55 Hz", + "constant_power_C": "40000+20000j", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_92", + "nominal_voltage": "2401.7771", + "phases": "CN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "GFA_enable": "true", + "GFA_freq_high_trip": "65 Hz", + "GFA_freq_low_trip": "55 Hz", + "constant_power_A": "40000+20000j", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_94", + "nominal_voltage": "2401.7771", + "phases": "AN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "GFA_enable": "true", + "GFA_freq_high_trip": "65 Hz", + "GFA_freq_low_trip": "55 Hz", + "constant_power_B": "20000+10000j", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_95", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "GFA_enable": "true", + "GFA_freq_high_trip": "65 Hz", + "GFA_freq_low_trip": "55 Hz", + "constant_power_B": "20000+10000j", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_96", + "nominal_voltage": "2401.7771", + "phases": "BN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "GFA_enable": "true", + "GFA_freq_high_trip": "65 Hz", + "GFA_freq_low_trip": "55 Hz", + "constant_power_A": "40000+20000j", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_98", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "GFA_enable": "true", + "GFA_freq_high_trip": "65 Hz", + "GFA_freq_low_trip": "55 Hz", + "constant_power_B": "40000+20000j", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_99", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "GFA_enable": "true", + "GFA_freq_high_trip": "65 Hz", + "GFA_freq_low_trip": "55 Hz", + "bustype": "SWING_PQ", + "constant_impedance_C": "115.3707+57.6853j", + "constant_power_A": "10.0000-5.0000j", + "constant_power_B": "10.0000-5.0000j", + "constant_power_C": "10.0000-5.0000j", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_100", + "nominal_voltage": "2401.7771", + "phases": "ABCN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_C": "20000+10000j", + "flags": "DELTAMODE", + "name": "load_102", + "nominal_voltage": "2401.7771", + "phases": "CN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_C": "40000+20000j", + "flags": "DELTAMODE", + "name": "load_103", + "nominal_voltage": "2401.7771", + "phases": "CN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_C": "40000+20000j", + "flags": "DELTAMODE", + "name": "load_104", + "nominal_voltage": "2401.7771", + "phases": "CN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_B": "40000+20000j", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_106", + "nominal_voltage": "2401.7771", + "phases": "BN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_B": "40000+20000j", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_107", + "nominal_voltage": "2401.7771", + "phases": "BN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_A": "40000+20000j", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_109", + "nominal_voltage": "2401.7771", + "phases": "AN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_A": "20000+10000j", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_111", + "nominal_voltage": "2401.7771", + "phases": "AN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_current_A": "8.3272-4.1636j", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_112", + "nominal_voltage": "2401.7771", + "phases": "AN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_impedance_A": "115.3707+57.6853j", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "load_113", + "nominal_voltage": "2401.7771", + "phases": "AN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_A": "20000+10000j", + "flags": "DELTAMODE", + "name": "load_114", + "nominal_voltage": "2401.7771", + "phases": "AN" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "from": "node_150", + "name": "microgrid_switch0", + "phases": "ABCN", + "status": "CLOSED", + "to": "node_1501" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "from": "load_76", + "name": "switch_76-86", + "phases": "ABCN", + "status": "CLOSED", + "to": "load_86" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "from": "load_76", + "name": "switch_76-761", + "phases": "ABCN", + "status": "CLOSED", + "to": "load_761" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "from": "node_18", + "name": "microgrid_switch1", + "phases": "ABCN", + "status": "CLOSED", + "to": "node_135" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "from": "node_97", + "name": "microgrid_switch2", + "phases": "ABCN", + "status": "CLOSED", + "to": "node_197" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "from": "load_60", + "name": "microgrid_switch3", + "phases": "ABCN", + "status": "CLOSED", + "to": "node_160" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "from": "node_151", + "name": "microgrid_switch4", + "phases": "ABCN", + "status": "CLOSED", + "to": "node_300" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "from": "node_13", + "name": "switch_13-152", + "phases": "ABCN", + "status": "CLOSED", + "to": "node_152" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "from": "node_61", + "name": "switch_61-611", + "phases": "ABCN", + "status": "CLOSED", + "to": "node_611" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "from": "node_1491", + "name": "switch_1491-149", + "phases": "ABCN", + "status": "CLOSED", + "to": "node_149" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "from": "node_250", + "name": "switch_250-251", + "phases": "ABCN", + "status": "CLOSED", + "to": "node_251" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "from": "node_450", + "name": "switch_450-451", + "phases": "ABCN", + "status": "CLOSED", + "to": "node_451" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "from": "node_54", + "name": "switch_54-94", + "phases": "AN", + "status": "OPEN", + "to": "load_94" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "from": "node_300", + "name": "switch_300-350", + "phases": "ABCN", + "status": "CLOSED", + "to": "node_350" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "from": "load_95", + "name": "switch_95-195", + "phases": "ABCN", + "status": "CLOSED", + "to": "node_195" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "from": "load_100", + "name": "switch_100-101", + "phases": "ABCN", + "status": "CLOSED", + "to": "node_1001" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "connect_type": "DELTA_DELTA", + "install_type": "PADMOUNT", + "name": "transformer_configuration_1", + "power_rating": "150 kVA", + "primary_voltage": "4160", + "reactance": "0.0272", + "resistance": "0.0127", + "secondary_voltage": "480" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "transformer_configuration_1", + "from": "node_611", + "name": "transformer_611-610", + "phases": "ABCN", + "to": "node_610" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "capacitor_A": "200000.00", + "capacitor_B": "200000.00", + "capacitor_C": "200000.00", + "control": "MANUAL", + "name": "cap_83", + "nominal_voltage": "2401.7771", + "parent": "load_83", + "phases": "CN", + "phases_connected": "ABC", + "switchA": "CLOSED", + "switchB": "CLOSED", + "switchC": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "capacitor_A": "50000.00", + "control": "MANUAL", + "name": "cap_88", + "nominal_voltage": "2401.7771", + "parent": "load_88", + "phases": "A", + "phases_connected": "A", + "switchA": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "capacitor_B": "50000.00", + "control": "MANUAL", + "name": "cap_90", + "nominal_voltage": "2401.7771", + "parent": "load_90", + "phases": "B", + "phases_connected": "B", + "switchB": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "capacitor_C": "50000.00", + "control": "MANUAL", + "name": "cap_92", + "nominal_voltage": "2401.7771", + "parent": "load_92", + "phases": "C", + "phases_connected": "C", + "switchC": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "CT_phase": "ABC", + "Control": "MANUAL", + "PT_phase": "ABC", + "Type": "A", + "band_center": "120.000", + "band_width": "2.0", + "compensator_r_setting_A": "3.0", + "compensator_r_setting_B": "3.0", + "compensator_r_setting_C": "3.0", + "compensator_x_setting_A": "7.5", + "compensator_x_setting_B": "7.5", + "compensator_x_setting_C": "7.5", + "connect_type": "1", + "current_transducer_ratio": "700", + "lower_taps": "16", + "name": "regulator_configuration_1", + "power_transducer_ratio": "20", + "raise_taps": "16", + "regulation": "0.10", + "tap_pos_A": "7", + "tap_pos_B": "7", + "tap_pos_C": "7", + "time_delay": "30.0" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "regulator_configuration_1", + "from": "node_150", + "name": "regulator_1", + "phases": "ABC", + "to": "node_1491" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "CT_phase": "AC", + "Control": "MANUAL", + "PT_phase": "AC", + "Type": "A", + "band_center": "120.000", + "band_width": "1.0", + "compensator_r_setting_A": "0.4", + "compensator_r_setting_C": "0.4", + "compensator_x_setting_A": "0.4", + "compensator_x_setting_C": "0.4", + "connect_type": "1", + "current_transducer_ratio": "50", + "lower_taps": "16", + "name": "regulator_configuration_2", + "power_transducer_ratio": "20", + "raise_taps": "16", + "regulation": "0.10", + "tap_pos_A": "0", + "tap_pos_C": "-1", + "time_delay": "30.0" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "regulator_configuration_2", + "from": "node_25", + "name": "regulator_2", + "phases": "AC", + "to": "node_2501" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "CT_phase": "A", + "Control": "MANUAL", + "PT_phase": "A", + "Type": "A", + "band_center": "120.000", + "band_width": "2.0", + "compensator_r_setting_A": "0.4", + "compensator_x_setting_A": "0.4", + "connect_type": "1", + "current_transducer_ratio": "50", + "lower_taps": "16", + "name": "regulator_configuration_3", + "power_transducer_ratio": "20", + "raise_taps": "16", + "regulation": "0.10", + "tap_pos_A": "-1", + "time_delay": "30.0" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "regulator_configuration_3", + "from": "load_9", + "name": "regulator_3", + "phases": "A", + "to": "node_1401" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "CT_phase": "ABC", + "Control": "MANUAL", + "PT_phase": "ABC", + "Type": "A", + "band_center": "124.000", + "band_width": "2.0", + "compensator_r_setting_A": "0.6", + "compensator_r_setting_B": "1.4", + "compensator_r_setting_C": "0.2", + "compensator_x_setting_A": "1.3", + "compensator_x_setting_B": "2.6", + "compensator_x_setting_C": "1.4", + "connect_type": "1", + "current_transducer_ratio": "300", + "lower_taps": "16", + "name": "regulator_configuration_4", + "power_transducer_ratio": "20", + "raise_taps": "16", + "regulation": "0.10", + "tap_pos_A": "8", + "tap_pos_B": "1", + "tap_pos_C": "5", + "time_delay": "30.0" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "regulator_configuration_4", + "from": "node_160", + "name": "regulator_4", + "phases": "ABC", + "to": "node_6701" + }, + "children": [], + "name": "regulator" + } + ], + "schedules": [] +} \ No newline at end of file diff --git a/local-server/tests/golden/123__IEEE_123_Inverters_Mixed.json b/local-server/tests/golden/123__IEEE_123_Inverters_Mixed.json new file mode 100644 index 00000000..5638c539 --- /dev/null +++ b/local-server/tests/golden/123__IEEE_123_Inverters_Mixed.json @@ -0,0 +1,146 @@ +{ + "classes": [], + "clock": {}, + "definitions": [], + "directives": [], + "includes": [], + "modules": [], + "objects": [ + { + "attributes": { + "Pref": "450000", + "Qref": "0.0", + "Rp": "0.05", + "Rq": "0.05", + "Tff": "0.01", + "Tpf": "0.50", + "Tqf": "0.2", + "Tvf": "0.05", + "control_mode": "GFL_CURRENT_SOURCE", + "flags": "DELTAMODE", + "frequency_watt": "false", + "grid_following_mode": "POSITIVE_SEQUENCE", + "kiPLL": "900", + "kpPLL": "50", + "name": "trip_shad_inv1", + "parent": "load_42", + "rated_power": "600 kW", + "volt_var": "false" + }, + "children": [], + "name": "inverter_dyn" + }, + { + "attributes": { + "Pref": "126000", + "Qref": "0.0", + "Rp": "0.05", + "Rq": "0.05", + "Tff": "0.01", + "Tpf": "0.50", + "Tqf": "0.2", + "Tvf": "0.05", + "control_mode": "GFL_CURRENT_SOURCE", + "flags": "DELTAMODE", + "frequency_watt": "false", + "grid_following_mode": "POSITIVE_SEQUENCE", + "kiPLL": "900", + "kpPLL": "50", + "name": "trip_shad_inv2", + "parent": "node_101", + "rated_power": "180 kW", + "volt_var": "false" + }, + "children": [], + "name": "inverter_dyn" + }, + { + "attributes": { + "Pref": "84000", + "Qref": "0.0", + "Rp": "0.05", + "Rq": "0.05", + "Tff": "0.01", + "Tpf": "0.50", + "Tqf": "0.2", + "Tvf": "0.05", + "control_mode": "GFL_CURRENT_SOURCE", + "flags": "DELTAMODE", + "frequency_watt": "false", + "grid_following_mode": "POSITIVE_SEQUENCE", + "kiPLL": "900", + "kpPLL": "50", + "name": "trip_shad_inv3", + "parent": "load_761", + "rated_power": "120 kW", + "volt_var": "false" + }, + "children": [], + "name": "inverter_dyn" + }, + { + "attributes": { + "Pmax": "1.2", + "Pmin": "0", + "Pref": "210000", + "Qref": "0.0", + "Rfilter": "0.0025", + "Xfilter": "0.05", + "control_mode": "GRID_FORMING", + "flags": "DELTAMODE", + "kipmax": "20", + "kppmax": "10", + "mp": "3.77", + "mq": "0.05", + "name": "trip_shad_inv4", + "parent": "load_51", + "rated_power": "400 kW" + }, + "children": [], + "name": "inverter_dyn" + }, + { + "attributes": { + "Pmax": "1.2", + "Pmin": "0", + "Pref": "300000", + "Qref": "0.0", + "Rfilter": "0.0025", + "Xfilter": "0.05", + "control_mode": "GRID_FORMING", + "flags": "DELTAMODE", + "kipmax": "20", + "kppmax": "10", + "mp": "3.77", + "mq": "0.05", + "name": "trip_shad_inv5", + "parent": "node_105", + "rated_power": "600 kW" + }, + "children": [], + "name": "inverter_dyn" + }, + { + "attributes": { + "Pmax": "1.2", + "Pmin": "0", + "Pref": "70000", + "Qref": "0.0", + "Rfilter": "0.0025", + "Xfilter": "0.05", + "control_mode": "GRID_FORMING", + "flags": "DELTAMODE", + "kipmax": "20", + "kppmax": "10", + "mp": "3.77", + "mq": "0.05", + "name": "trip_shad_inv6", + "parent": "load_80", + "rated_power": "100 kW" + }, + "children": [], + "name": "inverter_dyn" + } + ], + "schedules": [] +} \ No newline at end of file diff --git a/local-server/tests/golden/123__IEEE_123_Recorders.json b/local-server/tests/golden/123__IEEE_123_Recorders.json new file mode 100644 index 00000000..6a9ea3e0 --- /dev/null +++ b/local-server/tests/golden/123__IEEE_123_Recorders.json @@ -0,0 +1,468 @@ +{ + "classes": [], + "clock": {}, + "definitions": [], + "directives": [], + "includes": [], + "modules": [], + "objects": [ + { + "attributes": { + "file": "trigger.player", + "flags": "DELTAMODE", + "name": "recorder_trigger", + "parent": "node_150", + "property": "nominal_voltage" + }, + "children": [], + "name": "player" + }, + { + "attributes": { + "file": "pow/Voltage_151.csv", + "flags": "DELTAMODE", + "interval": "1", + "limit": "10000000", + "name": "recorder_V_node_151", + "parent": "node_151", + "property": "voltage_A.real,voltage_A.imag,voltage_B.real,voltage_B.imag,voltage_C.real,voltage_C.imag" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "gen/Gen_1_Speed.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_Gen_1", + "parent": "Gen1", + "property": "rotor_speed,rotor_angle,flux1d,flux2q,EpRotated,VintRotated,Eint_A,Eint_B,Eint_C,Irotated,pwr_electric.real,pwr_electric.imag,pwr_mech,torque_mech,torque_elec" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "gen/Gen_2_Speed.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_Gen_2", + "parent": "Gen2", + "property": "rotor_speed,rotor_angle,flux1d,flux2q,EpRotated,VintRotated,Eint_A,Eint_B,Eint_C,Irotated,pwr_electric.real,pwr_electric.imag,pwr_mech,torque_mech,torque_elec" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "gen/Gen_3_Speed.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_Gen_3", + "parent": "Gen3", + "property": "rotor_speed,rotor_angle,flux1d,flux2q,EpRotated,VintRotated,Eint_A,Eint_B,Eint_C,Irotated,pwr_electric.real,pwr_electric.imag,pwr_mech,torque_mech,torque_elec" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "gen/Gen_4_Speed.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_Gen_4", + "parent": "Gen4", + "property": "rotor_speed,rotor_angle,flux1d,flux2q,EpRotated,VintRotated,Eint_A,Eint_B,Eint_C,Irotated,pwr_electric.real,pwr_electric.imag,pwr_mech,torque_mech,torque_elec" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "inverter/Inverter_#1_MG1.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_INV_1", + "parent": "trip_shad_inv1", + "property": "VA_Out.real,VA_Out.imag,V_In,VA_Out,Pref,Qref" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "inverter/Inv_1_load_42.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_test_Vinv1", + "parent": "load_42", + "property": "voltage_A, voltage_B, voltage_C" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "inverter/Inverter_#2_MG1.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_INV_2", + "parent": "trip_shad_inv2", + "property": "VA_Out.real,VA_Out.imag,Pref,Qref" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "inverter/Inverter_#3_MG2.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_INV_3", + "parent": "trip_shad_inv3", + "property": "VA_Out.real,VA_Out.imag,Pref,Qref" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "inverter/Inverter_#4_MG2.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_INV_4", + "parent": "trip_shad_inv4", + "property": "VA_Out.real,VA_Out.imag,V_In,VA_Out,Pref,Qref" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "gen/MG_1_GFA_status.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_MG_1_freq", + "parent": "node_150", + "property": "GFA_status,measured_frequency" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "gen/MG_2_GFA_status.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_MG_2_freq", + "parent": "load_50", + "property": "GFA_status,measured_frequency" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "gen/MG_3_GFA_status.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_MG_3_freq", + "parent": "load_100", + "property": "GFA_status,measured_frequency" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "gen/MG_3_node_76_freq.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_MG3_76_freq", + "parent": "load_76", + "property": "GFA_status,measured_frequency" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "switch/microgrid_switch0.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_microgrid_switch0", + "parent": "microgrid_switch0", + "property": "phase_A_state,phase_B_state,phase_C_state" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "switch/microgrid_switch1.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_microgrid_switch1", + "parent": "microgrid_switch1", + "property": "phase_A_state,phase_B_state,phase_C_state,current_in_A, current_in_B, current_in_C" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "switch/microgrid_switch2.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_microgrid_switch2", + "parent": "microgrid_switch2", + "property": "status,phase_A_state,phase_B_state,phase_C_state,current_out_A" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "switch/microgrid_switch3.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_microgrid_switch3", + "parent": "microgrid_switch3", + "property": "status,phase_A_state,phase_B_state,phase_C_state" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "switch/switch_450-451.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_switch_450-451", + "parent": "switch_450-451", + "property": "status,phase_A_state,phase_B_state,phase_C_state" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "switch/Switch_151_300.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_microgrid_switch4", + "parent": "microgrid_switch4", + "property": "status,current_out_A,current_out_B,current_out_C,power_out_A,power_out_B,power_out_C,phase_A_state,phase_B_state,phase_C_state" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "switch/switch_76-761.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_switch_76-761", + "parent": "switch_76-761", + "property": "current_out_A,current_out_B,current_out_C, phase_A_state,phase_B_state,phase_C_state" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "switch/switch_100-101.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_switch_100-101", + "parent": "switch_100-101", + "property": "current_out_A,current_out_B,current_out_C, phase_A_state,phase_B_state,phase_C_state" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "pow/node150_Power.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_node150_Pref", + "parent": "node_150", + "property": "voltage_A.real,voltage_A.imag,voltage_B.real,voltage_B.imag,voltage_C.real,voltage_C.imag" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "switch/node150_switch_Current.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_node150_switch", + "parent": "switch_1491-149", + "property": "current_out_A.real, current_out_B.real, current_out_C.real" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "gen/Gen2_Pref.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_Gen2_Pref", + "parent": "Gen2", + "property": "Pref" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "gen/Gen3_Pref.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_Gen3_Pref", + "parent": "Gen3", + "property": "Pref" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "gen/Gen4_Pref.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_Gen4_Pref", + "parent": "Gen4", + "property": "Pref" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "Gen2_Pref.player", + "flags": "DELTAMODE", + "name": "Player_Gen2_Pref", + "parent": "Gen2", + "property": "Pref" + }, + "children": [], + "name": "player" + }, + { + "attributes": { + "file": "Gen3_Pref.player", + "flags": "DELTAMODE", + "name": "Player_Gen3_Pref", + "parent": "Gen3", + "property": "Pref" + }, + "children": [], + "name": "player" + }, + { + "attributes": { + "file": "Gen4_Pref.player", + "flags": "DELTAMODE", + "name": "Player_Gen4_Pref", + "parent": "Gen4", + "property": "Pref" + }, + "children": [], + "name": "player" + }, + { + "attributes": { + "file": "load/Load_100_Voltage.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_test_V", + "parent": "load_100", + "property": "voltage_A, voltage_B, voltage_C" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "load/Load_76_Voltage.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_load_76", + "parent": "load_76", + "property": "voltage_A, voltage_B, voltage_C" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "load/Load_1001_Voltage.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_test_V1", + "parent": "node_101", + "property": "voltage_A, voltage_B, voltage_C" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "oh/OH_line_100-450_Current.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_test_C", + "parent": "OH_line_100-450", + "property": "current_out_A, current_out_B, current_out_C" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "oh/OH_line_76-77_Current.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_OH_line_76-77", + "parent": "OH_line_76-77", + "property": "current_out_A, current_out_B, current_out_C" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "regulator_4.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_regulator_41", + "parent": "regulator_4", + "property": "current_in_A, current_in_B, current_in_C" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "filename": "pow/output_current.csv", + "mode": "POLAR" + }, + "children": [], + "name": "currdump" + }, + { + "attributes": { + "filename": "pow/output_voltage.csv", + "mode": "POLAR" + }, + "children": [], + "name": "voltdump" + } + ], + "schedules": [] +} \ No newline at end of file diff --git a/local-server/tests/golden/13__IEEE-13.json b/local-server/tests/golden/13__IEEE-13.json new file mode 100644 index 00000000..5693167e --- /dev/null +++ b/local-server/tests/golden/13__IEEE-13.json @@ -0,0 +1,707 @@ +{ + "classes": [], + "clock": { + "timestamp": "2014-01-01 0:00:00", + "timezone": "EST+5EDT" + }, + "definitions": [], + "directives": [ + { + "name": "profiler", + "value": "1" + }, + { + "name": "iteration_limit", + "value": "100000" + }, + { + "name": "relax_naming_rules", + "value": "1" + } + ], + "includes": [], + "modules": [ + { + "attributes": { + "solver_method": "NR" + }, + "name": "powerflow" + }, + { + "attributes": {}, + "name": "tape" + } + ], + "objects": [ + { + "attributes": { + "geometric_mean_radius": "0.031300", + "name": "conductor1", + "resistance": "0.185900" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "geometric_mean_radius": "0.00814", + "name": "conductor2", + "resistance": "0.592000" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "geometric_mean_radius": "0.004460", + "name": "conductor3", + "resistance": "1.120000" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "conductor_diameter": "0.567000", + "conductor_gmr": "0.017100", + "conductor_resistance": "0.410000", + "name": "conductor4", + "neutral_diameter": "0.0640837", + "neutral_gmr": "0.0020800", + "neutral_resistance": "14.87200", + "neutral_strands": "13.000000", + "outer_diameter": "1.290000", + "shield_gmr": "0.000000", + "shield_resistance": "0.000000" + }, + "children": [], + "name": "underground_line_conductor" + }, + { + "attributes": { + "conductor_diameter": "0.368000", + "conductor_gmr": "0.011100", + "conductor_resistance": "0.970000", + "name": "conductor5", + "neutral_diameter": "0.0640837", + "neutral_gmr": "0.011100", + "neutral_resistance": "0.970000", + "neutral_strands": "6.000000", + "outer_diameter": "1.060000", + "shield_gmr": "0.000000", + "shield_resistance": "0.000000" + }, + "children": [], + "name": "underground_line_conductor" + }, + { + "attributes": { + "distance_AB": "2.5", + "distance_AC": "4.5", + "distance_AN": "4.272002", + "distance_BC": "7.0", + "distance_BN": "5.656854", + "distance_CN": "5.0", + "name": "line_spacing1" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "4.5", + "distance_AC": "2.5", + "distance_AN": "4.272002", + "distance_BC": "7.0", + "distance_BN": "5.0", + "distance_CN": "5.656854", + "name": "line_spacing2" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "0.0", + "distance_AC": "0.0", + "distance_AN": "0.0", + "distance_BC": "7.0", + "distance_BN": "5.0", + "distance_CN": "5.656854", + "name": "line_spacing3" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "0.0", + "distance_AC": "7.0", + "distance_AN": "5.656854", + "distance_BC": "0.0", + "distance_BN": "0.0", + "distance_CN": "5.0", + "name": "line_spacing4" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "0.0", + "distance_AC": "0.0", + "distance_AN": "0.0", + "distance_BC": "0.0", + "distance_BN": "0.0", + "distance_CN": "5.0", + "name": "line_spacing5" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "0.500000", + "distance_AC": "1.000000", + "distance_AN": "0.000000", + "distance_BC": "0.500000", + "distance_BN": "0.000000", + "distance_CN": "0.000000", + "name": "line_spacing6" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "0.000000", + "distance_AC": "0.000000", + "distance_AN": "0.083333", + "distance_BC": "0.000000", + "distance_BN": "0.000000", + "distance_CN": "0.000000", + "name": "line_spacing_7" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "conductor_A": "conductor1", + "conductor_B": "conductor1", + "conductor_C": "conductor1", + "conductor_N": "conductor2", + "name": "line_configuration1", + "spacing": "line_spacing1" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "conductor2", + "conductor_B": "conductor2", + "conductor_C": "conductor2", + "conductor_N": "conductor2", + "name": "line_configuration2", + "spacing": "line_spacing2" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "conductor3", + "conductor_C": "conductor3", + "conductor_N": "conductor3", + "name": "line_configuration3", + "spacing": "line_spacing3" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "conductor3", + "conductor_C": "conductor3", + "conductor_N": "conductor3", + "name": "line_configuration4", + "spacing": "line_spacing4" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "conductor3", + "conductor_N": "conductor3", + "name": "line_configuration5", + "spacing": "line_spacing5" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "conductor4", + "conductor_B": "conductor4", + "conductor_C": "conductor4", + "name": "line_configuration6", + "spacing": "line_spacing6" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "conductor5", + "conductor_N": "conductor5", + "name": "line_configuration7", + "spacing": "line_spacing6" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "install_type": "PADMOUNT", + "name": "transformer_configuration1", + "power_rating": "500", + "primary_voltage": "4160", + "reactance": "0.02", + "resistance": "0.011", + "secondary_voltage": "480" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "Control": "REMOTE_NODE", + "band_center": "2300", + "band_width": "20.0", + "connect_type": "WYE_WYE", + "lower_taps": "16", + "name": "regulator_configuration1", + "raise_taps": "16", + "regulation": "0.10", + "time_delay": "30.0" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "line_configuration3", + "from": "Node632", + "length": "500", + "name": "overhead_line1", + "phases": "BCN", + "to": "Load645" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration3", + "from": "Load645", + "length": "300", + "name": "overhead_line2", + "phases": "BCN", + "to": "Load646" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration1", + "from": "Node630", + "length": "2000", + "name": "overhead_line3", + "phases": "ABCN", + "to": "Node632" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration1", + "from": "Node632", + "length": "500", + "name": "overhead_line4", + "phases": "ABCN", + "to": "Load6321" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration1", + "from": "Load6321", + "length": "1500", + "name": "overhead_line5", + "phases": "ABCN", + "to": "Load671" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration1", + "from": "Load671", + "length": "1000", + "name": "overhead_line6", + "phases": "ABCN", + "to": "Node680" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration4", + "from": "Load671", + "length": "300", + "name": "overhead_line7", + "phases": "ACN", + "to": "Node684" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration5", + "from": "Node684", + "length": "300", + "name": "overhead_line8", + "phases": "CN", + "to": "Load611" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "line_configuration7", + "from": "Node684", + "length": "800", + "name": "overhead_line9", + "phases": "AN", + "to": "Load652" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "line_configuration6", + "from": "Load692", + "length": "500", + "name": "overhead_line10", + "phases": "ABC", + "to": "Load675" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "line_configuration2", + "from": "Node632", + "length": "500", + "name": "overhead_line11", + "phases": "ABCN", + "to": "Node633" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "name": "Node633", + "nominal_voltage": "2401.7771", + "phases": "ABCN", + "voltage_A": "2401.7771", + "voltage_B": "-1200.8886-2080.000j", + "voltage_C": "-1200.8886+2080.000j" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "Node630", + "nominal_voltage": "2401.7771", + "phases": "ABCN", + "voltage_A": "2401.7771+0j", + "voltage_B": "-1200.8886-2080.000j", + "voltage_C": "-1200.8886+2080.000j" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "Node632", + "nominal_voltage": "2401.7771", + "phases": "ABCN", + "voltage_A": "2401.7771", + "voltage_B": "-1200.8886-2080.000j", + "voltage_C": "-1200.8886+2080.000j" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "bustype": "SWING", + "name": "Node650", + "nominal_voltage": "2401.7771", + "phases": "ABCN", + "voltage_A": "2401.7771", + "voltage_B": "-1200.8886-2080.000j", + "voltage_C": "-1200.8886+2080.000j" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "Node680", + "nominal_voltage": "2401.7771", + "phases": "ABCN", + "voltage_A": "2401.7771", + "voltage_B": "-1200.8886-2080.000j", + "voltage_C": "-1200.8886+2080.000j" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "Node684", + "nominal_voltage": "2401.7771", + "phases": "ACN", + "voltage_A": "2401.7771", + "voltage_B": "-1200.8886-2080.000j", + "voltage_C": "-1200.8886+2080.000j" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "constant_power_A": "160000+110000j", + "constant_power_B": "120000+90000j", + "constant_power_C": "120000+90000j", + "name": "Load634", + "nominal_voltage": "480.000", + "phases": "ABCN", + "voltage_A": "480.000+0j", + "voltage_B": "-240.000-415.6922j", + "voltage_C": "-240.000+415.6922j" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_B": "170000+125000j", + "name": "Load645", + "nominal_voltage": "2401.7771", + "phases": "BCN", + "voltage_A": "2401.7771", + "voltage_B": "-1200.8886-2080.000j", + "voltage_C": "-1200.8886+2080.000j" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_impedance_B": "56.5993+32.4831j", + "name": "Load646", + "nominal_voltage": "2401.7771", + "phases": "BCD", + "voltage_A": "2401.7771", + "voltage_B": "-1200.8886-2080.000j", + "voltage_C": "-1200.8886+2080.000j" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_impedance_A": "31.0501+20.8618j", + "name": "Load652", + "nominal_voltage": "2401.7771", + "phases": "AN", + "voltage_A": "2401.7771", + "voltage_B": "-1200.8886-2080.000j", + "voltage_C": "-1200.8886+2080.000j" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_A": "385000+220000j", + "constant_power_B": "385000+220000j", + "constant_power_C": "385000+220000j", + "name": "Load671", + "nominal_voltage": "2401.7771", + "phases": "ABCD", + "voltage_A": "2401.7771", + "voltage_B": "-1200.8886-2080.000j", + "voltage_C": "-1200.8886+2080.000j" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_impedance_A": "0.00-28.8427j", + "constant_impedance_B": "0.00-28.8427j", + "constant_impedance_C": "0.00-28.8427j", + "constant_power_A": "485000+190000j", + "constant_power_B": "68000+60000j", + "constant_power_C": "290000+212000j", + "name": "Load675", + "nominal_voltage": "2401.7771", + "phases": "ABC", + "voltage_A": "2401.7771", + "voltage_B": "-1200.8886-2080.000j", + "voltage_C": "-1200.8886+2080.000j" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_current_A": "0+0j", + "constant_current_B": "0+0j", + "constant_current_C": "-17.2414+51.8677j", + "name": "Load692", + "nominal_voltage": "2401.7771", + "phases": "ABCD", + "voltage_A": "2401.7771", + "voltage_B": "-1200.8886-2080.000j", + "voltage_C": "-1200.8886+2080.000j" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_current_C": "-6.5443+77.9524j", + "constant_impedance_C": "0.00-57.6854j", + "name": "Load611", + "nominal_voltage": "2401.7771", + "phases": "CN", + "voltage_A": "2401.7771", + "voltage_B": "-1200.8886-2080.000j", + "voltage_C": "-1200.8886+2080.000j" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_A": "5666.6667+3333.3333j", + "constant_power_B": "22000+12666.6667j", + "constant_power_C": "39000+22666.6667j", + "name": "Load6711", + "nominal_voltage": "2401.7771", + "parent": "Load671", + "phases": "ABC", + "voltage_A": "2401.7771", + "voltage_B": "-1200.8886-2080.000j", + "voltage_C": "-1200.8886+2080.000j" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "constant_power_A": "11333.333+6666.6667j", + "constant_power_B": "44000+25333.3333j", + "constant_power_C": "78000+45333.3333j", + "name": "Load6321", + "nominal_voltage": "2401.7771", + "phases": "ABCN", + "voltage_A": "2401.7771", + "voltage_B": "-1200.8886-2080.000j", + "voltage_C": "-1200.8886+2080.000j" + }, + "children": [], + "name": "load" + }, + { + "attributes": { + "from": "Load671", + "name": "switch1", + "phases": "ABCN", + "status": "CLOSED", + "to": "Load692" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "transformer_configuration1", + "from": "Node633", + "name": "XFMR1", + "phases": "ABCN", + "to": "Load634" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "regulator_configuration1", + "from": "Node650", + "name": "Reg1", + "phases": "ABC", + "sense_node": "Load671", + "to": "Node630" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "filename": "Volt_Dump_NR.csv" + }, + "children": [], + "name": "voltdump" + }, + { + "attributes": { + "filename": "Current_Dump_NR.csv" + }, + "children": [], + "name": "currdump" + }, + { + "attributes": { + "file": "reg1_output.csv", + "interval": "1", + "limit": "1", + "parent": "Reg1", + "property": "tap_A,tap_B,tap_C,power_in_A.real,power_in_A.imag,power_in_B.real,power_in_B.imag,power_in_C.real,power_in_C.imag,power_in.real,power_in.imag" + }, + "children": [], + "name": "recorder" + } + ], + "schedules": [] +} \ No newline at end of file diff --git a/local-server/tests/golden/3000__3000_model.json b/local-server/tests/golden/3000__3000_model.json new file mode 100644 index 00000000..47d64f8d --- /dev/null +++ b/local-server/tests/golden/3000__3000_model.json @@ -0,0 +1,69195 @@ +{ + "classes": [], + "clock": { + "starttime": "2001-08-01 12:00:00 PST", + "stoptime": "2001-08-01 12:01:00 PST", + "timezone": "PST+8PDT" + }, + "definitions": [ + { + "name": "rotor_convergence", + "value": "0.00000000000001" + }, + { + "name": "VSOURCE", + "value": "66837.17" + } + ], + "directives": [ + { + "name": "suppress_repeat_messages", + "value": "1" + }, + { + "name": "relax_naming_rules", + "value": "1" + }, + { + "name": "profiler", + "value": "1" + }, + { + "name": "pauseatexit", + "value": "1" + }, + { + "name": "double_format", + "value": "%+.12lg" + }, + { + "name": "complex_format", + "value": "%+.12lg%+.12lg%c" + }, + { + "name": "complex_output_format", + "value": "POLAR_DEG" + }, + { + "name": "deltamode_timestep", + "value": "100000000" + }, + { + "name": "deltamode_maximumtime", + "value": "180000000000" + }, + { + "name": "deltamode_iteration_limit", + "value": "10" + }, + { + "name": "maximum_synctime", + "value": "6400" + } + ], + "includes": [], + "modules": [ + { + "attributes": { + "flush_interval": "0 s" + }, + "name": "tape" + }, + { + "attributes": { + "enable_subsecond_models": "true", + "maximum_event_length": "1800000", + "report_event_log": "false" + }, + "name": "reliability" + }, + { + "attributes": { + "all_powerflow_delta": "true", + "deltamode_timestep": "100 ms", + "enable_subsecond_models": "true", + "line_capacitance": "true", + "lu_solver": "KLU", + "solver_method": "NR" + }, + "name": "powerflow" + }, + { + "attributes": {}, + "name": "connection" + }, + { + "attributes": { + "deltamode_timestep": "100 ms", + "enable_subsecond_models": "true" + }, + "name": "generators" + }, + { + "attributes": {}, + "name": "climate" + } + ], + "objects": [ + { + "attributes": { + "configure": "config/gridlabd_config.json", + "message_type": "JSON", + "name": "GLD", + "publish_period": "1" + }, + "children": [], + "name": "helics_msg" + }, + { + "attributes": { + "interpolate": "NONE", + "name": "WA-Yakima", + "tmyfile": "WA-Yakima.tmy2" + }, + "children": [], + "name": "climate" + }, + { + "attributes": { + "check_mode": "ONCHANGE", + "eventgen_object": "testgendev", + "grid_association": "true", + "name": "base_fault_check_object", + "strictly_radial": "false" + }, + "children": [], + "name": "fault_check" + }, + { + "attributes": { + "fault_type": "DLG-X", + "manual_outages": "dg_steamgen1,2100-01-01 00:00:05,2100-01-01 00:00:30", + "name": "testgendev" + }, + "children": [], + "name": "eventgen" + }, + { + "attributes": { + "file": "trigger.player", + "flags": "DELTAMODE", + "name": "recorder_trigger", + "parent": "hvmv69sub3_hsb", + "property": "nominal_voltage" + }, + "children": [], + "name": "player" + }, + { + "attributes": { + "file": "collected_data/microgrid_switch0.csv", + "flags": "DELTAMODE", + "flush": "0", + "interval": "1", + "limit": "10000000", + "parent": "swt_ln0895780_sw", + "property": "phase_A_state,phase_B_state,phase_C_state" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "file": "collected_data/microgrid_switch1.csv", + "flags": "DELTAMODE", + "flush": "0", + "interval": "1", + "limit": "10000000", + "parent": "swt_v9111_48332_sw", + "property": "phase_A_state,phase_B_state,phase_C_state" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "filename": "ieee9500bal_volt_noDG.csv", + "mode": "POLAR" + }, + "children": [], + "name": "voltdump" + }, + { + "attributes": { + "filename": "ieee9500bal_curr_noDG.csv", + "mode": "POLAR" + }, + "children": [], + "name": "currdump" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_A": "0.000000", + "compensator_x_setting_A": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_feeder_reg3a", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_A": "-1" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_A": "0.000000", + "compensator_x_setting_A": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_feeder_reg2a", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_A": "-2" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_B": "0.000000", + "compensator_x_setting_B": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_feeder_reg3b", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_B": "0" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_A": "0.000000", + "compensator_x_setting_A": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_vreg2_a", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_A": "-5" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_B": "0.000000", + "compensator_x_setting_B": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_vreg2_b", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_B": "-5" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_A": "0.000000", + "compensator_x_setting_A": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_vreg3_a", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_A": "5" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_C": "0.000000", + "compensator_x_setting_C": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_feeder_reg1c", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_C": "-3" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_A": "0.000000", + "compensator_x_setting_A": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_feeder_reg1a", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_A": "-3" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_B": "0.000000", + "compensator_x_setting_B": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_feeder_reg2b", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_B": "-2" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_C": "0.000000", + "compensator_x_setting_C": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_feeder_reg3c", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_C": "-1" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_B": "0.000000", + "compensator_x_setting_B": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_feeder_reg1b", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_B": "-3" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_C": "0.000000", + "compensator_x_setting_C": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_feeder_reg2c", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_C": "-2" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_C": "0.000000", + "compensator_x_setting_C": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_vreg4_c", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_C": "-4" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_C": "0.000000", + "compensator_x_setting_C": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_vreg2_c", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_C": "-2" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_B": "0.000000", + "compensator_x_setting_B": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_vreg3_b", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_B": "5" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_A": "0.000000", + "compensator_x_setting_A": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_vreg4_a", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_A": "-3" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_C": "0.000000", + "compensator_x_setting_C": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_vreg3_c", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_C": "4" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_B": "0.000000", + "compensator_x_setting_B": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_vreg4_b", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_B": "-4" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct100B", + "power_rating": "100.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct250A", + "power_rating": "250.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct250B", + "power_rating": "250.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct250C", + "power_rating": "250.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct25A", + "power_rating": "25.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct25B", + "power_rating": "25.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct25C", + "power_rating": "25.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct75A", + "power_rating": "75.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct75B", + "power_rating": "75.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct75C", + "power_rating": "75.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct50A", + "power_rating": "50.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct50B", + "power_rating": "50.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct50C", + "power_rating": "50.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct5A", + "power_rating": "5.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct5B", + "power_rating": "5.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct5C", + "power_rating": "5.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct15A", + "power_rating": "15.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct15B", + "power_rating": "15.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct15C", + "power_rating": "15.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct37A", + "power_rating": "37.500", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct37B", + "power_rating": "37.500", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct37C", + "power_rating": "37.500", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct10A", + "power_rating": "10.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct10B", + "power_rating": "10.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct10C", + "power_rating": "10.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_1089-dies1", + "power_rating": "750.000", + "primary_voltage": "12470.000", + "reactance": "0.057500", + "resistance": "0.004000", + "secondary_voltage": "480.000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_1089-lng1", + "power_rating": "2000.000", + "primary_voltage": "12470.000", + "reactance": "0.057500", + "resistance": "0.004000", + "secondary_voltage": "480.000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_1209-wt123", + "power_rating": "250.000", + "primary_voltage": "12470.000", + "reactance": "0.057500", + "resistance": "0.004000", + "secondary_voltage": "480.000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_hvmv69_11sub3", + "power_rating": "20000.000", + "primary_voltage": "69000.000", + "reactance": "0.079400", + "resistance": "0.013400", + "secondary_voltage": "12470.000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_hvmv69_11sub2", + "power_rating": "20000.000", + "primary_voltage": "69000.000", + "reactance": "0.079400", + "resistance": "0.013400", + "secondary_voltage": "12470.000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "DELTA_GWYE", + "name": "xcon_hvmv115_69sub", + "power_rating": "75000.000", + "primary_voltage": "115000.000", + "reactance": "0.070500", + "resistance": "0.013400", + "secondary_voltage": "69000.000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_hvmv69_11sub1", + "power_rating": "20000.000", + "primary_voltage": "69000.000", + "reactance": "0.079400", + "resistance": "0.013400", + "secondary_voltage": "12470.000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_2001-mt123", + "power_rating": "750.000", + "primary_voltage": "12470.000", + "reactance": "0.057500", + "resistance": "0.004000", + "secondary_voltage": "480.000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_1069-mt1", + "power_rating": "300.000", + "primary_voltage": "12470.000", + "reactance": "0.057500", + "resistance": "0.004000", + "secondary_voltage": "480.000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_1142-lng1", + "power_rating": "150.000", + "primary_voltage": "12470.000", + "reactance": "0.057500", + "resistance": "0.004000", + "secondary_voltage": "480.000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_2001-ess12", + "power_rating": "750.000", + "primary_voltage": "12470.000", + "reactance": "0.057500", + "resistance": "0.004000", + "secondary_voltage": "480.000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_1209-dies1", + "power_rating": "750.000", + "primary_voltage": "12470.000", + "reactance": "0.057500", + "resistance": "0.004000", + "secondary_voltage": "480.000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "diameter": "0.398000", + "geometric_mean_radius": "0.011417", + "name": "wire_1/0_3w_cs", + "rating.summer.continuous": "200.00", + "rating.summer.emergency": "200.00", + "rating.winter.continuous": "200.00", + "rating.winter.emergency": "200.00", + "resistance": "0.971519" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.398000", + "geometric_mean_radius": "0.004458", + "name": "wire_1/0_acsr", + "rating.summer.continuous": "260.00", + "rating.summer.emergency": "260.00", + "rating.winter.continuous": "260.00", + "rating.winter.emergency": "260.00", + "resistance": "1.040999" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.250000", + "geometric_mean_radius": "0.007000", + "name": "wire_4_wpal", + "rating.summer.continuous": "150.00", + "rating.summer.emergency": "150.00", + "rating.winter.continuous": "150.00", + "rating.winter.emergency": "150.00", + "resistance": "2.459419" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.250000", + "geometric_mean_radius": "0.004367", + "name": "wire_4_acsr", + "rating.summer.continuous": "150.00", + "rating.summer.emergency": "150.00", + "rating.winter.continuous": "150.00", + "rating.winter.emergency": "150.00", + "resistance": "2.530689" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.250000", + "geometric_mean_radius": "0.007000", + "name": "wire_4_dpx", + "rating.summer.continuous": "136.00", + "rating.summer.emergency": "136.00", + "rating.winter.continuous": "136.00", + "rating.winter.emergency": "136.00", + "resistance": "2.449900" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.447000", + "geometric_mean_radius": "0.005100", + "name": "wire_2/0_wpal", + "rating.summer.continuous": "300.00", + "rating.summer.emergency": "300.00", + "rating.winter.continuous": "300.00", + "rating.winter.emergency": "300.00", + "resistance": "0.853001" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.743000", + "geometric_mean_radius": "0.024000", + "name": "wire_397_acsr", + "rating.summer.continuous": "630.00", + "rating.summer.emergency": "630.00", + "rating.winter.continuous": "630.00", + "rating.winter.emergency": "630.00", + "resistance": "0.256999" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.743000", + "geometric_mean_radius": "0.024000", + "name": "wire_397_aac_treewire", + "rating.summer.continuous": "526.00", + "rating.summer.emergency": "526.00", + "rating.winter.continuous": "526.00", + "rating.winter.emergency": "526.00", + "resistance": "0.283008" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.316000", + "geometric_mean_radius": "0.004183", + "name": "wire_2_acsr", + "rating.summer.continuous": "200.00", + "rating.summer.emergency": "200.00", + "rating.winter.continuous": "200.00", + "rating.winter.emergency": "200.00", + "resistance": "1.625700" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.316000", + "geometric_mean_radius": "0.004183", + "name": "wire_2_wpal", + "rating.summer.continuous": "155.00", + "rating.summer.emergency": "155.00", + "rating.winter.continuous": "155.00", + "rating.winter.emergency": "155.00", + "resistance": "1.690130" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.198000", + "geometric_mean_radius": "0.003942", + "name": "wire_6_wpal", + "rating.summer.continuous": "115.00", + "rating.summer.emergency": "115.00", + "rating.winter.continuous": "115.00", + "rating.winter.emergency": "115.00", + "resistance": "3.910899" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.250000", + "geometric_mean_radius": "0.007000", + "name": "wire_4_tpx", + "rating.summer.continuous": "115.00", + "rating.summer.emergency": "115.00", + "rating.winter.continuous": "115.00", + "rating.winter.emergency": "115.00", + "resistance": "2.449900" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.398000", + "geometric_mean_radius": "0.011417", + "name": "wire_1/0_tpx", + "rating.summer.continuous": "205.00", + "rating.summer.emergency": "205.00", + "rating.winter.continuous": "205.00", + "rating.winter.emergency": "205.00", + "resistance": "0.184000" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.563000", + "geometric_mean_radius": "0.015767", + "name": "wire_4/0_tpx", + "rating.summer.continuous": "318.00", + "rating.summer.emergency": "318.00", + "rating.winter.continuous": "318.00", + "rating.winter.emergency": "318.00", + "resistance": "0.485760" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.447000", + "geometric_mean_radius": "0.005100", + "name": "wire_2/0_acsr", + "rating.summer.continuous": "300.00", + "rating.summer.emergency": "300.00", + "rating.winter.continuous": "300.00", + "rating.winter.emergency": "300.00", + "resistance": "0.853001" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0000", + "distance_AE": "32.0000", + "distance_AN": "5.5902", + "distance_BC": "2.5000", + "distance_BE": "34.0000", + "distance_BN": "7.0000", + "distance_CE": "32.0000", + "distance_CN": "5.2202", + "distance_NE": "27.0000", + "name": "spc_3ph_h-4_acsr2_acsr2_acsr4_wpal_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-4_acsrxx1/0_tpx_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x4_wpalx4_wpal_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x4_wpalx1/0_tpx_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0000", + "distance_AE": "32.0000", + "distance_AN": "5.5902", + "distance_BC": "2.5000", + "distance_BE": "34.0000", + "distance_BN": "7.0000", + "distance_CE": "32.0000", + "distance_CN": "5.2202", + "distance_NE": "27.0000", + "name": "spc_3ph_h-4_wpal4_wpal4_wpal1/0_tpx_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0000", + "distance_AE": "32.0000", + "distance_AN": "5.5902", + "distance_BC": "2.5000", + "distance_BE": "34.0000", + "distance_BN": "7.0000", + "distance_CE": "32.0000", + "distance_CN": "5.2202", + "distance_NE": "27.0000", + "name": "spc_3ph_h-4_acsr4_acsr4_acsr4_wpal_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0000", + "distance_AE": "32.0000", + "distance_AN": "5.5902", + "distance_BC": "2.5000", + "distance_BE": "34.0000", + "distance_BN": "7.0000", + "distance_CE": "32.0000", + "distance_CN": "5.2202", + "distance_NE": "27.0000", + "name": "spc_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x4_wpalx2_acsr_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-xx6_wpal6_wpal_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x4_acsrx4_wpal_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-xx4_wpal4_wpal_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-2_acsrxx4_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x4_acsrx1/0_tpx_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x2_acsrx1/0_tpx_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x4_acsrx4_tpx_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0000", + "distance_AE": "32.0000", + "distance_AN": "5.5902", + "distance_BC": "2.5000", + "distance_BE": "34.0000", + "distance_BN": "7.0000", + "distance_CE": "32.0000", + "distance_CN": "5.2202", + "distance_NE": "27.0000", + "name": "spc_3ph_h-2_acsr2_acsr4_acsr4_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0000", + "distance_AE": "32.0000", + "distance_AN": "5.5902", + "distance_BC": "2.5000", + "distance_BE": "34.0000", + "distance_BN": "7.0000", + "distance_CE": "32.0000", + "distance_CN": "5.2202", + "distance_NE": "27.0000", + "name": "spc_3ph_h-397_acsr397_acsr397_acsr2/0_wpal_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x4_acsrx1/0_3w_cs_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "-4.0026", + "name": "spc_1p_1/0_axnj_db_A" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "-4.0026", + "name": "spc_1p_1/0_axnj_db_B" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "-4.0026", + "name": "spc_1p_1/0_axnj_db_C" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-2_acsrxx4_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-xx4_acsr1/0_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-2_acsrxx2_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-2_acsrxx2_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-xx4_wpal4_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "0.5000", + "distance_AC": "1.0000", + "distance_AE": "-4.0026", + "distance_BC": "0.5000", + "distance_BE": "-4.0026", + "distance_CE": "-4.0026", + "name": "spc_3p_1/0_axnj_db_ABC" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-4_acsrxx4_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-4_acsrxx4_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-2_acsrxx4/0_tpx_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x4_acsrx4_dpx_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-xx4_acsr4_tpx_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-4_acsrxx6_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x4_acsrx2_wpal_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x4_wpalx4_acsr_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-xx4_acsr4_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-xx4_acsr4_acsr_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-xx4_acsr4_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-xx4_wpal1/0_tpx_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AC": "4.0000", + "distance_AE": "32.0000", + "distance_AN": "5.5902", + "distance_CE": "32.0000", + "distance_CN": "5.2202", + "distance_NE": "27.0000", + "name": "spc_2ph_h-2_acsrx2_acsr2_acsr_ACN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0000", + "distance_AE": "32.0000", + "distance_AN": "5.5902", + "distance_BC": "2.5000", + "distance_BE": "34.0000", + "distance_BN": "7.0000", + "distance_CE": "32.0000", + "distance_CN": "5.2202", + "distance_NE": "27.0000", + "name": "spc_3ph_h-4_wpal4_wpal4_wpal4_wpal_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-2_acsrxx1/0_tpx_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x2_acsrx1/0_3w_cs_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0000", + "distance_AE": "32.0000", + "distance_AN": "5.5902", + "distance_BC": "2.5000", + "distance_BE": "34.0000", + "distance_BN": "7.0000", + "distance_CE": "32.0000", + "distance_CN": "5.2202", + "distance_NE": "27.0000", + "name": "spc_3ph_h-2/0_acsr2/0_acsr2/0_acsr4_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-4_wpalxx2_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x2_acsrx4_tpx_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "6.4185", + "distance_AC": "10.0066", + "distance_AE": "39.9934", + "distance_AN": "16.0806", + "distance_BC": "6.3929", + "distance_BE": "45.0131", + "distance_BN": "11.2716", + "distance_CE": "50.0000", + "distance_CN": "6.1885", + "distance_NE": "56.0039", + "name": "spc_3ph-69kv_397_treewire_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x2_acsrx4_acsr_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-4_wpalxx4_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-2_wpalxx2_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-4_acsrxx2_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-4_acsrxx2_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x4_acsrx4_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x4_acsrx4_acsr_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0000", + "distance_AE": "32.0000", + "distance_AN": "5.5902", + "distance_BC": "2.5000", + "distance_BE": "34.0000", + "distance_BN": "7.0000", + "distance_CE": "32.0000", + "distance_CN": "5.2202", + "distance_NE": "27.0000", + "name": "spc_3ph_h-4_acsr4_acsr4_acsr4_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-xx2_acsr4_dpx_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x2_acsrx2_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x2_acsrx2_acsr_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x2_acsrx2_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-4_acsrxx4_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-xx4_acsr2_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-4_wpalxx1/0_tpx_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0000", + "distance_AE": "32.0000", + "distance_AN": "5.5902", + "distance_BC": "2.5000", + "distance_BE": "34.0000", + "distance_BN": "7.0000", + "distance_CE": "32.0000", + "distance_CN": "5.2202", + "distance_NE": "27.0000", + "name": "spc_3ph_h-397_acsr397_acsr397_acsr397_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-xx2_acsr1/0_tpx_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0000", + "distance_AE": "32.0000", + "distance_AN": "5.5902", + "distance_BC": "2.5000", + "distance_BE": "34.0000", + "distance_BN": "7.0000", + "distance_CE": "32.0000", + "distance_CN": "5.2202", + "distance_NE": "27.0000", + "name": "spc_3ph_h-2_acsr2_acsr2_acsr2_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-xx4_acsr4_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-xx4_acsr4_wpal_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-2/0_acsrxx2_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-xx2/0_acsr1/0_tpx_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0000", + "distance_AE": "32.0000", + "distance_AN": "5.5902", + "distance_BC": "2.5000", + "distance_BE": "34.0000", + "distance_BN": "7.0000", + "distance_CE": "32.0000", + "distance_CN": "5.2202", + "distance_NE": "27.0000", + "name": "spc_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-xx2_acsr2_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-xx2_acsr2_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0000", + "distance_AE": "32.0000", + "distance_AN": "5.5902", + "distance_BC": "2.5000", + "distance_BE": "34.0000", + "distance_BN": "7.0000", + "distance_CE": "32.0000", + "distance_CN": "5.2202", + "distance_NE": "27.0000", + "name": "spc_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_wpal_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-4_wpalxx4_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-4_wpalxx4_wpal_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0000", + "distance_AE": "32.0000", + "distance_AN": "5.5902", + "distance_BC": "2.5000", + "distance_BE": "34.0000", + "distance_BN": "7.0000", + "distance_CE": "32.0000", + "distance_CN": "5.2202", + "distance_NE": "27.0000", + "name": "spc_3ph_h-4_acsr4_acsr4_acsr4_tpx_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-4_acsrxx1/0_3w_cs_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "conductor_A": "wire_397_acsr", + "conductor_B": "wire_397_acsr", + "conductor_C": "wire_397_acsr", + "conductor_N": "wire_397_acsr", + "name": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "spacing": "spc_3ph_h-397_acsr397_acsr397_acsr397_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "spacing": "spc_1ph-4_acsrxx4_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_wpal", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-4_wpalxx1/0_tpx_ln5895784-1", + "spacing": "spc_1ph-4_wpalxx1/0_tpx_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-4_acsrxx2_acsr_ln6019479-1", + "spacing": "spc_1ph-4_acsrxx2_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_2_acsr", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "spacing": "spc_1ph-x2_acsrx1/0_tpx_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_2_wpal", + "name": "lcon_1ph-x4_acsrx2_wpal_ln5496577-1", + "spacing": "spc_1ph-x4_acsrx2_wpal_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_2_acsr", + "conductor_N": "wire_1/0_3w_cs", + "name": "lcon_1ph-x2_acsrx1/0_3w_cs_ln6043468-3", + "spacing": "spc_1ph-x2_acsrx1/0_3w_cs_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_6_wpal", + "name": "lcon_1ph-4_acsrxx6_wpal_ln5895785-1", + "spacing": "spc_1ph-4_acsrxx6_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_397_acsr", + "conductor_B": "wire_397_acsr", + "conductor_C": "wire_397_acsr", + "conductor_N": "wire_2/0_wpal", + "name": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_wpal_ln6291244-1", + "spacing": "spc_3ph_h-397_acsr397_acsr397_acsr2/0_wpal_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_4_dpx", + "name": "lcon_1ph-xx2_acsr4_dpx_ln5744331-1", + "spacing": "spc_1ph-xx2_acsr4_dpx_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_1/0_3w_cs", + "name": "lcon_1ph-4_acsrxx1/0_3w_cs_ln5686244-1", + "spacing": "spc_1ph-4_acsrxx1/0_3w_cs_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_wpal", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-4_wpalxx4_wpal_ln6198049-1", + "spacing": "spc_1ph-4_wpalxx4_wpal_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "cncab_1/0_al_15kv_1/3", + "name": "lcon_1p_1/0_axnj_db_ln8945010-1", + "spacing": "spc_1p_1/0_axnj_db_C" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "spacing": "spc_1ph-2_acsrxx1/0_tpx_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "spacing": "spc_1ph-2_acsrxx2_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_B": "wire_4_acsr", + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_tpx", + "name": "lcon_3ph_h-4_acsr4_acsr4_acsr4_tpx_ln5742835-1", + "spacing": "spc_3ph_h-4_acsr4_acsr4_acsr4_tpx_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_1/0_acsr", + "name": "lcon_1ph-xx4_acsr1/0_acsr_ln5852082-1", + "spacing": "spc_1ph-xx4_acsr1/0_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_2_acsr", + "conductor_N": "wire_4_tpx", + "name": "lcon_1ph-x2_acsrx4_tpx_ln6169266-1", + "spacing": "spc_1ph-x2_acsrx4_tpx_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_B": "wire_2_acsr", + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "spacing": "spc_3ph_h-4_acsr2_acsr2_acsr4_wpal_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_wpal", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-xx4_wpal1/0_tpx_ln5956462-1", + "spacing": "spc_1ph-xx4_wpal1/0_tpx_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-xx2_acsr2_acsr_ln6411379-1", + "spacing": "spc_1ph-xx2_acsr2_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2/0_acsr", + "conductor_B": "wire_2/0_acsr", + "conductor_C": "wire_2/0_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr4_acsr_ln5898194-1", + "spacing": "spc_3ph_h-2/0_acsr2/0_acsr2/0_acsr4_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-x4_acsrx1/0_tpx_ln5562952-1", + "spacing": "spc_1ph-x4_acsrx1/0_tpx_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_4/0_tpx", + "name": "lcon_1ph-2_acsrxx4/0_tpx_ln6103927-1", + "spacing": "spc_1ph-2_acsrxx4/0_tpx_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_wpal", + "conductor_N": "wire_2_wpal", + "name": "lcon_1ph-4_wpalxx2_wpal_ln5561444-1", + "spacing": "spc_1ph-4_wpalxx2_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2/0_acsr", + "conductor_B": "wire_2/0_acsr", + "conductor_C": "wire_2/0_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "spacing": "spc_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_wpal", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-x4_wpalx2_acsr_ln5472350-1", + "spacing": "spc_1ph-x4_wpalx2_acsr_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_wpal", + "conductor_N": "wire_2_wpal", + "name": "lcon_1ph-2_wpalxx2_wpal_ln6409800-1", + "spacing": "spc_1ph-2_wpalxx2_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_B": "wire_2_acsr", + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_3ph_h-2_acsr2_acsr4_acsr4_acsr_ln5655838-1", + "spacing": "spc_3ph_h-2_acsr2_acsr4_acsr4_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "spacing": "spc_1ph-xx4_acsr4_wpal_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "cncab_1/0_al_15kv_1/3", + "conductor_B": "cncab_1/0_al_15kv_1/3", + "conductor_C": "cncab_1/0_al_15kv_1/3", + "name": "lcon_3p_1/0_axnj_db_ln8979254-2", + "spacing": "spc_3p_1/0_axnj_db_ABC" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-2_acsrxx4_acsr_ln5589097-1", + "spacing": "spc_1ph-2_acsrxx4_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "spacing": "spc_1ph-xx2_acsr2_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_B": "wire_2_acsr", + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "spacing": "spc_3ph_h-2_acsr2_acsr2_acsr2_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_6_wpal", + "conductor_N": "wire_6_wpal", + "name": "lcon_1ph-xx6_wpal6_wpal_ln6108128-2", + "spacing": "spc_1ph-xx6_wpal6_wpal_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_tpx", + "name": "lcon_1ph-xx4_acsr4_tpx_ln5531226-1", + "spacing": "spc_1ph-xx4_acsr4_tpx_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_wpal", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "spacing": "spc_1ph-xx4_wpal4_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "spacing": "spc_1ph-x4_acsrx4_acsr_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_wpal", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "spacing": "spc_1ph-4_wpalxx4_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-2_acsrxx4_wpal_ln5686245-2", + "spacing": "spc_1ph-2_acsrxx4_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_wpal", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-x4_wpalx1/0_tpx_ln6077771-1", + "spacing": "spc_1ph-x4_wpalx1/0_tpx_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "spacing": "spc_1ph-4_acsrxx4_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_397_aac_treewire", + "conductor_B": "wire_397_aac_treewire", + "conductor_C": "wire_397_aac_treewire", + "conductor_N": "wire_2/0_acsr", + "name": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "spacing": "spc_3ph-69kv_397_treewire_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-xx4_acsr4_acsr_ln5744357-1", + "spacing": "spc_1ph-xx4_acsr4_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_wpal", + "conductor_B": "wire_4_wpal", + "conductor_C": "wire_4_wpal", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_3ph_h-4_wpal4_wpal4_wpal1/0_tpx_ln6411371-1", + "spacing": "spc_3ph_h-4_wpal4_wpal4_wpal1/0_tpx_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_1/0_3w_cs", + "name": "lcon_1ph-x4_acsrx1/0_3w_cs_ln5775368-1", + "spacing": "spc_1ph-x4_acsrx1/0_3w_cs_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_B": "wire_4_acsr", + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "spacing": "spc_3ph_h-4_acsr4_acsr4_acsr4_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-xx2_acsr1/0_tpx_ln6229827-1", + "spacing": "spc_1ph-xx2_acsr1/0_tpx_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "cncab_1/0_al_15kv_1/3", + "name": "lcon_1p_1/0_axnj_db_ln81048087-1", + "spacing": "spc_1p_1/0_axnj_db_B" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "spacing": "spc_1ph-2_acsrxx2_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-x4_acsrx4_acsr_ln5683000-1", + "spacing": "spc_1ph-x4_acsrx4_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_wpal", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "spacing": "spc_1ph-4_wpalxx4_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-xx4_acsr4_wpal_ln5593235-1", + "spacing": "spc_1ph-xx4_acsr4_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_4_dpx", + "name": "lcon_1ph-x4_acsrx4_dpx_ln6506308-1", + "spacing": "spc_1ph-x4_acsrx4_dpx_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_wpal", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "spacing": "spc_1ph-x4_wpalx4_wpal_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-4_acsrxx4_acsr_ln6320366-1", + "spacing": "spc_1ph-4_acsrxx4_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_2_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-x2_acsrx4_acsr_ln6201698-2", + "spacing": "spc_1ph-x2_acsrx4_acsr_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-4_acsrxx2_acsr_ln5775367-1", + "spacing": "spc_1ph-4_acsrxx2_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "spacing": "spc_1ph-x2_acsrx2_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2/0_acsr", + "conductor_B": "wire_2/0_acsr", + "conductor_C": "wire_2/0_acsr", + "conductor_N": "wire_2_wpal", + "name": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_wpal_ln6259996-1", + "spacing": "spc_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_wpal_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2/0_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-2/0_acsrxx2_acsr_ln6129680-2", + "spacing": "spc_1ph-2/0_acsrxx2_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_wpal", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "spacing": "spc_1ph-xx4_wpal4_wpal_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-4_acsrxx1/0_tpx_ln6138596-1", + "spacing": "spc_1ph-4_acsrxx1/0_tpx_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "cncab_1/0_al_15kv_1/3", + "name": "lcon_1p_1/0_axnj_db_ln8979370-1", + "spacing": "spc_1p_1/0_axnj_db_A" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_B": "wire_4_acsr", + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "spacing": "spc_3ph_h-4_acsr4_acsr4_acsr4_wpal_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_2/0_acsr", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-xx2/0_acsr1/0_tpx_ln5866260-1", + "spacing": "spc_1ph-xx2/0_acsr1/0_tpx_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_4_tpx", + "name": "lcon_1ph-x4_acsrx4_tpx_ln5804795-1", + "spacing": "spc_1ph-x4_acsrx4_tpx_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-xx4_acsr4_acsr_ln6138606-1", + "spacing": "spc_1ph-xx4_acsr4_acsr_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "spacing": "spc_1ph-x2_acsrx2_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "spacing": "spc_1ph-x4_acsrx4_wpal_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "spacing": "spc_1ph-x2_acsrx2_acsr_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_wpal", + "conductor_B": "wire_4_wpal", + "conductor_C": "wire_4_wpal", + "conductor_N": "wire_4_wpal", + "name": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "spacing": "spc_3ph_h-4_wpal4_wpal4_wpal4_wpal_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_397_acsr", + "conductor_B": "wire_397_acsr", + "conductor_C": "wire_397_acsr", + "conductor_N": "wire_2/0_acsr", + "name": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "spacing": "spc_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-xx4_acsr2_acsr_ln5741170-3", + "spacing": "spc_1ph-xx4_acsr2_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_wpal", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "spacing": "spc_1ph-x4_wpalx4_acsr_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "spacing": "spc_1ph-xx4_acsr4_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_2ph_h-2_acsrx2_acsr2_acsr_ln5637597-1", + "spacing": "spc_2ph_h-2_acsrx2_acsr2_acsr_ACN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c33": "0.0000", + "name": "lcon_cap_1c_PUZ_C", + "z33": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c22": "0.0000", + "name": "lcon_cap_3b_PUZ_B", + "z22": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c22": "0.0000", + "name": "lcon_cap_1b_PUZ_B", + "z22": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c11": "0.0000", + "name": "lcon_cap_3a_PUZ_A", + "z11": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c11": "0.0000", + "name": "lcon_cap_1a_PUZ_A", + "z11": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c11": "0.0000", + "name": "lcon_cap_2a_PUZ_A", + "z11": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c33": "0.0000", + "name": "lcon_cap_3c_PUZ_C", + "z33": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c33": "0.0000", + "name": "lcon_cap_2c_PUZ_C", + "z33": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c22": "0.0000", + "name": "lcon_cap_2b_PUZ_B", + "z22": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c11": "0.0000", + "c12": "0.0000", + "c13": "0.0000", + "c21": "0.0000", + "c22": "0.0000", + "c23": "0.0000", + "c31": "0.0000", + "c32": "0.0000", + "c33": "0.0000", + "name": "lcon_hvmv_sub_connector_ABC", + "z11": "0.00160934+0.0160934j", + "z12": "0.00000+0.00000j", + "z13": "0.00000+0.00000j", + "z21": "0.00000+0.00000j", + "z22": "0.00160934+0.0160934j", + "z23": "0.00000+0.00000j", + "z31": "0.00000+0.00000j", + "z32": "0.00000+0.00000j", + "z33": "0.00160934+0.0160934j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c11": "0.0000", + "c12": "0.0000", + "c13": "0.0000", + "c21": "0.0000", + "c22": "0.0000", + "c23": "0.0000", + "c31": "0.0000", + "c32": "0.0000", + "c33": "0.0000", + "name": "lcon_ln5513564-2_ABC", + "z11": "1.60934+1.60934j", + "z12": "0.00000+0.00000j", + "z13": "0.00000+0.00000j", + "z21": "0.00000+0.00000j", + "z22": "1.60934+1.60934j", + "z23": "0.00000+0.00000j", + "z31": "0.00000+0.00000j", + "z32": "0.00000+0.00000j", + "z33": "1.60934+1.60934j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "name": "tcon_4/0triplex_12", + "z11": "2.16454+0.880800j", + "z12": "0.623542+0.673688j", + "z21": "0.623542+0.673688j", + "z22": "2.16454+0.880800j" + }, + "children": [], + "name": "triplex_line_configuration" + }, + { + "attributes": { + "name": "tcon_750_triplex_12", + "z11": "0.262666+0.146913j", + "z12": "0.123666+0.0353481j", + "z21": "0.123666+0.0353481j", + "z22": "0.262666+0.146913j" + }, + "children": [], + "name": "triplex_line_configuration" + }, + { + "attributes": { + "conductor_diameter": "0.368110", + "conductor_gmr": "0.011089", + "conductor_resistance": "0.970434", + "insulation_relative_permitivitty": "2.30", + "name": "cncab_1/0_al_15kv_1/3", + "neutral_diameter": "0.025197", + "neutral_gmr": "0.000819", + "neutral_resistance": "4.103827", + "neutral_strands": "6", + "outer_diameter": "1.078740" + }, + "children": [], + "name": "underground_line_conductor" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3195751", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2858163", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3448661b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069632", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3082993a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_337645b0", + "nominal_voltage": "120.09", + "parent": "sx3216342b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2685805a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_227100746a0", + "nominal_voltage": "120.09", + "parent": "sx3226771a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027056", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3027132a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_339004b0", + "nominal_voltage": "120.09", + "parent": "sx3197653b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3120484c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2684420b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136028", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "d6409775-4_int", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2223664050b0", + "nominal_voltage": "120.09", + "parent": "sx3315860b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3159645a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026925", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3065696a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2814529", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "7865.98", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355432c0", + "nominal_voltage": "120.09", + "parent": "sx3122837c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026705", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3312692", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3235249", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2822866", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3195751a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_391989a0", + "nominal_voltage": "120.09", + "parent": "sx2766747a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2876813a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026681", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047518", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2691966b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323287b0", + "nominal_voltage": "120.09", + "parent": "sx2897789b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3728041", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_228446184a0", + "nominal_voltage": "120.09", + "parent": "sx3159645a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047485", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1137003", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355589b0", + "nominal_voltage": "120.09", + "parent": "sx2691939b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3195327a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3159645a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1139551", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027066", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3176660b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3104117c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047722", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3010564c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3085410", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4556.70", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226193361b0", + "nominal_voltage": "120.09", + "parent": "sx3157710b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2766738c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1140526", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2895449", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338998b0", + "nominal_voltage": "120.09", + "parent": "sx3254229b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136664", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "name": "pv_pv_1087", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "parent": "inv_pv_pv_1087", + "rated_power": "8870.000" + }, + "children": [], + "name": "solar" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026810", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6561.86", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323261b0", + "nominal_voltage": "120.09", + "parent": "sx3085397b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2729427", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21149420a0", + "nominal_voltage": "120.09", + "parent": "sx3178973a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136363", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3122816b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3376.29", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338918a0", + "nominal_voltage": "120.09", + "parent": "sx2897773a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3101788a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3141389", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2766746c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3632979a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338954a0", + "nominal_voltage": "120.09", + "parent": "sx2860482a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3103822", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2224386750a0", + "nominal_voltage": "120.09", + "parent": "sx3727707a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2673319c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "221-240988", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3649301", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069513", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3649300a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p901931", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2851933c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4288.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338985a0", + "nominal_voltage": "120.09", + "parent": "sx2897792a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3727710", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m3768670", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3104124b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2935557a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p859135", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1137987", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1010007", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026880", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p901933", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136993", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047593", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "7520.62", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338933b0", + "nominal_voltage": "120.09", + "parent": "sx3216345b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3270814a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2935553b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226191778c0", + "nominal_voltage": "120.09", + "parent": "sx2820528c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3008232", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2224237718a0", + "nominal_voltage": "120.09", + "parent": "sx3649305a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1137991", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047780", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2726974b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047478", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2710515", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136353", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355773a0", + "nominal_voltage": "120.09", + "parent": "sx2991909a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1140828", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2952014", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m4113345", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2897793a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3085410b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3066826", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3010561a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2729413a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323233b0", + "nominal_voltage": "120.09", + "parent": "sx3254203b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3251854a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2685809", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_339021a0", + "nominal_voltage": "120.09", + "parent": "sx3197652a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047744", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3048212a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226193134c0", + "nominal_voltage": "120.09", + "parent": "sx2895449c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136367", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069521", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047813", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338913b0", + "nominal_voltage": "120.09", + "parent": "sx2804255b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2989432", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "e206614", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2914323b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2673322b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3104136b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2991929b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3101788a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3160106", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3122821", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "name": "pv_pv_1107", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "parent": "inv_pv_pv_1107", + "rated_power": "5320.000" + }, + "children": [], + "name": "solar" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2745806c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2766748", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026820", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2820531b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_356013a0", + "nominal_voltage": "120.09", + "parent": "sx2954348a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "3644.33", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338957c0", + "nominal_voltage": "120.09", + "parent": "sx2785517c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1009720", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2954353a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "2005.15", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355358b0", + "nominal_voltage": "120.09", + "parent": "sx2673322b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2916603b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3085403", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1009824", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2954355", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "8402.06", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_227731863a0", + "nominal_voltage": "120.09", + "parent": "sx3177665a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355591b0", + "nominal_voltage": "120.09", + "parent": "sx2822858b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3254216a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3226771a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_441854c0", + "nominal_voltage": "120.09", + "parent": "sx2935566c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355375a0", + "nominal_voltage": "120.09", + "parent": "sx2689691a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338970a0", + "nominal_voltage": "120.09", + "parent": "sx3141401a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1167", + "parent": "sx2897792a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.000" + }, + "children": [], + "name": "inverter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2673312a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2804248", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2916234a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3010561a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "6118.56", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2224386592a0", + "nominal_voltage": "120.09", + "parent": "sx3729297a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3141389a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069613", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "name": "pv_pv_1159", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "parent": "inv_pv_pv_1159", + "rated_power": "3550.000" + }, + "children": [], + "name": "solar" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3312692a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3120503a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "d5860450-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3235258a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355593b0", + "nominal_voltage": "120.09", + "parent": "sx2766715b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2897767c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2858175a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2801896b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3103822c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3376.29", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338921a0", + "nominal_voltage": "120.09", + "parent": "sx2935554a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "4556.70", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355596b0", + "nominal_voltage": "120.09", + "parent": "sx3178969b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "7865.98", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321884c0", + "nominal_voltage": "120.09", + "parent": "sx2710515c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_293655a0", + "nominal_voltage": "120.09", + "parent": "sx2729414a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3178979c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3207907", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "3144.33", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_337655c0", + "nominal_voltage": "120.09", + "parent": "sx3141396c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047793", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2766725c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2691938b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3254203b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2876812a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026946", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2841641", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026697", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6118.56", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_227921416a0", + "nominal_voltage": "120.09", + "parent": "sx3065696a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3085403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3008237c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3122827a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3254228b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1140827", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3048227a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_293665c0", + "nominal_voltage": "120.09", + "parent": "sx2973166c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2224386815a0", + "nominal_voltage": "120.09", + "parent": "sx3727708a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3160108b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "6561.86", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338953b0", + "nominal_voltage": "120.09", + "parent": "sx3122821b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069544", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1147862", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2879069", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2710518a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027039", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6561.86", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323236b0", + "nominal_voltage": "120.09", + "parent": "sx2822860b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x196-29518", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p827537", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026701", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2710542b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3197646b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2785534b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_391978c0", + "nominal_voltage": "120.09", + "parent": "sx3141402c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "15041.24", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_293664b0", + "nominal_voltage": "120.09", + "parent": "sx3207907b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21397645a0", + "nominal_voltage": "120.09", + "parent": "sx2860493a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2821010a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026926", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3235246b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2879092", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6855.67", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2224386617a0", + "nominal_voltage": "120.09", + "parent": "sx3729298a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3141398a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3122821b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3065696a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2766724", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2673318c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1075", + "parent": "sx2673319c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.000" + }, + "children": [], + "name": "inverter" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321894c0", + "nominal_voltage": "120.09", + "parent": "sx3066829c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069620", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4288.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_337720a0", + "nominal_voltage": "120.09", + "parent": "sx2841648a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026655", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3104123c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21451973b0", + "nominal_voltage": "120.09", + "parent": "sx3010580b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026941", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "name": "pv_pv_1057", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "parent": "inv_pv_pv_1057", + "rated_power": "9730.000" + }, + "children": [], + "name": "solar" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3065696", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3216350", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2860478", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026931", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "7520.62", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_337653b0", + "nominal_voltage": "120.09", + "parent": "sx2673308b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_227653310c0", + "nominal_voltage": "120.09", + "parent": "sx2746587c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047503", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2841624b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3066812a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3189188c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2766724c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3632979", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2785512b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21426205b0", + "nominal_voltage": "120.09", + "parent": "sx2731712b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2804272b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2804272b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026chp-1", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2991908", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136357", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026984", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2879089", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3197641a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2897805a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069560", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2820528c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027001", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136998", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2897800b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026734", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3312692a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3226771", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2745799", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3066811", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2973154a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2973153a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4288.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321836a0", + "nominal_voltage": "120.09", + "parent": "sx3235247a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069627", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2689691", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3101789a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2897790c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "P_Out": "5840.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1043", + "parent": "sx2804272b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.000" + }, + "children": [], + "name": "inverter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1140823", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2911069b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136672", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m3763618", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2879092c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2820556", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2691947a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2673308", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "name": "pv_pv_1169", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "parent": "inv_pv_pv_1169", + "rated_power": "5320.000" + }, + "children": [], + "name": "solar" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136668", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2916598a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "d5655682-1_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "196-29520", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3254216", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3207907a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2729409b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2841632b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2729427b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3141402c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026795", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "e182732", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m3037453", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6855.67", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226109079a0", + "nominal_voltage": "120.09", + "parent": "sx2726983a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2991939", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069503", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226196648a0", + "nominal_voltage": "120.09", + "parent": "sx2820556a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3010561", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2729423c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_293656b0", + "nominal_voltage": "120.09", + "parent": "sx2973167b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2099529c0", + "nominal_voltage": "120.09", + "parent": "sx3235268c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2973160b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3216348", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "d5653457-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2954347b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "7520.62", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226194002b0", + "nominal_voltage": "120.09", + "parent": "sx2801902b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p827527", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3189190", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3178988b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069532", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3141411", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "d5774457-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3122815b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3160106a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2860482a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069517", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3160123", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047725", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "d5623395-1_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2726974b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2989564", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2879089c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "7865.98", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2212168866c0", + "nominal_voltage": "120.09", + "parent": "sx2729206c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "10484.54", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_293664c0", + "nominal_voltage": "120.09", + "parent": "sx3207907c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3160103", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026979", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3649299a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3048203b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_337728a0", + "nominal_voltage": "120.09", + "parent": "sx3082992a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2879066b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p827530", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3216361b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2710517a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2748144", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6859.80", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_225571871b0", + "nominal_voltage": "120.09", + "parent": "sx2911069b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3120502a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2801896b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2804255b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2785546a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3140238a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3104129a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3144.33", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_337712c0", + "nominal_voltage": "120.09", + "parent": "sx3235245c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3010560b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026940", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3195327a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "6561.86", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355607b0", + "nominal_voltage": "120.09", + "parent": "sx2991927b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "15731.96", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2224230689c0", + "nominal_voltage": "120.09", + "parent": "sx3645811c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3178971", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2876796a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1009691", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3235249a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2764436", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3160114a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21357865a0", + "nominal_voltage": "120.09", + "parent": "sx2766719a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2973153a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2876796", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3122835b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2973167", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026724", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338917a0", + "nominal_voltage": "120.09", + "parent": "sx2935555a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026665", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2841641b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3649306", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "10025.77", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323264b0", + "nominal_voltage": "120.09", + "parent": "sx3216344b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2710536", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "18608.25", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21396815c0", + "nominal_voltage": "120.09", + "parent": "sx3253995c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_225673440a0", + "nominal_voltage": "120.09", + "parent": "sx3251807a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2841623", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2766716c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2785538", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355604b0", + "nominal_voltage": "120.09", + "parent": "sx2841624b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047592", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2935567b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2804262a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2804257b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "6855.67", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338973a0", + "nominal_voltage": "120.09", + "parent": "sx2748157a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2935555", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2710505b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2766738", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2841624", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2991914", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3727707a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226193838c0", + "nominal_voltage": "120.09", + "parent": "sx3008237c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3342743c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338920a0", + "nominal_voltage": "120.09", + "parent": "sx3197631a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "6855.67", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2224386863a0", + "nominal_voltage": "120.09", + "parent": "sx3727710a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3048207b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069526", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2973169a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2973154a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_294842a0", + "nominal_voltage": "120.09", + "parent": "sx3101789a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226192936b0", + "nominal_voltage": "120.09", + "parent": "sx2820531b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160113b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3160113b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3066809c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3104119a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3066808c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069555", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1137988", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1140524", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3177894a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3178971a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "e182729", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "name": "pv_pv_1073", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "parent": "inv_pv_pv_1073", + "rated_power": "5320.000" + }, + "children": [], + "name": "solar" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3216336a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026935", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3160102", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "3644.33", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338908c0", + "nominal_voltage": "120.09", + "parent": "sx2860481c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027014", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "3551.55", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_339001b0", + "nominal_voltage": "120.09", + "parent": "sx3178988b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "4288.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_356007a0", + "nominal_voltage": "120.09", + "parent": "sx3141389a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2973159", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3645811c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "name": "pv_pv_1001", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "parent": "inv_pv_pv_1001", + "rated_power": "5320.000" + }, + "children": [], + "name": "solar" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p901905", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2685809a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "6118.56", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226163467a0", + "nominal_voltage": "120.09", + "parent": "sx3120376a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338919a0", + "nominal_voltage": "120.09", + "parent": "sx2748127a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2860504a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3195327", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2822870c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1010014", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3649298a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "190-8593", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3065750", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047484", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3197631a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2691967", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026796", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_337717a0", + "nominal_voltage": "120.09", + "parent": "sx3216348a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3784018a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3551.55", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338999b0", + "nominal_voltage": "120.09", + "parent": "sx2822873b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3254230", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1140519", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2710532", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6561.86", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321845b0", + "nominal_voltage": "120.09", + "parent": "sx3178975b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_339019a0", + "nominal_voltage": "120.09", + "parent": "sx3160114a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2860485", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2860481c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323234b0", + "nominal_voltage": "120.09", + "parent": "sx2860480b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2726973a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2673326b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2710511", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2841631", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "9510.53", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_391977a0", + "nominal_voltage": "120.09", + "parent": "sx3216350a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3728040", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3197633a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069462", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2989432b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2858166a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_227734175b0", + "nominal_voltage": "120.09", + "parent": "sx3102793b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026798", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3197646b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3197633a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3649300a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1137989", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3104117", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3008237", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047633", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3160113", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355585b0", + "nominal_voltage": "120.09", + "parent": "sx2766742b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3251806b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m3949154", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2954357a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3141397", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4288.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338897a0", + "nominal_voltage": "120.09", + "parent": "sx2973154a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2858163a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026854", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6561.86", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2127681b0", + "nominal_voltage": "120.09", + "parent": "sx2785522b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3254206", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2935555a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2860479b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2973167b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_339018a0", + "nominal_voltage": "120.09", + "parent": "sx2729424a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069610", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3159037b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3160108", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2673323c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3141401a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_356012a0", + "nominal_voltage": "120.09", + "parent": "sx2841615a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026883", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "3144.33", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_391973c0", + "nominal_voltage": "120.09", + "parent": "sx2673319c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2897789b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_225897846a0", + "nominal_voltage": "120.09", + "parent": "sx3120504a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "6283.60", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_227905262a0", + "nominal_voltage": "120.09", + "parent": "sx3140238a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321858b0", + "nominal_voltage": "120.09", + "parent": "sx3122815b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "name": "pv_pvfarm1", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "parent": "inv_pv_pvfarm1", + "rated_power": "1000000.000" + }, + "children": [], + "name": "solar" + }, + { + "attributes": { + "name": "sx2710544a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2710544a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2673312a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047768", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2989571a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3029510b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "P_Out": "19450.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1003", + "parent": "sx2673331b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "24300.000" + }, + "children": [], + "name": "inverter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2766747", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2897793", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6890.85", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226193886b0", + "nominal_voltage": "120.09", + "parent": "sx2783231b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2804269b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2879068", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047575", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069565", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2785534", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2748126c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "6118.56", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_441311a0", + "nominal_voltage": "120.09", + "parent": "sx2766720a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2726975", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323279b0", + "nominal_voltage": "120.09", + "parent": "sx3235246b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2673317a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047572", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3216361", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6118.56", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226191850a0", + "nominal_voltage": "120.09", + "parent": "sx3270814a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "6118.56", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21398563a0", + "nominal_voltage": "120.09", + "parent": "sx3254216a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_356010a0", + "nominal_voltage": "120.09", + "parent": "sx3216336a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "d6231996-1_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2120183c0", + "nominal_voltage": "120.09", + "parent": "sx3122818c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "6788.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21399112c0", + "nominal_voltage": "120.09", + "parent": "sx3254217c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m3327097", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2820533a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3010585a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2991908a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2729409b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3160114", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3216342b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027092", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1010016", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3048212", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2224192013a0", + "nominal_voltage": "120.09", + "parent": "sx3632979a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3120503", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3727709", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4288.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338925a0", + "nominal_voltage": "120.09", + "parent": "sx2973153a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "2005.15", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338995b0", + "nominal_voltage": "120.09", + "parent": "sx3254227b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2879068b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3231269b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3215549", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "P_Out": "14590.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1177", + "parent": "sx2673308b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "18300.000" + }, + "children": [], + "name": "inverter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1141474", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2876813", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2748126c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069564", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3216367b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2929261a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2127319b0", + "nominal_voltage": "120.09", + "parent": "sx2766744b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2729430b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047577", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2916618", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2916607", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "d5895780-3_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2860506b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3122848c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2785517", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2729410c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3197661c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3172805a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3091052a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "2005.15", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321840b0", + "nominal_voltage": "120.09", + "parent": "sx2804256b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m3036169", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3010563", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6855.67", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2224387113a0", + "nominal_voltage": "120.09", + "parent": "sx3728042a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338967c0", + "nominal_voltage": "120.09", + "parent": "sx2673318c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3066821a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069590", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047787", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2710504b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673308b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2673308b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069516", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2929261a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3197624b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2841633a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "6788.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338959c0", + "nominal_voltage": "120.09", + "parent": "sx2954344c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2858163a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3029506b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027036", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3254204a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3122818c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3728042a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2841622a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047568", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2916620b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21357984c0", + "nominal_voltage": "120.09", + "parent": "sx2897790c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3729297a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3216348a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "10484.54", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_293658c0", + "nominal_voltage": "120.09", + "parent": "sx3189188c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2785536b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2952013", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3082983", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2691939b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "221-559681", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2916234a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2973157", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2935560", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2973160b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21399099a0", + "nominal_voltage": "120.09", + "parent": "sx2841635a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1138000", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026chp-3_dgmtr", + "nominal_voltage": "7199.56", + "parent": "m1026chp-3", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2935557", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2691967b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2876814a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p1123251", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6855.67", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_294810a0", + "nominal_voltage": "120.09", + "parent": "sx3010585a", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069572", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338949b0", + "nominal_voltage": "120.09", + "parent": "sx3104136b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323273b0", + "nominal_voltage": "120.09", + "parent": "sx3048203b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3008248a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2729424", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2785535b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2691943b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3216350a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3066829", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "d5712587-2_int", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026690", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2841635", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3235258b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3104124b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2785538a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3727712a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3160117b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1147858", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026661", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4288.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_293672a0", + "nominal_voltage": "120.09", + "parent": "sx2954355a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3727709a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3159645", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3066817a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3729298", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6788.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_391976c0", + "nominal_voltage": "120.09", + "parent": "sx2841631c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3197652a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3215549b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026805", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2860483b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2764399", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3141412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_227896008c0", + "nominal_voltage": "120.09", + "parent": "sx3177881c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047733", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6855.67", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2224387138a0", + "nominal_voltage": "120.09", + "parent": "sx3728043a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2729424a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "d5835167-6_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2991914c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2785536b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3728040a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3048222c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2935568b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3144.33", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338963c0", + "nominal_voltage": "120.09", + "parent": "sx2673303c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3197633", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2983432", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2729424a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2860506", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2764412", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3197642c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3216345b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3156034a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2879068b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2973146b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3029505c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3141403a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3066821a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355840b0", + "nominal_voltage": "120.09", + "parent": "sx2822871b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3649304", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1137956", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069535", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3197653", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2991909", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3197631", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047552", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2841627a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_391995a0", + "nominal_voltage": "120.09", + "parent": "sx2748140a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "1829.90", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355934a0", + "nominal_voltage": "120.09", + "parent": "sx3048212a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1147861", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3727712a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2785521c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3048221a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136663", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2858175", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2851933c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2857591", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3649301a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2804254", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2991901b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047777", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_337646b0", + "nominal_voltage": "120.09", + "parent": "sx2879063b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026851", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "23762.89", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338915c0", + "nominal_voltage": "120.09", + "parent": "sx2954345c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "6855.67", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_293592a0", + "nominal_voltage": "120.09", + "parent": "sx2973161a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2691939b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3214064", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047728", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2954347b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "d6019477-1_int", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2726973a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069465", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2691941c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3141411c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3342743c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136366", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4556.70", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2119958b0", + "nominal_voltage": "120.09", + "parent": "sx2935568b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323387b0", + "nominal_voltage": "120.09", + "parent": "sx2690941b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321892c0", + "nominal_voltage": "120.09", + "parent": "sx3235267c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "P_Out": "10170.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1081", + "parent": "sx2897767c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.000" + }, + "children": [], + "name": "inverter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026849", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2860484", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3082993a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3085398b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3104114", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3235258a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2897777c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3270814a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "P_Out": "5840.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1015", + "parent": "sx3085410b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.000" + }, + "children": [], + "name": "inverter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026895", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3254209c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2916619", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "name": "pv_pv_1049", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "parent": "inv_pv_pv_1049", + "rated_power": "20340.000" + }, + "children": [], + "name": "solar" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2710518a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027011", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047612", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3160114a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "7520.62", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323391b0", + "nominal_voltage": "120.09", + "parent": "sx3159037b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1009770", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4288.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338896a0", + "nominal_voltage": "120.09", + "parent": "sx3178971a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2916599a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "196-29521", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3234185", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321878a0", + "nominal_voltage": "120.09", + "parent": "sx3101788a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2841641b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2691965", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3156034a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069533", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026826", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6846.24", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355602b0", + "nominal_voltage": "120.09", + "parent": "sx3251806b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2710508", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2673322b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3727711a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2954357a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2785543", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2860499b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047566", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3235258c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2814529c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3727710a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1137996", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026872", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3216344b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2841639", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321849b0", + "nominal_voltage": "120.09", + "parent": "sx2748152b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069487", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1134480", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2673319c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2673319c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_2": "5653.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355768b0", + "nominal_voltage": "120.09", + "parent": "sx2729408b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136029", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2748152b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "10484.54", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2212168880c0", + "nominal_voltage": "120.09", + "parent": "sx2766499c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2689727", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2841635a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3101787", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3178982", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2766720a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026764", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3066804a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2726983a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2897789", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2935557a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2766742b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2916619b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2673313", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2989571a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2821010", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2726975b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2954338", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047521", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3254217", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1009839", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3122816", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3122814c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3376.29", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_339020a0", + "nominal_voltage": "120.09", + "parent": "sx3104144a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21383494b0", + "nominal_voltage": "120.09", + "parent": "sx2954361b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "P_Out": "13300.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1115", + "parent": "sx3728043a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "16700.000" + }, + "children": [], + "name": "inverter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047834", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1147857", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1009820", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "3144.33", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_337654c0", + "nominal_voltage": "120.09", + "parent": "sx3066808c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2973155a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323245b0", + "nominal_voltage": "120.09", + "parent": "sx2785512b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2897793a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4690.72", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_356063c0", + "nominal_voltage": "120.09", + "parent": "sx3160103c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2820535", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2673331b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2673331b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p860847", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p827529", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047763", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3122821b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1001", + "parent": "sx3216348a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6600.000" + }, + "children": [], + "name": "inverter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2766723", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3254228", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m3016088", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3235267c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2804272b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3235273", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3082983b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1139264", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3216338b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1147864", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "10484.54", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2224230615c0", + "nominal_voltage": "120.09", + "parent": "sx3645809c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026660", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3104136", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3649302", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2954346b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2841633", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3728042a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3197653b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2983432a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3216361b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026915", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2748131", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321877a0", + "nominal_voltage": "120.09", + "parent": "sx3101787a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m3949157", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3104144a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3197639a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2991901", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3254217c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3178974b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1139549", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3122817c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3649302a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2820533", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p859694", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2729206c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4288.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21482279a0", + "nominal_voltage": "120.09", + "parent": "sx2710544a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2935567", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "10025.77", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338994b0", + "nominal_voltage": "120.09", + "parent": "sx3160115b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2972930a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3189189b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3216338", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3120504", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2820535b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2879067a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047404", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4288.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21397544a0", + "nominal_voltage": "120.09", + "parent": "sx2822868a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2748140a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3010564", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026844", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136671", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2897792", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321855b0", + "nominal_voltage": "120.09", + "parent": "sx2860485b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "6561.86", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323242b0", + "nominal_voltage": "120.09", + "parent": "sx3122810b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2822868", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_337715a0", + "nominal_voltage": "120.09", + "parent": "sx3254204a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2860493a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2745806c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2860477", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047528", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026667", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3254227b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069597", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3177881", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "e203026", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p827554", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136030", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3649297", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3645810c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3122822", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027068", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3160103c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2970811a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2729410", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2691947a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "name": "pv_pv_1167", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "parent": "inv_pv_pv_1167", + "rated_power": "5320.000" + }, + "children": [], + "name": "solar" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2691936a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3189188", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p827512", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "name": "pv_pv_1043", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "parent": "inv_pv_pv_1043", + "rated_power": "5840.000" + }, + "children": [], + "name": "solar" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3207907a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2785517c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2991933", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_339002b0", + "nominal_voltage": "120.09", + "parent": "sx2785536b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "d6140776-1_int", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p895409", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2785521c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136657", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3254228b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4556.70", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323255b0", + "nominal_voltage": "120.09", + "parent": "sx2860484b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3216358", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "name": "pv_pv_1069", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "parent": "inv_pv_pv_1069", + "rated_power": "6100.000" + }, + "children": [], + "name": "solar" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3066817a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "6118.56", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21382992a0", + "nominal_voltage": "120.09", + "parent": "sx3197654a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2785521", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2822860b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3727708", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3122820a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2764399b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136362", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3235245", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2748143a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2764403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3172805", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136359", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6855.67", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338969a0", + "nominal_voltage": "120.09", + "parent": "sx3104129a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2766744", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2121368a0", + "nominal_voltage": "120.09", + "parent": "sx2748143a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p827553", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2804269", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3728037a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2822857", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026907", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_337652b0", + "nominal_voltage": "120.09", + "parent": "sx2991939b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2991908a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2729434", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069582", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047580", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338984a0", + "nominal_voltage": "120.09", + "parent": "sx2748144a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "4690.72", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21397121c0", + "nominal_voltage": "120.09", + "parent": "sx3122848c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3251854a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2876796a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3376.29", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_225806974a0", + "nominal_voltage": "120.09", + "parent": "sx2876814a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026960", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2989571", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "12371.01", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_339005b0", + "nominal_voltage": "120.09", + "parent": "sx2785535b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3085410b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2748124", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3235246b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2970811a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2804262", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2897791", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2801896", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026708", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026902", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027005", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355842a0", + "nominal_voltage": "120.09", + "parent": "sx2876813a", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2841615a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3104118", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2991909a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2989564b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2785543b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069731", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338975a0", + "nominal_voltage": "120.09", + "parent": "sx2785537a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3178969b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3197634", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047pv-1", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2897800", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026807", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p827502", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2804269b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2673322", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3066815c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3235247", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3270814", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2841633a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3232933", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3645812c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "6118.56", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21399305a0", + "nominal_voltage": "120.09", + "parent": "sx3048221a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3160106a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1137993", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2822871", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026812", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2822858b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323286b0", + "nominal_voltage": "120.09", + "parent": "sx2989564b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2729414c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4690.72", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_294786c0", + "nominal_voltage": "120.09", + "parent": "sx2766724c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2729434b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3216367", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1134469", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3254213", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3235248", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3197618a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2745848", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3120502a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3235273b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2841632", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4556.70", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323403b0", + "nominal_voltage": "120.09", + "parent": "sx2916603b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2766725c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3066815c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2929261", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1140829", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2954361", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3254229b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3254209", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2691947", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338922b0", + "nominal_voltage": "120.09", + "parent": "sx2822866b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355598b0", + "nominal_voltage": "120.09", + "parent": "sx2804245b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027073", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2673303", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2748157a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2973157a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047490", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2991927b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "9553.86", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338956a0", + "nominal_voltage": "120.09", + "parent": "sx3104119a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338935b0", + "nominal_voltage": "120.09", + "parent": "sx2973160b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2954345c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2673318", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3234185b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2860501b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4556.70", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323243b0", + "nominal_voltage": "120.09", + "parent": "sx2897765b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1134470", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2897767", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3197624b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3010563a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2858166a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2729408b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3728038", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1134479", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6561.86", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323388b0", + "nominal_voltage": "120.09", + "parent": "sx3234185b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3172805a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3649300", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047825", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_391981a0", + "nominal_voltage": "120.09", + "parent": "sx2879081a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3632979a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047702", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p827574", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_339006b0", + "nominal_voltage": "120.09", + "parent": "sx2916619b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2729428a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2804271", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2673326", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3645811c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3216342b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "Gen_type": "DYN_SYNCHRONOUS", + "Rated_V": "12470.00", + "Rated_VA": "30000000", + "flags": "DELTAMODE", + "name": "dg_steamgen1", + "parent": "m1026chp-3_dgmtr", + "power_out_A": "333333.33-349783.63j", + "power_out_B": "333333.33-349783.63j", + "power_out_C": "333333.33-349783.63j" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2952013a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2764412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4288.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_337723a0", + "nominal_voltage": "120.09", + "parent": "sx3178978a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2897789b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2860480b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2860480", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027041", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_227100753a0", + "nominal_voltage": "120.09", + "parent": "sx3189190a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "name": "pv_pv_1071", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "parent": "inv_pv_pv_1071", + "rated_power": "5320.000" + }, + "children": [], + "name": "solar" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1009838", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_391987a0", + "nominal_voltage": "120.09", + "parent": "sx3122822a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2822870c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_391996a0", + "nominal_voltage": "120.09", + "parent": "sx3141412a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1140824", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m3729981", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3251806", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "10484.54", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355433c0", + "nominal_voltage": "120.09", + "parent": "sx2991933c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2804248b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2822870", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "1829.90", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355843a0", + "nominal_voltage": "120.09", + "parent": "sx2952013a", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069543", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2860506b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2804272", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2860481c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3197632b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2804245b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1147865", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1009724", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3120376", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6561.86", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321860b0", + "nominal_voltage": "120.09", + "parent": "sx2785543b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "d5803273-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1144666", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2690941b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "6561.86", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_356064b0", + "nominal_voltage": "120.09", + "parent": "sx2935556b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2731712b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2916610", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3645812", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3085390", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4288.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338926a0", + "nominal_voltage": "120.09", + "parent": "sx3216123a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "15731.96", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2224230651c0", + "nominal_voltage": "120.09", + "parent": "sx3645810c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2897792a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3784018a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "6855.67", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2224238167a0", + "nominal_voltage": "120.09", + "parent": "sx3649306a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2673331b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069600", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047720", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2954348a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2729414a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323253b0", + "nominal_voltage": "120.09", + "parent": "sx2973152b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2822871b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2685805", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2121587a0", + "nominal_voltage": "120.09", + "parent": "sx2860477a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "6855.67", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2224237384a0", + "nominal_voltage": "120.09", + "parent": "sx3649298a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3216344b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2710516a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2989596", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2897777", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3029505c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026732", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "7865.98", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338931c0", + "nominal_voltage": "120.09", + "parent": "sx2785521c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047721", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "d5621886-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3649299", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2748125c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3104145", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3728040a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3197646", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3141402", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2935560c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p1121282", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2879063b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2983432a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3728039a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069551", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355942a0", + "nominal_voltage": "120.09", + "parent": "sx2973165a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2118903b0", + "nominal_voltage": "120.09", + "parent": "sx2973146b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3141402c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026876", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2804248b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3176656a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "d5863704-2_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026989", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_225991691a0", + "nominal_voltage": "120.09", + "parent": "sx2989571a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321854b0", + "nominal_voltage": "120.09", + "parent": "sx2804257b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2691952a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3141403", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "r18245", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_293645a0", + "nominal_voltage": "120.09", + "parent": "sx2841633a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21384215a0", + "nominal_voltage": "120.09", + "parent": "sx2841622a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2710525c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026886", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027013", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3176656a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026947", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "7077.32", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226193745b0", + "nominal_voltage": "120.09", + "parent": "sx2876798b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "7520.62", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355767b0", + "nominal_voltage": "120.09", + "parent": "sx3197634b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2748143a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2748143a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3216358a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047767", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6855.67", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2224237713a0", + "nominal_voltage": "120.09", + "parent": "sx3649304a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2860499b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3085398", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21380528a0", + "nominal_voltage": "120.09", + "parent": "sx2973150a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3254213b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026951", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3082983b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047403", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3197640", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6855.67", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2224386842a0", + "nominal_voltage": "120.09", + "parent": "sx3727709a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2785512", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2708293", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "8319.59", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2224387053a0", + "nominal_voltage": "120.09", + "parent": "sx3728039a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2710532c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2766742", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1169", + "parent": "sx2673317a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.000" + }, + "children": [], + "name": "inverter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3216337a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2895449c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047432", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2991927b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21399762a0", + "nominal_voltage": "120.09", + "parent": "sx2879087a", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3160113b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4690.72", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338932c0", + "nominal_voltage": "120.09", + "parent": "sx3197661c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2801902", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026784", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047809", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1141473", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2897767c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2785546a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3207907b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2710505b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3066809", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2973166", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3104144", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21396959a0", + "nominal_voltage": "120.09", + "parent": "sx3197638a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3029505", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p827549", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1147860", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "2458.76", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338989a0", + "nominal_voltage": "120.09", + "parent": "sx3254230a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338966c0", + "nominal_voltage": "120.09", + "parent": "sx3029505c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047826", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3157710b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2935547", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "name": "pv_pv_1037", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "parent": "inv_pv_pv_1037", + "rated_power": "5320.000" + }, + "children": [], + "name": "solar" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2729429a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3645809c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m3763623", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3157710", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3048199b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3122822a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3177881c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026679", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3178972c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069505", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069574", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2916617b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p828362", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2822866b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1009807", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047821", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2710544", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2804245b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3235268", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6561.86", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355587b0", + "nominal_voltage": "120.09", + "parent": "sx3104114b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p827504", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2748127a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "r42246", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3233353a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4556.70", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323398b0", + "nominal_voltage": "120.09", + "parent": "sx2710505b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3085410b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3085410b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_2": "6118.56", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338942a0", + "nominal_voltage": "120.09", + "parent": "sx2822869a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3216342", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2820556a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2710512", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2851933a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_293655b0", + "nominal_voltage": "120.09", + "parent": "sx2729414b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "VAr_set_high": "200000.00", + "VAr_set_low": "-300000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_C": "400000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "102.00", + "name": "cap_capbank3c", + "nominal_voltage": "7200.00", + "parent": "r42246", + "phases": "CN", + "phases_connected": "CN", + "pt_phase": "C", + "remote_sense": "line_cap_3c", + "switchC": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2766730", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2726975b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3235241c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321159a0", + "nominal_voltage": "120.09", + "parent": "sx3008248a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3315860b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136661", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3010560b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p827560", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3027132a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2766748a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026953", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "P_Out": "8870.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1087", + "parent": "sx3160106a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.000" + }, + "children": [], + "name": "inverter" + }, + { + "attributes": { + "base_power_2": "3144.33", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_293652c0", + "nominal_voltage": "120.09", + "parent": "sx3235258c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3103822c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "P_Out": "9730.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1057", + "parent": "sx3160113b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12100.000" + }, + "children": [], + "name": "inverter" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321853b0", + "nominal_voltage": "120.09", + "parent": "sx2673313b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3235247a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2820531", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2822872b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3728043", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026890", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2691952", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3649304a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "6118.56", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226193170a0", + "nominal_voltage": "120.09", + "parent": "sx3176656a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m3036164", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338960c0", + "nominal_voltage": "120.09", + "parent": "sx2897767c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2860483b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047756", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3448661b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2748139b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3254227b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3122810", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3141398", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3104144a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323285b0", + "nominal_voltage": "120.09", + "parent": "sx2804269b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3216345", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2785522b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2876847", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3048203b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1140821", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "name": "pv_pv_1153", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "parent": "inv_pv_pv_1153", + "rated_power": "8870.000" + }, + "children": [], + "name": "solar" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p827507", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3066830b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2766715b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3178976a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338982b0", + "nominal_voltage": "120.09", + "parent": "sx2785534b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027042", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2691965b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2916610b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026646", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2973161a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3010568a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p1164481", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1009784", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3197641", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3122820a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3197660b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3010580", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879078a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2879078a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p827555", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3101787a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "r18243", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_354851b0", + "nominal_voltage": "120.09", + "parent": "sx2991901b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2785530a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21483138a0", + "nominal_voltage": "120.09", + "parent": "sx3122847a", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2858166", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026834", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3728039a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3729298a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2916607c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3029510b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2785529c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3122835b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2935554a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2691944", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047769", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2860493a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1137958", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3235258c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3254217c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2876798b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2897792a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3178975", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2785546", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3160100b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2860504", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "regxfmr_190-8593", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3254231a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_356009a0", + "nominal_voltage": "120.09", + "parent": "sx2691936a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069524", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2879078", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2814529b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3729297a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3010562b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "6118.56", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226964880a0", + "nominal_voltage": "120.09", + "parent": "sx3172805a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21209868a0", + "nominal_voltage": "120.09", + "parent": "sx2710518a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3065750b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21393643a0", + "nominal_voltage": "120.09", + "parent": "sx2851933a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3189188c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047410", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2822866b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2785522b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21399826a0", + "nominal_voltage": "120.09", + "parent": "sx3216358a", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3047060", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p901894", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2748131b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3254208c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3141397b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136659", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2785537a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2841621", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4556.70", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_339013b0", + "nominal_voltage": "120.09", + "parent": "sx2804270b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2860500b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "name": "pv_pv_1053", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "parent": "inv_pv_pv_1053", + "rated_power": "5320.000" + }, + "children": [], + "name": "solar" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338893a0", + "nominal_voltage": "120.09", + "parent": "sx3197633a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2673303c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226101449a0", + "nominal_voltage": "120.09", + "parent": "sx3027133a", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3160100b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "6855.67", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2127253a0", + "nominal_voltage": "120.09", + "parent": "sx3085401a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1009855", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4556.70", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21381118b0", + "nominal_voltage": "120.09", + "parent": "sx2710530b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2860482a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3027133a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3178971a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "1829.90", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_294787a0", + "nominal_voltage": "120.09", + "parent": "sx3197647a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2860478b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2748139b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3649297a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355935a0", + "nominal_voltage": "120.09", + "parent": "sx2691973a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3197634b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2710525c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2916620a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3104129a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3066809c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2673318c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2876797a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2822858", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "r18241", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026855", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1139552", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3197638a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226159329a0", + "nominal_voltage": "120.09", + "parent": "sx3082993a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047766", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2748157a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3784018", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3008232b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2822868a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047729", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p875742", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069549", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3254230a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2691943", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047520", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026778", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3251808a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2673314", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3649299a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3141403a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3254234b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047pv-2", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047732", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136368", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1137986", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p827509", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3177881c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3083019", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026779", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026800", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2745799c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2748140", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2804257b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026700", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2879070b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_339016b0", + "nominal_voltage": "120.09", + "parent": "sx3235273b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2766724c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1138594", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2860477a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3197647a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069563", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "q16642_cap", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2691973", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2729430b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2814529a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2814529a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "q16642", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2954346b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3235241c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p895117", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338955b0", + "nominal_voltage": "120.09", + "parent": "sx3010560b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2878848c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026972", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3010563a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_294845a0", + "nominal_voltage": "120.09", + "parent": "sx3010563a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069468", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3195751a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3728043a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2804270b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2914323", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2745799c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226193298a0", + "nominal_voltage": "120.09", + "parent": "sx2820533a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3216348a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3216348a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "regxfmr_hvmv11sub3_lsb", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2876814a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2935566c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2710504", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2785512b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "2005.15", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_325245b0", + "nominal_voltage": "120.09", + "parent": "sx2710513b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21397029a0", + "nominal_voltage": "120.09", + "parent": "sx2673311a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3197653b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323275b0", + "nominal_voltage": "120.09", + "parent": "sx3197660b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069557", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2685805a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p827536", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2748127", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2954348a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136361", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026977", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026906", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2916603", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "P_Out": "8870.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1153", + "parent": "sx2748143a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.000" + }, + "children": [], + "name": "inverter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3649305a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3197642c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3315860b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2785530", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "8108.15", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_225571845b0", + "nominal_voltage": "120.09", + "parent": "sx2948732b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3727711", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2785537a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3091052a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047688", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2814529a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "9144.33", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21373784a0", + "nominal_voltage": "120.09", + "parent": "sx3066817a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2820556a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m3037441", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "8402.06", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2224237653a0", + "nominal_voltage": "120.09", + "parent": "sx3649302a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2841627", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3197654a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027123", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047711", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160106a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3160106a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026942", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3029510", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1147859", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2729207", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2689691a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069484", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3189189", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2745806", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047672", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "2458.76", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226196642a0", + "nominal_voltage": "120.09", + "parent": "sx2914324a", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323280b0", + "nominal_voltage": "120.09", + "parent": "sx2710512b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "6561.86", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_293660b0", + "nominal_voltage": "120.09", + "parent": "sx2916610b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_227989724b0", + "nominal_voltage": "120.09", + "parent": "sx2859391b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2804270", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2841627a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2841627a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026744", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "P_Out": "10170.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1059", + "parent": "sx2673318c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.000" + }, + "children": [], + "name": "inverter" + }, + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "name": "pv_pv_1059", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "parent": "inv_pv_pv_1059", + "rated_power": "10170.000" + }, + "children": [], + "name": "solar" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2766715b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_391994a0", + "nominal_voltage": "120.09", + "parent": "sx3066821a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "6118.56", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323263a0", + "nominal_voltage": "120.09", + "parent": "sx3066812a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2804270b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2879078a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "name": "pv_pv_1003", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "parent": "inv_pv_pv_1003", + "rated_power": "19450.000" + }, + "children": [], + "name": "solar" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047755", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2895461a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2851933b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3160115", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2766744b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3144.33", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226191772c0", + "nominal_voltage": "120.09", + "parent": "sx3120484c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3254229b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2785535", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21399630a0", + "nominal_voltage": "120.09", + "parent": "sx3233353a", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3216367b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1009763", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2860477a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355592b0", + "nominal_voltage": "120.09", + "parent": "sx3254206b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1140522", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "2551.55", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338983b0", + "nominal_voltage": "120.09", + "parent": "sx2691965b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026920", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3141411c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2729206", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069509", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3215340", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2916608", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323254b0", + "nominal_voltage": "120.09", + "parent": "sx2879068b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321839a0", + "nominal_voltage": "120.09", + "parent": "sx2710516a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3178988b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2729430", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "d5860423-3_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3727710a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2897791b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2726983a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2895461a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1137001", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2879075", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_225668688a0", + "nominal_voltage": "120.09", + "parent": "sx2858175a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3216338b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m3327098", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3176656", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1009828", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2911069", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3176660", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3177894", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2673317", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3645810c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2897554", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_337724a0", + "nominal_voltage": "120.09", + "parent": "sx2879075a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3122816b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3189190a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047419", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "10484.54", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2120126c0", + "nominal_voltage": "120.09", + "parent": "sx2814529c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2691943b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3216368c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2841615a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2860484b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3551.55", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338977b0", + "nominal_voltage": "120.09", + "parent": "sx2916620b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3216346a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3727711a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3254227", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3048199b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2851933", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3085397b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2860481", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3251807a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1010003", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3160109", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069558", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m3036170", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226191779c0", + "nominal_voltage": "120.09", + "parent": "sx2745799c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2223661373a0", + "nominal_voltage": "120.09", + "parent": "sx3312692a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3141412", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2766720a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3029500", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21393643b0", + "nominal_voltage": "120.09", + "parent": "sx2851933b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "4556.70", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323250b0", + "nominal_voltage": "120.09", + "parent": "sx2748131b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2822858b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2973155a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047831", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2991901b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047515", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3235245c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1138593", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2879069a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2673311", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3066826b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027027", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136027", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_225869139a0", + "nominal_voltage": "120.09", + "parent": "sx3120503a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_356062b0", + "nominal_voltage": "120.09", + "parent": "sx3122816b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "6827.04", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_225684682b0", + "nominal_voltage": "120.09", + "parent": "sx3231269b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2729428", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047548", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026905", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069607", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2973159a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3066812a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2684420", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "2551.55", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323235b0", + "nominal_voltage": "120.09", + "parent": "sx3197624b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2729428a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "6855.67", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_227902981a0", + "nominal_voltage": "120.09", + "parent": "sx3047058a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2804254a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1010017", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2897773a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "10025.77", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2120126b0", + "nominal_voltage": "120.09", + "parent": "sx2814529b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "6561.86", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226163575b0", + "nominal_voltage": "120.09", + "parent": "sx2989432b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1010004", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3048199", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047423", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047837", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1009809", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3728042", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3649305a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3178969b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2897773", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2710512b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3120484", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3207907c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2916619b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2897767c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2897767c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355944b0", + "nominal_voltage": "120.09", + "parent": "sx3197646b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3141396c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027091", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1009650", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3157708c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047420", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3178988", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3008248", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3157708c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3144.33", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21399220c0", + "nominal_voltage": "120.09", + "parent": "sx2766725c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2857591a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2897800b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_356065b0", + "nominal_voltage": "120.09", + "parent": "sx3104124b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3010564c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3120502", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "7865.98", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338964c0", + "nominal_voltage": "120.09", + "parent": "sx3104117c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3649304a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "10484.54", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338923c0", + "nominal_voltage": "120.09", + "parent": "sx3178972c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2935568", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2691966", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2841622a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3141396", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2804262a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "d5956471-2_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2973171b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2991929b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3104129", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027038", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6788.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355438c0", + "nominal_voltage": "120.09", + "parent": "sx2673323c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2916620b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p903360", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069519", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2879089c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2673323", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "3144.33", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355779c0", + "nominal_voltage": "120.09", + "parent": "sx3122817c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "3144.33", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321861c0", + "nominal_voltage": "120.09", + "parent": "sx3235248c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21452406b0", + "nominal_voltage": "120.09", + "parent": "sx3216361b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026877", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2729429a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2935556b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2748143", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3216368c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026682", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026695", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2729434b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2710536a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3029500a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3728041a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1144664", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2673331", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2691973a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "6729.51", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_339097b0", + "nominal_voltage": "120.09", + "parent": "sx3085410b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3729297", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_228057846a0", + "nominal_voltage": "120.09", + "parent": "sx3215340a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3120504a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2954345", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2729413", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2916598", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2973150", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3104114b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2952014a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2841623a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047400", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3216350a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2766499", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026792", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026647", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026786", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2914324a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338936c0", + "nominal_voltage": "120.09", + "parent": "sx3066815c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2729401b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3104124", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2916608c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047507", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2748124b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3235254", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1073", + "parent": "sx3197641a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.000" + }, + "children": [], + "name": "inverter" + }, + { + "attributes": { + "base_power_2": "28484.54", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338968c0", + "nominal_voltage": "120.09", + "parent": "sx3178979c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355437c0", + "nominal_voltage": "120.09", + "parent": "sx2710525c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p827506", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047574", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2991914c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3178978a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2952014a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047pv-3", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047497", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2860501", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "VAr_set_high": "200000.00", + "VAr_set_low": "-300000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_A": "400000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "100.00", + "name": "cap_capbank3a", + "nominal_voltage": "7200.00", + "parent": "r42246", + "phases": "AN", + "phases_connected": "AN", + "pt_phase": "A", + "remote_sense": "line_cap_3a", + "switchA": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p873787", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3251830", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "228-961799-3_int", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3235254c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3027156", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m3019248", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p827528", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2911069b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2860493", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047486", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2748132", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "7865.98", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_228665517c0", + "nominal_voltage": "120.09", + "parent": "sx3103822c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2126875b0", + "nominal_voltage": "120.09", + "parent": "sx3066811b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3197640c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3085403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2710542", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027019", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3066812", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2673343", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "7520.62", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323283b0", + "nominal_voltage": "120.09", + "parent": "sx2916618b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2766720", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3027133a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047751", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3254203b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027080", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "3144.33", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_391979c0", + "nominal_voltage": "120.09", + "parent": "sx3197642c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "d5804798-3_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2729401", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069483", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2710515c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2897554c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2860499", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3010562b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3139103a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3144.33", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_293663c0", + "nominal_voltage": "120.09", + "parent": "sx3216368c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069488", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3728039", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2935547b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3010580b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047724", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2841639a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2785543b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047534", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2729414a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1107", + "parent": "sx3082992a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.000" + }, + "children": [], + "name": "inverter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2897554c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2673331b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2851933a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323266b0", + "nominal_voltage": "120.09", + "parent": "sx3197632b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p827525", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3160103c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069595", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3253995", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3216348a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2729410c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "d6440002-2_int", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1137005", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_293667a0", + "nominal_voltage": "120.09", + "parent": "sx2860504a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2935560c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2935556b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "q14414", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3649305", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4556.70", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321851b0", + "nominal_voltage": "120.09", + "parent": "sx2729434b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069466", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3197618", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047pv-3_pvmtr", + "nominal_voltage": "7199.56", + "parent": "m1047pv-3", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2729408", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3727712", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21471907a0", + "nominal_voltage": "120.09", + "parent": "sx2897805a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2691939", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2766499c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1137995", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "e182726", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3082992a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21396867a0", + "nominal_voltage": "120.09", + "parent": "sx2710536a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3197661c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3157708", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2748157", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "name": "pv_pv_1015", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "parent": "inv_pv_pv_1015", + "rated_power": "5840.000" + }, + "children": [], + "name": "solar" + }, + { + "attributes": { + "P_Out": "17740.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1063", + "parent": "sx2814529a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "22100.000" + }, + "children": [], + "name": "inverter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1140830", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4288.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226101460a0", + "nominal_voltage": "120.09", + "parent": "sx2857591a", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2860485b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4288.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338900a0", + "nominal_voltage": "120.09", + "parent": "sx2991908a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2973165a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2973169a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2860479", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3197640c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027100", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047558", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136658", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2916620c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1137957", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_339011b0", + "nominal_voltage": "120.09", + "parent": "sx3104145b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2785538a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2785538a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026703", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2804255b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3178982a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3729298a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1140521", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2841645c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2973157a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1140819", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3254208", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "34072.17", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338899c0", + "nominal_voltage": "120.09", + "parent": "sx3122814c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136995", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "P_Out": "3550.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1091", + "parent": "sx3254231a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "4500.000" + }, + "children": [], + "name": "inverter" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21398815a0", + "nominal_voltage": "120.09", + "parent": "sx3216351a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3235273b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2879081a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1009698", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "9067.01", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_293652b0", + "nominal_voltage": "120.09", + "parent": "sx3235258b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3082992", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2916620c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2935554a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "2097.94", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_293666c0", + "nominal_voltage": "120.09", + "parent": "sx2710532c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2822860b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2973169", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2841648a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136355", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p901932", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "e182730", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026662", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2822857b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2841645c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "6118.56", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2224386946a0", + "nominal_voltage": "120.09", + "parent": "sx3728037a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_391990a0", + "nominal_voltage": "120.09", + "parent": "sx2858163a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1009834", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3216337", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2914324", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2783231b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3177894a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136999", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026927", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3235246", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2726983", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3215549b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2841632b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3104114b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3160113b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "6561.86", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_339007b0", + "nominal_voltage": "120.09", + "parent": "sx2916617b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047401", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6118.56", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_293668a0", + "nominal_voltage": "120.09", + "parent": "sx3085403a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136360", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6127.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323397b0", + "nominal_voltage": "120.09", + "parent": "sx2954346b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2673343b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3104123c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1140818", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338976b0", + "nominal_voltage": "120.09", + "parent": "sx2691967b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3139103a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047480", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6855.67", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355936a0", + "nominal_voltage": "120.09", + "parent": "sx2954357a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3728038a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3159037b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "q14413", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2673314c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4556.70", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323274b0", + "nominal_voltage": "120.09", + "parent": "sx2860500b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321841b0", + "nominal_voltage": "120.09", + "parent": "sx2954347b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2879092c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "P_Out": "20340.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1049", + "parent": "sx2814529c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "25400.000" + }, + "children": [], + "name": "inverter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2764403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2729423", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3066811b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047513", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2804254a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2933165", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027004", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3122810b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3144.33", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_293659c0", + "nominal_voltage": "120.09", + "parent": "sx2935560c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2785529c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_225901711a0", + "nominal_voltage": "120.09", + "parent": "sx3195327a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3216351", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3178975b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355943c0", + "nominal_voltage": "120.09", + "parent": "sx2785529c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2897805", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3122818", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1137998", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m3037538", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2814529c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2801902b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2748126", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3160108b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p827548", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2879087a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321837a0", + "nominal_voltage": "120.09", + "parent": "sx2673312a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2954361b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338993b0", + "nominal_voltage": "120.09", + "parent": "sx2804272b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "1829.90", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338987a0", + "nominal_voltage": "120.09", + "parent": "sx2897793a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3235245c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2991933c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2814529c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2814529c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2766747a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2879075a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026866", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2766742b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355584b0", + "nominal_voltage": "120.09", + "parent": "sx2710542b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047649", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3197634b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_293681a0", + "nominal_voltage": "120.09", + "parent": "sx3195751a", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "4556.70", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226192493b0", + "nominal_voltage": "120.09", + "parent": "sx2764399b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3216368c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3216368c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2766725", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p901913", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "VAr_set_high": "200000.00", + "VAr_set_low": "-300000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_B": "400000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "101.00", + "name": "cap_capbank3b", + "nominal_voltage": "7200.00", + "parent": "r42246", + "phases": "BN", + "phases_connected": "BN", + "pt_phase": "B", + "remote_sense": "line_cap_3b", + "switchB": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2691973a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226191995b0", + "nominal_voltage": "120.09", + "parent": "sx2801896b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2729413a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3122814c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "31015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21399326c0", + "nominal_voltage": "120.09", + "parent": "sx2879092c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3197631a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3226771a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "1829.90", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_337718a0", + "nominal_voltage": "120.09", + "parent": "sx2691947a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2859391b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3235258b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2859391", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2710532c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2729423c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21397304a0", + "nominal_voltage": "120.09", + "parent": "sx2973169a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "4288.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_293591a0", + "nominal_voltage": "120.09", + "parent": "sx3197641a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3254209c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2948732b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_441331c0", + "nominal_voltage": "120.09", + "parent": "sx3235254c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3010585a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2801902b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3645809c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2710525", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4556.70", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321856b0", + "nominal_voltage": "120.09", + "parent": "sx2860506b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2729409", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3645811", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1140525", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3233353a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2970841", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226193422b0", + "nominal_voltage": "120.09", + "parent": "sx2726975b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2897805a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3197660", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "d5806920-1_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "221-559682", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2710512b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047483", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3048221", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21470326a0", + "nominal_voltage": "120.09", + "parent": "sx2766748a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338927a0", + "nominal_voltage": "120.09", + "parent": "sx2972930a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1140820", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2841615", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2876798b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4556.70", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21383553b0", + "nominal_voltage": "120.09", + "parent": "sx2935547b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2673317a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2785522", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026713", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3048222", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2673308b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3254231a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3254231a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069629", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2860504a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1069", + "parent": "sx3216368c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7700.000" + }, + "children": [], + "name": "inverter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m3021569", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026891", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3728043a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3728043a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3160123a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2814529a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069514", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21015706a0", + "nominal_voltage": "120.09", + "parent": "sx3160123a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "1829.90", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226192994a0", + "nominal_voltage": "120.09", + "parent": "sx2858166a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026939", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2876812", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2973165", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3048203", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2841635a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321876a0", + "nominal_voltage": "120.09", + "parent": "sx3027132a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136667", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1009742", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2916599a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3104123", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2822857b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2879081", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3082992a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047786", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323399b0", + "nominal_voltage": "120.09", + "parent": "sx3178974b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3251854", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2691938", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "196-29519", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3066816a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3008237c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21396796b0", + "nominal_voltage": "120.09", + "parent": "sx3141397b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2673311a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2879074", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "hvmv11sub3_lsb", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026780", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3235249a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "e182746", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3235247a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "name": "pv_pv_1075", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "parent": "inv_pv_pv_1075", + "rated_power": "6100.000" + }, + "children": [], + "name": "solar" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323418a0", + "nominal_voltage": "120.09", + "parent": "sx2804254a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323247b0", + "nominal_voltage": "120.09", + "parent": "sx2935553b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2973165a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026896", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3122848c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2822872b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3197632b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027000", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2766716c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2973161", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321874a0", + "nominal_voltage": "120.09", + "parent": "sx2764412a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2673326b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355586b0", + "nominal_voltage": "120.09", + "parent": "sx3254234b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_294812a0", + "nominal_voltage": "120.09", + "parent": "sx3120502a", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069554", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1140831", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026954", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026chp-3", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2689691a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026874", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321859b0", + "nominal_voltage": "120.09", + "parent": "sx3254213b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321847b0", + "nominal_voltage": "120.09", + "parent": "sx3160100b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p901972", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2746587c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3048207", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069500", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3235257", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3066816a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3101788", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3122847a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3029500a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "d6108141-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2973153", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_356008a0", + "nominal_voltage": "120.09", + "parent": "sx3197618a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3254234", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1140518", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3649301a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3140238a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2748131b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3122837", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2814529b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026857", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2710518", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323248b0", + "nominal_voltage": "120.09", + "parent": "sx3048207b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p901912", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3216346a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "6855.67", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_228532641a0", + "nominal_voltage": "120.09", + "parent": "sx3091052a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2726974", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2673323c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3197654a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2991927", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3122817c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136365", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2973154", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2841631c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2954348", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2748143a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047434", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1009832", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m3763620", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p1121283", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3047058a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "6855.67", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2224237643a0", + "nominal_voltage": "120.09", + "parent": "sx3649301a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "7865.98", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321890c0", + "nominal_voltage": "120.09", + "parent": "sx3104118c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3207907b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2821010a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4288.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2224386874a0", + "nominal_voltage": "120.09", + "parent": "sx3727711a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2857591a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2841621c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "10025.77", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_339010b0", + "nominal_voltage": "120.09", + "parent": "sx2691966b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2879067", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "25860.82", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338978c0", + "nominal_voltage": "120.09", + "parent": "sx2766738c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2684420b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323237b0", + "nominal_voltage": "120.09", + "parent": "sx3048199b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21397067a0", + "nominal_voltage": "120.09", + "parent": "sx2729413a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3235254c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3178974b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1010008", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2691965b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2860482", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047669", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2685809a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3160123a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2841000", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2729429", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2897791b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "221-240991", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4288.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21386976a0", + "nominal_voltage": "120.09", + "parent": "sx3141398a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3178976", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3141398a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3141401", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2973152", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2691944a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2897765b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3216123a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047812", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2991909a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4288.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21398676a0", + "nominal_voltage": "120.09", + "parent": "sx3066816a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3141412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3376.29", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2224500658a0", + "nominal_voltage": "120.09", + "parent": "sx3784018a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2973171b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2839331", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3122815b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3085390b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026773", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "d6077791-3_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2804256b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_325472b0", + "nominal_voltage": "120.09", + "parent": "sx2973149b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3091052", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2954344c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026774", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "1829.90", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_391985a0", + "nominal_voltage": "120.09", + "parent": "sx2785530a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2710516a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2973152b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3066804", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2673311a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2879063", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2804272b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2822860", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2820533a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2876846", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2841645", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1141475", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3178978", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1140527", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3027133", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "3144.33", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338941c0", + "nominal_voltage": "120.09", + "parent": "sx2991914c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355606b0", + "nominal_voltage": "120.09", + "parent": "sx3029510b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3082992a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3082992a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_2": "23762.89", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338924c0", + "nominal_voltage": "120.09", + "parent": "sx3104123c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3010560", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3342743", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069469", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power": "12MVA", + "bustype": "SWING", + "name": "hvmv69sub3_hsb", + "nominal_voltage": "66395.28", + "phases": "ABCN", + "positive_sequence_voltage": "${VSOURCE}", + "power_convergence_value": "100VA" + }, + "children": [], + "name": "substation" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2748140a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2991939b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2766499c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2783231b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3160115b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3027132", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2935555a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2673303c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3160117", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026709", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6855.67", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2224387062a0", + "nominal_voltage": "120.09", + "parent": "sx3728040a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3122822a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069730", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3178979c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2673343b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3197641a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3189189b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "e206209", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026670", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3029506b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3234185b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3551.55", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323277b0", + "nominal_voltage": "120.09", + "parent": "sx2897800b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136356", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2691936a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2841648a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3177665", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323265b0", + "nominal_voltage": "120.09", + "parent": "sx2860501b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2952013a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355588b0", + "nominal_voltage": "120.09", + "parent": "sx2822857b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047671", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2879070", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1137002", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3178974", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_225767272a0", + "nominal_voltage": "120.09", + "parent": "sx3139103a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2860485b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321891c0", + "nominal_voltage": "120.09", + "parent": "sx2748126c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2851933b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3122817", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2973171", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_337647a0", + "nominal_voltage": "120.09", + "parent": "sx3048227a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3156034", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026829", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3189190a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3178982a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2729414b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2935553b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2766746", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2729206c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2991933c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p901927", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2766747a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_293673a0", + "nominal_voltage": "120.09", + "parent": "sx3122827a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069481", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2710515c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026848", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4556.70", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355590b0", + "nominal_voltage": "120.09", + "parent": "sx2860478b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "name": "pv_pv_1091", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "parent": "inv_pv_pv_1091", + "rated_power": "3550.000" + }, + "children": [], + "name": "solar" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3104117c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2691941", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2879087a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3122814", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2822869a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3197639a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3216346", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226194262c0", + "nominal_voltage": "120.09", + "parent": "sx2745806c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3176660b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_228219458b0", + "nominal_voltage": "120.09", + "parent": "sx3215549b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "4556.70", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323249b0", + "nominal_voltage": "120.09", + "parent": "sx2729427b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "7865.98", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_337714c0", + "nominal_voltage": "120.09", + "parent": "sx3254209c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2783231", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2748152b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3122815", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2785536", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3197642", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3048207b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3010568", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2858175a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2916620a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4288.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21397771a0", + "nominal_voltage": "120.09", + "parent": "sx2673317a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047819", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069530", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "q14733", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2991929", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2876797", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321893c0", + "nominal_voltage": "120.09", + "parent": "sx2841645c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2933120c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3178978a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3233353", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4556.70", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_225498968b0", + "nominal_voltage": "120.09", + "parent": "sx2684420b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027087", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047773", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1071", + "parent": "sx2841627a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.000" + }, + "children": [], + "name": "inverter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3253995c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069494", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069461", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2766723a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2860501b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2954345c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3197652a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355780b0", + "nominal_voltage": "120.09", + "parent": "sx3160102b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3254213b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2916234", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "P_Out": "3550.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1159", + "parent": "sx3104144a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "4400.000" + }, + "children": [], + "name": "inverter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2897790", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226193892b0", + "nominal_voltage": "120.09", + "parent": "sx3176660b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "6561.86", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338972b0", + "nominal_voltage": "120.09", + "parent": "sx2841632b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2746587", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_294789a0", + "nominal_voltage": "120.09", + "parent": "sx2895461a", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3270853", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2879063b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1140825", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6118.56", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338986a0", + "nominal_voltage": "120.09", + "parent": "sx2785538a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069588", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2935556", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1139263", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2710505", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2766715", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "193-103041", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3649306a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2822869a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21380156b0", + "nominal_voltage": "120.09", + "parent": "sx2841641b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3235267c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027055", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323400b0", + "nominal_voltage": "120.09", + "parent": "sx2691943b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "name": "pv_pv_1081", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "parent": "inv_pv_pv_1081", + "rated_power": "10170.000" + }, + "children": [], + "name": "solar" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "e182733", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3215340a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026986", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2710513", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "e182727", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3216358a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2748152", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2973152b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4690.72", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_337713c0", + "nominal_voltage": "120.09", + "parent": "sx2766716c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2973159a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2822869", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2710536a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "7865.98", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21393643c0", + "nominal_voltage": "120.09", + "parent": "sx2851933c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3085401a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3649302a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3178969", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026916", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_225533337a0", + "nominal_voltage": "120.09", + "parent": "sx2929261a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2935568b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21397721a0", + "nominal_voltage": "120.09", + "parent": "sx3178976a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1139550", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3066815", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2689726", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6118.56", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355937a0", + "nominal_voltage": "120.09", + "parent": "sx2841639a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2876814", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2691967b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026783", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226193078a0", + "nominal_voltage": "120.09", + "parent": "sx2764403a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3216351a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026948", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "d6017316-1_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136660", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2729207c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2879070b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2954357", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3645810", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2731712", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p827503", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3008279", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3254203", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069518", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047737", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2935567b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3160109b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2916599", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3008232b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3251807", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3254206b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3207907c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3216336a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3728037a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2989564b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2710530", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1144667", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3235268c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3644.33", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338944c0", + "nominal_voltage": "120.09", + "parent": "sx3197640c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3010585", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2989432b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2673308b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2766719a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2914323b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026969", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3066829c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2879078a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026847", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2748144a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2801949", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2841631c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "15731.96", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21197413c0", + "nominal_voltage": "120.09", + "parent": "sx3141411c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3197652", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3251807a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3728041a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "6118.56", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_310569a0", + "nominal_voltage": "120.09", + "parent": "sx3197639a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3122820", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3066808c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "193-46661", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2224387074a0", + "nominal_voltage": "120.09", + "parent": "sx3728041a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2954347", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3728043a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026852", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_325474b0", + "nominal_voltage": "120.09", + "parent": "sx3254228b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2764399b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "6855.67", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2224237546a0", + "nominal_voltage": "120.09", + "parent": "sx3649300a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047623", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3140238", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "10484.54", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2212168874c0", + "nominal_voltage": "120.09", + "parent": "sx2729207c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027121", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3254231", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2860500", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2224237391a0", + "nominal_voltage": "120.09", + "parent": "sx3649299a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2973166c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2954338b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "10025.77", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338990b0", + "nominal_voltage": "120.09", + "parent": "sx2673331b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355359b0", + "nominal_voltage": "120.09", + "parent": "sx2766730b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136666", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226192926a0", + "nominal_voltage": "120.09", + "parent": "sx2726973a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "1829.90", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338977a0", + "nominal_voltage": "120.09", + "parent": "sx2916620a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3178975b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2766738c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026777", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2916617b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1144665", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2729427b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2820528c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3104145b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027023", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4371.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338988a0", + "nominal_voltage": "120.09", + "parent": "sx3254231a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3649306a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026898", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2916620", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "d5774470-2_int", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m4350438", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "d5534970-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2748139", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2820531b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047723", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3727709a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1137992", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323392b0", + "nominal_voltage": "120.09", + "parent": "sx2748124b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047409", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3047058", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "P_Out": "5840.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1173", + "parent": "sx2897789b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.000" + }, + "children": [], + "name": "inverter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047836", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2691936", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2804245", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2914324a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3160109b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321886c0", + "nominal_voltage": "120.09", + "parent": "sx2766746c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3216345b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "7865.98", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226192890c0", + "nominal_voltage": "120.09", + "parent": "sx2933120c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2860500b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321882c0", + "nominal_voltage": "120.09", + "parent": "sx2916607c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "3144.33", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_339017c0", + "nominal_voltage": "120.09", + "parent": "sx2729423c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3104118c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047792", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2710504b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "6788.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321887c0", + "nominal_voltage": "120.09", + "parent": "sx2691941c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3197660b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3048227", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_294844a0", + "nominal_voltage": "120.09", + "parent": "sx2841623a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2859391b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3160102b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3254206b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "228-1353934-4_int", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1037", + "parent": "sx2729428a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.000" + }, + "children": [], + "name": "inverter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1140523", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2785529", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6118.56", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21380616a0", + "nominal_voltage": "120.09", + "parent": "sx2879067a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3254229", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2897773a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2954353a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047750", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3645809", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047718", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2673317a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2673317a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047430", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2879069a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069556", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3728038a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026767", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21248901b0", + "nominal_voltage": "120.09", + "parent": "sx2729430b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2973160", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2710516", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3120376a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_310570a0", + "nominal_voltage": "120.09", + "parent": "sx3160106a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3178973a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047796", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136670", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026830", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "9067.01", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323394b0", + "nominal_voltage": "120.09", + "parent": "sx2710504b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069567", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p827505", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2935553", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4288.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226029836a0", + "nominal_voltage": "120.09", + "parent": "sx3251808a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "7520.62", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_339003b0", + "nominal_voltage": "120.09", + "parent": "sx3066826b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355938a0", + "nominal_voltage": "120.09", + "parent": "sx2804262a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2673319", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3645812c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026769", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026823", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2748125", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3254234b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "6855.67", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_294788a0", + "nominal_voltage": "120.09", + "parent": "sx2821010a", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2879066b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136996", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2748132a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047406", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3235248c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2691938b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2879075a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3141389a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3010580b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2690941b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3235241", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2710530b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047824", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6118.56", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_337722a0", + "nominal_voltage": "120.09", + "parent": "sx2973157a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3122847", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2935566c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_310568a0", + "nominal_voltage": "120.09", + "parent": "sx2710517a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026949", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047795", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3104136b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1147866", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069640", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338958c0", + "nominal_voltage": "120.09", + "parent": "sx3066809c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2879081a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4690.72", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21399171c0", + "nominal_voltage": "120.09", + "parent": "sx2822870c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1137994", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2954355a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1137985", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2895461", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "7865.98", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355431c0", + "nominal_voltage": "120.09", + "parent": "sx3048222c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047435", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1009843", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069489", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3008248a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4556.70", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21400108b0", + "nominal_voltage": "120.09", + "parent": "sx2748139b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2841648", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3082993", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3066830", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026970", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3216336", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2766746c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3160115b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_391992a0", + "nominal_voltage": "120.09", + "parent": "sx3029500a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2729414c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2748125c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "name": "pv_pv_1173", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "parent": "inv_pv_pv_1173", + "rated_power": "5840.000" + }, + "children": [], + "name": "solar" + }, + { + "attributes": { + "base_power_2": "3144.33", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226192954c0", + "nominal_voltage": "120.09", + "parent": "sx3157708c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "4288.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_293652a0", + "nominal_voltage": "120.09", + "parent": "sx3235258a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2897777c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323267b0", + "nominal_voltage": "120.09", + "parent": "sx2710514b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "10484.54", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2212168870c0", + "nominal_voltage": "120.09", + "parent": "sx2897554c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21357515a0", + "nominal_voltage": "120.09", + "parent": "sx2710511a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3066811b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3160100", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2764403", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2820528", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2916618b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2710544a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069467", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2860483", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2897765", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "d5682346-3_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_356015a0", + "nominal_voltage": "120.09", + "parent": "sx2916599a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2785534b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3102793b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "1829.90", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_391993a0", + "nominal_voltage": "120.09", + "parent": "sx3156034a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3141397b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2223878647b0", + "nominal_voltage": "120.09", + "parent": "sx3448661b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_337716a0", + "nominal_voltage": "120.09", + "parent": "sx2841627a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3027157", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3104118c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2954355a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2876798", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6118.56", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_310561a0", + "nominal_voltage": "120.09", + "parent": "sx3122820a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027043", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3235268c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2766744b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3251806b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2841627a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026987", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2710517a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3551.55", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338930b0", + "nominal_voltage": "120.09", + "parent": "sx3029506b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2710511a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2879087", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2748132a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2916618b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3047058a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2729414", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "name": "pv_pv_1115", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "parent": "inv_pv_pv_1115", + "rated_power": "13300.000" + }, + "children": [], + "name": "solar" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21399809a0", + "nominal_voltage": "120.09", + "parent": "sx2785531a", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "d6108145-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2785517c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136354", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1009715", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3178976a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2710514b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027110", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2710517", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2710544a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3551.55", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226192492b0", + "nominal_voltage": "120.09", + "parent": "sx3008232b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026657", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2785531a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3101787a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2729408b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2876813a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2933120c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3727707", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2691941c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3048227a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2860480b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3649297a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2878848", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3254230a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2876812a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3215340a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1140817", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2785530a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2691952a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "10025.77", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338997b0", + "nominal_voltage": "120.09", + "parent": "sx2860499b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2766719", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2973167b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3644.33", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2223703238c0", + "nominal_voltage": "120.09", + "parent": "sx3342743c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047613", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2879066", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "1829.90", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_356014a0", + "nominal_voltage": "120.09", + "parent": "sx3235249a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3066826b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3085390b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338950b0", + "nominal_voltage": "120.09", + "parent": "sx2822872b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2673314c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "P_Out": "1000000.000", + "Q_Out": "0.000", + "V_base": "12470.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pvfarm1", + "parent": "m1047pv-3_pvmtr", + "phases": "ABCN", + "power_factor": "1.0", + "rated_power": "1500000.000" + }, + "children": [], + "name": "inverter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2876797a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047550", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3066830b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3235248c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226193338a0", + "nominal_voltage": "120.09", + "parent": "sx2876796a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_293644a0", + "nominal_voltage": "120.09", + "parent": "sx2729429a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2972930", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3649298a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321848b0", + "nominal_voltage": "120.09", + "parent": "sx3085390b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3216344", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3253995c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047699", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m3772794", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "P_Out": "8870.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1103", + "parent": "sx2785538a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.000" + }, + "children": [], + "name": "inverter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3197661", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3254216a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047794", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6561.86", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21469960b0", + "nominal_voltage": "120.09", + "parent": "sx3066830b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2897765b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3066817", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2690941", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2973146b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2804256", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2954361b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3122847a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338898a0", + "nominal_voltage": "120.09", + "parent": "sx2973155a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2916617", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069738", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136665", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338937c0", + "nominal_voltage": "120.09", + "parent": "sx2897777c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2785538a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069619", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3231269", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3728037", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026706", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3066829c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3122827", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2954344c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1140822", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047835", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2933120", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026950", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "9412.37", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21455388c0", + "nominal_voltage": "120.09", + "parent": "sx2879089c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "6118.56", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_225534325a0", + "nominal_voltage": "120.09", + "parent": "sx2983432a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3010562", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355600b0", + "nominal_voltage": "120.09", + "parent": "sx2691938b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2710508b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321881a0", + "nominal_voltage": "120.09", + "parent": "sx2970811a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "3144.33", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321883c0", + "nominal_voltage": "120.09", + "parent": "sx3010564c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21398402a0", + "nominal_voltage": "120.09", + "parent": "sx2729428a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_225533162a0", + "nominal_voltage": "120.09", + "parent": "sx2685809a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3085398b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026961", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3178972", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m3763619", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21396699b0", + "nominal_voltage": "120.09", + "parent": "sx2860483b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2710508b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069548", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2973166c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "7865.98", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2224230754c0", + "nominal_voltage": "120.09", + "parent": "sx3645812c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3251808a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "d5502543-2_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104144a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3104144a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_2": "4556.70", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338934b0", + "nominal_voltage": "120.09", + "parent": "sx2879070b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136669", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2766719a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136358", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1163", + "parent": "sx2879078a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.000" + }, + "children": [], + "name": "inverter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1009705", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2935554", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2822873b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "6118.56", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321838a0", + "nominal_voltage": "120.09", + "parent": "sx2691944a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2748124b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2822871b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "name": "pv_pv_1063", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "parent": "inv_pv_pv_1063", + "rated_power": "17740.000" + }, + "children": [], + "name": "solar" + }, + { + "attributes": { + "base_power_2": "2005.15", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355376b0", + "nominal_voltage": "120.09", + "parent": "sx2914323b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "e182725", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6118.56", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226881700a0", + "nominal_voltage": "120.09", + "parent": "sx3251854a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323389b0", + "nominal_voltage": "120.09", + "parent": "sx3065750b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3085401", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2673312", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047526", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21399707a0", + "nominal_voltage": "120.09", + "parent": "sx3141403a", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21399229a0", + "nominal_voltage": "120.09", + "parent": "sx2879078a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226193345a0", + "nominal_voltage": "120.09", + "parent": "sx2876797a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026978", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2972930a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3649298", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2973161a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "7865.98", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2212168887c0", + "nominal_voltage": "120.09", + "parent": "sx2878848c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1009827", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "d5742811-3_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2916603b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3727707a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3727708a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3160117b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3177665a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673318c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2673318c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338947b0", + "nominal_voltage": "120.09", + "parent": "sx3160109b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3066808", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026861", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897789b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2897789b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2841622", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3197624", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3315860", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3177665a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069464", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p828359", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338910c0", + "nominal_voltage": "120.09", + "parent": "sx2841621c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2710514b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026797", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4288.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_302637a0", + "nominal_voltage": "120.09", + "parent": "sx2748132a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197641a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3197641a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2224387019a0", + "nominal_voltage": "120.09", + "parent": "sx3728038a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "1829.90", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355933a0", + "nominal_voltage": "120.09", + "parent": "sx2916598a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2727008", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3141401a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2710514", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_337648b0", + "nominal_voltage": "120.09", + "parent": "sx3216367b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226193899b0", + "nominal_voltage": "120.09", + "parent": "sx3082983b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323241b0", + "nominal_voltage": "120.09", + "parent": "sx2710508b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2841639a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2746587c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3157710b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3104145b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2916598a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026chp-2", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3122835", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026808", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1137999", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4288.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_391991a0", + "nominal_voltage": "120.09", + "parent": "sx3216346a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2973155", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6855.67", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21397005a0", + "nominal_voltage": "120.09", + "parent": "sx2935557a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "4288.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321880a0", + "nominal_voltage": "120.09", + "parent": "sx2876812a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2710513b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3047059", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4556.70", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323252b0", + "nominal_voltage": "120.09", + "parent": "sx2879066b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "4556.70", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_339008b0", + "nominal_voltage": "120.09", + "parent": "sx3122835b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_294809a0", + "nominal_voltage": "120.09", + "parent": "sx2952014a", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047707", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026859", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2673313b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355601b0", + "nominal_voltage": "120.09", + "parent": "sx2673326b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2970811", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2766723a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1140520", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047713", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026785", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3448661", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2731712b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2935547b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3551.55", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323244b0", + "nominal_voltage": "120.09", + "parent": "sx2804248b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3102793", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3120503a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "e206211", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027071", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21357901b0", + "nominal_voltage": "120.09", + "parent": "sx3160117b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3065750b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "name": "pv_pv_1103", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "parent": "inv_pv_pv_1103", + "rated_power": "8870.000" + }, + "children": [], + "name": "solar" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2860479b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2895489", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027101", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3216351a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026726", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3216123", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p827561", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1053", + "parent": "sx2710544a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.000" + }, + "children": [], + "name": "inverter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026990", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2973149b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "9144.33", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2120126a0", + "nominal_voltage": "120.09", + "parent": "sx2814529a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2729207c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3159037", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3048221a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2766748a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321888c0", + "nominal_voltage": "120.09", + "parent": "sx3235241c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3122837c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3197638a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3254208c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3178973a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2822873b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4556.70", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21470122b0", + "nominal_voltage": "120.09", + "parent": "sx2673343b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1009726", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2879067a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3254204", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6855.67", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21380599a0", + "nominal_voltage": "120.09", + "parent": "sx3066804a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3141396c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2897792a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2897792a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3178972c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3197647", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_325473b0", + "nominal_voltage": "120.09", + "parent": "sx3010562b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047522", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069515", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2729414b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069504", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_391986a0", + "nominal_voltage": "120.09", + "parent": "sx2766723a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3197632", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355605b0", + "nominal_voltage": "120.09", + "parent": "sx2729409b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338992b0", + "nominal_voltage": "120.09", + "parent": "sx2935567b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2841621c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "9144.33", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_293664a0", + "nominal_voltage": "120.09", + "parent": "sx3207907a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2764412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "3644.33", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338977c0", + "nominal_voltage": "120.09", + "parent": "sx2916620c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323284b0", + "nominal_voltage": "120.09", + "parent": "sx3160113b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2954344", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3029506", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3066816", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2710511a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_293655c0", + "nominal_voltage": "120.09", + "parent": "sx2729414c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2710542b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2804256b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1009655", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2991939b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069550", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "25860.82", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338943c0", + "nominal_voltage": "120.09", + "parent": "sx2729410c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "2005.15", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355595b0", + "nominal_voltage": "120.09", + "parent": "sx2860479b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1010013", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1010011", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2729401b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3197647a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2785535b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2804257", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3235258", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3197654", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3010568a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2224386889a0", + "nominal_voltage": "120.09", + "parent": "sx3727712a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2748127a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2954346", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2147708b0", + "nominal_voltage": "120.09", + "parent": "sx2991929b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2822873", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2973149", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1147863", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6118.56", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_294843a0", + "nominal_voltage": "120.09", + "parent": "sx3178982a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3102793b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3085397b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3231269b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2804255", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6561.86", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_226193395b0", + "nominal_voltage": "120.09", + "parent": "sx2726974b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3254204a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3120484c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3066804a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_227903012a0", + "nominal_voltage": "120.09", + "parent": "sx3177894a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "d6290228-6_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2822872", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3727708a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2895449c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2726973", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_339012b0", + "nominal_voltage": "120.09", + "parent": "sx2973171b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2766716", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2710530b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2785531", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2766730b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3139103", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "4288.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_310560a0", + "nominal_voltage": "120.09", + "parent": "sx2879074a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069463", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2766730b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3104119", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2879074a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2860478b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "6118.56", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338945a0", + "nominal_voltage": "120.09", + "parent": "sx2954353a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3085397", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3122837c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2948732b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338981b0", + "nominal_voltage": "120.09", + "parent": "sx2820535b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3178979", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355777b0", + "nominal_voltage": "120.09", + "parent": "sx3085398b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m3037537", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047433", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "3376.29", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338894a0", + "nominal_voltage": "120.09", + "parent": "sx2879069a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p828360", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355597b0", + "nominal_voltage": "120.09", + "parent": "sx2729401b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3235267", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "2097.94", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355778c0", + "nominal_voltage": "120.09", + "parent": "sx2673314c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2785531a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "6855.67", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_2224237380a0", + "nominal_voltage": "120.09", + "parent": "sx3649297a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2710513b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3122810b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3120504a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1009805", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "7520.62", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355603b0", + "nominal_voltage": "120.09", + "parent": "sx3160108b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2916608c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3254231a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1142109", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "3010.31", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_293657b0", + "nominal_voltage": "120.09", + "parent": "sx3189189b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p827573", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1009840", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3120376a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3048222c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027002", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3197618a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3101789", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2973146", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3216123a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "6788.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338961c0", + "nominal_voltage": "120.09", + "parent": "sx3254208c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3197639", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2948732", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3048212a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047752", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1010015", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m3763624", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026858", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026702", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2729428a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2729428a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_2": "4288.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_337650a0", + "nominal_voltage": "120.09", + "parent": "sx3010561a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "base_power_2": "4288.66", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21398536a0", + "nominal_voltage": "120.09", + "parent": "sx2973159a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2954353", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136994", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026656", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3122848", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p827511", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1140832", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3178973", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026658", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "2742.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_391980a0", + "nominal_voltage": "120.09", + "parent": "sx2691952a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "196-35813", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "5242.27", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338962c0", + "nominal_voltage": "120.09", + "parent": "sx2748125c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3122827a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3195365", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2841624b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1134478", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2691966b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2748144a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "6345.78", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_356011a0", + "nominal_voltage": "120.09", + "parent": "sx3216337a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2673319c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2954338b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "6561.86", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355599b0", + "nominal_voltage": "120.09", + "parent": "sx3216338b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3160102b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4572.16", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_225533531a0", + "nominal_voltage": "120.09", + "parent": "sx2685805a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1140528", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1134471", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "1829.90", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_228549643a0", + "nominal_voltage": "120.09", + "parent": "sx2916234a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2879074a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_2": "4068.99", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_321852c0", + "nominal_voltage": "120.09", + "parent": "sx2916608c", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3122818c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2822868a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2973150a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "name": "pv_pv_1177", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "parent": "inv_pv_pv_1177", + "rated_power": "14590.000" + }, + "children": [], + "name": "solar" + }, + { + "attributes": { + "base_power_2": "5015.46", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_355618b0", + "nominal_voltage": "120.09", + "parent": "sx2954338b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2973149b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2973150a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027114", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p827515", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6118.56", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_338965a0", + "nominal_voltage": "120.09", + "parent": "sx3010568a", + "phases": "AS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3101789a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047615", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3216337a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "p827514", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026760", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2820535b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2916607c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1009771", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026824", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3066821", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "6118.56", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_21399752a0", + "nominal_voltage": "120.09", + "parent": "sx2785546a", + "phases": "CS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1069662", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2916610b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026648", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "n1136997", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3251808", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1027109", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026997", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx3104119a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2897790c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2785537", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3216368", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x3085401a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l2935566", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2860484b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "x2691944a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1047828", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "base_power_2": "9067.01", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_323282b0", + "nominal_voltage": "120.09", + "parent": "sx2897791b", + "phases": "BS", + "power_fraction_2": "1.000000", + "power_pf_1": "0.970000", + "power_pf_2": "0.970000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2673313b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2878848c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1009651", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "name": "pv_pv_1163", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "parent": "inv_pv_pv_1163", + "rated_power": "5320.000" + }, + "children": [], + "name": "solar" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "sx2841623a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "l3197638", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln6198049-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026773", + "length": "386.7213", + "name": "line_ln6199040-1", + "phases": "CN", + "to": "l3195751" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3195751", + "name": "xf_t5293681a", + "phases": "CS", + "to": "x3195751a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3216346", + "length": "430.9737", + "name": "line_ln5621834-1", + "phases": "ABCN", + "to": "l2858163" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2858163", + "length": "529.3433", + "name": "line_ln5833611-1", + "phases": "ABCN", + "to": "l2766747" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2858163", + "name": "xf_t5391990a", + "phases": "AS", + "to": "x2858163a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3448661b", + "length": "50.0000", + "name": "tpx_tpx2223878647b0", + "phases": "BS", + "to": "sx3448661b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3448661", + "name": "xf_t2223878647b", + "phases": "BS", + "to": "x3448661b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069632", + "length": "121.5221", + "name": "line_ln5985349-1", + "phases": "BN", + "to": "l2726974" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069632", + "length": "274.5454", + "name": "line_ln5593245-1", + "phases": "BN", + "to": "l2954361" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069629", + "length": "321.6106", + "name": "line_ln5986945-1", + "phases": "BN", + "to": "m1069632" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3082993a", + "length": "50.0000", + "name": "tpx_tpx226159329a0", + "phases": "AS", + "to": "sx3082993a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2685805a", + "length": "50.0000", + "name": "tpx_tpx225533531a0", + "phases": "AS", + "to": "sx2685805a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027056", + "length": "104.1847", + "name": "line_ln5712587-3", + "phases": "AN", + "to": "n1144667" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027055", + "length": "22.0209", + "name": "line_ln6228328-1", + "phases": "AN", + "to": "m1027056" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3027132a", + "length": "50.0000", + "name": "tpx_tpx321876a0", + "phases": "AS", + "to": "sx3027132a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3120484c", + "length": "50.0000", + "name": "tpx_tpx226191772c0", + "phases": "CS", + "to": "sx3120484c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2684420b", + "length": "50.0000", + "name": "tpx_tpx225498968b0", + "phases": "BS", + "to": "sx2684420b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2684420", + "name": "xf_t225498968b", + "phases": "BS", + "to": "x2684420b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3784018", + "length": "158.5263", + "name": "line_ln6077815-5", + "phases": "ABCN", + "to": "n1136028" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1136028", + "length": "25.5993", + "name": "line_ln6077815-3", + "phases": "ABCN", + "to": "l2876797" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "d6409775-4_int", + "length": "213.5366", + "name": "line_ln6409775-4", + "phases": "AN", + "to": "l2876796" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "n1136027", + "name": "swt_ln0409774_sw", + "phases": "A", + "status": "CLOSED", + "to": "d6409775-4_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3159645a", + "length": "50.0000", + "name": "tpx_tpx228446184a0", + "phases": "AS", + "to": "sx3159645a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026925", + "length": "51.1042", + "name": "line_ln5986927-1", + "phases": "AN", + "to": "l2916599" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026925", + "length": "361.9230", + "name": "line_ln5926304-1", + "phases": "AN", + "to": "l3235249" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3120376", + "length": "293.0858", + "name": "line_ln5772710-2", + "phases": "AN", + "to": "m1026925" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3065696a", + "length": "50.0000", + "name": "tpx_tpx227921416a0", + "phases": "AS", + "to": "sx3065696a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3065696", + "name": "xf_t227921416a", + "phases": "AS", + "to": "x3065696a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026726", + "length": "129.8445", + "name": "line_ln6286965-1", + "phases": "ABCN", + "to": "l2814529" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l2814529", + "name": "xf_t28120126a", + "phases": "AS", + "to": "x2814529a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l2814529", + "name": "xf_t28120126c", + "phases": "CS", + "to": "x2814529c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l2814529", + "name": "xf_t28120126b", + "phases": "BS", + "to": "x2814529b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026705", + "length": "23.0099", + "name": "line_ln5621833-2", + "phases": "CN", + "to": "n1140829" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p827561", + "length": "22.1624", + "name": "line_ln6198014-1", + "phases": "CN", + "to": "m1026705" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026705", + "length": "114.9670", + "name": "line_ln5803257-1", + "phases": "CN", + "to": "l2710532" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3016088", + "length": "153.0002", + "name": "line_ln6492184-2", + "phases": "AN", + "to": "l3312692" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3312692", + "name": "xf_t2223661373a", + "phases": "AS", + "to": "x3312692a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3235249", + "length": "307.3018", + "name": "line_ln6350539-1", + "phases": "AN", + "to": "l2954348" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l3235249", + "name": "xf_t5356014a", + "phases": "AS", + "to": "x3235249a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "150.00", + "continuous_rating_B": "150.00", + "continuous_rating_C": "150.00", + "emergency_rating_A": "150.00", + "emergency_rating_B": "150.00", + "emergency_rating_C": "150.00", + "from": "m1047672", + "length": "126.3833", + "name": "line_ln6411372-1", + "phases": "ABCN", + "to": "l2822866" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal1/0_tpx_ln6411371-1", + "continuous_rating_A": "150.00", + "continuous_rating_B": "150.00", + "continuous_rating_C": "150.00", + "emergency_rating_A": "150.00", + "emergency_rating_B": "150.00", + "emergency_rating_C": "150.00", + "from": "l2822866", + "length": "106.9255", + "name": "line_ln5532746-1", + "phases": "ABCN", + "to": "m1047688" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2822866", + "name": "xf_t5338922b", + "phases": "BS", + "to": "x2822866b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3195751a", + "length": "50.0000", + "name": "tpx_tpx293681a0", + "phases": "CS", + "to": "sx3195751a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2876813a", + "length": "50.0000", + "name": "tpx_tpx355842a0", + "phases": "CS", + "to": "sx2876813a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026681", + "length": "211.5975", + "name": "line_ln6047580-2", + "phases": "ABCN", + "to": "l3048221" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6108145-1_int", + "length": "195.5159", + "name": "line_ln6108145-1", + "phases": "ABCN", + "to": "m1026681" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3029506", + "length": "290.2646", + "name": "line_ln6350545-1", + "phases": "BN", + "to": "m1047518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047518", + "length": "283.9236", + "name": "line_ln5653463-1", + "phases": "BN", + "to": "l2973160" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691966b", + "length": "50.0000", + "name": "tpx_tpx339010b0", + "phases": "BS", + "to": "sx2691966b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l2691966", + "name": "xf_t5339010b", + "phases": "BS", + "to": "x2691966b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3728040", + "length": "124.9685", + "name": "line_ln6991381-8", + "phases": "AN", + "to": "l3728041" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3728041", + "name": "xf_t2224387074a", + "phases": "AS", + "to": "x3728041a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2726973", + "length": "277.6810", + "name": "line_ln5739188-1", + "phases": "ABCN", + "to": "m1047485" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047485", + "length": "645.7020", + "name": "line_ln5829831-1", + "phases": "ABCN", + "to": "l3122821" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137003", + "length": "21.4357", + "name": "line_ln6229795-2", + "phases": "AN", + "to": "l2935555" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047713", + "length": "31.5486", + "name": "line_ln6229795-3", + "phases": "AN", + "to": "n1137003" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3195327a", + "length": "50.0000", + "name": "tpx_tpx225901711a0", + "phases": "AS", + "to": "sx3195327a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3159645", + "name": "xf_t228446184a", + "phases": "AS", + "to": "x3159645a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1139551", + "length": "74.1116", + "name": "line_ln5714056-2", + "phases": "ABCN", + "to": "m1026695" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026702", + "length": "422.3578", + "name": "line_ln5714056-3", + "phases": "ABCN", + "to": "n1139551" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr1/0_tpx_ln6229827-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027066", + "length": "40.2000", + "name": "line_ln6229827-1", + "phases": "CN", + "to": "l2841645" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027068", + "length": "430.8037", + "name": "line_ln6138629-1", + "phases": "CN", + "to": "m1027066" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3176660b", + "length": "50.0000", + "name": "tpx_tpx226193892b0", + "phases": "BS", + "to": "sx3176660b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3176660", + "name": "xf_t226193892b", + "phases": "BS", + "to": "x3176660b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104117c", + "length": "50.0000", + "name": "tpx_tpx338964c0", + "phases": "CS", + "to": "sx3104117c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047722", + "length": "115.9987", + "name": "line_ln5863709-1", + "phases": "BN", + "to": "l3214064" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047722", + "length": "31.5895", + "name": "line_ln5803264-2", + "phases": "AN", + "to": "n1137985" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047724", + "length": "139.0173", + "name": "line_ln5773040-1", + "phases": "ABCN", + "to": "m1047722" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047722", + "length": "353.9081", + "name": "line_ln5773040-2", + "phases": "ABCN", + "to": "l2841621" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3010564c", + "length": "50.0000", + "name": "tpx_tpx321883c0", + "phases": "CS", + "to": "sx3010564c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3010564", + "name": "xf_t5321883c", + "phases": "CS", + "to": "x3010564c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069555", + "length": "158.7335", + "name": "line_ln5502557-1", + "phases": "BN", + "to": "l3085410" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3085410", + "length": "257.0573", + "name": "line_ln5472388-1", + "phases": "BN", + "to": "l2860499" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3085410", + "name": "xf_t5339097b", + "phases": "BS", + "to": "x3085410b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766738c", + "length": "50.0000", + "name": "tpx_tpx338978c0", + "phases": "CS", + "to": "sx2766738c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "n1140526", + "length": "1596.4202", + "name": "line_ln81354562-7", + "phases": "C", + "to": "m3763620" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "221-559681", + "length": "43.5385", + "name": "line_ln81354562-6", + "phases": "C", + "to": "n1140526" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047720", + "length": "6.2970", + "name": "line_ln5894206-1", + "phases": "ABCN", + "to": "l2895449" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2895449", + "length": "292.3263", + "name": "line_ln5894206-3", + "phases": "ABCN", + "to": "n1137005" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2895449", + "name": "xf_t226193134c", + "phases": "CS", + "to": "x2895449c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "m1047522", + "length": "29.5395", + "name": "line_ln6411386-2", + "phases": "AN", + "to": "n1136664" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "n1136664", + "length": "26.6857", + "name": "line_ln6411386-3", + "phases": "AN", + "to": "l3085401" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2785546", + "length": "390.6958", + "name": "line_ln6376200-2", + "phases": "CN", + "to": "m1026810" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026810", + "length": "444.6293", + "name": "line_ln6260002-1", + "phases": "CN", + "to": "l2914324" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2748131", + "length": "183.2082", + "name": "line_ln6077800-1", + "phases": "BN", + "to": "l2729427" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2729427", + "length": "148.5835", + "name": "line_ln5472393-1", + "phases": "BN", + "to": "m1047786" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2729427", + "name": "xf_t5323249b", + "phases": "BS", + "to": "x2729427b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1136363", + "length": "184.1536", + "name": "line_ln6290240-2", + "phases": "ABCN", + "to": "r18245" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069564", + "length": "117.8675", + "name": "line_ln6290240-3", + "phases": "ABCN", + "to": "n1136363" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122816b", + "length": "50.0000", + "name": "tpx_tpx356062b0", + "phases": "BS", + "to": "sx3122816b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3101788a", + "length": "50.0000", + "name": "tpx_tpx321878a0", + "phases": "AS", + "to": "sx3101788a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3101788", + "name": "xf_t5321878a", + "phases": "AS", + "to": "x3101788a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx1/0_tpx_ln6138596-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026942", + "length": "13.9425", + "name": "line_ln6228279-2", + "phases": "AN", + "to": "l3141389" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3141389", + "length": "248.9193", + "name": "line_ln5895767-1", + "phases": "AN", + "to": "l2860477" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3141389", + "name": "xf_t5356007a", + "phases": "AS", + "to": "x3141389a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766746c", + "length": "50.0000", + "name": "tpx_tpx321886c0", + "phases": "CS", + "to": "sx2766746c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3632979a", + "length": "50.0000", + "name": "tpx_tpx2224192013a0", + "phases": "AS", + "to": "sx3632979a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1136669", + "length": "198.7252", + "name": "line_ln6350544-3", + "phases": "ABCN", + "to": "l3103822" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3103822", + "length": "384.1112", + "name": "line_ln6163390-1", + "phases": "ABCN", + "to": "m1047577" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3103822", + "name": "xf_t228665517c", + "phases": "CS", + "to": "x3103822c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673319c", + "length": "50.0000", + "name": "tpx_tpx391973c0", + "phases": "CS", + "to": "sx2673319c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2673319", + "name": "xf_t5391973c", + "phases": "CS", + "to": "x2673319c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "221-240988", + "length": "134.7809", + "name": "line_ln8939784-1", + "phases": "C", + "to": "l3141411" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p827528", + "length": "20.9632", + "name": "line_ln8945011-1", + "phases": "C", + "to": "221-240988" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649301", + "length": "206.8914", + "name": "line_ln6900591-14", + "phases": "AN", + "to": "l3649302" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649300", + "length": "200.7040", + "name": "line_ln6900591-12", + "phases": "AN", + "to": "l3649301" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3649301", + "name": "xf_t2224237643a", + "phases": "AS", + "to": "x3649301a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069513", + "length": "288.9093", + "name": "line_ln5895804-1", + "phases": "ABCN", + "to": "m1069516" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2766738", + "length": "181.9563", + "name": "line_ln5623418-1", + "phases": "ABCN", + "to": "m1069513" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649300a", + "length": "50.0000", + "name": "tpx_tpx2224237546a0", + "phases": "AS", + "to": "sx3649300a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069549", + "length": "18.2762", + "name": "line_ln5894211-1", + "phases": "CN", + "to": "p901931" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p901931", + "length": "15.9281", + "name": "line_ln5621849-1", + "phases": "CN", + "to": "m1069548" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2851933c", + "length": "50.0000", + "name": "tpx_tpx21393643c0", + "phases": "CS", + "to": "sx2851933c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3727709", + "length": "237.1944", + "name": "line_ln6991378-5", + "phases": "AN", + "to": "l3727710" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3727710", + "name": "xf_t2224386863a", + "phases": "AS", + "to": "x3727710a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3768670", + "length": "14.6639", + "name": "line_ln6900590-2", + "phases": "AN", + "to": "p1123251" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m3768670", + "length": "243.8353", + "name": "line_ln5653460-6", + "phases": "ABCN", + "to": "l3235254" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3216345", + "length": "248.7033", + "name": "line_ln5653460-5", + "phases": "ABCN", + "to": "m3768670" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104124b", + "length": "50.0000", + "name": "tpx_tpx356065b0", + "phases": "BS", + "to": "sx3104124b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3104124", + "name": "xf_t5356065b", + "phases": "BS", + "to": "x3104124b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2935557a", + "length": "50.0000", + "name": "tpx_tpx21397005a0", + "phases": "AS", + "to": "sx2935557a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2935557", + "name": "xf_t21397005a", + "phases": "AS", + "to": "x2935557a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p859135", + "length": "22.2726", + "name": "line_ln6288693-1", + "phases": "AN", + "to": "m1047702" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047699", + "length": "23.4358", + "name": "line_ln6392124-1", + "phases": "AN", + "to": "p859135" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047732", + "length": "39.2111", + "name": "line_ln5682448-2", + "phases": "CN", + "to": "n1137987" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1137987", + "length": "128.2705", + "name": "line_ln5682448-3", + "phases": "CN", + "to": "l3027156" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010007", + "length": "524.4936", + "name": "line_ln6102293-1", + "phases": "AN", + "to": "m1010004" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010008", + "length": "7.4660", + "name": "line_ln6344714-1", + "phases": "AN", + "to": "m1010007" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p860847", + "length": "248.9151", + "name": "line_ln5472401-1", + "phases": "AN", + "to": "m1026880" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026880", + "length": "113.3993", + "name": "line_ln5623425-1", + "phases": "AN", + "to": "l2766748" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026880", + "length": "241.0539", + "name": "line_ln6290241-1", + "phases": "AN", + "to": "m1026874" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069564", + "length": "21.4534", + "name": "line_ln6076243-1", + "phases": "AN", + "to": "p901933" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p901933", + "length": "27.0691", + "name": "line_ln6288699-1", + "phases": "AN", + "to": "m1069563" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047593", + "length": "32.2077", + "name": "line_ln5661951-2", + "phases": "AN", + "to": "n1136993" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1136993", + "length": "70.5968", + "name": "line_ln5661951-3", + "phases": "AN", + "to": "l2972930" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1136671", + "length": "140.1646", + "name": "line_ln5752776-3", + "phases": "ABCN", + "to": "m1047593" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047593", + "length": "428.3360", + "name": "line_ln6298585-1", + "phases": "ABCN", + "to": "m1047615" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3270814a", + "length": "50.0000", + "name": "tpx_tpx226191850a0", + "phases": "AS", + "to": "sx3270814a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3270814", + "name": "xf_t226191850a", + "phases": "AS", + "to": "x3270814a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2935553b", + "length": "50.0000", + "name": "tpx_tpx323247b0", + "phases": "BS", + "to": "sx2935553b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026953", + "length": "99.9983", + "name": "line_ln5500962-2", + "phases": "BN", + "to": "l3008232" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l3008232", + "name": "xf_t226192492b", + "phases": "BS", + "to": "x3008232b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3157708", + "length": "46.3637", + "name": "line_ln5803262-7", + "phases": "CN", + "to": "n1137991" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1137991", + "length": "142.3776", + "name": "line_ln5803262-8", + "phases": "CN", + "to": "m4113345" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047780", + "length": "403.1257", + "name": "line_ln5714046-1", + "phases": "BN", + "to": "l3066811" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047777", + "length": "300.3130", + "name": "line_ln6047562-1", + "phases": "BN", + "to": "m1047780" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2726974b", + "length": "50.0000", + "name": "tpx_tpx226193395b0", + "phases": "BS", + "to": "sx2726974b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1137958", + "length": "291.0776", + "name": "line_ln5958702-3", + "phases": "CN", + "to": "m1047478" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047478", + "length": "139.4813", + "name": "line_ln6199513-1", + "phases": "CN", + "to": "l2766716" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr4_dpx_ln5744331-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "200.00", + "from": "m1047478", + "length": "99.0711", + "name": "line_ln5744331-1", + "phases": "CN", + "to": "l3254209" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2710515", + "length": "454.8416", + "name": "line_ln5895775-1", + "phases": "CN", + "to": "m1027027" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3010564", + "length": "405.4772", + "name": "line_ln5865238-1", + "phases": "CN", + "to": "l2710515" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2710515", + "name": "xf_t5321884c", + "phases": "CS", + "to": "x2710515c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p901927", + "length": "53.6051", + "name": "line_ln5621848-2", + "phases": "BN", + "to": "n1136353" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "n1136353", + "length": "34.7951", + "name": "line_ln5621848-3", + "phases": "BN", + "to": "l2820535" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1140828", + "length": "39.9354", + "name": "line_ln5472403-2", + "phases": "ABCN", + "to": "m1026708" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026706", + "length": "391.3713", + "name": "line_ln5472403-3", + "phases": "ABCN", + "to": "n1140828" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6320366-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026798", + "length": "80.5107", + "name": "line_ln5803299-1", + "phases": "CN", + "to": "l2952014" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2952014", + "name": "xf_t5294809a", + "phases": "CS", + "to": "x2952014a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m4113345", + "length": "264.5570", + "name": "line_ln5803262-6", + "phases": "CN", + "to": "l3197640" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897793a", + "length": "50.0000", + "name": "tpx_tpx338987a0", + "phases": "AS", + "to": "sx2897793a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2897793", + "name": "xf_t5338987a", + "phases": "AS", + "to": "x2897793a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085410b", + "length": "50.0000", + "name": "tpx_tpx339097b0", + "phases": "BS", + "to": "sx3085410b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069572", + "length": "280.4772", + "name": "line_ln5653477-1", + "phases": "BN", + "to": "l3066826" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3066826", + "name": "xf_t5339003b", + "phases": "BS", + "to": "x3066826b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010561a", + "length": "50.0000", + "name": "tpx_tpx337650a0", + "phases": "AS", + "to": "sx3010561a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729413a", + "length": "50.0000", + "name": "tpx_tpx21397067a0", + "phases": "AS", + "to": "sx2729413a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3251854a", + "length": "50.0000", + "name": "tpx_tpx226881700a0", + "phases": "AS", + "to": "sx3251854a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3251854", + "name": "xf_t226881700a", + "phases": "AS", + "to": "x3251854a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2/0_acsrxx2_acsr_ln6129680-2", + "continuous_rating_A": "300.00", + "emergency_rating_A": "300.00", + "from": "n1136665", + "length": "98.1706", + "name": "line_ln6129680-3", + "phases": "AN", + "to": "l2685809" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2685809", + "name": "xf_t225533162a", + "phases": "AS", + "to": "x2685809a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047750", + "length": "276.6073", + "name": "line_ln5865234-1", + "phases": "AN", + "to": "m1047744" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047744", + "length": "2.7631", + "name": "line_ln5865233-1", + "phases": "AN", + "to": "l3178971" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048212a", + "length": "50.0000", + "name": "tpx_tpx355934a0", + "phases": "AS", + "to": "sx3048212a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l3048212", + "name": "xf_t5355934a", + "phases": "AS", + "to": "x3048212a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069517", + "length": "94.1423", + "name": "line_ln6350556-2", + "phases": "ABCN", + "to": "n1136367" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1136367", + "length": "126.3069", + "name": "line_ln6350556-3", + "phases": "ABCN", + "to": "m1069515" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069521", + "length": "163.7328", + "name": "line_ln6380835-1", + "phases": "AN", + "to": "l3254231" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069521", + "length": "322.0244", + "name": "line_ln5985347-1", + "phases": "AN", + "to": "m1069524" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2897793", + "length": "83.9444", + "name": "line_ln6290229-1", + "phases": "AN", + "to": "m1069521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047813", + "length": "220.2650", + "name": "line_ln6108123-1", + "phases": "BN", + "to": "l2973149" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2785512", + "length": "386.9641", + "name": "line_ln6017286-1", + "phases": "BN", + "to": "m1047813" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2989432", + "length": "268.7833", + "name": "line_ln6318427-2", + "phases": "BN", + "to": "l3066830" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047809", + "length": "240.7436", + "name": "line_ln6318427-1", + "phases": "BN", + "to": "l2989432" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2989432", + "name": "xf_t226163575b", + "phases": "BS", + "to": "x2989432b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "e206614", + "length": "76.2763", + "name": "line_ln6228303-2", + "phases": "BN", + "to": "l3082983" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d6231996-1_int", + "name": "swt_l5659_48332_sw", + "phases": "B", + "status": "CLOSED", + "to": "e206614" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2914323b", + "length": "50.0000", + "name": "tpx_tpx355376b0", + "phases": "BS", + "to": "sx2914323b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2914323", + "name": "xf_t5355376b", + "phases": "BS", + "to": "x2914323b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673322b", + "length": "50.0000", + "name": "tpx_tpx355358b0", + "phases": "BS", + "to": "sx2673322b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104136b", + "length": "50.0000", + "name": "tpx_tpx338949b0", + "phases": "BS", + "to": "sx3104136b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3104136", + "name": "xf_t5338949b", + "phases": "BS", + "to": "x3104136b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991929b", + "length": "50.0000", + "name": "tpx_tpx28147708b0", + "phases": "BS", + "to": "sx2991929b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026660", + "length": "1114.9021", + "name": "line_ln5895781-1", + "phases": "AN", + "to": "l3160106" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3160106", + "name": "xf_t5310570a", + "phases": "AS", + "to": "x3160106a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3122821", + "length": "452.4689", + "name": "line_ln5532753-1", + "phases": "ABCN", + "to": "m1047486" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3122821", + "name": "xf_t5338953b", + "phases": "BS", + "to": "x3122821b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2745806c", + "length": "50.0000", + "name": "tpx_tpx226194262c0", + "phases": "CS", + "to": "sx2745806c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2745806", + "name": "xf_t226194262c", + "phases": "CS", + "to": "x2745806c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2766748", + "name": "xf_t21470326a", + "phases": "AS", + "to": "x2766748a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026826", + "length": "198.3684", + "name": "line_ln5683843-1", + "phases": "CN", + "to": "m1026820" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026820", + "length": "294.5283", + "name": "line_ln6411406-1", + "phases": "CN", + "to": "m1026823" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026820", + "length": "194.3325", + "name": "line_ln5774486-1", + "phases": "CN", + "to": "l3141403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2820531b", + "length": "50.0000", + "name": "tpx_tpx226192936b0", + "phases": "BS", + "to": "sx2820531b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1009720", + "length": "319.3397", + "name": "line_ln5804809-1", + "phases": "AN", + "to": "l3178982" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009720", + "length": "93.7123", + "name": "line_ln5714057-1", + "phases": "ABCN", + "to": "m1009715" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009724", + "length": "149.4031", + "name": "line_ln5744344-1", + "phases": "ABCN", + "to": "m1009720" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2954353a", + "length": "50.0000", + "name": "tpx_tpx338945a0", + "phases": "AS", + "to": "sx2954353a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2954353", + "name": "xf_t5338945a", + "phases": "AS", + "to": "x2954353a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916603b", + "length": "50.0000", + "name": "tpx_tpx323403b0", + "phases": "BS", + "to": "sx2916603b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2860493", + "length": "287.4330", + "name": "line_ln6077785-1", + "phases": "AN", + "to": "l3085403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3085403", + "name": "xf_t5293668a", + "phases": "AS", + "to": "x3085403a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3104114", + "length": "182.2345", + "name": "line_ln5593215-1", + "phases": "BN", + "to": "m1009824" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009824", + "length": "217.2309", + "name": "line_ln6350528-1", + "phases": "BN", + "to": "l2691939" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1009824", + "length": "175.9835", + "name": "line_ln5865225-1", + "phases": "BN", + "to": "l2822857" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx1/0_tpx_ln6077771-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1009824", + "length": "100.7711", + "name": "line_ln6077771-1", + "phases": "BN", + "to": "l2954338" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2954355", + "length": "78.1149", + "name": "line_ln5502544-1", + "phases": "AN", + "to": "m1026665" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3122827", + "length": "191.9471", + "name": "line_ln5472374-1", + "phases": "AN", + "to": "l2954355" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2954355", + "name": "xf_t5293672a", + "phases": "AS", + "to": "x2954355a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254216a", + "length": "50.0000", + "name": "tpx_tpx21398563a0", + "phases": "AS", + "to": "sx3254216a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3254216", + "name": "xf_t21398563a", + "phases": "AS", + "to": "x3254216a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3226771a", + "length": "50.0000", + "name": "tpx_tpx227100746a0", + "phases": "AS", + "to": "sx3226771a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3226771", + "name": "xf_t227100746a", + "phases": "AS", + "to": "x3226771a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2673312a", + "length": "50.0000", + "name": "tpx_tpx321837a0", + "phases": "AS", + "to": "sx2673312a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2673312", + "name": "xf_t5321837a", + "phases": "AS", + "to": "x2673312a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027004", + "length": "125.0111", + "name": "line_ln5986922-1", + "phases": "BN", + "to": "l2804248" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2804248", + "length": "194.8036", + "name": "line_ln5835128-1", + "phases": "BN", + "to": "m1027005" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2804248", + "name": "xf_t5323244b", + "phases": "BS", + "to": "x2804248b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2916234a", + "length": "50.0000", + "name": "tpx_tpx228549643a0", + "phases": "AS", + "to": "sx2916234a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2916234", + "name": "xf_t228549643a", + "phases": "AS", + "to": "x2916234a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3010561", + "name": "xf_t5337650a", + "phases": "AS", + "to": "x3010561a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3141389a", + "length": "50.0000", + "name": "tpx_tpx356007a0", + "phases": "AS", + "to": "sx3141389a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069613", + "length": "324.3558", + "name": "line_ln6290227-1", + "phases": "BN", + "to": "m1069597" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2897791", + "length": "9.4781", + "name": "line_ln5683842-1", + "phases": "BN", + "to": "m1069613" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3312692a", + "length": "50.0000", + "name": "tpx_tpx2223661373a0", + "phases": "AS", + "to": "sx3312692a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3120503a", + "length": "50.0000", + "name": "tpx_tpx225869139a0", + "phases": "AS", + "to": "sx3120503a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2841632", + "length": "82.4335", + "name": "line_ln5860423-1", + "phases": "ABCN", + "to": "d5860450-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5860450-1_int", + "name": "swt_ln4651075_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1047575" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235258a", + "length": "50.0000", + "name": "tpx_tpx293652a0", + "phases": "AS", + "to": "sx3235258a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897767c", + "length": "50.0000", + "name": "tpx_tpx338960c0", + "phases": "CS", + "to": "sx2897767c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2897767", + "name": "xf_t5338960c", + "phases": "CS", + "to": "x2897767c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2858175a", + "length": "50.0000", + "name": "tpx_tpx225668688a0", + "phases": "AS", + "to": "sx2858175a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2801896b", + "length": "50.0000", + "name": "tpx_tpx226191995b0", + "phases": "BS", + "to": "sx2801896b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2801896", + "name": "xf_t226191995b", + "phases": "BS", + "to": "x2801896b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3103822c", + "length": "50.0000", + "name": "tpx_tpx228665517c0", + "phases": "CS", + "to": "sx3103822c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3178979c", + "length": "50.0000", + "name": "tpx_tpx338968c0", + "phases": "CS", + "to": "sx3178979c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct75C", + "from": "l3178979", + "name": "xf_t5338968c", + "phases": "CS", + "to": "x3178979c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "l3207907", + "length": "7.9535", + "name": "line_ln6506307-4", + "phases": "ABCN", + "to": "m3037441" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "l2851933", + "length": "77.4945", + "name": "line_ln6506306-2", + "phases": "ABCN", + "to": "l3207907" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l3207907", + "name": "xf_t5293664a", + "phases": "AS", + "to": "x3207907a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75B", + "from": "l3207907", + "name": "xf_t5293664b", + "phases": "BS", + "to": "x3207907b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l3207907", + "name": "xf_t5293664c", + "phases": "CS", + "to": "x3207907c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047793", + "length": "21.4713", + "name": "line_ln6108170-1", + "phases": "BN", + "to": "m1047795" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047793", + "length": "20.0022", + "name": "line_ln5928546-1", + "phases": "BN", + "to": "p827555" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3157710", + "length": "167.7749", + "name": "line_ln5985348-2", + "phases": "BN", + "to": "m1047793" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766725c", + "length": "50.0000", + "name": "tpx_tpx21399220c0", + "phases": "CS", + "to": "sx2766725c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691938b", + "length": "50.0000", + "name": "tpx_tpx355600b0", + "phases": "BS", + "to": "sx2691938b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2691938", + "name": "xf_t5355600b", + "phases": "BS", + "to": "x2691938b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254203b", + "length": "50.0000", + "name": "tpx_tpx323233b0", + "phases": "BS", + "to": "sx3254203b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3254203", + "name": "xf_t5323233b", + "phases": "BS", + "to": "x3254203b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2876812a", + "length": "50.0000", + "name": "tpx_tpx321880a0", + "phases": "AS", + "to": "sx2876812a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026947", + "length": "454.8803", + "name": "line_ln6077775-1", + "phases": "BN", + "to": "m1026946" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026946", + "length": "421.8171", + "name": "line_ln6138603-1", + "phases": "BN", + "to": "m1026940" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2804272", + "length": "260.7050", + "name": "line_ln6229818-1", + "phases": "BN", + "to": "l2841641" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2841641", + "name": "xf_t21380156b", + "phases": "BS", + "to": "x2841641b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026697", + "length": "202.8895", + "name": "line_ln5865249-1", + "phases": "ABCN", + "to": "m1026690" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026701", + "length": "200.6493", + "name": "line_ln6411407-1", + "phases": "ABCN", + "to": "m1026697" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3085403a", + "length": "50.0000", + "name": "tpx_tpx293668a0", + "phases": "AS", + "to": "sx3085403a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3008237c", + "length": "50.0000", + "name": "tpx_tpx226193838c0", + "phases": "CS", + "to": "sx3008237c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3008237", + "name": "xf_t226193838c", + "phases": "CS", + "to": "x3008237c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122827a", + "length": "50.0000", + "name": "tpx_tpx293673a0", + "phases": "AS", + "to": "sx3122827a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254228b", + "length": "50.0000", + "name": "tpx_tpx325474b0", + "phases": "BS", + "to": "sx3254228b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3254228", + "name": "xf_t5325474b", + "phases": "BS", + "to": "x3254228b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3216368", + "length": "90.8688", + "name": "line_ln5683858-2", + "phases": "ABCN", + "to": "n1140827" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1140827", + "length": "56.6568", + "name": "line_ln5683858-3", + "phases": "ABCN", + "to": "m1026726" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048227a", + "length": "50.0000", + "name": "tpx_tpx337647a0", + "phases": "AS", + "to": "sx3048227a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3048227", + "name": "xf_t5337647a", + "phases": "AS", + "to": "x3048227a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160108b", + "length": "50.0000", + "name": "tpx_tpx355603b0", + "phases": "BS", + "to": "sx3160108b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3160108", + "name": "xf_t5355603b", + "phases": "BS", + "to": "x3160108b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069544", + "length": "10.4787", + "name": "line_ln5623415-1", + "phases": "BN", + "to": "m1069543" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069550", + "length": "305.0457", + "name": "line_ln5895803-1", + "phases": "BN", + "to": "m1069544" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069544", + "length": "51.7366", + "name": "line_ln6229817-1", + "phases": "BN", + "to": "l2804272" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026866", + "length": "36.8061", + "name": "line_ln6341781-2", + "phases": "AN", + "to": "n1147862" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1147862", + "length": "293.1960", + "name": "line_ln6341781-3", + "phases": "AN", + "to": "l2685805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2879069", + "length": "401.0548", + "name": "line_ln6350535-1", + "phases": "AN", + "to": "l3197633" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2973154", + "length": "210.2678", + "name": "line_ln6229797-1", + "phases": "AN", + "to": "l2879069" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2879069", + "name": "xf_t5338894a", + "phases": "AS", + "to": "x2879069a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710518a", + "length": "50.0000", + "name": "tpx_tpx21209868a0", + "phases": "AS", + "to": "sx2710518a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027039", + "length": "15.0026", + "name": "line_ln5806920-1", + "phases": "BN", + "to": "d5806920-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3254213", + "length": "209.5194", + "name": "line_ln5532750-1", + "phases": "ABCN", + "to": "m1027039" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1027039", + "length": "88.7418", + "name": "line_ln5472354-1", + "phases": "ABCN", + "to": "m1027043" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026927", + "length": "16.8664", + "name": "line_ln6292826-1", + "phases": "ABCN", + "to": "x196-29518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "x196-29518", + "length": "296.7137", + "name": "line_ln5959087-1", + "phases": "ABCN", + "to": "l3122816" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827537", + "length": "228.7663", + "name": "line_ln6079950-1", + "phases": "AN", + "to": "l3122827" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026679", + "length": "29.1645", + "name": "line_ln5958703-1", + "phases": "AN", + "to": "p827537" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026701", + "length": "16.9465", + "name": "line_ln5837358-1", + "phases": "AN", + "to": "p827560" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026709", + "length": "192.2961", + "name": "line_ln6290233-1", + "phases": "ABCN", + "to": "m1026701" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710542b", + "length": "50.0000", + "name": "tpx_tpx355584b0", + "phases": "BS", + "to": "sx2710542b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197646b", + "length": "50.0000", + "name": "tpx_tpx355944b0", + "phases": "BS", + "to": "sx3197646b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3197646", + "name": "xf_t5355944b", + "phases": "BS", + "to": "x3197646b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785534b", + "length": "50.0000", + "name": "tpx_tpx338982b0", + "phases": "BS", + "to": "sx2785534b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2785534", + "name": "xf_t5338982b", + "phases": "BS", + "to": "x2785534b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2821010a", + "length": "50.0000", + "name": "tpx_tpx294788a0", + "phases": "CS", + "to": "sx2821010a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2821010", + "name": "xf_t5294788a", + "phases": "CS", + "to": "x2821010a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026926", + "length": "46.1475", + "name": "line_ln5926301-1", + "phases": "ABCN", + "to": "m1026927" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026920", + "length": "308.1406", + "name": "line_ln6047565-1", + "phases": "ABCN", + "to": "m1026926" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026926", + "length": "19.0510", + "name": "line_ln5532749-2", + "phases": "AN", + "to": "n1138000" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3235246b", + "length": "50.0000", + "name": "tpx_tpx323279b0", + "phases": "BS", + "to": "sx3235246b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3235246", + "name": "xf_t5323279b", + "phases": "BS", + "to": "x3235246b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1009651", + "length": "172.9994", + "name": "line_ln5774488-1", + "phases": "CN", + "to": "l2879092" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct75C", + "from": "l2879092", + "name": "xf_t21399326c", + "phases": "CS", + "to": "x2879092c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3141398a", + "length": "50.0000", + "name": "tpx_tpx21386976a0", + "phases": "AS", + "to": "sx3141398a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3141398", + "name": "xf_t21386976a", + "phases": "AS", + "to": "x3141398a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122821b", + "length": "50.0000", + "name": "tpx_tpx338953b0", + "phases": "BS", + "to": "sx3122821b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1140523", + "length": "71.7126", + "name": "line_ln5562933-2", + "phases": "CN", + "to": "l2766724" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2766724", + "name": "xf_t5294786c", + "phases": "CS", + "to": "x2766724c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673318c", + "length": "50.0000", + "name": "tpx_tpx338967c0", + "phases": "CS", + "to": "sx2673318c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069619", + "length": "8.7989", + "name": "line_ln6290226-1", + "phases": "BN", + "to": "m1069620" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069620", + "length": "65.3158", + "name": "line_ln6074369-1", + "phases": "BN", + "to": "m1069610" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026655", + "length": "206.9838", + "name": "line_ln6260020-1", + "phases": "ABCN", + "to": "m1009651" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026655", + "length": "33.9177", + "name": "line_ln5502536-2", + "phases": "CN", + "to": "n1141475" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026655", + "length": "16.3975", + "name": "line_ln5865246-2", + "phases": "AN", + "to": "n1141474" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026658", + "length": "234.2658", + "name": "line_ln5591284-2", + "phases": "ABCN", + "to": "m1026655" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104123c", + "length": "50.0000", + "name": "tpx_tpx338924c0", + "phases": "CS", + "to": "sx3104123c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l3104123", + "name": "xf_t5338924c", + "phases": "CS", + "to": "x3104123c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026941", + "length": "382.5806", + "name": "line_ln6077770-1", + "phases": "AN", + "to": "l3197618" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx1/0_tpx_ln6138596-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026941", + "length": "70.5666", + "name": "line_ln6228279-1", + "phases": "AN", + "to": "m1026942" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2691936", + "length": "240.0595", + "name": "line_ln5623388-1", + "phases": "AN", + "to": "m1026941" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026734", + "length": "220.1102", + "name": "line_ln6061814-1", + "phases": "AN", + "to": "l3065696" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1141473", + "length": "135.3284", + "name": "line_ln6108140-3", + "phases": "AN", + "to": "l3216350" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3216350", + "name": "xf_t5391977a", + "phases": "AS", + "to": "x3216350a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2691939", + "length": "204.2736", + "name": "line_ln5714041-1", + "phases": "BN", + "to": "l2860478" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2860478", + "length": "208.7905", + "name": "line_ln5744325-1", + "phases": "BN", + "to": "l2822858" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2860478", + "name": "xf_t5355590b", + "phases": "BS", + "to": "x2860478b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026931", + "length": "184.8143", + "name": "line_ln5472342-1", + "phases": "AN", + "to": "l3216337" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2841615", + "length": "132.3679", + "name": "line_ln6199504-1", + "phases": "AN", + "to": "m1026931" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026931", + "length": "161.3726", + "name": "line_ln5714039-1", + "phases": "AN", + "to": "l3216336" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047503", + "length": "77.9737", + "name": "line_ln5863706-1", + "phases": "ABCN", + "to": "l2841635" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2991914", + "length": "116.9621", + "name": "line_ln5651975-1", + "phases": "ABCN", + "to": "m1047503" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2841624b", + "length": "50.0000", + "name": "tpx_tpx355604b0", + "phases": "BS", + "to": "sx2841624b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2841624", + "name": "xf_t5355604b", + "phases": "BS", + "to": "x2841624b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066812a", + "length": "50.0000", + "name": "tpx_tpx323263a0", + "phases": "AS", + "to": "sx3066812a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3066812", + "name": "xf_t5323263a", + "phases": "AS", + "to": "x3066812a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3189188c", + "length": "50.0000", + "name": "tpx_tpx293658c0", + "phases": "CS", + "to": "sx3189188c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766724c", + "length": "50.0000", + "name": "tpx_tpx294786c0", + "phases": "CS", + "to": "sx2766724c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3729981", + "length": "109.9996", + "name": "line_ln6879075-2", + "phases": "AN", + "to": "l3632979" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3632979", + "name": "xf_t2224192013a", + "phases": "AS", + "to": "x3632979a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785512b", + "length": "50.0000", + "name": "tpx_tpx323245b0", + "phases": "BS", + "to": "sx2785512b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2785512", + "name": "xf_t5323245b", + "phases": "BS", + "to": "x2785512b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p827525", + "length": "413.2954", + "name": "line_ln5000chp-1", + "phases": "ABCN", + "to": "m1026chp-1" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026chp-1", + "name": "swt_ln5001chp_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1026chp-2" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2991908", + "length": "330.8007", + "name": "line_ln6229796-1", + "phases": "AN", + "to": "l3178973" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137988", + "length": "134.1902", + "name": "line_ln5835136-3", + "phases": "AN", + "to": "l2991908" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2991908", + "name": "xf_t5338900a", + "phases": "AS", + "to": "x2991908a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1136357", + "length": "131.1798", + "name": "line_ln5651985-3", + "phases": "CN", + "to": "l2897790" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069548", + "length": "61.2269", + "name": "line_ln5651985-2", + "phases": "CN", + "to": "n1136357" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026984", + "length": "236.2387", + "name": "line_ln5593229-1", + "phases": "ABCN", + "to": "m1026986" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026979", + "length": "232.0751", + "name": "line_ln6290210-1", + "phases": "ABCN", + "to": "m1026984" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027073", + "length": "151.8441", + "name": "line_ln6320362-1", + "phases": "CN", + "to": "l2879089" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2879089", + "name": "xf_t21455388c", + "phases": "CS", + "to": "x2879089c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197641a", + "length": "50.0000", + "name": "tpx_tpx293591a0", + "phases": "AS", + "to": "sx3197641a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897805a", + "length": "50.0000", + "name": "tpx_tpx21471907a0", + "phases": "AS", + "to": "sx2897805a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2897805", + "name": "xf_t21471907a", + "phases": "AS", + "to": "x2897805a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069560", + "length": "267.1529", + "name": "line_ln5773046-1", + "phases": "BN", + "to": "m1069567" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069551", + "length": "399.6649", + "name": "line_ln5773046-2", + "phases": "BN", + "to": "m1069560" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069560", + "length": "289.0837", + "name": "line_ln6198036-1", + "phases": "BN", + "to": "l3176660" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2820528c", + "length": "50.0000", + "name": "tpx_tpx226191778c0", + "phases": "CS", + "to": "sx2820528c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2820528", + "name": "xf_t226191778c", + "phases": "CS", + "to": "x2820528c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1027001", + "length": "301.3936", + "name": "line_ln5835127-1", + "phases": "BN", + "to": "m1027004" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026990", + "length": "836.1619", + "name": "line_ln5956456-1", + "phases": "BN", + "to": "m1027001" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2973153", + "length": "34.5424", + "name": "line_ln6380809-2", + "phases": "ABCN", + "to": "n1136998" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1136998", + "length": "219.2522", + "name": "line_ln6380809-3", + "phases": "ABCN", + "to": "m1047669" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897800b", + "length": "50.0000", + "name": "tpx_tpx323277b0", + "phases": "BS", + "to": "sx2897800b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2897800", + "name": "xf_t5323277b", + "phases": "BS", + "to": "x2897800b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026732", + "length": "221.3403", + "name": "line_ln5758684-1", + "phases": "AN", + "to": "m1026734" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3226771", + "length": "531.0953", + "name": "line_ln6196270-2", + "phases": "AN", + "to": "l3189190" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1140824", + "length": "653.5979", + "name": "line_ln6196270-5", + "phases": "AN", + "to": "l3226771" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2820528", + "length": "99.9972", + "name": "line_ln5863691-2", + "phases": "CN", + "to": "l2745799" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2745799", + "name": "xf_t226191779c", + "phases": "CS", + "to": "x2745799c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3066811", + "name": "xf_t28126875b", + "phases": "BS", + "to": "x3066811b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973154a", + "length": "50.0000", + "name": "tpx_tpx338897a0", + "phases": "AS", + "to": "sx2973154a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973153a", + "length": "50.0000", + "name": "tpx_tpx338925a0", + "phases": "AS", + "to": "sx2973153a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2973153", + "name": "xf_t5338925a", + "phases": "AS", + "to": "x2973153a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069627", + "length": "454.5724", + "name": "line_ln6077797-1", + "phases": "BN", + "to": "l2897791" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2954361", + "length": "177.7903", + "name": "line_ln6320354-1", + "phases": "BN", + "to": "m1069627" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069627", + "length": "162.9672", + "name": "line_ln6380834-1", + "phases": "BN", + "to": "l3254228" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_tpx_ln5742835-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1009770", + "length": "182.7023", + "name": "line_ln5742835-1", + "phases": "ABCN", + "to": "l2689691" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2689691", + "length": "272.9084", + "name": "line_ln5712507-1", + "phases": "ABCN", + "to": "m1009763" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2689691", + "name": "xf_t5355375a", + "phases": "AS", + "to": "x2689691a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3101789a", + "length": "50.0000", + "name": "tpx_tpx294842a0", + "phases": "AS", + "to": "sx3101789a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3101789", + "name": "xf_t5294842a", + "phases": "AS", + "to": "x3101789a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897790c", + "length": "50.0000", + "name": "tpx_tpx21357984c0", + "phases": "CS", + "to": "sx2897790c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026700", + "length": "121.4181", + "name": "line_ln6438273-2", + "phases": "ABCN", + "to": "n1140823" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1140823", + "length": "198.3470", + "name": "line_ln6438273-3", + "phases": "ABCN", + "to": "l2851933" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2911069b", + "length": "50.0000", + "name": "tpx_tpx225571871b0", + "phases": "BS", + "to": "sx2911069b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047580", + "length": "34.7410", + "name": "line_ln6025724-2", + "phases": "CN", + "to": "n1136672" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1136672", + "length": "39.9036", + "name": "line_ln6025724-5", + "phases": "CN", + "to": "l3253995" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m3763624", + "length": "17.9002", + "name": "line_ln6896673-7", + "phases": "ABCN", + "to": "m3763618" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m3763618", + "length": "12.4152", + "name": "line_ln81354561-2", + "phases": "C", + "to": "p1121282" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2879092c", + "length": "50.0000", + "name": "tpx_tpx21399326c0", + "phases": "CS", + "to": "sx2879092c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047420", + "length": "438.4849", + "name": "line_ln6411377-1", + "phases": "AN", + "to": "l2820556" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2820556", + "length": "129.5582", + "name": "line_ln6017297-1", + "phases": "AN", + "to": "m1047410" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2820556", + "name": "xf_t226196648a", + "phases": "AS", + "to": "x2820556a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2691947a", + "length": "50.0000", + "name": "tpx_tpx337718a0", + "phases": "AS", + "to": "sx2691947a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2673308", + "length": "369.4543", + "name": "line_ln6199557-1", + "phases": "ABCN", + "to": "l2991939" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2745848", + "length": "188.8270", + "name": "line_ln5833717-1", + "phases": "ABCN", + "to": "l2673308" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2673308", + "name": "xf_t5337653b", + "phases": "BS", + "to": "x2673308b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx4_acsr_ln6201698-2", + "continuous_rating_B": "200.00", + "emergency_rating_B": "200.00", + "from": "p827529", + "length": "14.9005", + "name": "line_ln6201698-2", + "phases": "BN", + "to": "n1136668" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx4_acsr_ln6201698-2", + "continuous_rating_B": "200.00", + "emergency_rating_B": "200.00", + "from": "n1136668", + "length": "142.0386", + "name": "line_ln6201698-3", + "phases": "BN", + "to": "l3029506" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2916598a", + "length": "50.0000", + "name": "tpx_tpx355933a0", + "phases": "AS", + "to": "sx2916598a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026954", + "length": "15.0053", + "name": "line_ln5655682-1", + "phases": "BN", + "to": "d5655682-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d5655682-1_int", + "name": "swt_l5491_48332_sw", + "phases": "B", + "status": "CLOSED", + "to": "e182725" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "196-29520", + "length": "212.1015", + "name": "line_ln5800830-1", + "phases": "ABCN", + "to": "l3160109" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1137992", + "length": "14.8934", + "name": "line_ln5742811-4", + "phases": "ABCN", + "to": "196-29520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2841627", + "length": "350.7360", + "name": "line_ln6017298-1", + "phases": "AN", + "to": "l3254216" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3254216", + "length": "109.9871", + "name": "line_ln6388581-1", + "phases": "AN", + "to": "m1047401" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3207907a", + "length": "50.0000", + "name": "tpx_tpx293664a0", + "phases": "AS", + "to": "sx3207907a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729409b", + "length": "50.0000", + "name": "tpx_tpx355605b0", + "phases": "BS", + "to": "sx2729409b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2841632b", + "length": "50.0000", + "name": "tpx_tpx338972b0", + "phases": "BS", + "to": "sx2841632b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2841632", + "name": "xf_t5338972b", + "phases": "BS", + "to": "x2841632b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729427b", + "length": "50.0000", + "name": "tpx_tpx323249b0", + "phases": "BS", + "to": "sx2729427b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141402c", + "length": "50.0000", + "name": "tpx_tpx391978c0", + "phases": "CS", + "to": "sx3141402c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3141402", + "name": "xf_t5391978c", + "phases": "CS", + "to": "x3141402c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026796", + "length": "99.7777", + "name": "line_ln5498301-1", + "phases": "ABCN", + "to": "m1026795" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026795", + "length": "242.0107", + "name": "line_ln6108144-1", + "phases": "ABCN", + "to": "m1026786" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026795", + "length": "44.4800", + "name": "line_ln6259998-2", + "phases": "CN", + "to": "n1140522" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e182732", + "length": "30.1193", + "name": "line_ln5746548-1", + "phases": "ABCN", + "to": "m1026760" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5534970-1_int", + "name": "swt_l9191_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e182732" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3027133", + "length": "197.8748", + "name": "line_ln5528079-3", + "phases": "CN", + "to": "m3037453" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m3037453", + "length": "22.4666", + "name": "line_ln5679261-2", + "phases": "CN", + "to": "m1026812" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m3037453", + "length": "11.2274", + "name": "line_ln6436903-4", + "phases": "CN", + "to": "l2785546" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2991939", + "length": "307.5968", + "name": "line_ln5774495-1", + "phases": "ABCN", + "to": "l3216367" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2991939", + "name": "xf_t5337652b", + "phases": "BS", + "to": "x2991939b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069503", + "length": "92.9115", + "name": "line_ln5682346-2", + "phases": "ABCN", + "to": "n1134479" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e182729", + "length": "25.0043", + "name": "line_ln5863714-2", + "phases": "ABCN", + "to": "m1069503" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069503", + "length": "79.1886", + "name": "line_ln5863714-4", + "phases": "ABCN", + "to": "n1134478" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069465", + "length": "249.4192", + "name": "line_ln6047560-1", + "phases": "AN", + "to": "l3010561" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2729423c", + "length": "50.0000", + "name": "tpx_tpx339017c0", + "phases": "CS", + "to": "sx2729423c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2729423", + "name": "xf_t5339017c", + "phases": "CS", + "to": "x2729423c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973160b", + "length": "50.0000", + "name": "tpx_tpx338935b0", + "phases": "BS", + "to": "sx2973160b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2973160", + "name": "xf_t5338935b", + "phases": "BS", + "to": "x2973160b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047406", + "length": "95.9172", + "name": "line_ln5472359-1", + "phases": "AN", + "to": "l3216348" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3216348", + "length": "617.8429", + "name": "line_ln6320339-1", + "phases": "AN", + "to": "l2841627" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3216348", + "name": "xf_t5337717a", + "phases": "AS", + "to": "x3216348a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "d5653457-1_int", + "length": "281.1952", + "name": "line_ln5653457-1", + "phases": "ABCN", + "to": "m1026891" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2954347b", + "length": "50.0000", + "name": "tpx_tpx321841b0", + "phases": "BS", + "to": "sx2954347b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2954347", + "name": "xf_t5321841b", + "phases": "BS", + "to": "x2954347b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047568", + "length": "52.2934", + "name": "line_ln6383059-1", + "phases": "ABCN", + "to": "p827527" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "p827527", + "length": "20.1495", + "name": "line_ln5716230-2", + "phases": "ABCN", + "to": "n1136658" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3189190", + "name": "xf_t227100753a", + "phases": "AS", + "to": "x3189190a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3178988b", + "length": "50.0000", + "name": "tpx_tpx339001b0", + "phases": "BS", + "to": "sx3178988b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p895117", + "length": "16.9985", + "name": "line_ln6409780-1", + "phases": "BN", + "to": "m1069532" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069532", + "length": "192.1886", + "name": "line_ln6046046-1", + "phases": "BN", + "to": "l2785534" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069532", + "length": "225.5912", + "name": "line_ln5924702-1", + "phases": "BN", + "to": "l2691965" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct75C", + "from": "l3141411", + "name": "xf_t21197413c", + "phases": "CS", + "to": "x3141411c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "d5774457-1_int", + "length": "134.0110", + "name": "line_ln5774457-1", + "phases": "ABCN", + "to": "m1026920" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026915", + "name": "swt_ln0774458_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5774457-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122815b", + "length": "50.0000", + "name": "tpx_tpx321858b0", + "phases": "BS", + "to": "sx3122815b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3122815", + "name": "xf_t5321858b", + "phases": "BS", + "to": "x3122815b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160106a", + "length": "50.0000", + "name": "tpx_tpx310570a0", + "phases": "AS", + "to": "sx3160106a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860482a", + "length": "50.0000", + "name": "tpx_tpx338954a0", + "phases": "AS", + "to": "sx2860482a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2860482", + "name": "xf_t5338954a", + "phases": "AS", + "to": "x2860482a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1136365", + "length": "97.8384", + "name": "line_ln5714063-2", + "phases": "ABCN", + "to": "m1069517" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069517", + "length": "80.5233", + "name": "line_ln6229819-1", + "phases": "ABCN", + "to": "m1069518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3160123", + "length": "301.0830", + "name": "line_ln6199556-1", + "phases": "AN", + "to": "l2897805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p827574", + "length": "199.9018", + "name": "line_ln5776672-1", + "phases": "AN", + "to": "l3160123" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3160123", + "name": "xf_t21015706a", + "phases": "AS", + "to": "x3160123a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047725", + "length": "287.6655", + "name": "line_ln5738651-1", + "phases": "BN", + "to": "m1047728" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047724", + "length": "11.2334", + "name": "line_ln5981120-1", + "phases": "BN", + "to": "m1047725" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "d5623395-1_int", + "length": "355.5194", + "name": "line_ln5623395-1", + "phases": "BN", + "to": "l2879068" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "m1047767", + "name": "swt_ln0623395_sw", + "phases": "B", + "status": "CLOSED", + "to": "d5623395-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2726974", + "name": "xf_t226193395b", + "phases": "BS", + "to": "x2726974b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2989564", + "length": "348.9539", + "name": "line_ln6076245-1", + "phases": "BN", + "to": "l2897789" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2804269", + "length": "203.6500", + "name": "line_ln5591703-1", + "phases": "BN", + "to": "l2989564" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2989564", + "name": "xf_t5323286b", + "phases": "BS", + "to": "x2989564b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2879089c", + "length": "50.0000", + "name": "tpx_tpx21455388c0", + "phases": "CS", + "to": "sx2879089c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3122816", + "length": "1669.6394", + "name": "line_ln6290209-1", + "phases": "ABCN", + "to": "l3160103" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3160103", + "length": "78.8841", + "name": "line_ln5744335-1", + "phases": "ABCN", + "to": "m1026950" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3160103", + "name": "xf_t5356063c", + "phases": "CS", + "to": "x3160103c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026978", + "length": "14.9607", + "name": "line_ln6169251-1", + "phases": "ABCN", + "to": "m1026979" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026979", + "length": "252.7146", + "name": "line_ln5865240-1", + "phases": "BN", + "to": "l2748152" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649299a", + "length": "50.0000", + "name": "tpx_tpx2224237391a0", + "phases": "AS", + "to": "sx3649299a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048203b", + "length": "50.0000", + "name": "tpx_tpx323273b0", + "phases": "BS", + "to": "sx3048203b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3048203", + "name": "xf_t5323273b", + "phases": "BS", + "to": "x3048203b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879066b", + "length": "50.0000", + "name": "tpx_tpx323252b0", + "phases": "BS", + "to": "sx2879066b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2879066", + "name": "xf_t5323252b", + "phases": "BS", + "to": "x2879066b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "p827530", + "length": "22.3769", + "name": "line_ln8945013-1", + "phases": "A", + "to": "221-240991" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1026661", + "length": "16.6482", + "name": "line_ln8945012-1", + "phases": "A", + "to": "p827530" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216361b", + "length": "50.0000", + "name": "tpx_tpx21452406b0", + "phases": "BS", + "to": "sx3216361b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710517a", + "length": "50.0000", + "name": "tpx_tpx310568a0", + "phases": "AS", + "to": "sx2710517a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2748144", + "length": "387.4846", + "name": "line_ln5532768-1", + "phases": "ABCN", + "to": "m1069533" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1136354", + "length": "36.5515", + "name": "line_ln5561439-2", + "phases": "ABCN", + "to": "l2748144" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2748144", + "name": "xf_t5338984a", + "phases": "AS", + "to": "x2748144a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3120502a", + "length": "50.0000", + "name": "tpx_tpx294812a0", + "phases": "CS", + "to": "sx3120502a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804255b", + "length": "50.0000", + "name": "tpx_tpx338913b0", + "phases": "BS", + "to": "sx2804255b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785546a", + "length": "50.0000", + "name": "tpx_tpx21399752a0", + "phases": "CS", + "to": "sx2785546a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3140238a", + "length": "50.0000", + "name": "tpx_tpx227905262a0", + "phases": "AS", + "to": "sx3140238a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3140238", + "name": "xf_t227905262a", + "phases": "AS", + "to": "x3140238a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104129a", + "length": "50.0000", + "name": "tpx_tpx338969a0", + "phases": "AS", + "to": "sx3104129a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3104129", + "name": "xf_t5338969a", + "phases": "AS", + "to": "x3104129a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3010560b", + "length": "50.0000", + "name": "tpx_tpx338955b0", + "phases": "BS", + "to": "sx3010560b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3010560", + "name": "xf_t5338955b", + "phases": "BS", + "to": "x3010560b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026940", + "length": "376.8252", + "name": "line_ln6017291-1", + "phases": "BN", + "to": "m1026935" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026940", + "length": "215.9216", + "name": "line_ln5562925-1", + "phases": "BN", + "to": "m1026939" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3195327", + "name": "xf_t225901711a", + "phases": "AS", + "to": "x3195327a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3178971", + "length": "130.6121", + "name": "line_ln6138602-1", + "phases": "AN", + "to": "l2879067" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3178971", + "name": "xf_t5338896a", + "phases": "AS", + "to": "x3178971a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2876796a", + "length": "50.0000", + "name": "tpx_tpx226193338a0", + "phases": "AS", + "to": "sx2876796a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3066821", + "length": "208.2708", + "name": "line_ln5804812-1", + "phases": "AN", + "to": "m1009691" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1009691", + "length": "98.4289", + "name": "line_ln5562940-1", + "phases": "AN", + "to": "l2748140" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235249a", + "length": "50.0000", + "name": "tpx_tpx356014a0", + "phases": "AS", + "to": "sx3235249a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2673343", + "length": "355.0624", + "name": "line_ln5591805-1", + "phases": "BN", + "to": "l2764436" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160114a", + "length": "50.0000", + "name": "tpx_tpx339019a0", + "phases": "AS", + "to": "sx3160114a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3160114", + "name": "xf_t5339019a", + "phases": "AS", + "to": "x3160114a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2876796", + "length": "167.5168", + "name": "line_ln6409775-2", + "phases": "AN", + "to": "m1047756" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2876796", + "name": "xf_t226193338a", + "phases": "AS", + "to": "x2876796a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122835b", + "length": "50.0000", + "name": "tpx_tpx339008b0", + "phases": "BS", + "to": "sx3122835b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3122835", + "name": "xf_t5339008b", + "phases": "BS", + "to": "x3122835b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2973167", + "length": "226.3412", + "name": "line_ln6347196-3", + "phases": "ABCN", + "to": "n1140819" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1140818", + "length": "35.0690", + "name": "line_ln6108150-2", + "phases": "ABCN", + "to": "l2973167" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2973167", + "name": "xf_t5293656b", + "phases": "BS", + "to": "x2973167b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026744", + "length": "552.4778", + "name": "line_ln5835150-1", + "phases": "ABCN", + "to": "m1026724" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026724", + "length": "21.6052", + "name": "line_ln5472375-1", + "phases": "ABCN", + "to": "r18243" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026665", + "length": "278.8758", + "name": "line_ln6229802-1", + "phases": "AN", + "to": "m1026660" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026665", + "length": "477.4857", + "name": "line_ln6137085-1", + "phases": "AN", + "to": "l3232933" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2841641b", + "length": "50.0000", + "name": "tpx_tpx21380156b0", + "phases": "BS", + "to": "sx2841641b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3772794", + "length": "242.3239", + "name": "line_ln6900592-3", + "phases": "AN", + "to": "l3649306" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3649306", + "name": "xf_t2224238167a", + "phases": "AS", + "to": "x3649306a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1147864", + "length": "225.2904", + "name": "line_ln6411373-3", + "phases": "AN", + "to": "l2710536" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2710536", + "name": "xf_t21396867a", + "phases": "AS", + "to": "x2710536a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3010563", + "length": "201.8673", + "name": "line_ln6259990-1", + "phases": "AN", + "to": "l2841623" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2841623", + "name": "xf_t5294844a", + "phases": "AS", + "to": "x2841623a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766716c", + "length": "50.0000", + "name": "tpx_tpx337713c0", + "phases": "CS", + "to": "sx2766716c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2897792", + "length": "309.4213", + "name": "line_ln6260017-1", + "phases": "AN", + "to": "l2785538" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2785538", + "length": "214.6805", + "name": "line_ln6047596-1", + "phases": "AN", + "to": "l2897793" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2785538", + "name": "xf_t5338986a", + "phases": "AS", + "to": "x2785538a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047592", + "length": "131.5331", + "name": "line_ln5532748-5", + "phases": "ABCN", + "to": "m3763619" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047592", + "length": "11.9952", + "name": "line_ln5565092-1", + "phases": "CN", + "to": "p827512" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047577", + "length": "337.9466", + "name": "line_ln5619489-1", + "phases": "ABCN", + "to": "m1047592" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2935567b", + "length": "50.0000", + "name": "tpx_tpx338992b0", + "phases": "BS", + "to": "sx2935567b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804262a", + "length": "50.0000", + "name": "tpx_tpx355938a0", + "phases": "AS", + "to": "sx2804262a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2804262", + "name": "xf_t5355938a", + "phases": "AS", + "to": "x2804262a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804257b", + "length": "50.0000", + "name": "tpx_tpx321854b0", + "phases": "BS", + "to": "sx2804257b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2935555", + "length": "164.8861", + "name": "line_ln5593226-1", + "phases": "AN", + "to": "l2897773" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2935555", + "name": "xf_t5338917a", + "phases": "AS", + "to": "x2935555a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710505b", + "length": "50.0000", + "name": "tpx_tpx323398b0", + "phases": "BS", + "to": "sx2710505b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069509", + "length": "222.2092", + "name": "line_ln6077798-1", + "phases": "ABCN", + "to": "l2766738" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct75C", + "from": "l2766738", + "name": "xf_t5338978c", + "phases": "CS", + "to": "x2766738c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2729409", + "length": "284.6575", + "name": "line_ln5835138-1", + "phases": "BN", + "to": "l2841624" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5895780-3_int", + "length": "184.0295", + "name": "line_ln5895780-3", + "phases": "ABCN", + "to": "l2991914" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2991914", + "name": "xf_t5338941c", + "phases": "CS", + "to": "x2991914c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3727707a", + "length": "50.0000", + "name": "tpx_tpx2224386750a0", + "phases": "AS", + "to": "sx3727707a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3727707", + "name": "xf_t2224386750a", + "phases": "AS", + "to": "x3727707a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3342743c", + "length": "50.0000", + "name": "tpx_tpx2223703238c0", + "phases": "CS", + "to": "sx3342743c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3342743", + "name": "xf_t2223703238c", + "phases": "CS", + "to": "x3342743c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048207b", + "length": "50.0000", + "name": "tpx_tpx323248b0", + "phases": "BS", + "to": "sx3048207b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3048207", + "name": "xf_t5323248b", + "phases": "BS", + "to": "x3048207b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069526", + "length": "126.3206", + "name": "line_ln5562946-1", + "phases": "BN", + "to": "l2673331" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069530", + "length": "87.7733", + "name": "line_ln6199546-1", + "phases": "BN", + "to": "m1069526" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973169a", + "length": "50.0000", + "name": "tpx_tpx21397304a0", + "phases": "AS", + "to": "sx2973169a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2973169", + "name": "xf_t21397304a", + "phases": "AS", + "to": "x2973169a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2973154", + "name": "xf_t5338897a", + "phases": "AS", + "to": "x2973154a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066809c", + "length": "50.0000", + "name": "tpx_tpx338958c0", + "phases": "CS", + "to": "sx3066809c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3066809", + "name": "xf_t5338958c", + "phases": "CS", + "to": "x3066809c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104119a", + "length": "50.0000", + "name": "tpx_tpx338956a0", + "phases": "AS", + "to": "sx3104119a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3104119", + "name": "xf_t5338956a", + "phases": "AS", + "to": "x3104119a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066808c", + "length": "50.0000", + "name": "tpx_tpx337654c0", + "phases": "CS", + "to": "sx3066808c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069551", + "length": "185.1575", + "name": "line_ln5562947-1", + "phases": "BN", + "to": "m1069555" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx1/0_tpx_ln5562952-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1069555", + "length": "148.6485", + "name": "line_ln5593246-1", + "phases": "BN", + "to": "m1069557" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047737", + "length": "64.6378", + "name": "line_ln5835136-2", + "phases": "AN", + "to": "n1137988" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026783", + "length": "96.2012", + "name": "line_ln6259999-2", + "phases": "AN", + "to": "n1140524" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1140524", + "length": "385.6779", + "name": "line_ln6259999-3", + "phases": "AN", + "to": "l3197641" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3177894a", + "length": "50.0000", + "name": "tpx_tpx227903012a0", + "phases": "AS", + "to": "sx3177894a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3178971a", + "length": "50.0000", + "name": "tpx_tpx338896a0", + "phases": "AS", + "to": "sx3178971a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216336a", + "length": "50.0000", + "name": "tpx_tpx356010a0", + "phases": "AS", + "to": "sx3216336a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3216336", + "name": "xf_t5356010a", + "phases": "AS", + "to": "x3216336a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026935", + "length": "300.0929", + "name": "line_ln5865239-1", + "phases": "BN", + "to": "l2935556" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026891", + "length": "286.3286", + "name": "line_ln6017292-1", + "phases": "ABCN", + "to": "l3160102" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3160102", + "length": "201.0296", + "name": "line_ln6231993-1", + "phases": "ABCN", + "to": "p827514" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3160102", + "name": "xf_t5355780b", + "phases": "BS", + "to": "x3160102b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1027027", + "length": "551.2739", + "name": "line_ln6290201-1", + "phases": "CN", + "to": "m1027014" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026648", + "length": "317.8778", + "name": "line_ln5653462-1", + "phases": "AN", + "to": "l2973159" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2973159", + "name": "xf_t21398536a", + "phases": "AS", + "to": "x2973159a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3645811c", + "length": "50.0000", + "name": "tpx_tpx2224230689c0", + "phases": "CS", + "to": "sx3645811c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p901905", + "length": "84.6481", + "name": "line_ln5682333-1", + "phases": "BN", + "to": "l2804257" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027013", + "length": "33.0816", + "name": "line_ln5863699-1", + "phases": "BN", + "to": "p901905" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2685809a", + "length": "50.0000", + "name": "tpx_tpx225533162a0", + "phases": "AS", + "to": "sx2685809a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860504a", + "length": "50.0000", + "name": "tpx_tpx293667a0", + "phases": "AS", + "to": "sx2860504a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2860504", + "name": "xf_t5293667a", + "phases": "AS", + "to": "x2860504a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3195327", + "length": "226.1117", + "name": "line_ln6258471-1", + "phases": "AN", + "to": "l3139103" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027114", + "length": "239.9990", + "name": "line_ln5501003-1", + "phases": "AN", + "to": "l3195327" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2822870c", + "length": "50.0000", + "name": "tpx_tpx21399171c0", + "phases": "CS", + "to": "sx2822870c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010015", + "length": "266.9984", + "name": "line_ln6409799-1", + "phases": "AN", + "to": "m1010014" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010014", + "length": "191.7763", + "name": "line_ln6440003-1", + "phases": "AN", + "to": "m1010011" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010014", + "length": "42.1135", + "name": "line_ln5803301-1", + "phases": "AN", + "to": "m1010013" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649298a", + "length": "50.0000", + "name": "tpx_tpx2224237384a0", + "phases": "AS", + "to": "sx3649298a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "rcon_vreg2_a", + "continuous_rating_A": "1527.78", + "emergency_rating_A": "2083.33", + "from": "regxfmr_190-8593", + "name": "reg_vreg2_a", + "phases": "A", + "to": "190-8593" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "configuration": "rcon_vreg2_b", + "continuous_rating_B": "1527.78", + "emergency_rating_B": "2083.33", + "from": "regxfmr_190-8593", + "name": "reg_vreg2_b", + "phases": "B", + "to": "190-8593" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "configuration": "rcon_vreg2_c", + "continuous_rating_C": "1527.78", + "emergency_rating_C": "2083.33", + "from": "regxfmr_190-8593", + "name": "reg_vreg2_c", + "phases": "C", + "to": "190-8593" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "190-8593", + "length": "26.3387", + "name": "line_ln5860423-3", + "phases": "ABCN", + "to": "d5860423-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3234185", + "length": "326.2019", + "name": "line_ln6121686-1", + "phases": "BN", + "to": "l3065750" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3065750", + "name": "xf_t5323389b", + "phases": "BS", + "to": "x3065750b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047484", + "length": "193.8633", + "name": "line_ln6290205-1", + "phases": "ABCN", + "to": "l3010560" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047486", + "length": "327.1902", + "name": "line_ln6012046-1", + "phases": "ABCN", + "to": "m1047484" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197631a", + "length": "50.0000", + "name": "tpx_tpx338920a0", + "phases": "AS", + "to": "sx3197631a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2691967", + "length": "150.0208", + "name": "line_ln5653480-1", + "phases": "ABCN", + "to": "m1069504" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "r42246", + "length": "139.2668", + "name": "line_ln6290228-5", + "phases": "ABCN", + "to": "l2691967" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2691967", + "name": "xf_t5338976b", + "phases": "BS", + "to": "x2691967b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026797", + "length": "8.3705", + "name": "line_ln5649275-1", + "phases": "ABCN", + "to": "m1026796" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3784018a", + "length": "50.0000", + "name": "tpx_tpx2224500658a0", + "phases": "AS", + "to": "sx3784018a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069524", + "length": "3.8768", + "name": "line_ln5985347-2", + "phases": "AN", + "to": "l3254230" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3254230", + "length": "310.5497", + "name": "line_ln5472389-1", + "phases": "AN", + "to": "m1047711" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct5A", + "from": "l3254230", + "name": "xf_t5338989a", + "phases": "AS", + "to": "x3254230a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "196-35813", + "length": "24.4937", + "name": "line_ln5621841-2", + "phases": "ABCN", + "to": "n1140519" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1140519", + "name": "swt_ln0895780_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5895780-3_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2710532", + "name": "xf_t5293666c", + "phases": "CS", + "to": "x2710532c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2860485", + "length": "683.6319", + "name": "line_ln5744361-1", + "phases": "BN", + "to": "l2860506" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2804257", + "length": "194.9624", + "name": "line_ln5895776-1", + "phases": "BN", + "to": "l2860485" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2860485", + "name": "xf_t5321855b", + "phases": "BS", + "to": "x2860485b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2860481c", + "length": "50.0000", + "name": "tpx_tpx338908c0", + "phases": "CS", + "to": "sx2860481c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2726973a", + "length": "50.0000", + "name": "tpx_tpx226192926a0", + "phases": "AS", + "to": "sx2726973a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2726973", + "name": "xf_t226192926a", + "phases": "AS", + "to": "x2726973a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673326b", + "length": "50.0000", + "name": "tpx_tpx355601b0", + "phases": "BS", + "to": "sx2673326b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047671", + "length": "199.6940", + "name": "line_ln6320335-1", + "phases": "AN", + "to": "l2710511" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2710511", + "length": "220.7415", + "name": "line_ln5502525-1", + "phases": "AN", + "to": "l2766719" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2710511", + "name": "xf_t21357515a", + "phases": "AS", + "to": "x2710511a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1140832", + "length": "85.7112", + "name": "line_ln5683827-3", + "phases": "CN", + "to": "l2841631" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2841631", + "name": "xf_t5391976c", + "phases": "CS", + "to": "x2841631c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3728039", + "length": "197.9911", + "name": "line_ln6991381-6", + "phases": "AN", + "to": "l3728040" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3728040", + "name": "xf_t2224387062a", + "phases": "AS", + "to": "x3728040a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197633a", + "length": "50.0000", + "name": "tpx_tpx338893a0", + "phases": "AS", + "to": "sx3197633a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069462", + "length": "98.5273", + "name": "line_ln5958706-1", + "phases": "BN", + "to": "l3216342" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069463", + "length": "7.6540", + "name": "line_ln5746549-1", + "phases": "BN", + "to": "m1069462" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2989432b", + "length": "50.0000", + "name": "tpx_tpx226163575b0", + "phases": "BS", + "to": "sx2989432b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2858166a", + "length": "50.0000", + "name": "tpx_tpx226192994a0", + "phases": "AS", + "to": "sx2858166a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6320366-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3010585", + "length": "190.3332", + "name": "line_ln6320366-1", + "phases": "CN", + "to": "m1026798" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3197633", + "name": "xf_t5338893a", + "phases": "AS", + "to": "x3197633a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3649300", + "name": "xf_t2224237546a", + "phases": "AS", + "to": "x3649300a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1137989", + "length": "118.0485", + "name": "line_ln5502526-3", + "phases": "CN", + "to": "l3122814" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047737", + "length": "38.6335", + "name": "line_ln5502526-2", + "phases": "CN", + "to": "n1137989" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2933120", + "length": "821.7893", + "name": "line_ln5804785-1", + "phases": "CN", + "to": "l3104117" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3104117", + "length": "412.6218", + "name": "line_ln5593218-1", + "phases": "CN", + "to": "m1069494" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3104117", + "name": "xf_t5338964c", + "phases": "CS", + "to": "x3104117c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1136359", + "length": "94.4867", + "name": "line_ln6439986-3", + "phases": "CN", + "to": "l3008237" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2766499", + "length": "27.1196", + "name": "line_ln8961800-3", + "phases": "C", + "to": "m1047633" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1047633", + "length": "590.0089", + "name": "line_ln8961797-1", + "phases": "C", + "to": "l2897554" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069640", + "length": "308.8674", + "name": "line_ln6015793-1", + "phases": "BN", + "to": "l3160113" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3160113", + "name": "xf_t5323284b", + "phases": "BS", + "to": "x3160113b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3251806b", + "length": "50.0000", + "name": "tpx_tpx355602b0", + "phases": "BS", + "to": "sx3251806b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3251806", + "name": "xf_t5355602b", + "phases": "BS", + "to": "x3251806b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3728037", + "length": "340.1826", + "name": "line_ln6991377-18", + "phases": "AN", + "to": "m3949154" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3949154", + "length": "12.4230", + "name": "line_ln6991381-2", + "phases": "AN", + "to": "l3728038" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3949154", + "length": "240.1711", + "name": "line_ln6991380-2", + "phases": "AN", + "to": "l3728042" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2954357a", + "length": "50.0000", + "name": "tpx_tpx355936a0", + "phases": "AS", + "to": "sx2954357a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2954357", + "name": "xf_t5355936a", + "phases": "AS", + "to": "x2954357a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2860483", + "length": "249.5101", + "name": "line_ln5593225-1", + "phases": "BN", + "to": "l3141397" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3141397", + "name": "xf_t21396796b", + "phases": "BS", + "to": "x3141397b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2858163a", + "length": "50.0000", + "name": "tpx_tpx391990a0", + "phases": "AS", + "to": "sx2858163a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026854", + "length": "430.5370", + "name": "line_ln6380822-1", + "phases": "ABCN", + "to": "m1026852" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026858", + "length": "160.0845", + "name": "line_ln5804804-1", + "phases": "ABCN", + "to": "m1026854" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026854", + "length": "19.4377", + "name": "line_ln5682327-1", + "phases": "AN", + "to": "p901894" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3254206", + "length": "162.4430", + "name": "line_ln6259982-1", + "phases": "BN", + "to": "m1009827" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1009828", + "length": "135.7214", + "name": "line_ln6138591-1", + "phases": "BN", + "to": "l3254206" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3254206", + "name": "xf_t5355592b", + "phases": "BS", + "to": "x3254206b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2935555a", + "length": "50.0000", + "name": "tpx_tpx338917a0", + "phases": "AS", + "to": "sx2935555a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860479b", + "length": "50.0000", + "name": "tpx_tpx355595b0", + "phases": "BS", + "to": "sx2860479b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973167b", + "length": "50.0000", + "name": "tpx_tpx293656b0", + "phases": "BS", + "to": "sx2973167b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069610", + "length": "199.9990", + "name": "line_ln5650048-1", + "phases": "BN", + "to": "m1069600" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069610", + "length": "150.3002", + "name": "line_ln6074369-2", + "phases": "BN", + "to": "l2991929" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3159037b", + "length": "50.0000", + "name": "tpx_tpx323391b0", + "phases": "BS", + "to": "sx3159037b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3159037", + "name": "xf_t5323391b", + "phases": "BS", + "to": "x3159037b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009843", + "length": "187.1711", + "name": "line_ln6350552-1", + "phases": "BN", + "to": "l3160108" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3160108", + "length": "192.4131", + "name": "line_ln6108156-1", + "phases": "BN", + "to": "l3029510" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673323c", + "length": "50.0000", + "name": "tpx_tpx355438c0", + "phases": "CS", + "to": "sx2673323c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2673323", + "name": "xf_t5355438c", + "phases": "CS", + "to": "x2673323c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3141401a", + "length": "50.0000", + "name": "tpx_tpx338970a0", + "phases": "AS", + "to": "sx3141401a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026883", + "length": "202.1878", + "name": "line_ln5653491-1", + "phases": "CN", + "to": "m1026898" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3342743", + "length": "926.5728", + "name": "line_ln6140775-3", + "phases": "CN", + "to": "m1026883" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897789b", + "length": "50.0000", + "name": "tpx_tpx323287b0", + "phases": "BS", + "to": "sx2897789b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2897789", + "name": "xf_t5323287b", + "phases": "BS", + "to": "x2897789b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047766", + "length": "155.8307", + "name": "line_ln6108169-1", + "phases": "BN", + "to": "m1047768" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047768", + "length": "13.5736", + "name": "line_ln5565094-1", + "phases": "BN", + "to": "p827554" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2989571a", + "length": "50.0000", + "name": "tpx_tpx225991691a0", + "phases": "AS", + "to": "sx2989571a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029510b", + "length": "50.0000", + "name": "tpx_tpx355606b0", + "phases": "BS", + "to": "sx3029510b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2766747", + "length": "116.4582", + "name": "line_ln6153057-1", + "phases": "ABCN", + "to": "m1026732" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2766747", + "name": "xf_t5391989a", + "phases": "AS", + "to": "x2766747a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804269b", + "length": "50.0000", + "name": "tpx_tpx323285b0", + "phases": "BS", + "to": "sx2804269b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2879068", + "length": "317.5824", + "name": "line_ln5895774-1", + "phases": "BN", + "to": "m1047773" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2879068", + "name": "xf_t5323254b", + "phases": "BS", + "to": "x2879068b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047575", + "length": "29.1779", + "name": "line_ln5860423-2", + "phases": "ABCN", + "to": "regxfmr_190-8593" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069565", + "length": "58.9521", + "name": "line_ln5472386-1", + "phases": "BN", + "to": "l3178988" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069565", + "length": "267.2170", + "name": "line_ln5472387-1", + "phases": "BN", + "to": "m1069572" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069565", + "length": "337.8521", + "name": "line_ln5501089-1", + "phases": "BN", + "to": "l2989596" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069565", + "length": "606.9908", + "name": "line_ln5804819-1", + "phases": "BN", + "to": "l2785536" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3254229", + "length": "145.8403", + "name": "line_ln6229816-1", + "phases": "BN", + "to": "m1069565" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2748126c", + "length": "50.0000", + "name": "tpx_tpx321891c0", + "phases": "CS", + "to": "sx2748126c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2748126", + "name": "xf_t5321891c", + "phases": "CS", + "to": "x2748126c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047825", + "length": "229.9986", + "name": "line_ln6076240-1", + "phases": "BN", + "to": "l2726975" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2726975", + "name": "xf_t226193422b", + "phases": "BS", + "to": "x2726975b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2673317a", + "length": "50.0000", + "name": "tpx_tpx21397771a0", + "phases": "AS", + "to": "sx2673317a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2673317", + "name": "xf_t21397771a", + "phases": "AS", + "to": "x2673317a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047572", + "length": "114.8210", + "name": "line_ln5631690-1", + "phases": "ABCN", + "to": "m1047580" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "d5956471-2_int", + "length": "349.2330", + "name": "line_ln5956471-2", + "phases": "ABCN", + "to": "m1047572" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026997", + "length": "69.2830", + "name": "line_ln5744360-1", + "phases": "BN", + "to": "l3216361" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3216361", + "length": "306.7484", + "name": "line_ln5683846-1", + "phases": "BN", + "to": "l2729434" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3216361", + "name": "xf_t21452406b", + "phases": "BS", + "to": "x3216361b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069582", + "length": "80.9746", + "name": "line_ln6231996-1", + "phases": "BN", + "to": "d6231996-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3327097", + "length": "140.9987", + "name": "line_ln6660515-2", + "phases": "BN", + "to": "l3448661" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3327098", + "length": "260.9987", + "name": "line_ln6660514-2", + "phases": "BN", + "to": "m3327097" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2820533a", + "length": "50.0000", + "name": "tpx_tpx226193298a0", + "phases": "AS", + "to": "sx2820533a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3010585a", + "length": "50.0000", + "name": "tpx_tpx294810a0", + "phases": "CS", + "to": "sx3010585a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991908a", + "length": "50.0000", + "name": "tpx_tpx338900a0", + "phases": "AS", + "to": "sx2991908a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2729409", + "name": "xf_t5355605b", + "phases": "BS", + "to": "x2729409b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1136361", + "length": "163.6956", + "name": "line_ln5472384-3", + "phases": "AN", + "to": "l3160114" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216342b", + "length": "50.0000", + "name": "tpx_tpx337645b0", + "phases": "BS", + "to": "sx3216342b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027091", + "length": "90.5298", + "name": "line_ln6348967-1", + "phases": "AN", + "to": "m1027092" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027092", + "length": "247.5995", + "name": "line_ln5894313-1", + "phases": "AN", + "to": "l2689727" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010016", + "length": "266.9993", + "name": "line_ln6076267-1", + "phases": "AN", + "to": "m1010015" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010017", + "length": "593.1978", + "name": "line_ln5768778-1", + "phases": "AN", + "to": "m1010016" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010016", + "length": "463.6448", + "name": "line_ln5768778-2", + "phases": "AN", + "to": "l3251807" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026906", + "length": "320.9614", + "name": "line_ln6411393-1", + "phases": "AN", + "to": "l3048212" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010013", + "length": "179.8845", + "name": "line_ln6379375-1", + "phases": "AN", + "to": "l3120503" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3120503", + "name": "xf_t225869139a", + "phases": "AS", + "to": "x3120503a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3949157", + "length": "206.9161", + "name": "line_ln6991378-3", + "phases": "AN", + "to": "l3727709" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3727709", + "name": "xf_t2224386842a", + "phases": "AS", + "to": "x3727709a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879068b", + "length": "50.0000", + "name": "tpx_tpx323254b0", + "phases": "BS", + "to": "sx2879068b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3231269b", + "length": "50.0000", + "name": "tpx_tpx225684682b0", + "phases": "BS", + "to": "sx3231269b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3215549", + "length": "471.1427", + "name": "line_ln5744367-1", + "phases": "BN", + "to": "l2897800" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3160117", + "length": "319.6348", + "name": "line_ln5895815-1", + "phases": "BN", + "to": "l3215549" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3215549", + "name": "xf_t228219458b", + "phases": "BS", + "to": "x3215549b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1141474", + "length": "77.7460", + "name": "line_ln5865246-3", + "phases": "AN", + "to": "l2710518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln6019479-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "d6440002-2_int", + "length": "264.7575", + "name": "line_ln6440002-2", + "phases": "CN", + "to": "l2876813" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln6019479-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "l2876813", + "length": "262.1360", + "name": "line_ln6015809-1", + "phases": "CN", + "to": "l2785531" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2876813", + "name": "xf_t5355842a", + "phases": "CS", + "to": "x2876813a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069564", + "length": "125.9561", + "name": "line_ln6041764-1", + "phases": "AN", + "to": "l3104144" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069556", + "length": "296.9676", + "name": "line_ln5894212-2", + "phases": "ABCN", + "to": "m1069564" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069564", + "length": "70.3820", + "name": "line_ln5472384-2", + "phases": "AN", + "to": "n1136361" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216367b", + "length": "50.0000", + "name": "tpx_tpx337648b0", + "phases": "BS", + "to": "sx3216367b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3216367", + "name": "xf_t5337648b", + "phases": "BS", + "to": "x3216367b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2929261a", + "length": "50.0000", + "name": "tpx_tpx225533337a0", + "phases": "AS", + "to": "sx2929261a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729430b", + "length": "50.0000", + "name": "tpx_tpx21248901b0", + "phases": "BS", + "to": "sx2729430b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2729430", + "name": "xf_t21248901b", + "phases": "BS", + "to": "x2729430b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2726974", + "length": "292.5053", + "name": "line_ln5985349-2", + "phases": "BN", + "to": "l2916618" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2916618", + "name": "xf_t5323283b", + "phases": "BS", + "to": "x2916618b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1027041", + "length": "229.2448", + "name": "line_ln5623399-1", + "phases": "CN", + "to": "l2916607" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2916607", + "name": "xf_t5321882c", + "phases": "CS", + "to": "x2916607c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860506b", + "length": "50.0000", + "name": "tpx_tpx321856b0", + "phases": "BS", + "to": "sx2860506b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2860506", + "name": "xf_t5321856b", + "phases": "BS", + "to": "x2860506b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122848c", + "length": "50.0000", + "name": "tpx_tpx21397121c0", + "phases": "CS", + "to": "sx3122848c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3122848", + "name": "xf_t21397121c", + "phases": "CS", + "to": "x3122848c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2785517", + "length": "328.1981", + "name": "line_ln6506309-1", + "phases": "CN", + "to": "l3066809" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069484", + "length": "408.5933", + "name": "line_ln5593221-1", + "phases": "CN", + "to": "l2785517" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2785517", + "name": "xf_t5338957c", + "phases": "CS", + "to": "x2785517c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2729410c", + "length": "50.0000", + "name": "tpx_tpx338943c0", + "phases": "CS", + "to": "sx2729410c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct75C", + "from": "l2729410", + "name": "xf_t5338943c", + "phases": "CS", + "to": "x2729410c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197661c", + "length": "50.0000", + "name": "tpx_tpx338932c0", + "phases": "CS", + "to": "sx3197661c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3197661", + "name": "xf_t5338932c", + "phases": "CS", + "to": "x3197661c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3172805a", + "length": "50.0000", + "name": "tpx_tpx226964880a0", + "phases": "AS", + "to": "sx3172805a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3172805", + "name": "xf_t226964880a", + "phases": "AS", + "to": "x3172805a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3091052a", + "length": "50.0000", + "name": "tpx_tpx228532641a0", + "phases": "AS", + "to": "sx3091052a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m3036169", + "length": "76.7350", + "name": "line_ln6017301-4", + "phases": "AN", + "to": "n1139550" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026647", + "length": "345.3250", + "name": "line_ln6047573-2", + "phases": "AN", + "to": "m3036169" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m3036169", + "length": "8.5239", + "name": "line_ln6505947-4", + "phases": "AN", + "to": "l2673317" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "m1009715", + "length": "168.9329", + "name": "line_ln5804808-1", + "phases": "AN", + "to": "l3010563" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3010563", + "name": "xf_t5294845a", + "phases": "AS", + "to": "x3010563a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066821a", + "length": "50.0000", + "name": "tpx_tpx391994a0", + "phases": "AS", + "to": "sx3066821a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069590", + "length": "32.0210", + "name": "line_ln5744352-1", + "phases": "BN", + "to": "l2801902" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069590", + "length": "443.9831", + "name": "line_ln5591702-1", + "phases": "BN", + "to": "m1069595" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069590", + "length": "355.1812", + "name": "line_ln5926320-1", + "phases": "BN", + "to": "l3122835" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069588", + "length": "362.3322", + "name": "line_ln5803283-1", + "phases": "BN", + "to": "m1069590" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2710514", + "length": "504.4597", + "name": "line_ln5623417-1", + "phases": "BN", + "to": "m1047787" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047787", + "length": "242.8218", + "name": "line_ln5985348-1", + "phases": "BN", + "to": "l3157710" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710504b", + "length": "50.0000", + "name": "tpx_tpx323394b0", + "phases": "BS", + "to": "sx2710504b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069516", + "length": "168.6767", + "name": "line_ln5714063-3", + "phases": "ABCN", + "to": "n1136365" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2929261", + "name": "xf_t225533337a", + "phases": "AS", + "to": "x2929261a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197624b", + "length": "50.0000", + "name": "tpx_tpx323235b0", + "phases": "BS", + "to": "sx3197624b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841633a", + "length": "50.0000", + "name": "tpx_tpx293645a0", + "phases": "AS", + "to": "sx2841633a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029506b", + "length": "50.0000", + "name": "tpx_tpx338930b0", + "phases": "BS", + "to": "sx3029506b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027036", + "length": "70.3821", + "name": "line_ln5744364-1", + "phases": "BN", + "to": "l3010580" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027038", + "length": "340.7628", + "name": "line_ln5472396-1", + "phases": "BN", + "to": "m1027036" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027036", + "length": "263.4325", + "name": "line_ln5714070-1", + "phases": "BN", + "to": "l2785543" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254204a", + "length": "50.0000", + "name": "tpx_tpx337715a0", + "phases": "AS", + "to": "sx3254204a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122818c", + "length": "50.0000", + "name": "tpx_tpx28120183c0", + "phases": "CS", + "to": "sx3122818c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3122818", + "name": "xf_t28120183c", + "phases": "CS", + "to": "x3122818c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728042a", + "length": "50.0000", + "name": "tpx_tpx2224387113a0", + "phases": "AS", + "to": "sx3728042a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3728042", + "name": "xf_t2224387113a", + "phases": "AS", + "to": "x3728042a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841622a", + "length": "50.0000", + "name": "tpx_tpx21384215a0", + "phases": "AS", + "to": "sx2841622a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2841622", + "name": "xf_t21384215a", + "phases": "AS", + "to": "x2841622a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "q14733", + "length": "49.0914", + "name": "line_ln5860423-4", + "phases": "ABCN", + "to": "m1047568" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047568", + "length": "297.1146", + "name": "line_ln5804800-1", + "phases": "ABCN", + "to": "m1047558" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916620b", + "length": "50.0000", + "name": "tpx_tpx338977b0", + "phases": "BS", + "to": "sx2916620b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3729297a", + "length": "50.0000", + "name": "tpx_tpx2224386592a0", + "phases": "AS", + "to": "sx3729297a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3729297", + "name": "xf_t2224386592a", + "phases": "AS", + "to": "x3729297a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216348a", + "length": "50.0000", + "name": "tpx_tpx337717a0", + "phases": "AS", + "to": "sx3216348a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785536b", + "length": "50.0000", + "name": "tpx_tpx339002b0", + "phases": "BS", + "to": "sx2785536b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln6019479-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1026826", + "length": "274.2567", + "name": "line_ln6258470-1", + "phases": "CN", + "to": "l2952013" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2952013", + "name": "xf_t5355843a", + "phases": "CS", + "to": "x2952013a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3082983", + "length": "75.8287", + "name": "line_ln6228303-1", + "phases": "BN", + "to": "m1069588" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3082983", + "name": "xf_t226193899b", + "phases": "BS", + "to": "x3082983b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691939b", + "length": "50.0000", + "name": "tpx_tpx355589b0", + "phases": "BS", + "to": "sx2691939b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p1121282", + "length": "10.1558", + "name": "line_ln81354562-4", + "phases": "C", + "to": "221-559681" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047419", + "length": "157.4607", + "name": "line_ln6316403-1", + "phases": "AN", + "to": "l2973157" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2973157", + "name": "xf_t5337722a", + "phases": "AS", + "to": "x2973157a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1140822", + "length": "147.2658", + "name": "line_ln5532788-3", + "phases": "CN", + "to": "l2935560" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2935560", + "name": "xf_t5293659c", + "phases": "CS", + "to": "x2935560c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1138000", + "length": "164.0063", + "name": "line_ln5532749-3", + "phases": "AN", + "to": "l2766720" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026848", + "length": "196.8740", + "name": "line_ln5683825-1", + "phases": "AN", + "to": "l2935557" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691967b", + "length": "50.0000", + "name": "tpx_tpx338976b0", + "phases": "BS", + "to": "sx2691967b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2876814a", + "length": "50.0000", + "name": "tpx_tpx225806974a0", + "phases": "AS", + "to": "sx2876814a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p1123251", + "length": "20.7333", + "name": "line_ln6900591-28", + "phases": "AN", + "to": "n1140528" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069572", + "length": "129.9611", + "name": "line_ln6320353-1", + "phases": "BN", + "to": "m1069574" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3008248a", + "length": "50.0000", + "name": "tpx_tpx321159a0", + "phases": "AS", + "to": "sx3008248a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3008248", + "name": "xf_t5321159a", + "phases": "AS", + "to": "x3008248a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1136360", + "length": "146.7622", + "name": "line_ln5924705-3", + "phases": "AN", + "to": "l2729424" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2729424", + "name": "xf_t5339018a", + "phases": "AS", + "to": "x2729424a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785535b", + "length": "50.0000", + "name": "tpx_tpx339005b0", + "phases": "BS", + "to": "sx2785535b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2785535", + "name": "xf_t5339005b", + "phases": "BS", + "to": "x2785535b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691943b", + "length": "50.0000", + "name": "tpx_tpx323400b0", + "phases": "BS", + "to": "sx2691943b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216350a", + "length": "50.0000", + "name": "tpx_tpx391977a0", + "phases": "AS", + "to": "sx3216350a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2841645", + "length": "98.4813", + "name": "line_ln6077810-1", + "phases": "CN", + "to": "l3066829" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3066829", + "name": "xf_t5321894c", + "phases": "CS", + "to": "x3066829c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "d5712587-2_int", + "length": "308.5341", + "name": "line_ln5712587-2", + "phases": "AN", + "to": "l3083019" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "n1144667", + "name": "swt_ln0712587_sw", + "phases": "A", + "status": "CLOSED", + "to": "d5712587-2_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026690", + "length": "316.1544", + "name": "line_ln6290217-1", + "phases": "ABCN", + "to": "l2879078" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026690", + "length": "38.5862", + "name": "line_ln5986938-2", + "phases": "AN", + "to": "n1140830" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2841635", + "length": "195.1017", + "name": "line_ln6047578-1", + "phases": "ABCN", + "to": "l2822869" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2841635", + "name": "xf_t21399099a", + "phases": "AS", + "to": "x2841635a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3235258b", + "length": "50.0000", + "name": "tpx_tpx293652b0", + "phases": "BS", + "to": "sx3235258b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785538a", + "length": "50.0000", + "name": "tpx_tpx338986a0", + "phases": "AS", + "to": "sx2785538a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3727712a", + "length": "50.0000", + "name": "tpx_tpx2224386889a0", + "phases": "AS", + "to": "sx3727712a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3727712", + "name": "xf_t2224386889a", + "phases": "AS", + "to": "x3727712a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160117b", + "length": "50.0000", + "name": "tpx_tpx21357901b0", + "phases": "BS", + "to": "sx3160117b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1147858", + "length": "173.5152", + "name": "line_ln5943422-4", + "phases": "CN", + "to": "l2991933" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2746587", + "length": "74.8762", + "name": "line_ln5943422-3", + "phases": "CN", + "to": "n1147858" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026667", + "length": "181.3996", + "name": "line_ln5956473-1", + "phases": "AN", + "to": "m1026661" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3727709a", + "length": "50.0000", + "name": "tpx_tpx2224386842a0", + "phases": "AS", + "to": "sx3727709a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3159645", + "length": "312.3154", + "name": "line_ln5511594-2", + "phases": "AN", + "to": "l2983432" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047707", + "length": "7.6842", + "name": "line_ln5511594-1", + "phases": "AN", + "to": "l3159645" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066817a", + "length": "50.0000", + "name": "tpx_tpx21373784a0", + "phases": "AS", + "to": "sx3066817a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l3066817", + "name": "xf_t21373784a", + "phases": "AS", + "to": "x3066817a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3729298", + "length": "195.4934", + "name": "line_ln6991377-13", + "phases": "AN", + "to": "l3727707" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3729297", + "length": "205.3445", + "name": "line_ln6991377-11", + "phases": "AN", + "to": "l3729298" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3729298", + "name": "xf_t2224386617a", + "phases": "AS", + "to": "x3729298a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197652a", + "length": "50.0000", + "name": "tpx_tpx339021a0", + "phases": "AS", + "to": "sx3197652a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3215549b", + "length": "50.0000", + "name": "tpx_tpx228219458b0", + "phases": "BS", + "to": "sx3215549b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln6019479-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "l2914324", + "length": "351.8392", + "name": "line_ln6047585-1", + "phases": "CN", + "to": "m1026805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6320366-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026805", + "length": "296.9883", + "name": "line_ln6106580-1", + "phases": "CN", + "to": "l3120502" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6320366-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026805", + "length": "276.1817", + "name": "line_ln5683859-1", + "phases": "CN", + "to": "l3010585" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860483b", + "length": "50.0000", + "name": "tpx_tpx21396699b0", + "phases": "BS", + "to": "sx2860483b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2860483", + "name": "xf_t21396699b", + "phases": "BS", + "to": "x2860483b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026953", + "length": "99.9999", + "name": "line_ln5651966-1", + "phases": "BN", + "to": "l2764399" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2764399", + "name": "xf_t226192493b", + "phases": "BS", + "to": "x2764399b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3141412a", + "length": "50.0000", + "name": "tpx_tpx391996a0", + "phases": "AS", + "to": "sx3141412a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2973150", + "length": "310.8869", + "name": "line_ln5774450-1", + "phases": "AN", + "to": "m1047733" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047733", + "length": "340.4195", + "name": "line_ln6411363-1", + "phases": "AN", + "to": "l3066804" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729424a", + "length": "50.0000", + "name": "tpx_tpx339018a0", + "phases": "AS", + "to": "sx2729424a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3048221", + "length": "223.3741", + "name": "line_ln5835167-6", + "phases": "ABCN", + "to": "d5835167-6_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5835167-6_int", + "name": "swt_ln4625876_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q14414" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2991914c", + "length": "50.0000", + "name": "tpx_tpx338941c0", + "phases": "CS", + "to": "sx2991914c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2785536", + "name": "xf_t5339002b", + "phases": "BS", + "to": "x2785536b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728040a", + "length": "50.0000", + "name": "tpx_tpx2224387062a0", + "phases": "AS", + "to": "sx3728040a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048222c", + "length": "50.0000", + "name": "tpx_tpx355431c0", + "phases": "CS", + "to": "sx3048222c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3048222", + "name": "xf_t5355431c", + "phases": "CS", + "to": "x3048222c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2935568b", + "length": "50.0000", + "name": "tpx_tpx28119958b0", + "phases": "BS", + "to": "sx2935568b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2935568", + "name": "xf_t28119958b", + "phases": "BS", + "to": "x2935568b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2983432", + "name": "xf_t225534325a", + "phases": "AS", + "to": "x2983432a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2860506", + "length": "821.2778", + "name": "line_ln5653489-1", + "phases": "BN", + "to": "m1027019" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027091", + "length": "129.6678", + "name": "line_ln6409798-1", + "phases": "AN", + "to": "l2764412" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2764412", + "length": "472.2083", + "name": "line_ln6409797-4", + "phases": "AN", + "to": "n1134470" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2764412", + "name": "xf_t5321874a", + "phases": "AS", + "to": "x2764412a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197642c", + "length": "50.0000", + "name": "tpx_tpx391979c0", + "phases": "CS", + "to": "sx3197642c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216345b", + "length": "50.0000", + "name": "tpx_tpx338933b0", + "phases": "BS", + "to": "sx3216345b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3156034a", + "length": "50.0000", + "name": "tpx_tpx391993a0", + "phases": "AS", + "to": "sx3156034a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973146b", + "length": "50.0000", + "name": "tpx_tpx28118903b0", + "phases": "BS", + "to": "sx2973146b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2973146", + "name": "xf_t28118903b", + "phases": "BS", + "to": "x2973146b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3029505c", + "length": "50.0000", + "name": "tpx_tpx338966c0", + "phases": "CS", + "to": "sx3029505c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3029505", + "name": "xf_t5338966c", + "phases": "CS", + "to": "x3029505c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141403a", + "length": "50.0000", + "name": "tpx_tpx21399707a0", + "phases": "CS", + "to": "sx3141403a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3066821", + "name": "xf_t5391994a", + "phases": "AS", + "to": "x3066821a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649304", + "length": "220.1037", + "name": "line_ln6900591-22", + "phases": "AN", + "to": "l3649305" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649302", + "length": "205.9075", + "name": "line_ln6900591-20", + "phases": "AN", + "to": "l3649304" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3649304", + "name": "xf_t2224237713a", + "phases": "AS", + "to": "x3649304a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p827507", + "length": "36.8432", + "name": "line_ln6079949-2", + "phases": "CN", + "to": "n1137956" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1137956", + "length": "166.6514", + "name": "line_ln6079949-3", + "phases": "CN", + "to": "l3141396" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069535", + "length": "332.7017", + "name": "line_ln5714062-1", + "phases": "BN", + "to": "l2804271" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069535", + "length": "289.0493", + "name": "line_ln5986946-1", + "phases": "BN", + "to": "m1069530" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069543", + "length": "221.6746", + "name": "line_ln5956483-1", + "phases": "BN", + "to": "m1069535" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069597", + "length": "333.5780", + "name": "line_ln6108165-1", + "phases": "BN", + "to": "l3197653" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3197653", + "name": "xf_t5339004b", + "phases": "BS", + "to": "x3197653b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827515", + "length": "215.1570", + "name": "line_ln5534968-1", + "phases": "AN", + "to": "l2991909" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2991909", + "name": "xf_t5355773a", + "phases": "AS", + "to": "x2991909a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3197631", + "length": "173.5395", + "name": "line_ln6047563-1", + "phases": "AN", + "to": "l2748127" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2897773", + "length": "398.2518", + "name": "line_ln5532747-1", + "phases": "AN", + "to": "l3197631" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3197631", + "name": "xf_t5338920a", + "phases": "AS", + "to": "x3197631a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047552", + "length": "28.7631", + "name": "line_ln6292466-1", + "phases": "BN", + "to": "p827529" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047552", + "length": "94.0267", + "name": "line_ln6350544-2", + "phases": "ABCN", + "to": "n1136669" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047548", + "length": "63.5141", + "name": "line_ln6169252-1", + "phases": "ABCN", + "to": "m1047552" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841627a", + "length": "50.0000", + "name": "tpx_tpx337716a0", + "phases": "AS", + "to": "sx2841627a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1147861", + "length": "200.7999", + "name": "line_ln6440004-3", + "phases": "CN", + "to": "l3122818" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026844", + "length": "24.9060", + "name": "line_ln6440004-2", + "phases": "CN", + "to": "n1147861" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785521c", + "length": "50.0000", + "name": "tpx_tpx338931c0", + "phases": "CS", + "to": "sx2785521c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048221a", + "length": "50.0000", + "name": "tpx_tpx21399305a0", + "phases": "AS", + "to": "sx3048221a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047534", + "length": "376.4293", + "name": "line_ln6077781-2", + "phases": "ABCN", + "to": "n1136663" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1136663", + "length": "155.2154", + "name": "line_ln6077781-3", + "phases": "ABCN", + "to": "d6077791-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010017", + "length": "280.2416", + "name": "line_ln6106583-2", + "phases": "AN", + "to": "l2858175" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2858175", + "length": "15.1668", + "name": "line_ln6106583-3", + "phases": "AN", + "to": "m1027110" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2858175", + "name": "xf_t225668688a", + "phases": "AS", + "to": "x2858175a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2851933", + "name": "xf_t21393643c", + "phases": "CS", + "to": "x2851933c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m3037538", + "length": "237.1998", + "name": "line_ln5501001-2", + "phases": "CN", + "to": "l2857591" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2857591", + "name": "xf_t226101460a", + "phases": "CS", + "to": "x2857591a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649301a", + "length": "50.0000", + "name": "tpx_tpx2224237643a0", + "phases": "AS", + "to": "sx3649301a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2804254", + "length": "43.6442", + "name": "line_ln6138601-1", + "phases": "AN", + "to": "m1047752" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2841622", + "length": "881.5843", + "name": "line_ln5956465-1", + "phases": "AN", + "to": "l2804254" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2804254", + "name": "xf_t5323418a", + "phases": "AS", + "to": "x2804254a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991901b", + "length": "50.0000", + "name": "tpx_tpx354851b0", + "phases": "BS", + "to": "sx2991901b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2973152", + "length": "56.7954", + "name": "line_ln5804796-1", + "phases": "BN", + "to": "m1047777" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047777", + "length": "357.8500", + "name": "line_ln6320334-1", + "phases": "BN", + "to": "l2748131" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047777", + "length": "1797.6689", + "name": "line_ln6229798-1", + "phases": "BN", + "to": "l3178975" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln6019479-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1026851", + "length": "22.0635", + "name": "line_ln6019479-1", + "phases": "CN", + "to": "p827536" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026851", + "length": "98.5616", + "name": "line_ln5502542-1", + "phases": "ABCN", + "to": "l3235257" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3197646", + "length": "323.8198", + "name": "line_ln6320342-1", + "phases": "ABCN", + "to": "m1026851" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2691939", + "name": "xf_t5355589b", + "phases": "BS", + "to": "x2691939b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047728", + "length": "311.3993", + "name": "line_ln6108129-1", + "phases": "BN", + "to": "l2804255" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1027043", + "length": "30.0085", + "name": "line_ln6019477-1", + "phases": "CN", + "to": "d6019477-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "d6019477-1_int", + "name": "swt_v9287_48332_sw", + "phases": "C", + "status": "CLOSED", + "to": "e182727" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1139264", + "length": "153.2880", + "name": "line_ln5895771-3", + "phases": "AN", + "to": "m1069465" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2691941c", + "length": "50.0000", + "name": "tpx_tpx321887c0", + "phases": "CS", + "to": "sx2691941c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141411c", + "length": "50.0000", + "name": "tpx_tpx21197413c0", + "phases": "CS", + "to": "sx3141411c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1136366", + "length": "15.5673", + "name": "line_ln5472390-3", + "phases": "ABCN", + "to": "l2916620" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069518", + "length": "54.0050", + "name": "line_ln5472390-2", + "phases": "ABCN", + "to": "n1136366" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3197638", + "length": "200.8744", + "name": "line_ln6290213-1", + "phases": "AN", + "to": "m1026849" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026849", + "length": "3.8780", + "name": "line_ln6077780-1", + "phases": "AN", + "to": "m1026848" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047767", + "length": "358.2564", + "name": "line_ln6017290-1", + "phases": "BN", + "to": "l2860484" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2860484", + "name": "xf_t5323255b", + "phases": "BS", + "to": "x2860484b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3082993", + "name": "xf_t226159329a", + "phases": "AS", + "to": "x3082993a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085398b", + "length": "50.0000", + "name": "tpx_tpx355777b0", + "phases": "BS", + "to": "sx3085398b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3254234", + "length": "271.8348", + "name": "line_ln6077802-1", + "phases": "BN", + "to": "l3104114" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3104114", + "name": "xf_t5355587b", + "phases": "BS", + "to": "x3104114b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3235258", + "name": "xf_t5293652a", + "phases": "AS", + "to": "x3235258a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897777c", + "length": "50.0000", + "name": "tpx_tpx338937c0", + "phases": "CS", + "to": "sx2897777c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1137998", + "length": "78.1837", + "name": "line_ln6318740-3", + "phases": "CN", + "to": "m1026895" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026895", + "length": "199.9986", + "name": "line_ln5863691-1", + "phases": "CN", + "to": "l2820528" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254209c", + "length": "50.0000", + "name": "tpx_tpx337714c0", + "phases": "CS", + "to": "sx3254209c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069595", + "length": "164.2832", + "name": "line_ln6228304-1", + "phases": "BN", + "to": "l2916619" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2916619", + "length": "314.2763", + "name": "line_ln6228396-1", + "phases": "BN", + "to": "l2727008" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2916619", + "name": "xf_t5339006b", + "phases": "BS", + "to": "x2916619b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2710518", + "name": "xf_t21209868a", + "phases": "AS", + "to": "x2710518a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1027011", + "length": "331.7154", + "name": "line_ln5683819-1", + "phases": "ABCN", + "to": "m1027013" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2673313", + "length": "214.8932", + "name": "line_ln6047566-1", + "phases": "ABCN", + "to": "m1027011" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047613", + "length": "1.2596", + "name": "line_ln6268990-2", + "phases": "CN", + "to": "m1047612" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1047612", + "length": "17.6235", + "name": "line_ln8961760-1", + "phases": "C", + "to": "p828360" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009784", + "length": "199.5001", + "name": "line_ln5501004-1", + "phases": "ABCN", + "to": "m1009770" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009770", + "length": "26.3917", + "name": "line_ln5531255-2", + "phases": "ABCN", + "to": "n1147857" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009770", + "length": "28.1828", + "name": "line_ln5863746-1", + "phases": "BN", + "to": "m1009771" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2916599a", + "length": "50.0000", + "name": "tpx_tpx356015a0", + "phases": "AS", + "to": "sx2916599a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "196-29521", + "length": "33.6241", + "name": "line_ln5985355-4", + "phases": "BN", + "to": "n1136355" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069533", + "length": "61.0444", + "name": "line_ln5898408-1", + "phases": "BN", + "to": "196-29521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069738", + "length": "314.0668", + "name": "line_ln5878934-1", + "phases": "BN", + "to": "l3234185" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3234185", + "name": "xf_t5323388b", + "phases": "BS", + "to": "x3234185b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5B", + "from": "l2691965", + "name": "xf_t5338983b", + "phases": "BS", + "to": "x2691965b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l3156034", + "name": "xf_t5391993a", + "phases": "AS", + "to": "x3156034a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069533", + "length": "389.5949", + "name": "line_ln6047595-2", + "phases": "ABCN", + "to": "n1136356" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069533", + "length": "28.1262", + "name": "line_ln6407207-1", + "phases": "BN", + "to": "p895117" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln6019479-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "l3216358", + "length": "150.1893", + "name": "line_ln6350560-1", + "phases": "CN", + "to": "m1026826" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2710508", + "length": "455.9082", + "name": "line_ln5562920-1", + "phases": "BN", + "to": "l2822860" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027101", + "length": "11.8843", + "name": "line_ln6229788-1", + "phases": "BN", + "to": "l2710508" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2710508", + "name": "xf_t5323241b", + "phases": "BS", + "to": "x2710508b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2673322", + "name": "xf_t5355358b", + "phases": "BS", + "to": "x2673322b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3727711a", + "length": "50.0000", + "name": "tpx_tpx2224386874a0", + "phases": "AS", + "to": "sx3727711a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2785543", + "name": "xf_t5321860b", + "phases": "BS", + "to": "x2785543b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860499b", + "length": "50.0000", + "name": "tpx_tpx338997b0", + "phases": "BS", + "to": "sx2860499b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l2860499", + "name": "xf_t5338997b", + "phases": "BS", + "to": "x2860499b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1136658", + "length": "140.7334", + "name": "line_ln5716230-3", + "phases": "ABCN", + "to": "m1047566" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047566", + "length": "19.9972", + "name": "line_ln6047575-2", + "phases": "AN", + "to": "n1137995" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235258c", + "length": "50.0000", + "name": "tpx_tpx293652c0", + "phases": "CS", + "to": "sx3235258c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3235258", + "name": "xf_t5293652c", + "phases": "CS", + "to": "x3235258c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2814529c", + "length": "50.0000", + "name": "tpx_tpx28120126c0", + "phases": "CS", + "to": "sx2814529c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3727710a", + "length": "50.0000", + "name": "tpx_tpx2224386863a0", + "phases": "AS", + "to": "sx3727710a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1137996", + "length": "23.9043", + "name": "line_ln5562931-3", + "phases": "CN", + "to": "l3178979" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047558", + "length": "19.9400", + "name": "line_ln5562931-2", + "phases": "CN", + "to": "n1137996" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026872", + "length": "299.2513", + "name": "line_ln5502543-2", + "phases": "ABCN", + "to": "d5502543-2_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2822871", + "length": "197.3244", + "name": "line_ln6077784-1", + "phases": "ABCN", + "to": "m1026872" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216344b", + "length": "50.0000", + "name": "tpx_tpx323264b0", + "phases": "BS", + "to": "sx3216344b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l3216344", + "name": "xf_t5323264b", + "phases": "BS", + "to": "x3216344b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2841639", + "length": "145.4316", + "name": "line_ln5804806-1", + "phases": "AN", + "to": "m1026877" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2804262", + "length": "245.0043", + "name": "line_ln6320343-1", + "phases": "AN", + "to": "l2841639" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2841639", + "name": "xf_t5355937a", + "phases": "AS", + "to": "x2841639a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069487", + "length": "224.9077", + "name": "line_ln6017287-1", + "phases": "CN", + "to": "l2954344" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069487", + "length": "446.8440", + "name": "line_ln6138599-1", + "phases": "CN", + "to": "m1069488" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3066809", + "length": "208.7462", + "name": "line_ln5774451-1", + "phases": "CN", + "to": "m1069487" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e206211", + "length": "490.9394", + "name": "line_ln5833624-2", + "phases": "ABCN", + "to": "n1134480" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1134480", + "length": "62.4852", + "name": "line_ln5833624-3", + "phases": "ABCN", + "to": "m1069519" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1136029", + "length": "358.6205", + "name": "line_ln5898058-2", + "phases": "BN", + "to": "m1047767" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827509", + "length": "21.7017", + "name": "line_ln5898058-3", + "phases": "BN", + "to": "n1136029" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748152b", + "length": "50.0000", + "name": "tpx_tpx321849b0", + "phases": "BS", + "to": "sx2748152b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2748152", + "name": "xf_t5321849b", + "phases": "BS", + "to": "x2748152b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841635a", + "length": "50.0000", + "name": "tpx_tpx21399099a0", + "phases": "AS", + "to": "sx2841635a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3101788", + "length": "179.9939", + "name": "line_ln6198050-1", + "phases": "AN", + "to": "l3101787" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3101787", + "length": "127.6164", + "name": "line_ln5621885-1", + "phases": "AN", + "to": "l3027132" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3101787", + "name": "xf_t5321877a", + "phases": "AS", + "to": "x3101787a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3178982", + "name": "xf_t5294843a", + "phases": "AS", + "to": "x3178982a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766720a", + "length": "50.0000", + "name": "tpx_tpx441311a0", + "phases": "AS", + "to": "sx2766720a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3029500", + "length": "299.3577", + "name": "line_ln5835137-1", + "phases": "AN", + "to": "m1026764" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026764", + "length": "300.2488", + "name": "line_ln5774459-1", + "phases": "AN", + "to": "l3178976" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066804a", + "length": "50.0000", + "name": "tpx_tpx21380599a0", + "phases": "AS", + "to": "sx3066804a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2726983a", + "length": "50.0000", + "name": "tpx_tpx226109079a0", + "phases": "AS", + "to": "sx2726983a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2726983", + "name": "xf_t226109079a", + "phases": "AS", + "to": "x2726983a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2897789", + "length": "200.7313", + "name": "line_ln6350554-1", + "phases": "BN", + "to": "m1069662" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766742b", + "length": "50.0000", + "name": "tpx_tpx355585b0", + "phases": "BS", + "to": "sx2766742b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916619b", + "length": "50.0000", + "name": "tpx_tpx339006b0", + "phases": "BS", + "to": "sx2916619b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1027002", + "length": "300.7900", + "name": "line_ln6199518-1", + "phases": "ABCN", + "to": "l2673313" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2673313", + "name": "xf_t5321853b", + "phases": "BS", + "to": "x2673313b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2989571", + "name": "xf_t225991691a", + "phases": "AS", + "to": "x2989571a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6320366-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026792", + "length": "567.0685", + "name": "line_ln5652982-1", + "phases": "CN", + "to": "l2821010" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6320366-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2821010", + "length": "357.5965", + "name": "line_ln6349988-1", + "phases": "CN", + "to": "m1026773" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2726975b", + "length": "50.0000", + "name": "tpx_tpx226193422b0", + "phases": "BS", + "to": "sx2726975b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2954338", + "length": "292.4521", + "name": "line_ln5774447-1", + "phases": "BN", + "to": "m1009828" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2954338", + "name": "xf_t5355618b", + "phases": "BS", + "to": "x2954338b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_wpal_ln6259996-1", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047521", + "length": "137.7578", + "name": "line_ln6259996-1", + "phases": "ABCN", + "to": "m1047526" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047520", + "length": "170.7420", + "name": "line_ln5562932-1", + "phases": "ABCN", + "to": "m1047521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047521", + "length": "66.6264", + "name": "line_ln6108141-1", + "phases": "ABCN", + "to": "d6108141-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2/0_acsrxx2_acsr_ln6129680-2", + "continuous_rating_A": "300.00", + "emergency_rating_A": "300.00", + "from": "m1047521", + "length": "36.8290", + "name": "line_ln6129680-2", + "phases": "AN", + "to": "n1136665" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047521", + "length": "38.9734", + "name": "line_ln6411387-1", + "phases": "AN", + "to": "l2954353" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3254217", + "length": "202.9635", + "name": "line_ln6108143-1", + "phases": "ABCN", + "to": "m1026800" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1140521", + "length": "117.8455", + "name": "line_ln6073575-3", + "phases": "ABCN", + "to": "l3254217" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3254217", + "name": "xf_t21399112c", + "phases": "CS", + "to": "x3254217c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2801896", + "length": "248.3697", + "name": "line_ln5532734-1", + "phases": "BN", + "to": "m1009839" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009839", + "length": "212.9986", + "name": "line_ln5647725-1", + "phases": "BN", + "to": "l2673326" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3122816", + "name": "xf_t5356062b", + "phases": "BS", + "to": "x3122816b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122814c", + "length": "50.0000", + "name": "tpx_tpx338899c0", + "phases": "CS", + "to": "sx3122814c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047824", + "length": "1364.0031", + "name": "line_ln6350531-1", + "phases": "BN", + "to": "m1047834" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047834", + "length": "181.4304", + "name": "line_ln6169243-1", + "phases": "BN", + "to": "m1047835" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047834", + "length": "308.9107", + "name": "line_ln5744327-1", + "phases": "BN", + "to": "l3197624" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1147857", + "length": "179.6358", + "name": "line_ln5531255-3", + "phases": "ABCN", + "to": "m1009742" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009820", + "length": "261.9346", + "name": "line_ln5774489-1", + "phases": "BN", + "to": "l3254234" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx1/0_tpx_ln5562952-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "l2766742", + "length": "296.0435", + "name": "line_ln5562952-1", + "phases": "BN", + "to": "m1009820" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973155a", + "length": "50.0000", + "name": "tpx_tpx338898a0", + "phases": "AS", + "to": "sx2973155a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2973155", + "name": "xf_t5338898a", + "phases": "AS", + "to": "x2973155a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2820535", + "name": "xf_t5338981b", + "phases": "BS", + "to": "x2820535b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026896", + "length": "102.5640", + "name": "line_ln5695520-1", + "phases": "AN", + "to": "p860847" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047763", + "length": "57.4980", + "name": "line_ln5804798-2", + "phases": "BN", + "to": "n1136030" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047763", + "length": "15.2269", + "name": "line_ln5776665-1", + "phases": "BN", + "to": "p827509" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047763", + "length": "59.5168", + "name": "line_ln6409775-3", + "phases": "AN", + "to": "n1136027" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "r18241", + "length": "226.5406", + "name": "line_ln6259989-1", + "phases": "ABCN", + "to": "m1047763" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2822868", + "length": "193.0094", + "name": "line_ln5472365-1", + "phases": "AN", + "to": "l2766723" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2766723", + "length": "187.5267", + "name": "line_ln6169253-1", + "phases": "AN", + "to": "l3122822" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2766723", + "name": "xf_t5391986a", + "phases": "AS", + "to": "x2766723a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3082993", + "length": "199.9984", + "name": "line_ln6492183-1", + "phases": "AN", + "to": "m3016088" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235267c", + "length": "50.0000", + "name": "tpx_tpx321892c0", + "phases": "CS", + "to": "sx3235267c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804272b", + "length": "50.0000", + "name": "tpx_tpx338993b0", + "phases": "BS", + "to": "sx2804272b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2933165", + "length": "420.7509", + "name": "line_ln5863825-1", + "phases": "BN", + "to": "l3235273" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3235273", + "name": "xf_t5339016b", + "phases": "BS", + "to": "x3235273b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3082983b", + "length": "50.0000", + "name": "tpx_tpx226193899b0", + "phases": "BS", + "to": "sx3082983b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069466", + "length": "84.2943", + "name": "line_ln5895771-2", + "phases": "AN", + "to": "n1139264" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216338b", + "length": "50.0000", + "name": "tpx_tpx355599b0", + "phases": "BS", + "to": "sx3216338b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026902", + "length": "34.6914", + "name": "line_ln6411373-2", + "phases": "AN", + "to": "n1147864" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026660", + "length": "325.9950", + "name": "line_ln5623405-1", + "phases": "AN", + "to": "m1026657" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047497", + "length": "75.8955", + "name": "line_ln6134514-1", + "phases": "ABCN", + "to": "l3104136" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3104136", + "length": "467.6420", + "name": "line_ln5895793-1", + "phases": "ABCN", + "to": "l2822872" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3649302", + "name": "xf_t2224237653a", + "phases": "AS", + "to": "x3649302a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2954346b", + "length": "50.0000", + "name": "tpx_tpx323397b0", + "phases": "BS", + "to": "sx2954346b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2954346", + "name": "xf_t5323397b", + "phases": "BS", + "to": "x2954346b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026769", + "length": "28.0543", + "name": "line_ln6290216-1", + "phases": "ABCN", + "to": "l2841633" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2841633", + "length": "349.6128", + "name": "line_ln5534970-1", + "phases": "ABCN", + "to": "d5534970-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2841633", + "name": "xf_t5293645a", + "phases": "AS", + "to": "x2841633a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197653b", + "length": "50.0000", + "name": "tpx_tpx339004b0", + "phases": "BS", + "to": "sx3197653b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2983432a", + "length": "50.0000", + "name": "tpx_tpx225534325a0", + "phases": "AS", + "to": "sx2983432a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026907", + "length": "242.8592", + "name": "line_ln5774458-1", + "phases": "ABCN", + "to": "m1026915" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026915", + "length": "10.0032", + "name": "line_ln5502529-1", + "phases": "BN", + "to": "m1026916" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2748131", + "name": "xf_t5323250b", + "phases": "BS", + "to": "x2748131b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3949157", + "length": "345.7758", + "name": "line_ln6991377-17", + "phases": "AN", + "to": "l3728037" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3727708", + "length": "16.6515", + "name": "line_ln6991377-16", + "phases": "AN", + "to": "m3949157" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3949157", + "length": "160.9836", + "name": "line_ln6991379-2", + "phases": "AN", + "to": "l3727711" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104144a", + "length": "50.0000", + "name": "tpx_tpx339020a0", + "phases": "AS", + "to": "sx3104144a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197639a", + "length": "50.0000", + "name": "tpx_tpx310569a0", + "phases": "AS", + "to": "sx3197639a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3197639", + "name": "xf_t5310569a", + "phases": "AS", + "to": "x3197639a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009840", + "length": "179.8843", + "name": "line_ln5502521-1", + "phases": "BN", + "to": "l2991901" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2991901", + "length": "1529.9997", + "name": "line_ln6506316-3", + "phases": "BN", + "to": "m3037537" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2991901", + "name": "xf_t5354851b", + "phases": "BS", + "to": "x2991901b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254217c", + "length": "50.0000", + "name": "tpx_tpx21399112c0", + "phases": "CS", + "to": "sx3254217c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3178974b", + "length": "50.0000", + "name": "tpx_tpx323399b0", + "phases": "BS", + "to": "sx3178974b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3178974", + "name": "xf_t5323399b", + "phases": "BS", + "to": "x3178974b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1139549", + "length": "144.2126", + "name": "line_ln6259994-2", + "phases": "AN", + "to": "l2879074" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026646", + "length": "170.0540", + "name": "line_ln6259994-3", + "phases": "AN", + "to": "n1139549" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122817c", + "length": "50.0000", + "name": "tpx_tpx355779c0", + "phases": "CS", + "to": "sx3122817c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3122817", + "name": "xf_t5355779c", + "phases": "CS", + "to": "x3122817c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649302a", + "length": "50.0000", + "name": "tpx_tpx2224237653a0", + "phases": "AS", + "to": "sx3649302a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069524", + "length": "199.9989", + "name": "line_ln6198028-1", + "phases": "AN", + "to": "l2820533" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2820533", + "name": "xf_t226193298a", + "phases": "AS", + "to": "x2820533a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p859694", + "length": "52.8032", + "name": "line_ln5943422-1", + "phases": "CN", + "to": "l2746587" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr1/0_acsr_ln5852082-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1026824", + "length": "22.1400", + "name": "line_ln5852082-1", + "phases": "CN", + "to": "p859694" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2729206c", + "length": "50.0000", + "name": "tpx_tpx2212168866c0", + "phases": "CS", + "to": "sx2729206c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2729206", + "name": "xf_t22112168866c", + "phases": "CS", + "to": "x2729206c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3160115", + "length": "263.7184", + "name": "line_ln6320355-1", + "phases": "BN", + "to": "l2935567" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2935567", + "name": "xf_t5338992b", + "phases": "BS", + "to": "x2935567b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2972930a", + "length": "50.0000", + "name": "tpx_tpx338927a0", + "phases": "AS", + "to": "sx2972930a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3189189b", + "length": "50.0000", + "name": "tpx_tpx293657b0", + "phases": "BS", + "to": "sx3189189b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3189189", + "name": "xf_t5293657b", + "phases": "BS", + "to": "x3189189b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3216338", + "length": "192.1953", + "name": "line_ln6380800-1", + "phases": "BN", + "to": "l2973146" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009840", + "length": "305.4828", + "name": "line_ln6017282-1", + "phases": "BN", + "to": "l3216338" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3216338", + "name": "xf_t5355599b", + "phases": "BS", + "to": "x3216338b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010011", + "length": "268.9972", + "name": "line_ln6198052-1", + "phases": "AN", + "to": "l3120504" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3120504", + "name": "xf_t225897846a", + "phases": "AS", + "to": "x3120504a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2820535b", + "length": "50.0000", + "name": "tpx_tpx338981b0", + "phases": "BS", + "to": "sx2820535b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879067a", + "length": "50.0000", + "name": "tpx_tpx21380616a0", + "phases": "AS", + "to": "sx2879067a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047404", + "length": "203.9987", + "name": "line_ln5480058-1", + "phases": "AN", + "to": "l3091052" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047403", + "length": "225.0011", + "name": "line_ln6207101-1", + "phases": "AN", + "to": "m1047404" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748140a", + "length": "50.0000", + "name": "tpx_tpx391995a0", + "phases": "AS", + "to": "sx2748140a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2748140", + "name": "xf_t5391995a", + "phases": "AS", + "to": "x2748140a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1027041", + "length": "231.1468", + "name": "line_ln5774456-1", + "phases": "CN", + "to": "l3010564" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026866", + "length": "441.3043", + "name": "line_ln5894238-1", + "phases": "ABCN", + "to": "m1026844" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026844", + "length": "9.7449", + "name": "line_ln6001653-3", + "phases": "ABCN", + "to": "l2876814" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "p828362", + "length": "20.4457", + "name": "line_ln5752776-2", + "phases": "ABCN", + "to": "n1136671" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1136368", + "length": "23.1710", + "name": "line_ln5776669-3", + "phases": "AN", + "to": "l2897792" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2897792", + "name": "xf_t5338985a", + "phases": "AS", + "to": "x2897792a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2785530", + "length": "378.8578", + "name": "line_ln5835151-1", + "phases": "AN", + "to": "l2822868" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2822868", + "name": "xf_t21397544a", + "phases": "AS", + "to": "x2822868a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860493a", + "length": "50.0000", + "name": "tpx_tpx21397645a0", + "phases": "AS", + "to": "sx2860493a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2860493", + "name": "xf_t21397645a", + "phases": "AS", + "to": "x2860493a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2860477", + "name": "xf_t28121587a", + "phases": "AS", + "to": "x2860477a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1136666", + "length": "97.6816", + "name": "line_ln6422809-4", + "phases": "ABCN", + "to": "m1047528" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047528", + "length": "15.8571", + "name": "line_ln6422809-2", + "phases": "ABCN", + "to": "l2858166" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3066816", + "length": "398.4986", + "name": "line_ln5774465-1", + "phases": "AN", + "to": "m1026667" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254227b", + "length": "50.0000", + "name": "tpx_tpx338995b0", + "phases": "BS", + "to": "sx3254227b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l3254227", + "name": "xf_t5338995b", + "phases": "BS", + "to": "x3254227b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx4_tpx_ln6169266-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "200.00", + "from": "m1069597", + "length": "111.5238", + "name": "line_ln6169266-1", + "phases": "BN", + "to": "l2785535" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1147860", + "length": "60.7478", + "name": "line_ln5487004-7", + "phases": "CN", + "to": "l3177881" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3177881", + "name": "xf_t227896008c", + "phases": "CS", + "to": "x3177881c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e203026", + "length": "890.6524", + "name": "line_ln6044631-1", + "phases": "ABCN", + "to": "m1009650" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv11sub3_lsb", + "name": "swt_hvmv69s3b2_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e203026" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827554", + "length": "25.8487", + "name": "line_ln6258440-1", + "phases": "BN", + "to": "m1047769" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "n1136030", + "name": "swt_ln0804798_sw", + "phases": "B", + "status": "CLOSED", + "to": "d5804798-3_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1140528", + "length": "161.6146", + "name": "line_ln6900591-29", + "phases": "AN", + "to": "l3649297" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649297", + "length": "208.8374", + "name": "line_ln6900591-6", + "phases": "AN", + "to": "l3649298" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3649297", + "name": "xf_t2224237380a", + "phases": "AS", + "to": "x3649297a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3645810c", + "length": "50.0000", + "name": "tpx_tpx2224230651c0", + "phases": "CS", + "to": "sx3645810c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3122822", + "name": "xf_t5391987a", + "phases": "AS", + "to": "x3122822a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027068", + "length": "298.4033", + "name": "line_ln5956494-1", + "phases": "CN", + "to": "l3235268" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3235267", + "length": "209.6888", + "name": "line_ln6380842-1", + "phases": "CN", + "to": "m1027068" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160103c", + "length": "50.0000", + "name": "tpx_tpx356063c0", + "phases": "CS", + "to": "sx3160103c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2970811a", + "length": "50.0000", + "name": "tpx_tpx321881a0", + "phases": "AS", + "to": "sx2970811a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1140520", + "length": "74.5636", + "name": "line_ln6229803-3", + "phases": "CN", + "to": "l2729410" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2691947", + "name": "xf_t5337718a", + "phases": "AS", + "to": "x2691947a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2691936a", + "length": "50.0000", + "name": "tpx_tpx356009a0", + "phases": "AS", + "to": "sx2691936a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr2_acsr_ln5741170-3", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "n1140821", + "length": "52.0171", + "name": "line_ln5741170-2", + "phases": "CN", + "to": "l3189188" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l3189188", + "name": "xf_t5293658c", + "phases": "CS", + "to": "x3189188c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p827512", + "length": "52.7476", + "name": "line_ln6201696-2", + "phases": "CN", + "to": "n1136994" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785517c", + "length": "50.0000", + "name": "tpx_tpx338957c0", + "phases": "CS", + "to": "sx2785517c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2991933", + "length": "273.2062", + "name": "line_ln5653486-1", + "phases": "CN", + "to": "l3122837" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l2991933", + "name": "xf_t5355433c", + "phases": "CS", + "to": "x2991933c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026769", + "length": "22.6748", + "name": "line_ln6140776-1", + "phases": "AN", + "to": "d6140776-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "d6140776-1_int", + "name": "swt_v9109_48332_sw", + "phases": "A", + "status": "CLOSED", + "to": "e182730" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p895409", + "length": "39.6171", + "name": "line_ln6318740-2", + "phases": "CN", + "to": "n1137998" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026886", + "length": "31.7445", + "name": "line_ln6225673-1", + "phases": "CN", + "to": "p895409" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2785521", + "name": "xf_t5338931c", + "phases": "CS", + "to": "x2785521c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069514", + "length": "40.1729", + "name": "line_ln6290228-2", + "phases": "ABCN", + "to": "n1136657" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1136657", + "length": "174.6514", + "name": "line_ln6290228-6", + "phases": "ABCN", + "to": "d6290228-6_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln6019479-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "l2785531", + "length": "299.9911", + "name": "line_ln5956488-1", + "phases": "CN", + "to": "l3216358" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3216358", + "name": "xf_t21399826a", + "phases": "CS", + "to": "x3216358a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1136994", + "length": "128.0348", + "name": "line_ln6201696-3", + "phases": "CN", + "to": "l2785521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822860b", + "length": "50.0000", + "name": "tpx_tpx323236b0", + "phases": "BS", + "to": "sx2822860b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2822860", + "name": "xf_t5323236b", + "phases": "BS", + "to": "x2822860b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3727707", + "length": "180.7032", + "name": "line_ln6991377-15", + "phases": "AN", + "to": "l3727708" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3727708", + "name": "xf_t2224386815a", + "phases": "AS", + "to": "x3727708a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122820a", + "length": "50.0000", + "name": "tpx_tpx310561a0", + "phases": "AS", + "to": "sx3122820a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3122820", + "name": "xf_t5310561a", + "phases": "AS", + "to": "x3122820a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2764399b", + "length": "50.0000", + "name": "tpx_tpx226192493b0", + "phases": "BS", + "to": "sx2764399b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1136362", + "length": "89.8397", + "name": "line_ln6409781-3", + "phases": "AN", + "to": "l3197652" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069563", + "length": "62.6215", + "name": "line_ln6409781-2", + "phases": "AN", + "to": "n1136362" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2766716", + "length": "225.3106", + "name": "line_ln6229792-1", + "phases": "CN", + "to": "l3235245" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3235245", + "name": "xf_t5337712c", + "phases": "CS", + "to": "x3235245c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748143a", + "length": "50.0000", + "name": "tpx_tpx28121368a0", + "phases": "AS", + "to": "sx2748143a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2764403a", + "length": "50.0000", + "name": "tpx_tpx226193078a0", + "phases": "AS", + "to": "sx2764403a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2764403", + "name": "xf_t226193078a", + "phases": "AS", + "to": "x2764403a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026658", + "length": "350.0012", + "name": "line_ln6439600-1", + "phases": "AN", + "to": "l3172805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p901932", + "length": "16.3308", + "name": "line_ln6439986-2", + "phases": "CN", + "to": "n1136359" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2766744", + "length": "175.1901", + "name": "line_ln5895810-1", + "phases": "BN", + "to": "m1027038" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "e182726", + "length": "245.6062", + "name": "line_ln5958705-1", + "phases": "BN", + "to": "l2766744" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2766744", + "name": "xf_t28127319b", + "phases": "BS", + "to": "x2766744b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827553", + "length": "17.5673", + "name": "line_ln6110366-1", + "phases": "BN", + "to": "m1047826" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2710513", + "length": "620.8249", + "name": "line_ln5625550-1", + "phases": "BN", + "to": "p827553" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069640", + "length": "331.8406", + "name": "line_ln6106559-1", + "phases": "BN", + "to": "l2804269" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2804269", + "name": "xf_t5323285b", + "phases": "BS", + "to": "x2804269b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728037a", + "length": "50.0000", + "name": "tpx_tpx2224386946a0", + "phases": "AS", + "to": "sx3728037a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3728037", + "name": "xf_t2224386946a", + "phases": "AS", + "to": "x3728037a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2822857", + "name": "xf_t5355588b", + "phases": "BS", + "to": "x2822857b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026907", + "length": "270.2730", + "name": "line_ln5916435-1", + "phases": "BN", + "to": "p875742" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026905", + "length": "413.9725", + "name": "line_ln6350537-1", + "phases": "ABCN", + "to": "m1026907" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026907", + "length": "184.0030", + "name": "line_ln6138604-1", + "phases": "ABCN", + "to": "l3085398" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2729434", + "name": "xf_t5321851b", + "phases": "BS", + "to": "x2729434b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069582", + "length": "206.9402", + "name": "line_ln5833720-1", + "phases": "BN", + "to": "l2933165" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069567", + "length": "501.8222", + "name": "line_ln5774480-1", + "phases": "BN", + "to": "m1069582" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069582", + "length": "86.0416", + "name": "line_ln5895802-1", + "phases": "BN", + "to": "l2973171" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047580", + "length": "22.8381", + "name": "line_ln5843536-1", + "phases": "ABCN", + "to": "p828362" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2804256", + "length": "177.0438", + "name": "line_ln6169250-1", + "phases": "ABCN", + "to": "m1026960" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026960", + "length": "260.6159", + "name": "line_ln6017293-1", + "phases": "ABCN", + "to": "m1026970" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026960", + "length": "35.8708", + "name": "line_ln5776666-1", + "phases": "AN", + "to": "m1026961" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026960", + "length": "85.0001", + "name": "line_ln6879074-1", + "phases": "AN", + "to": "m3729981" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010003", + "length": "195.0000", + "name": "line_ln5803302-1", + "phases": "AN", + "to": "l2989571" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx1/0_tpx_ln5562952-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1069730", + "length": "151.6182", + "name": "line_ln5532733-1", + "phases": "BN", + "to": "l2748124" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2748124", + "name": "xf_t5323392b", + "phases": "BS", + "to": "x2748124b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2970811", + "name": "xf_t5321881a", + "phases": "AS", + "to": "x2970811a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1138593", + "length": "134.7077", + "name": "line_ln6411394-3", + "phases": "AN", + "to": "l2804262" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2897791", + "name": "xf_t5323282b", + "phases": "BS", + "to": "x2897791b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009838", + "length": "155.0878", + "name": "line_ln5472343-1", + "phases": "BN", + "to": "l2801896" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026708", + "length": "2.4013", + "name": "line_ln5472394-1", + "phases": "ABCN", + "to": "m1026709" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026902", + "length": "326.1111", + "name": "line_ln5985039-1", + "phases": "ABCN", + "to": "m1026905" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p827525", + "length": "325.1113", + "name": "line_ln5686079-1", + "phases": "ABCN", + "to": "m1026902" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027005", + "length": "127.3645", + "name": "line_ln5653453-1", + "phases": "BN", + "to": "l3160100" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841615a", + "length": "50.0000", + "name": "tpx_tpx356012a0", + "phases": "AS", + "to": "sx2841615a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3104118", + "length": "261.7321", + "name": "line_ln5774448-1", + "phases": "CN", + "to": "l2748126" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027073", + "length": "268.0103", + "name": "line_ln5804827-1", + "phases": "CN", + "to": "l3104118" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3104118", + "name": "xf_t5321890c", + "phases": "CS", + "to": "x3104118c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991909a", + "length": "50.0000", + "name": "tpx_tpx355773a0", + "phases": "AS", + "to": "sx2991909a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2989564b", + "length": "50.0000", + "name": "tpx_tpx323286b0", + "phases": "BS", + "to": "sx2989564b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785543b", + "length": "50.0000", + "name": "tpx_tpx321860b0", + "phases": "BS", + "to": "sx2785543b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069731", + "length": "182.6228", + "name": "line_ln5835124-1", + "phases": "BN", + "to": "l2710504" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047825", + "length": "282.3593", + "name": "line_ln5742816-2", + "phases": "BN", + "to": "m1069731" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069731", + "length": "564.9633", + "name": "line_ln5774446-1", + "phases": "BN", + "to": "m1069730" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3178969b", + "length": "50.0000", + "name": "tpx_tpx355596b0", + "phases": "BS", + "to": "sx3178969b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3178969", + "name": "xf_t5355596b", + "phases": "BS", + "to": "x3178969b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026916", + "length": "35.4405", + "name": "line_ln6320337-1", + "phases": "BN", + "to": "l3197634" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3197634", + "name": "xf_t5355767b", + "phases": "BS", + "to": "x3197634b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047pv-1", + "length": "395.6069", + "name": "line_ln1047pvfrm-1", + "phases": "ABCN", + "to": "m1047520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047pv-2", + "name": "swt_ln1047pvfrm_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1047pv-1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2897800", + "length": "86.9148", + "name": "line_ln5532782-1", + "phases": "BN", + "to": "m1047809" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026807", + "length": "60.1946", + "name": "line_ln6073575-2", + "phases": "ABCN", + "to": "n1140521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026808", + "length": "16.5010", + "name": "line_ln5558792-1", + "phases": "ABCN", + "to": "m1026807" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827502", + "length": "76.4748", + "name": "line_ln6140774-3", + "phases": "AN", + "to": "n1137993" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047486", + "length": "33.5172", + "name": "line_ln5928543-1", + "phases": "AN", + "to": "p827502" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2673322", + "length": "162.0024", + "name": "line_ln5818176-1", + "phases": "BN", + "to": "l2859391" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009763", + "length": "105.5630", + "name": "line_ln5502549-1", + "phases": "BN", + "to": "l2673322" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066815c", + "length": "50.0000", + "name": "tpx_tpx338936c0", + "phases": "CS", + "to": "sx3066815c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3066815", + "name": "xf_t5338936c", + "phases": "CS", + "to": "x3066815c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2673312", + "length": "545.4504", + "name": "line_ln6350536-1", + "phases": "AN", + "to": "l3235247" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3235247", + "name": "xf_t5321836a", + "phases": "AS", + "to": "x3235247a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026942", + "length": "100.0009", + "name": "line_ln5621826-1", + "phases": "AN", + "to": "l3270814" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3645812c", + "length": "50.0000", + "name": "tpx_tpx2224230754c0", + "phases": "CS", + "to": "sx3645812c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137993", + "length": "211.0393", + "name": "line_ln6140774-2", + "phases": "AN", + "to": "l2860482" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3235257", + "length": "362.4646", + "name": "line_ln5804805-1", + "phases": "ABCN", + "to": "l2822871" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2822871", + "name": "xf_t5355840b", + "phases": "BS", + "to": "x2822871b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026812", + "length": "284.7709", + "name": "line_ln6255312-1", + "phases": "CN", + "to": "l3122847" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822858b", + "length": "50.0000", + "name": "tpx_tpx355591b0", + "phases": "BS", + "to": "sx2822858b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2729414c", + "length": "50.0000", + "name": "tpx_tpx293655c0", + "phases": "CS", + "to": "sx2729414c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729434b", + "length": "50.0000", + "name": "tpx_tpx321851b0", + "phases": "BS", + "to": "sx2729434b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3216367", + "length": "135.6523", + "name": "line_ln5835173-1", + "phases": "ABCN", + "to": "m1069468" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027121", + "length": "28.6949", + "name": "line_ln6106583-4", + "phases": "AN", + "to": "n1134469" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1134469", + "length": "1051.9214", + "name": "line_ln6106583-5", + "phases": "AN", + "to": "m1010017" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1027023", + "length": "145.5857", + "name": "line_ln5926302-1", + "phases": "ABCN", + "to": "l3254213" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3254213", + "name": "xf_t5321859b", + "phases": "BS", + "to": "x3254213b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_tpx_ln5531226-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1027042", + "length": "226.7467", + "name": "line_ln5531226-1", + "phases": "CN", + "to": "l3235248" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3235248", + "name": "xf_t5321861c", + "phases": "CS", + "to": "x3235248c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197618a", + "length": "50.0000", + "name": "tpx_tpx356008a0", + "phases": "AS", + "to": "sx3197618a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069481", + "length": "88.1566", + "name": "line_ln6106657-1", + "phases": "ABCN", + "to": "l2745848" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3120502", + "name": "xf_t5294812a", + "phases": "CS", + "to": "x3120502a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3235273b", + "length": "50.0000", + "name": "tpx_tpx339016b0", + "phases": "BS", + "to": "sx3235273b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047574", + "length": "39.4479", + "name": "line_ln6380817-1", + "phases": "ABCN", + "to": "l2841632" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2766725", + "name": "xf_t21399220c", + "phases": "CS", + "to": "x2766725c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1137001", + "length": "162.8399", + "name": "line_ln5924696-3", + "phases": "AN", + "to": "l2929261" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1140829", + "length": "18.3405", + "name": "line_ln5621833-3", + "phases": "CN", + "to": "m1026703" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2954361", + "name": "xf_t21383494b", + "phases": "BS", + "to": "x2954361b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254229b", + "length": "50.0000", + "name": "tpx_tpx338998b0", + "phases": "BS", + "to": "sx3254229b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3254229", + "name": "xf_t5338998b", + "phases": "BS", + "to": "x3254229b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3254209", + "name": "xf_t5337714c", + "phases": "CS", + "to": "x3254209c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047406", + "length": "215.2559", + "name": "line_ln6108134-1", + "phases": "AN", + "to": "l2691947" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2766746", + "length": "362.4657", + "name": "line_ln6077809-1", + "phases": "CN", + "to": "m1027073" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027073", + "length": "314.3905", + "name": "line_ln6077808-1", + "phases": "CN", + "to": "m1027071" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2748125", + "length": "176.9719", + "name": "line_ln6138593-1", + "phases": "CN", + "to": "l2673303" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2673303", + "name": "xf_t5338963c", + "phases": "CS", + "to": "x2673303c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748157a", + "length": "50.0000", + "name": "tpx_tpx338973a0", + "phases": "AS", + "to": "sx2748157a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2748157", + "name": "xf_t5338973a", + "phases": "AS", + "to": "x2748157a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973157a", + "length": "50.0000", + "name": "tpx_tpx337722a0", + "phases": "AS", + "to": "sx2973157a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047490", + "length": "237.7077", + "name": "line_ln6047576-1", + "phases": "ABCN", + "to": "l2726973" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2822872", + "length": "304.5404", + "name": "line_ln6169261-1", + "phases": "ABCN", + "to": "m1047490" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047490", + "length": "119.4666", + "name": "line_ln6987572-4", + "phases": "AN", + "to": "p1164481" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991927b", + "length": "50.0000", + "name": "tpx_tpx355607b0", + "phases": "BS", + "to": "sx2991927b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2954345c", + "length": "50.0000", + "name": "tpx_tpx338915c0", + "phases": "CS", + "to": "sx2954345c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l2954345", + "name": "xf_t5338915c", + "phases": "CS", + "to": "x2954345c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3029505", + "length": "326.7000", + "name": "line_ln6411385-1", + "phases": "CN", + "to": "l2673318" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2673318", + "name": "xf_t5338967c", + "phases": "CS", + "to": "x2673318c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3234185b", + "length": "50.0000", + "name": "tpx_tpx323388b0", + "phases": "BS", + "to": "sx3234185b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860501b", + "length": "50.0000", + "name": "tpx_tpx323265b0", + "phases": "BS", + "to": "sx2860501b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1134470", + "length": "295.4180", + "name": "line_ln6409797-3", + "phases": "AN", + "to": "l3251808" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2954344", + "length": "167.0633", + "name": "line_ln6229791-1", + "phases": "CN", + "to": "l2897767" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2897767", + "length": "426.8282", + "name": "line_ln6199511-1", + "phases": "CN", + "to": "l3254208" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct5B", + "from": "l3197624", + "name": "xf_t5323235b", + "phases": "BS", + "to": "x3197624b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010563a", + "length": "50.0000", + "name": "tpx_tpx294845a0", + "phases": "AS", + "to": "sx3010563a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2858166", + "name": "xf_t226192994a", + "phases": "AS", + "to": "x2858166a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729408b", + "length": "50.0000", + "name": "tpx_tpx355768b0", + "phases": "BS", + "to": "sx2729408b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2729408", + "name": "xf_t5355768b", + "phases": "BS", + "to": "x2729408b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3728038", + "length": "259.5434", + "name": "line_ln6991381-4", + "phases": "AN", + "to": "l3728039" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3728038", + "name": "xf_t2224387019a", + "phases": "AS", + "to": "x3728038a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1134479", + "length": "207.8554", + "name": "line_ln5682346-3", + "phases": "ABCN", + "to": "d5682346-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3772794", + "length": "200.0169", + "name": "line_ln6900591-27", + "phases": "AN", + "to": "l3649300" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047826", + "length": "194.0111", + "name": "line_ln5742816-1", + "phases": "BN", + "to": "m1047825" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047702", + "length": "139.9706", + "name": "line_ln5924696-2", + "phases": "AN", + "to": "n1137001" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047702", + "length": "62.1370", + "name": "line_ln6258435-2", + "phases": "AN", + "to": "n1137002" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069461", + "length": "28.5005", + "name": "line_ln6049824-1", + "phases": "AN", + "to": "p827574" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729428a", + "length": "50.0000", + "name": "tpx_tpx21398402a0", + "phases": "AS", + "to": "sx2729428a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2729428", + "name": "xf_t21398402a", + "phases": "AS", + "to": "x2729428a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2673326", + "length": "145.2524", + "name": "line_ln6320348-1", + "phases": "BN", + "to": "l2691938" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2673326", + "name": "xf_t5355601b", + "phases": "BS", + "to": "x2673326b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75C", + "from": "l3645811", + "name": "xf_t2224230689c", + "phases": "CS", + "to": "x3645811c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3216342", + "name": "xf_t5337645b", + "phases": "BS", + "to": "x3216342b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2952013a", + "length": "50.0000", + "name": "tpx_tpx355843a0", + "phases": "CS", + "to": "sx2952013a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2764412a", + "length": "50.0000", + "name": "tpx_tpx321874a0", + "phases": "AS", + "to": "sx2764412a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860480b", + "length": "50.0000", + "name": "tpx_tpx323234b0", + "phases": "BS", + "to": "sx2860480b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2860480", + "name": "xf_t5323234b", + "phases": "BS", + "to": "x2860480b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027101", + "length": "537.7496", + "name": "line_ln6259983-1", + "phases": "BN", + "to": "l2860480" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1144666", + "length": "102.8843", + "name": "line_ln6318745-2", + "phases": "CN", + "to": "m1027041" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009838", + "length": "133.9208", + "name": "line_ln6108121-1", + "phases": "BN", + "to": "l2804245" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009832", + "length": "312.9267", + "name": "line_ln5744326-1", + "phases": "BN", + "to": "m1009838" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009838", + "length": "281.6019", + "name": "line_ln6350551-1", + "phases": "BN", + "to": "m1009843" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2822870", + "name": "xf_t21399171c", + "phases": "CS", + "to": "x2822870c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3037441", + "length": "106.4225", + "name": "line_ln6196270-4", + "phases": "AN", + "to": "n1140824" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009843", + "length": "116.6676", + "name": "line_ln6167749-1", + "phases": "BN", + "to": "l3251806" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804248b", + "length": "50.0000", + "name": "tpx_tpx323244b0", + "phases": "BS", + "to": "sx2804248b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2822870", + "length": "209.0943", + "name": "line_ln6047579-1", + "phases": "CN", + "to": "l2766725" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1140522", + "length": "51.6825", + "name": "line_ln6259998-3", + "phases": "CN", + "to": "l2822870" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2804272", + "name": "xf_t5338993b", + "phases": "BS", + "to": "x2804272b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2860481", + "name": "xf_t5338908c", + "phases": "CS", + "to": "x2860481c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197632b", + "length": "50.0000", + "name": "tpx_tpx323266b0", + "phases": "BS", + "to": "sx3197632b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804245b", + "length": "50.0000", + "name": "tpx_tpx355598b0", + "phases": "BS", + "to": "sx2804245b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2804245", + "name": "xf_t5355598b", + "phases": "BS", + "to": "x2804245b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1147865", + "length": "395.5819", + "name": "line_ln6379450-3", + "phases": "AN", + "to": "l2895489" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027055", + "length": "55.0365", + "name": "line_ln6379450-2", + "phases": "AN", + "to": "n1147865" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009726", + "length": "238.6456", + "name": "line_ln5833652-1", + "phases": "ABCN", + "to": "m1009724" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026906", + "length": "350.4979", + "name": "line_ln5772710-1", + "phases": "AN", + "to": "l3120376" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3120376", + "name": "xf_t226163467a", + "phases": "AS", + "to": "x3120376a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2876798", + "length": "332.7694", + "name": "line_ln5803273-1", + "phases": "ABCN", + "to": "d5803273-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1027042", + "length": "76.8770", + "name": "line_ln6318745-3", + "phases": "CN", + "to": "n1144666" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2690941b", + "length": "50.0000", + "name": "tpx_tpx323387b0", + "phases": "BS", + "to": "sx2690941b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2731712b", + "length": "50.0000", + "name": "tpx_tpx21426205b0", + "phases": "BS", + "to": "sx2731712b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2731712", + "name": "xf_t21426205b", + "phases": "BS", + "to": "x2731712b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_dpx_ln6506308-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1026726", + "length": "215.9070", + "name": "line_ln6506308-1", + "phases": "BN", + "to": "l2916610" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2916610", + "name": "xf_t5293660b", + "phases": "BS", + "to": "x2916610b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l3645812", + "length": "974.0039", + "name": "line_ln81353934-4", + "phases": "C", + "to": "228-1353934-4_int" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m3763620", + "length": "146.3642", + "name": "line_ln81353934-3", + "phases": "C", + "to": "l3645812" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3645812", + "name": "xf_t2224230754c", + "phases": "CS", + "to": "x3645812c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3160100", + "length": "219.3886", + "name": "line_ln5472346-1", + "phases": "BN", + "to": "l3085390" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3085390", + "name": "xf_t5321848b", + "phases": "BS", + "to": "x3085390b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897792a", + "length": "50.0000", + "name": "tpx_tpx338985a0", + "phases": "AS", + "to": "sx2897792a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l3784018", + "name": "xf_t2224500658a", + "phases": "AS", + "to": "x3784018a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673331b", + "length": "50.0000", + "name": "tpx_tpx338990b0", + "phases": "BS", + "to": "sx2673331b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l2673331", + "name": "xf_t5338990b", + "phases": "BS", + "to": "x2673331b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069600", + "length": "190.0005", + "name": "line_ln5831676-1", + "phases": "BN", + "to": "l3102793" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047713", + "length": "361.5376", + "name": "line_ln6132680-1", + "phases": "ABCN", + "to": "m1047720" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047720", + "length": "299.1076", + "name": "line_ln5496764-1", + "phases": "CN", + "to": "l2954345" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2954348a", + "length": "50.0000", + "name": "tpx_tpx356013a0", + "phases": "AS", + "to": "sx2954348a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2954348", + "name": "xf_t5356013a", + "phases": "AS", + "to": "x2954348a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729414a", + "length": "50.0000", + "name": "tpx_tpx293655a0", + "phases": "AS", + "to": "sx2729414a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822871b", + "length": "50.0000", + "name": "tpx_tpx355840b0", + "phases": "BS", + "to": "sx2822871b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2685805", + "name": "xf_t225533531a", + "phases": "AS", + "to": "x2685805a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710516a", + "length": "50.0000", + "name": "tpx_tpx321839a0", + "phases": "AS", + "to": "sx2710516a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2710516", + "name": "xf_t5321839a", + "phases": "AS", + "to": "x2710516a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2989596", + "length": "290.7327", + "name": "line_ln6046143-1", + "phases": "BN", + "to": "l2822873" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2897777", + "length": "88.9644", + "name": "line_ln6138610-3", + "phases": "ABCN", + "to": "n1144665" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e206209", + "length": "408.6547", + "name": "line_ln6108142-1", + "phases": "ABCN", + "to": "l2897777" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2897777", + "name": "xf_t5338937c", + "phases": "CS", + "to": "x2897777c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026732", + "length": "266.3666", + "name": "line_ln6153057-2", + "phases": "ABCN", + "to": "l3047058" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047721", + "length": "312.8201", + "name": "line_ln5986924-1", + "phases": "AN", + "to": "m1047723" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047718", + "length": "178.6656", + "name": "line_ln5683807-1", + "phases": "AN", + "to": "m1047721" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "d5621886-1_int", + "length": "841.5384", + "name": "line_ln5621886-1", + "phases": "ABCN", + "to": "m1009784" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1009805", + "name": "swt_ln0621886_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5621886-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649299", + "length": "12.7263", + "name": "line_ln6900591-26", + "phases": "AN", + "to": "m3772794" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649298", + "length": "212.0840", + "name": "line_ln6900591-8", + "phases": "AN", + "to": "l3649299" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3649299", + "name": "xf_t2224237391a", + "phases": "AS", + "to": "x3649299a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2748125c", + "length": "50.0000", + "name": "tpx_tpx338962c0", + "phases": "CS", + "to": "sx2748125c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2804270", + "length": "291.6884", + "name": "line_ln5593244-1", + "phases": "BN", + "to": "l3104145" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3104145", + "name": "xf_t5339011b", + "phases": "BS", + "to": "x3104145b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026852", + "length": "338.6963", + "name": "line_ln5895788-1", + "phases": "ABCN", + "to": "l3197646" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1140831", + "length": "400.8076", + "name": "line_ln6199523-3", + "phases": "CN", + "to": "l3141402" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2935560c", + "length": "50.0000", + "name": "tpx_tpx293659c0", + "phases": "CS", + "to": "sx2935560c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879063b", + "length": "50.0000", + "name": "tpx_tpx337646b0", + "phases": "BS", + "to": "sx2879063b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728039a", + "length": "50.0000", + "name": "tpx_tpx2224387053a0", + "phases": "AS", + "to": "sx3728039a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069550", + "length": "13.6101", + "name": "line_ln5956482-1", + "phases": "BN", + "to": "m1069551" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p827514", + "length": "19.9923", + "name": "line_ln6352699-1", + "phases": "ABCN", + "to": "m1026876" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026876", + "length": "344.8937", + "name": "line_ln5894238-2", + "phases": "ABCN", + "to": "m1026866" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3176656a", + "length": "50.0000", + "name": "tpx_tpx226193170a0", + "phases": "AS", + "to": "sx3176656a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3176656", + "name": "xf_t226193170a", + "phases": "AS", + "to": "x3176656a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "d5863704-2_int", + "length": "291.5319", + "name": "line_ln5863704-2", + "phases": "ABCN", + "to": "n1136667" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2858166", + "name": "swt_ln0863704_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5863704-2_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026987", + "length": "156.0327", + "name": "line_ln6108124-1", + "phases": "BN", + "to": "m1026989" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026989", + "length": "635.9156", + "name": "line_ln5865267-1", + "phases": "BN", + "to": "l2673343" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2691952a", + "length": "50.0000", + "name": "tpx_tpx391980a0", + "phases": "AS", + "to": "sx2691952a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2691952", + "name": "xf_t5391980a", + "phases": "AS", + "to": "x2691952a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3141403", + "length": "195.7589", + "name": "line_ln6167751-3", + "phases": "CN", + "to": "m3037538" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3141403", + "name": "xf_t21399707a", + "phases": "CS", + "to": "x3141403a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "r18245", + "length": "105.1596", + "name": "line_ln6231998-1", + "phases": "ABCN", + "to": "e182746" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2710525c", + "length": "50.0000", + "name": "tpx_tpx355437c0", + "phases": "CS", + "to": "sx2710525c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026886", + "length": "5.9633", + "name": "line_ln5526906-2", + "phases": "ABCN", + "to": "l3120484" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "q14413", + "length": "342.0545", + "name": "line_ln5532758-3", + "phases": "ABCN", + "to": "m1026886" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1027013", + "length": "323.5708", + "name": "line_ln5744336-1", + "phases": "ABCN", + "to": "m1027023" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026948", + "length": "160.4084", + "name": "line_ln6199516-1", + "phases": "BN", + "to": "m1026947" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3216358a", + "length": "50.0000", + "name": "tpx_tpx21399826a0", + "phases": "CS", + "to": "sx3216358a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3085398", + "name": "xf_t5355777b", + "phases": "BS", + "to": "x3085398b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254213b", + "length": "50.0000", + "name": "tpx_tpx321859b0", + "phases": "BS", + "to": "sx3254213b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026949", + "length": "285.9999", + "name": "line_ln6259991-1", + "phases": "BN", + "to": "m1026951" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026951", + "length": "218.4411", + "name": "line_ln6047564-1", + "phases": "BN", + "to": "l2954347" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047401", + "length": "144.9974", + "name": "line_ln5691535-1", + "phases": "AN", + "to": "m1047403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3197640", + "name": "xf_t5338944c", + "phases": "CS", + "to": "x3197640c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047821", + "length": "676.5494", + "name": "line_ln6017285-1", + "phases": "BN", + "to": "l2785512" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047750", + "length": "621.1769", + "name": "line_ln6349051-1", + "phases": "AN", + "to": "l2708293" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2710532c", + "length": "50.0000", + "name": "tpx_tpx293666c0", + "phases": "CS", + "to": "sx2710532c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "d6017316-1_int", + "length": "356.4345", + "name": "line_ln6017316-1", + "phases": "BN", + "to": "l2766742" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2766742", + "name": "xf_t5355585b", + "phases": "BS", + "to": "x2766742b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216337a", + "length": "50.0000", + "name": "tpx_tpx356011a0", + "phases": "AS", + "to": "sx3216337a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3216337", + "name": "xf_t5356011a", + "phases": "AS", + "to": "x3216337a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2895449c", + "length": "50.0000", + "name": "tpx_tpx226193134c0", + "phases": "CS", + "to": "sx2895449c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3178978", + "length": "545.1464", + "name": "line_ln5683826-1", + "phases": "AN", + "to": "m1047432" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047432", + "length": "150.3908", + "name": "line_ln5502534-1", + "phases": "AN", + "to": "m1047433" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047432", + "length": "341.2746", + "name": "line_ln5472362-1", + "phases": "AN", + "to": "p903360" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047432", + "length": "158.6794", + "name": "line_ln5895779-1", + "phases": "AN", + "to": "l2879075" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2991927", + "name": "xf_t5355607b", + "phases": "BS", + "to": "x2991927b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160113b", + "length": "50.0000", + "name": "tpx_tpx323284b0", + "phases": "BS", + "to": "sx3160113b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2801902", + "name": "xf_t226194002b", + "phases": "BS", + "to": "x2801902b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026784", + "length": "51.5380", + "name": "line_ln5562933-3", + "phases": "CN", + "to": "n1140523" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026783", + "length": "26.7434", + "name": "line_ln6290214-1", + "phases": "CN", + "to": "m1026784" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047809", + "length": "267.2585", + "name": "line_ln6350569-1", + "phases": "BN", + "to": "m1047812" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026662", + "length": "45.6942", + "name": "line_ln6108140-2", + "phases": "AN", + "to": "n1141473" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2785546", + "name": "xf_t21399752a", + "phases": "CS", + "to": "x2785546a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3207907b", + "length": "50.0000", + "name": "tpx_tpx293664b0", + "phases": "BS", + "to": "sx3207907b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2710505", + "name": "xf_t5323398b", + "phases": "BS", + "to": "x2710505b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026703", + "length": "239.6001", + "name": "line_ln5744358-1", + "phases": "CN", + "to": "l2973166" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2973166", + "name": "xf_t5293665c", + "phases": "CS", + "to": "x2973166c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l3104144", + "name": "xf_t5339020a", + "phases": "AS", + "to": "x3104144a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1136661", + "length": "89.2163", + "name": "line_ln6047574-3", + "phases": "CN", + "to": "l3029505" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827549", + "length": "72.3934", + "name": "line_ln5651977-3", + "phases": "AN", + "to": "n1140518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069500", + "length": "15.0017", + "name": "line_ln6413568-1", + "phases": "AN", + "to": "p827549" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026834", + "length": "29.2536", + "name": "line_ln5487004-6", + "phases": "CN", + "to": "n1147860" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3157710b", + "length": "50.0000", + "name": "tpx_tpx226193361b0", + "phases": "BS", + "to": "sx3157710b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069662", + "length": "200.7092", + "name": "line_ln6350555-1", + "phases": "BN", + "to": "l2935547" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2935547", + "name": "xf_t21383553b", + "phases": "BS", + "to": "x2935547b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729429a", + "length": "50.0000", + "name": "tpx_tpx293644a0", + "phases": "AS", + "to": "sx2729429a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3645809c", + "length": "50.0000", + "name": "tpx_tpx2224230615c0", + "phases": "CS", + "to": "sx3645809c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l3645809", + "name": "xf_t2224230615c", + "phases": "CS", + "to": "x3645809c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m3763623", + "length": "469.3288", + "name": "line_ln81353936-2", + "phases": "C", + "to": "l3645811" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l3645810", + "length": "32.1743", + "name": "line_ln81354564-9", + "phases": "C", + "to": "m3763623" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3157710", + "name": "xf_t226193361b", + "phases": "BS", + "to": "x3157710b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048199b", + "length": "50.0000", + "name": "tpx_tpx323237b0", + "phases": "BS", + "to": "sx3048199b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122822a", + "length": "50.0000", + "name": "tpx_tpx391987a0", + "phases": "AS", + "to": "sx3122822a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3177881c", + "length": "50.0000", + "name": "tpx_tpx227896008c0", + "phases": "CS", + "to": "sx3177881c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "d5774470-2_int", + "length": "460.3480", + "name": "line_ln5774470-2", + "phases": "AN", + "to": "m1026679" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3178972c", + "length": "50.0000", + "name": "tpx_tpx338923c0", + "phases": "CS", + "to": "sx3178972c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l3178972", + "name": "xf_t5338923c", + "phases": "CS", + "to": "x3178972c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069505", + "length": "102.7858", + "name": "line_ln5653479-1", + "phases": "ABCN", + "to": "m1069509" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1134478", + "length": "36.8855", + "name": "line_ln5863714-3", + "phases": "ABCN", + "to": "m1069505" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069574", + "length": "164.8425", + "name": "line_ln5835159-1", + "phases": "BN", + "to": "l2710530" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916617b", + "length": "50.0000", + "name": "tpx_tpx339007b0", + "phases": "BS", + "to": "sx2916617b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2916617", + "name": "xf_t5339007b", + "phases": "BS", + "to": "x2916617b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822866b", + "length": "50.0000", + "name": "tpx_tpx338922b0", + "phases": "BS", + "to": "sx2822866b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026824", + "length": "623.7895", + "name": "line_ln5985378-1", + "phases": "ABCN", + "to": "m1009807" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1009807", + "length": "328.8760", + "name": "line_ln5894237-1", + "phases": "CN", + "to": "l2673323" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009807", + "length": "202.2666", + "name": "line_ln5742836-1", + "phases": "ABCN", + "to": "m1009805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047819", + "length": "222.4577", + "name": "line_ln6350530-1", + "phases": "BN", + "to": "m1047821" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047821", + "length": "64.8418", + "name": "line_ln5744328-1", + "phases": "BN", + "to": "l2684420" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2841648", + "length": "300.6761", + "name": "line_ln5623428-1", + "phases": "AN", + "to": "l2710544" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2710544", + "name": "xf_t21482279a", + "phases": "AS", + "to": "x2710544a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3235268", + "name": "xf_t28099529c", + "phases": "CS", + "to": "x3235268c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047480", + "length": "41.3036", + "name": "line_ln5504712-1", + "phases": "AN", + "to": "p827504" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827504", + "length": "30.2500", + "name": "line_ln6201695-2", + "phases": "AN", + "to": "n1137957" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748127a", + "length": "50.0000", + "name": "tpx_tpx338919a0", + "phases": "AS", + "to": "sx2748127a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2748127", + "name": "xf_t5338919a", + "phases": "AS", + "to": "x2748127a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "q16642_cap", + "length": "14.8983", + "name": "line_ln6290228-7", + "phases": "ABCN", + "to": "r42246" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3233353a", + "length": "50.0000", + "name": "tpx_tpx21399630a0", + "phases": "CS", + "to": "sx3233353a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3233353", + "name": "xf_t21399630a", + "phases": "CS", + "to": "x3233353a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3216342", + "length": "203.0221", + "name": "line_ln6411367-1", + "phases": "BN", + "to": "l2879063" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2820556a", + "length": "50.0000", + "name": "tpx_tpx226196648a0", + "phases": "AS", + "to": "sx2820556a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3235246", + "length": "253.2882", + "name": "line_ln5714047-1", + "phases": "BN", + "to": "l2710512" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2710512", + "length": "476.4333", + "name": "line_ln6380811-1", + "phases": "BN", + "to": "m1047828" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2710512", + "name": "xf_t5323280b", + "phases": "BS", + "to": "x2710512b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2851933a", + "length": "50.0000", + "name": "tpx_tpx21393643a0", + "phases": "AS", + "to": "sx2851933a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009763", + "length": "81.6749", + "name": "line_ln6138616-1", + "phases": "BN", + "to": "l2766730" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2766730", + "name": "xf_t5355359b", + "phases": "BS", + "to": "x2766730b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235241c", + "length": "50.0000", + "name": "tpx_tpx321888c0", + "phases": "CS", + "to": "sx3235241c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3235241", + "name": "xf_t5321888c", + "phases": "CS", + "to": "x3235241c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3315860b", + "length": "50.0000", + "name": "tpx_tpx2223664050b0", + "phases": "BS", + "to": "sx3315860b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047534", + "length": "25.9381", + "name": "line_ln6047574-2", + "phases": "CN", + "to": "n1136661" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p827560", + "length": "45.3782", + "name": "line_ln6201702-3", + "phases": "AN", + "to": "n1147866" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3027132", + "name": "xf_t5321876a", + "phases": "AS", + "to": "x3027132a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766748a", + "length": "50.0000", + "name": "tpx_tpx21470326a0", + "phases": "AS", + "to": "sx2766748a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2954347", + "length": "99.9999", + "name": "line_ln5500962-1", + "phases": "BN", + "to": "m1026953" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235247a", + "length": "50.0000", + "name": "tpx_tpx321836a0", + "phases": "AS", + "to": "sx3235247a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047507", + "length": "130.8015", + "name": "line_ln5742811-1", + "phases": "ABCN", + "to": "l2820531" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2820531", + "length": "122.7704", + "name": "line_ln5742811-3", + "phases": "ABCN", + "to": "d5742811-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2820531", + "name": "xf_t226192936b", + "phases": "BS", + "to": "x2820531b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822872b", + "length": "50.0000", + "name": "tpx_tpx338950b0", + "phases": "BS", + "to": "sx2822872b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3728042", + "length": "216.9247", + "name": "line_ln6991380-4", + "phases": "AN", + "to": "l3728043" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3728043", + "name": "xf_t2224387138a", + "phases": "AS", + "to": "x3728043a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2691973", + "length": "111.7040", + "name": "line_ln5865270-1", + "phases": "AN", + "to": "m1026890" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026890", + "length": "168.5518", + "name": "line_ln5744371-1", + "phases": "AN", + "to": "l2954357" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2691952", + "length": "7.1516", + "name": "line_ln6505949-1", + "phases": "ABCN", + "to": "m3036170" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "q14414", + "length": "260.9642", + "name": "line_ln6047599-3", + "phases": "ABCN", + "to": "l2691952" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649304a", + "length": "50.0000", + "name": "tpx_tpx2224237713a0", + "phases": "AS", + "to": "sx3649304a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m3036164", + "length": "553.8933", + "name": "line_ln5593224-2", + "phases": "BN", + "to": "l3085397" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m3036164", + "length": "156.6655", + "name": "line_ln5835135-2", + "phases": "BN", + "to": "l2935553" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3048207", + "length": "9.5848", + "name": "line_ln6505939-4", + "phases": "BN", + "to": "m3036164" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047756", + "length": "18.3622", + "name": "line_ln6380812-1", + "phases": "AN", + "to": "m1047755" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748139b", + "length": "50.0000", + "name": "tpx_tpx21400108b0", + "phases": "BS", + "to": "sx2748139b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2748139", + "name": "xf_t21400108b", + "phases": "BS", + "to": "x2748139b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047824", + "length": "256.2380", + "name": "line_ln5714042-1", + "phases": "BN", + "to": "l3122810" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3122810", + "name": "xf_t5323242b", + "phases": "BS", + "to": "x3122810b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3122820", + "length": "194.9105", + "name": "line_ln5774460-1", + "phases": "AN", + "to": "l3141398" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2879070", + "length": "292.9818", + "name": "line_ln6169248-1", + "phases": "ABCN", + "to": "l3216345" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3216345", + "name": "xf_t5338933b", + "phases": "BS", + "to": "x3216345b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785522b", + "length": "50.0000", + "name": "tpx_tpx28127681b0", + "phases": "BS", + "to": "sx2785522b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2785522", + "name": "xf_t28127681b", + "phases": "BS", + "to": "x2785522b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026726", + "length": "239.1128", + "name": "line_ln5833721-1", + "phases": "BN", + "to": "l2876847" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr2_acsr_ln5741170-3", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1026700", + "length": "36.5829", + "name": "line_ln5741170-3", + "phases": "CN", + "to": "n1140821" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069481", + "length": "32.1703", + "name": "line_ln5565091-1", + "phases": "CN", + "to": "p827507" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3066830b", + "length": "50.0000", + "name": "tpx_tpx21469960b0", + "phases": "BS", + "to": "sx3066830b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766715b", + "length": "50.0000", + "name": "tpx_tpx355593b0", + "phases": "BS", + "to": "sx2766715b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2766715", + "name": "xf_t5355593b", + "phases": "BS", + "to": "x2766715b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3178976a", + "length": "50.0000", + "name": "tpx_tpx21397721a0", + "phases": "AS", + "to": "sx3178976a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3178976", + "name": "xf_t21397721a", + "phases": "AS", + "to": "x3178976a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "e182727", + "length": "20.0645", + "name": "line_ln6439975-1", + "phases": "CN", + "to": "m1027042" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691965b", + "length": "50.0000", + "name": "tpx_tpx338983b0", + "phases": "BS", + "to": "sx2691965b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916610b", + "length": "50.0000", + "name": "tpx_tpx293660b0", + "phases": "BS", + "to": "sx2916610b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026646", + "length": "645.2267", + "name": "line_ln5986930-1", + "phases": "AN", + "to": "l3178978" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2710517", + "length": "160.1356", + "name": "line_ln5865244-1", + "phases": "AN", + "to": "m1026646" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973161a", + "length": "50.0000", + "name": "tpx_tpx293592a0", + "phases": "AS", + "to": "sx2973161a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010568a", + "length": "50.0000", + "name": "tpx_tpx338965a0", + "phases": "AS", + "to": "sx3010568a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3010568", + "name": "xf_t5338965a", + "phases": "AS", + "to": "x3010568a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p1164481", + "length": "174.1164", + "name": "line_ln6991377-9", + "phases": "AN", + "to": "l3729297" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3197641", + "length": "427.7555", + "name": "line_ln5502539-1", + "phases": "AN", + "to": "l2973161" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3197641", + "name": "xf_t5293591a", + "phases": "AS", + "to": "x3197641a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197660b", + "length": "50.0000", + "name": "tpx_tpx323275b0", + "phases": "BS", + "to": "sx3197660b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3197660", + "name": "xf_t5323275b", + "phases": "BS", + "to": "x3197660b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3010580", + "name": "xf_t21451973b", + "phases": "BS", + "to": "x3010580b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p827555", + "length": "26.0702", + "name": "line_ln5806921-1", + "phases": "BN", + "to": "m1047794" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3101787a", + "length": "50.0000", + "name": "tpx_tpx321877a0", + "phases": "AS", + "to": "sx3101787a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "r18243", + "length": "101.5793", + "name": "line_ln5895789-3", + "phases": "ABCN", + "to": "n1139552" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785530a", + "length": "50.0000", + "name": "tpx_tpx391985a0", + "phases": "AS", + "to": "sx2785530a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2876814", + "length": "261.9987", + "name": "line_ln6001653-2", + "phases": "ABCN", + "to": "m1026834" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026834", + "length": "177.1741", + "name": "line_ln6001653-1", + "phases": "ABCN", + "to": "m1026829" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3728039", + "name": "xf_t2224387053a", + "phases": "AS", + "to": "x3728039a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3729298a", + "length": "50.0000", + "name": "tpx_tpx2224386617a0", + "phases": "AS", + "to": "sx3729298a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2916607c", + "length": "50.0000", + "name": "tpx_tpx321882c0", + "phases": "CS", + "to": "sx2916607c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3029510", + "name": "xf_t5355606b", + "phases": "BS", + "to": "x3029510b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785529c", + "length": "50.0000", + "name": "tpx_tpx355943c0", + "phases": "CS", + "to": "sx2785529c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2935554a", + "length": "50.0000", + "name": "tpx_tpx338921a0", + "phases": "AS", + "to": "sx2935554a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2935554", + "name": "xf_t5338921a", + "phases": "AS", + "to": "x2935554a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2691944", + "length": "297.4028", + "name": "line_ln5472355-1", + "phases": "AN", + "to": "l2673312" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2710516", + "length": "280.5846", + "name": "line_ln6411374-1", + "phases": "AN", + "to": "l2691944" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2691944", + "name": "xf_t5321838a", + "phases": "AS", + "to": "x2691944a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047769", + "length": "536.6278", + "name": "line_ln5954962-1", + "phases": "BN", + "to": "l3197632" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047769", + "length": "345.1952", + "name": "line_ln6379347-1", + "phases": "BN", + "to": "l2710514" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p827505", + "length": "15.0179", + "name": "line_ln5958702-2", + "phases": "CN", + "to": "n1137958" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2876798b", + "length": "50.0000", + "name": "tpx_tpx226193745b0", + "phases": "BS", + "to": "sx2876798b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3178975", + "name": "xf_t5321845b", + "phases": "BS", + "to": "x3178975b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160100b", + "length": "50.0000", + "name": "tpx_tpx321847b0", + "phases": "BS", + "to": "sx3160100b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3160100", + "name": "xf_t5321847b", + "phases": "BS", + "to": "x3160100b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2860504", + "length": "683.6655", + "name": "line_ln6108172-1", + "phases": "AN", + "to": "l2860493" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026713", + "length": "43.6243", + "name": "line_ln5653485-1", + "phases": "AN", + "to": "l2860504" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254231a", + "length": "50.0000", + "name": "tpx_tpx338988a0", + "phases": "AS", + "to": "sx3254231a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l3254231", + "name": "xf_t5338988a", + "phases": "AS", + "to": "x3254231a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2879078", + "name": "swt_ln0108145_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d6108145-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2879078", + "name": "xf_t21399229a", + "phases": "AS", + "to": "x2879078a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2814529b", + "length": "50.0000", + "name": "tpx_tpx28120126b0", + "phases": "BS", + "to": "sx2814529b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3010562b", + "length": "50.0000", + "name": "tpx_tpx325473b0", + "phases": "BS", + "to": "sx3010562b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3010562", + "name": "xf_t5325473b", + "phases": "BS", + "to": "x3010562b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3065750b", + "length": "50.0000", + "name": "tpx_tpx323389b0", + "phases": "BS", + "to": "sx3065750b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047410", + "length": "306.8765", + "name": "line_ln5623402-1", + "phases": "AN", + "to": "m1047409" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3047060", + "length": "266.5589", + "name": "line_ln6153059-1", + "phases": "ABCN", + "to": "l3048221" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3047059", + "name": "swt_tsw30473047_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "l3047060" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p901894", + "length": "24.5774", + "name": "line_ln5682325-1", + "phases": "AN", + "to": "m1026857" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748131b", + "length": "50.0000", + "name": "tpx_tpx323250b0", + "phases": "BS", + "to": "sx2748131b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254208c", + "length": "50.0000", + "name": "tpx_tpx338961c0", + "phases": "CS", + "to": "sx3254208c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3141397b", + "length": "50.0000", + "name": "tpx_tpx21396796b0", + "phases": "BS", + "to": "sx3141397b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047558", + "length": "53.4088", + "name": "line_ln5714052-2", + "phases": "AN", + "to": "n1136659" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1136659", + "length": "304.7400", + "name": "line_ln5714052-3", + "phases": "AN", + "to": "l3104129" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785537a", + "length": "50.0000", + "name": "tpx_tpx338975a0", + "phases": "AS", + "to": "sx2785537a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2841621", + "length": "113.3906", + "name": "line_ln5865235-2", + "phases": "ABCN", + "to": "n1137986" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2841621", + "name": "xf_t5338910c", + "phases": "CS", + "to": "x2841621c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860500b", + "length": "50.0000", + "name": "tpx_tpx323274b0", + "phases": "BS", + "to": "sx2860500b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673303c", + "length": "50.0000", + "name": "tpx_tpx338963c0", + "phases": "CS", + "to": "sx2673303c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009855", + "length": "384.1764", + "name": "line_ln6138618-1", + "phases": "BN", + "to": "l2991927" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1009855", + "length": "214.9691", + "name": "line_ln5774474-1", + "phases": "BN", + "to": "l2748139" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009843", + "length": "271.4745", + "name": "line_ln5502550-1", + "phases": "BN", + "to": "m1009855" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3027133a", + "length": "50.0000", + "name": "tpx_tpx226101449a0", + "phases": "CS", + "to": "sx3027133a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860478b", + "length": "50.0000", + "name": "tpx_tpx355590b0", + "phases": "BS", + "to": "sx2860478b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649297a", + "length": "50.0000", + "name": "tpx_tpx2224237380a0", + "phases": "AS", + "to": "sx3649297a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197634b", + "length": "50.0000", + "name": "tpx_tpx355767b0", + "phases": "BS", + "to": "sx3197634b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2710525", + "name": "xf_t5355437c", + "phases": "CS", + "to": "x2710525c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2916620a", + "length": "50.0000", + "name": "tpx_tpx338977a0", + "phases": "AS", + "to": "sx2916620a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2876797a", + "length": "50.0000", + "name": "tpx_tpx226193345a0", + "phases": "AS", + "to": "sx2876797a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2876797", + "name": "xf_t226193345a", + "phases": "AS", + "to": "x2876797a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2822858", + "name": "xf_t5355591b", + "phases": "BS", + "to": "x2822858b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2876797", + "length": "161.9968", + "name": "line_ln6258439-1", + "phases": "ABCN", + "to": "r18241" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026855", + "length": "121.4666", + "name": "line_ln5623410-1", + "phases": "ABCN", + "to": "m1026861" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3235254", + "length": "332.1264", + "name": "line_ln6411383-1", + "phases": "ABCN", + "to": "m1026855" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1139552", + "length": "287.6527", + "name": "line_ln5895789-2", + "phases": "ABCN", + "to": "m1026702" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197638a", + "length": "50.0000", + "name": "tpx_tpx21396959a0", + "phases": "AS", + "to": "sx3197638a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "d5804798-3_int", + "length": "101.0477", + "name": "line_ln5804798-3", + "phases": "BN", + "to": "m1047766" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047766", + "length": "180.8842", + "name": "line_ln5683817-1", + "phases": "BN", + "to": "l3216344" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2973155", + "length": "209.9994", + "name": "line_ln6077815-4", + "phases": "ABCN", + "to": "l3784018" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3008232b", + "length": "50.0000", + "name": "tpx_tpx226192492b0", + "phases": "BS", + "to": "sx3008232b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2822868a", + "length": "50.0000", + "name": "tpx_tpx21397544a0", + "phases": "AS", + "to": "sx2822868a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047729", + "length": "240.2533", + "name": "line_ln5835130-1", + "phases": "AN", + "to": "l2973150" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047723", + "length": "303.1876", + "name": "line_ln6320325-1", + "phases": "AN", + "to": "m1047729" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069549", + "length": "194.1824", + "name": "line_ln5894212-1", + "phases": "ABCN", + "to": "m1069556" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1136356", + "length": "84.6741", + "name": "line_ln6047595-3", + "phases": "ABCN", + "to": "m1069549" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254230a", + "length": "50.0000", + "name": "tpx_tpx338989a0", + "phases": "AS", + "to": "sx3254230a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m3327098", + "length": "655.5251", + "name": "line_ln6108130-6", + "phases": "BN", + "to": "l2691943" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2691943", + "name": "xf_t5323400b", + "phases": "BS", + "to": "x2691943b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047522", + "length": "167.4292", + "name": "line_ln5562931-1", + "phases": "ABCN", + "to": "m1047520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3197647", + "length": "5.3174", + "name": "line_ln6017304-1", + "phases": "AN", + "to": "m1026778" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3251808a", + "length": "50.0000", + "name": "tpx_tpx226029836a0", + "phases": "AS", + "to": "sx3251808a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3251808", + "name": "xf_t226029836a", + "phases": "AS", + "to": "x3251808a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3122817", + "length": "182.9897", + "name": "line_ln5623400-1", + "phases": "CN", + "to": "l2673314" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2673314", + "name": "xf_t5355778c", + "phases": "CS", + "to": "x2673314c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254234b", + "length": "50.0000", + "name": "tpx_tpx355586b0", + "phases": "BS", + "to": "sx3254234b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3254234", + "name": "xf_t5355586b", + "phases": "BS", + "to": "x3254234b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047pv-3", + "length": "347.4188", + "name": "line_ln1047pvfrm-2", + "phases": "ABCN", + "to": "m1047pv-2" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047732", + "length": "284.4418", + "name": "line_ln6380810-1", + "phases": "ABCN", + "to": "m1047737" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1137986", + "length": "141.2823", + "name": "line_ln5865235-3", + "phases": "ABCN", + "to": "m1047732" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827548", + "length": "25.1910", + "name": "line_ln5776669-2", + "phases": "AN", + "to": "n1136368" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3083019", + "length": "94.2325", + "name": "line_ln6106658-1", + "phases": "AN", + "to": "m1027080" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026779", + "length": "299.7982", + "name": "line_ln5956474-1", + "phases": "AN", + "to": "l2973169" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3178976", + "length": "297.1361", + "name": "line_ln6108153-1", + "phases": "AN", + "to": "m1026779" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026800", + "length": "191.5363", + "name": "line_ln5562934-1", + "phases": "ABCN", + "to": "m1026797" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2745799c", + "length": "50.0000", + "name": "tpx_tpx226191779c0", + "phases": "CS", + "to": "sx2745799c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2748140", + "length": "256.7701", + "name": "line_ln5774487-1", + "phases": "AN", + "to": "l3141412" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2804257", + "name": "xf_t5321854b", + "phases": "BS", + "to": "x2804257b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1140819", + "length": "88.3550", + "name": "line_ln6347196-2", + "phases": "ABCN", + "to": "m1026700" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026700", + "length": "72.5888", + "name": "line_ln6286966-3", + "phases": "BN", + "to": "n1140820" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026700", + "length": "280.5128", + "name": "line_ln5650219-1", + "phases": "ABCN", + "to": "m1026706" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879070b", + "length": "50.0000", + "name": "tpx_tpx338934b0", + "phases": "BS", + "to": "sx2879070b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026695", + "length": "62.0934", + "name": "line_ln5774470-3", + "phases": "AN", + "to": "n1138594" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "n1138594", + "name": "swt_ln0774470_sw", + "phases": "A", + "status": "CLOSED", + "to": "d5774470-2_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860477a", + "length": "50.0000", + "name": "tpx_tpx28121587a0", + "phases": "AS", + "to": "sx2860477a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197647a", + "length": "50.0000", + "name": "tpx_tpx294787a0", + "phases": "AS", + "to": "sx3197647a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l3197647", + "name": "xf_t5294787a", + "phases": "AS", + "to": "x3197647a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069563", + "length": "127.3109", + "name": "line_ln5924705-2", + "phases": "AN", + "to": "n1136360" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_cap_3a_PUZ_A", + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "q16642", + "length": "0.0033", + "name": "line_cap_3a", + "phases": "A", + "to": "q16642_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_cap_3c_PUZ_C", + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "q16642", + "length": "0.0033", + "name": "line_cap_3c", + "phases": "C", + "to": "q16642_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_cap_3b_PUZ_B", + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "q16642", + "length": "0.0033", + "name": "line_cap_3b", + "phases": "B", + "to": "q16642_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026906", + "length": "603.8226", + "name": "line_ln5683857-1", + "phases": "AN", + "to": "l2691973" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2691973", + "name": "xf_t5355935a", + "phases": "AS", + "to": "x2691973a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6290228-6_int", + "name": "swt_2002200004991174_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q16642" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2878848c", + "length": "50.0000", + "name": "tpx_tpx2212168887c0", + "phases": "CS", + "to": "sx2878848c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2878848", + "name": "xf_t22112168887c", + "phases": "CS", + "to": "x2878848c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026972", + "length": "199.0720", + "name": "line_ln5926299-1", + "phases": "BN", + "to": "l2860483" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026969", + "length": "126.1654", + "name": "line_ln5532745-1", + "phases": "BN", + "to": "m1026972" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069468", + "length": "27.9336", + "name": "line_ln5898057-1", + "phases": "AN", + "to": "p827506" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069468", + "length": "239.9032", + "name": "line_ln5532785-1", + "phases": "ABCN", + "to": "m1069464" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728043a", + "length": "50.0000", + "name": "tpx_tpx2224387138a0", + "phases": "AS", + "to": "sx3728043a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804270b", + "length": "50.0000", + "name": "tpx_tpx339013b0", + "phases": "BS", + "to": "sx2804270b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2804270", + "name": "xf_t5339013b", + "phases": "BS", + "to": "x2804270b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009771", + "length": "244.9402", + "name": "line_ln6167753-1", + "phases": "BN", + "to": "l2914323" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg3a", + "continuous_rating_A": "4201.39", + "emergency_rating_A": "5729.17", + "from": "regxfmr_hvmv11sub3_lsb", + "name": "reg_feeder_reg3a", + "phases": "A", + "to": "hvmv11sub3_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg3b", + "continuous_rating_B": "4201.39", + "emergency_rating_B": "5729.17", + "from": "regxfmr_hvmv11sub3_lsb", + "name": "reg_feeder_reg3b", + "phases": "B", + "to": "hvmv11sub3_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg3c", + "continuous_rating_C": "4201.39", + "emergency_rating_C": "5729.17", + "from": "regxfmr_hvmv11sub3_lsb", + "name": "reg_feeder_reg3c", + "phases": "C", + "to": "hvmv11sub3_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "configuration": "xcon_hvmv69_11sub3", + "continuous_rating_A": "184.08", + "continuous_rating_B": "184.08", + "continuous_rating_C": "184.08", + "emergency_rating_A": "251.02", + "emergency_rating_B": "251.02", + "emergency_rating_C": "251.02", + "from": "hvmv69sub3_hsb", + "name": "xf_hvmv69_11sub3", + "phases": "ABCN", + "to": "regxfmr_hvmv11sub3_lsb" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2876814", + "name": "xf_t225806974a", + "phases": "AS", + "to": "x2876814a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2935566c", + "length": "50.0000", + "name": "tpx_tpx441854c0", + "phases": "CS", + "to": "sx2935566c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2710504", + "name": "xf_t5323394b", + "phases": "BS", + "to": "x2710504b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069557", + "length": "231.7329", + "name": "line_ln5502556-1", + "phases": "BN", + "to": "m1069558" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069557", + "length": "178.0855", + "name": "line_ln6260016-1", + "phases": "BN", + "to": "m1069554" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln6019479-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "p827536", + "length": "41.1314", + "name": "line_ln6440002-3", + "phases": "CN", + "to": "n1137999" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026970", + "length": "205.1592", + "name": "line_ln6380813-1", + "phases": "ABCN", + "to": "m1026977" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026977", + "length": "196.1792", + "name": "line_ln6199517-1", + "phases": "ABCN", + "to": "m1026978" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026906", + "length": "407.0203", + "name": "line_ln6260001-1", + "phases": "AN", + "to": "l2916598" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026877", + "length": "748.7459", + "name": "line_ln5593240-1", + "phases": "AN", + "to": "m1026906" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047819", + "length": "234.1256", + "name": "line_ln6199508-1", + "phases": "BN", + "to": "l2916603" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2916603", + "name": "xf_t5323403b", + "phases": "BS", + "to": "x2916603b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649305a", + "length": "50.0000", + "name": "tpx_tpx2224237718a0", + "phases": "AS", + "to": "sx3649305a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3197642", + "name": "xf_t5391979c", + "phases": "CS", + "to": "x3197642c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3315860", + "name": "xf_t2223664050b", + "phases": "BS", + "to": "x3315860b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026713", + "length": "179.2896", + "name": "line_ln5804823-1", + "phases": "AN", + "to": "l2785530" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2785530", + "name": "xf_t5391985a", + "phases": "AS", + "to": "x2785530a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3727711", + "length": "139.6416", + "name": "line_ln6991379-4", + "phases": "AN", + "to": "l3727712" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3727711", + "name": "xf_t2224386874a", + "phases": "AS", + "to": "x3727711a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2785537", + "name": "xf_t5338975a", + "phases": "AS", + "to": "x2785537a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3091052", + "name": "xf_t228532641a", + "phases": "AS", + "to": "x3091052a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047688", + "length": "50.7776", + "name": "line_ln5986926-2", + "phases": "CN", + "to": "n1144664" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047688", + "length": "224.7488", + "name": "line_ln5472352-1", + "phases": "ABCN", + "to": "m1047699" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2814529a", + "length": "50.0000", + "name": "tpx_tpx28120126a0", + "phases": "AS", + "to": "sx2814529a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2841627", + "name": "xf_t5337716a", + "phases": "AS", + "to": "x2841627a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197654a", + "length": "50.0000", + "name": "tpx_tpx21382992a0", + "phases": "AS", + "to": "sx3197654a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027121", + "length": "102.1165", + "name": "line_ln5924720-1", + "phases": "AN", + "to": "m1027123" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027123", + "length": "81.7029", + "name": "line_ln6076266-1", + "phases": "AN", + "to": "l3008248" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047711", + "length": "285.4290", + "name": "line_ln5683841-1", + "phases": "AN", + "to": "m1047718" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3029510", + "length": "354.8084", + "name": "line_ln5804811-1", + "phases": "BN", + "to": "l2729409" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026829", + "length": "34.1922", + "name": "line_ln6167754-2", + "phases": "BN", + "to": "n1147859" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1147859", + "length": "22.2186", + "name": "line_ln6167754-3", + "phases": "BN", + "to": "p827573" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2729207", + "length": "40.0028", + "name": "line_ln8961799-3", + "phases": "C", + "to": "228-961799-3_int" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2729206", + "length": "961.5595", + "name": "line_ln8961799-2", + "phases": "C", + "to": "l2729207" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l2729207", + "name": "xf_t22112168874c", + "phases": "CS", + "to": "x2729207c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2689691a", + "length": "50.0000", + "name": "tpx_tpx355375a0", + "phases": "AS", + "to": "sx2689691a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1137994", + "length": "184.9440", + "name": "line_ln5928544-3", + "phases": "CN", + "to": "m1069484" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1140820", + "length": "135.6907", + "name": "line_ln6286966-2", + "phases": "BN", + "to": "l3189189" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069494", + "length": "199.9999", + "name": "line_ln6076247-1", + "phases": "CN", + "to": "l2745806" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047669", + "length": "11.1371", + "name": "line_ln5956464-1", + "phases": "ABCN", + "to": "m1047672" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047672", + "length": "52.5814", + "name": "line_ln5774455-2", + "phases": "AN", + "to": "n1136999" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069588", + "length": "37.5536", + "name": "line_ln6077796-1", + "phases": "BN", + "to": "l2804270" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026760", + "length": "377.7376", + "name": "line_ln6229809-1", + "phases": "ABCN", + "to": "m1026744" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026744", + "length": "96.9044", + "name": "line_ln5926310-2", + "phases": "ABCN", + "to": "n1140817" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879078a", + "length": "50.0000", + "name": "tpx_tpx21399229a0", + "phases": "AS", + "to": "sx2879078a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047755", + "length": "51.9306", + "name": "line_ln5653456-1", + "phases": "AN", + "to": "l3066812" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047755", + "length": "240.3642", + "name": "line_ln5623397-1", + "phases": "AN", + "to": "m1047751" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2895461a", + "length": "50.0000", + "name": "tpx_tpx294789a0", + "phases": "CS", + "to": "sx2895461a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2851933b", + "length": "50.0000", + "name": "tpx_tpx21393643b0", + "phases": "BS", + "to": "sx2851933b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069554", + "length": "109.3238", + "name": "line_ln5653478-1", + "phases": "BN", + "to": "l3160115" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l3160115", + "name": "xf_t5338994b", + "phases": "BS", + "to": "x3160115b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766744b", + "length": "50.0000", + "name": "tpx_tpx28127319b0", + "phases": "BS", + "to": "sx2766744b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1009763", + "length": "271.2832", + "name": "line_ln6019480-1", + "phases": "ABCN", + "to": "e182733" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026920", + "length": "79.5162", + "name": "line_ln6320338-1", + "phases": "BN", + "to": "l2729408" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p828360", + "length": "103.3396", + "name": "line_ln8961799-1", + "phases": "C", + "to": "l2729206" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027080", + "length": "217.0226", + "name": "line_ln6392977-2", + "phases": "AN", + "to": "l3215340" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3215340", + "length": "113.9520", + "name": "line_ln6392977-1", + "phases": "AN", + "to": "m1027087" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3215340", + "name": "xf_t228057846a", + "phases": "AS", + "to": "x3215340a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1027000", + "length": "219.3140", + "name": "line_ln6017294-1", + "phases": "ABCN", + "to": "l2916608" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2916608", + "length": "284.0062", + "name": "line_ln6108131-1", + "phases": "ABCN", + "to": "m1027002" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2916608", + "name": "xf_t5321852c", + "phases": "CS", + "to": "x2916608c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l3178988", + "name": "xf_t5339001b", + "phases": "BS", + "to": "x3178988b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2710542", + "length": "116.0424", + "name": "line_ln6229831-1", + "phases": "BN", + "to": "l2729430" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "l2729430", + "name": "swt_ln0017316_sw", + "phases": "B", + "status": "CLOSED", + "to": "d6017316-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5860423-3_int", + "name": "swt_ln4641075_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q14733" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897791b", + "length": "50.0000", + "name": "tpx_tpx323282b0", + "phases": "BS", + "to": "sx2897791b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2895461", + "name": "xf_t5294789a", + "phases": "CS", + "to": "x2895461a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2879075", + "length": "195.0644", + "name": "line_ln5894312-1", + "phases": "AN", + "to": "l3251830" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2879075", + "name": "xf_t5337724a", + "phases": "AS", + "to": "x2879075a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3178974", + "length": "236.0199", + "name": "line_ln6108130-5", + "phases": "BN", + "to": "m3327098" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137985", + "length": "811.9327", + "name": "line_ln5803264-3", + "phases": "AN", + "to": "l3176656" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009828", + "length": "223.8775", + "name": "line_ln5865226-1", + "phases": "BN", + "to": "l2766715" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2911069", + "length": "725.4830", + "name": "line_ln6506317-2", + "phases": "BN", + "to": "l2948732" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3037537", + "length": "9.5158", + "name": "line_ln6506316-6", + "phases": "BN", + "to": "l2911069" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2911069", + "name": "xf_t225571871b", + "phases": "BS", + "to": "x2911069b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3177894", + "length": "301.9982", + "name": "line_ln5486878-2", + "phases": "AN", + "to": "l3082993" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010004", + "length": "817.9995", + "name": "line_ln5486878-1", + "phases": "AN", + "to": "l3177894" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3177894", + "name": "xf_t227903012a", + "phases": "AS", + "to": "x3177894a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2673317", + "length": "327.0882", + "name": "line_ln6505948-2", + "phases": "AN", + "to": "l2710517" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct75C", + "from": "l3645810", + "name": "xf_t2224230651c", + "phases": "CS", + "to": "x3645810c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2897554", + "length": "393.6651", + "name": "line_ln8961797-2", + "phases": "C", + "to": "193-46661" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l2897554", + "name": "xf_t22112168870c", + "phases": "CS", + "to": "x2897554c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3189190a", + "length": "50.0000", + "name": "tpx_tpx227100753a0", + "phases": "AS", + "to": "sx3189190a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047420", + "length": "41.3833", + "name": "line_ln6195664-1", + "phases": "AN", + "to": "m1047419" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3216368c", + "length": "50.0000", + "name": "tpx_tpx293663c0", + "phases": "CS", + "to": "sx3216368c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2841615", + "name": "xf_t5356012a", + "phases": "AS", + "to": "x2841615a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860484b", + "length": "50.0000", + "name": "tpx_tpx323255b0", + "phases": "BS", + "to": "sx2860484b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216346a", + "length": "50.0000", + "name": "tpx_tpx391991a0", + "phases": "AS", + "to": "sx3216346a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3216346", + "name": "xf_t5391991a", + "phases": "AS", + "to": "x3216346a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2783231", + "length": "498.4894", + "name": "line_ln5985355-1", + "phases": "BN", + "to": "l3254227" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3254227", + "length": "155.6866", + "name": "line_ln6108164-1", + "phases": "BN", + "to": "m1069550" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3048199", + "name": "xf_t5323237b", + "phases": "BS", + "to": "x3048199b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2851933", + "name": "xf_t21393643a", + "phases": "AS", + "to": "x2851933a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2851933", + "name": "xf_t21393643b", + "phases": "BS", + "to": "x2851933b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085397b", + "length": "50.0000", + "name": "tpx_tpx323261b0", + "phases": "BS", + "to": "sx3085397b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3027156", + "length": "373.3943", + "name": "line_ln5773136-1", + "phases": "CN", + "to": "l2860481" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3251807a", + "length": "50.0000", + "name": "tpx_tpx225673440a0", + "phases": "AS", + "to": "sx3251807a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010004", + "length": "54.9990", + "name": "line_ln6198053-1", + "phases": "AN", + "to": "m1010003" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3160109", + "length": "236.0120", + "name": "line_ln6134514-2", + "phases": "ABCN", + "to": "m1047497" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3160109", + "name": "xf_t5338947b", + "phases": "BS", + "to": "x3160109b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069558", + "length": "126.8093", + "name": "line_ln6017312-1", + "phases": "BN", + "to": "l3254229" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m3036170", + "length": "53.3630", + "name": "line_ln6505950-1", + "phases": "ABCN", + "to": "m1026670" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m3036170", + "length": "169.5723", + "name": "line_ln6505951-1", + "phases": "CN", + "to": "l3197642" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3141412", + "name": "xf_t5391996a", + "phases": "AS", + "to": "x3141412a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2766720", + "name": "xf_t5441311a", + "phases": "AS", + "to": "x2766720a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026767", + "length": "485.1240", + "name": "line_ln6318742-1", + "phases": "AN", + "to": "l3029500" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3029500", + "name": "xf_t5391992a", + "phases": "AS", + "to": "x3029500a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047831", + "length": "263.7188", + "name": "line_ln6290208-1", + "phases": "BN", + "to": "l3178974" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2954346", + "length": "575.0969", + "name": "line_ln6320336-1", + "phases": "BN", + "to": "m1047831" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047831", + "length": "337.7850", + "name": "line_ln5472353-1", + "phases": "BN", + "to": "l2710505" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047515", + "length": "369.7093", + "name": "line_ln5593236-6", + "phases": "ABCN", + "to": "m1047513" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1144665", + "length": "89.8573", + "name": "line_ln6138610-2", + "phases": "ABCN", + "to": "m1047515" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235245c", + "length": "50.0000", + "name": "tpx_tpx337712c0", + "phases": "CS", + "to": "sx3235245c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026859", + "length": "55.9744", + "name": "line_ln6411394-2", + "phases": "AN", + "to": "n1138593" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879069a", + "length": "50.0000", + "name": "tpx_tpx338894a0", + "phases": "AS", + "to": "sx2879069a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026847", + "length": "199.3449", + "name": "line_ln5804799-1", + "phases": "AN", + "to": "l2673311" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2673311", + "name": "xf_t21397029a", + "phases": "AS", + "to": "x2673311a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3066826b", + "length": "50.0000", + "name": "tpx_tpx339003b0", + "phases": "BS", + "to": "sx3066826b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027027", + "length": "141.4624", + "name": "line_ln6137083-1", + "phases": "CN", + "to": "l3270853" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027027", + "length": "384.5177", + "name": "line_ln6077807-1", + "phases": "CN", + "to": "l2766746" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026656", + "length": "612.1344", + "name": "line_ln6322630-1", + "phases": "AN", + "to": "l2729428" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2729428", + "length": "241.8547", + "name": "line_ln5926324-1", + "phases": "AN", + "to": "m1026648" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047548", + "length": "59.7600", + "name": "line_ln5956471-3", + "phases": "ABCN", + "to": "n1136670" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3066815", + "length": "145.6488", + "name": "line_ln5835144-1", + "phases": "ABCN", + "to": "m1047548" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026905", + "length": "18.1094", + "name": "line_ln6383058-1", + "phases": "AN", + "to": "p827515" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069607", + "length": "125.9248", + "name": "line_ln5895801-1", + "phases": "BN", + "to": "l2916617" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069607", + "length": "107.6571", + "name": "line_ln5744350-1", + "phases": "BN", + "to": "m1069619" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069595", + "length": "461.5781", + "name": "line_ln6046049-1", + "phases": "BN", + "to": "m1069607" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973159a", + "length": "50.0000", + "name": "tpx_tpx21398536a0", + "phases": "AS", + "to": "sx2973159a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2684420", + "length": "273.7943", + "name": "line_ln5532738-1", + "phases": "BN", + "to": "m1047824" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804254a", + "length": "50.0000", + "name": "tpx_tpx323418a0", + "phases": "AS", + "to": "sx2804254a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897773a", + "length": "50.0000", + "name": "tpx_tpx338918a0", + "phases": "AS", + "to": "sx2897773a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047836", + "length": "460.9661", + "name": "line_ln6380803-1", + "phases": "BN", + "to": "l3048199" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3048199", + "length": "278.1680", + "name": "line_ln6259980-1", + "phases": "BN", + "to": "m1047837" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047423", + "length": "165.5683", + "name": "line_ln5835142-1", + "phases": "AN", + "to": "m1047420" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2916234", + "length": "850.3986", + "name": "line_ln5479790-2", + "phases": "AN", + "to": "m1047423" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1009809", + "length": "296.3194", + "name": "line_ln6077787-1", + "phases": "CN", + "to": "l2710525" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2673323", + "length": "234.7150", + "name": "line_ln6199535-1", + "phases": "CN", + "to": "m1009809" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3649305", + "name": "xf_t2224237718a", + "phases": "AS", + "to": "x3649305a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2897773", + "name": "xf_t5338918a", + "phases": "AS", + "to": "x2897773a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710512b", + "length": "50.0000", + "name": "tpx_tpx323280b0", + "phases": "BS", + "to": "sx2710512b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3120484", + "length": "339.5389", + "name": "line_ln5526906-1", + "phases": "ABCN", + "to": "m1026896" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3120484", + "name": "xf_t226191772c", + "phases": "CS", + "to": "x3120484c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3207907c", + "length": "50.0000", + "name": "tpx_tpx293664c0", + "phases": "CS", + "to": "sx3207907c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141396c", + "length": "50.0000", + "name": "tpx_tpx337655c0", + "phases": "CS", + "to": "sx3141396c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027087", + "length": "76.0140", + "name": "line_ln5924721-1", + "phases": "AN", + "to": "m1027091" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1009651", + "length": "29.6267", + "name": "line_ln5800693-1", + "phases": "ABCN", + "to": "m1009650" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3157708c", + "length": "50.0000", + "name": "tpx_tpx226192954c0", + "phases": "CS", + "to": "sx3157708c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3157708", + "name": "xf_t226192954c", + "phases": "CS", + "to": "x3157708c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2857591a", + "length": "50.0000", + "name": "tpx_tpx226101460a0", + "phases": "CS", + "to": "sx2857591a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln6198049-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3120502", + "length": "414.6715", + "name": "line_ln6198049-1", + "phases": "CN", + "to": "m1026792" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2935568", + "length": "604.5797", + "name": "line_ln5895805-1", + "phases": "BN", + "to": "l3235246" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m4350438", + "length": "310.6807", + "name": "line_ln6409872-3", + "phases": "BN", + "to": "l2935568" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069567", + "length": "269.1826", + "name": "line_ln5472385-1", + "phases": "BN", + "to": "l2691966" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3141396", + "length": "526.1914", + "name": "line_ln6017288-1", + "phases": "CN", + "to": "l3066808" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3141396", + "name": "xf_t5337655c", + "phases": "CS", + "to": "x3141396c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1136670", + "name": "swt_ln0956471_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5956471-2_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973171b", + "length": "50.0000", + "name": "tpx_tpx339012b0", + "phases": "BS", + "to": "sx2973171b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2991929", + "name": "xf_t28147708b", + "phases": "BS", + "to": "x2991929b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027038", + "length": "195.1262", + "name": "line_ln5829253-1", + "phases": "BN", + "to": "l2731712" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2916620", + "name": "xf_t5338977b", + "phases": "BS", + "to": "x2916620b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p903360", + "length": "31.8685", + "name": "line_ln6413566-1", + "phases": "AN", + "to": "m1047430" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069519", + "length": "27.0299", + "name": "line_ln6348946-1", + "phases": "BN", + "to": "p901927" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069519", + "length": "496.2582", + "name": "line_ln5561439-3", + "phases": "ABCN", + "to": "n1136354" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026877", + "length": "402.1833", + "name": "line_ln6138615-1", + "phases": "AN", + "to": "l2729413" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2729429", + "name": "xf_t5293644a", + "phases": "AS", + "to": "x2729429a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2935556b", + "length": "50.0000", + "name": "tpx_tpx356064b0", + "phases": "BS", + "to": "sx2935556b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2935556", + "name": "xf_t5356064b", + "phases": "BS", + "to": "x2935556b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3197652", + "length": "100.1531", + "name": "line_ln6138622-1", + "phases": "AN", + "to": "l2748143" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2748143", + "length": "220.0003", + "name": "line_ln5531956-1", + "phases": "AN", + "to": "l3251854" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2748143", + "name": "xf_t28121368a", + "phases": "AS", + "to": "x2748143a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3216368", + "name": "xf_t5293663c", + "phases": "CS", + "to": "x3216368c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026682", + "length": "301.5594", + "name": "line_ln5623406-1", + "phases": "AN", + "to": "l3066816" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2879081", + "length": "184.4732", + "name": "line_ln5472376-1", + "phases": "AN", + "to": "m1026682" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026695", + "length": "207.3910", + "name": "line_ln6108150-3", + "phases": "ABCN", + "to": "n1140818" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710536a", + "length": "50.0000", + "name": "tpx_tpx21396867a0", + "phases": "AS", + "to": "sx2710536a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3029500a", + "length": "50.0000", + "name": "tpx_tpx391992a0", + "phases": "AS", + "to": "sx3029500a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728041a", + "length": "50.0000", + "name": "tpx_tpx2224387074a0", + "phases": "AS", + "to": "sx3728041a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1144664", + "length": "216.4742", + "name": "line_ln5986926-3", + "phases": "CN", + "to": "l3178972" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2691973a", + "length": "50.0000", + "name": "tpx_tpx355935a0", + "phases": "AS", + "to": "sx2691973a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3120504a", + "length": "50.0000", + "name": "tpx_tpx225897846a0", + "phases": "AS", + "to": "sx3120504a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2729413", + "name": "xf_t21397067a", + "phases": "AS", + "to": "x2729413a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2916598", + "name": "xf_t5355933a", + "phases": "AS", + "to": "x2916598a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2973150", + "name": "xf_t21380528a", + "phases": "AS", + "to": "x2973150a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104114b", + "length": "50.0000", + "name": "tpx_tpx355587b0", + "phases": "BS", + "to": "sx3104114b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2952014a", + "length": "50.0000", + "name": "tpx_tpx294809a0", + "phases": "CS", + "to": "sx2952014a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841623a", + "length": "50.0000", + "name": "tpx_tpx294844a0", + "phases": "AS", + "to": "sx2841623a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2689726", + "length": "446.4914", + "name": "line_ln5647724-1", + "phases": "AN", + "to": "m1047400" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2878848", + "length": "474.0810", + "name": "line_ln8961800-2", + "phases": "C", + "to": "l2766499" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l2766499", + "name": "xf_t22112168880c", + "phases": "CS", + "to": "x2766499c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026792", + "length": "179.6169", + "name": "line_ln5501000-1", + "phases": "CN", + "to": "l2895461" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026648", + "length": "171.3321", + "name": "line_ln6229800-1", + "phases": "AN", + "to": "m1026647" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026786", + "length": "12.6962", + "name": "line_ln5770318-1", + "phases": "ABCN", + "to": "m1026785" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2914324a", + "length": "50.0000", + "name": "tpx_tpx226196642a0", + "phases": "CS", + "to": "sx2914324a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct5C", + "from": "l2914324", + "name": "xf_t226196642a", + "phases": "CS", + "to": "x2914324a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729401b", + "length": "50.0000", + "name": "tpx_tpx355597b0", + "phases": "BS", + "to": "sx2729401b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2729401", + "name": "xf_t5355597b", + "phases": "BS", + "to": "x2729401b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026939", + "length": "80.6309", + "name": "line_ln5623398-1", + "phases": "BN", + "to": "l3104124" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2916608c", + "length": "50.0000", + "name": "tpx_tpx321852c0", + "phases": "CS", + "to": "sx2916608c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047513", + "length": "228.0833", + "name": "line_ln6047577-1", + "phases": "ABCN", + "to": "m1047507" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047507", + "length": "167.4266", + "name": "line_ln5682339-1", + "phases": "ABCN", + "to": "196-35813" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748124b", + "length": "50.0000", + "name": "tpx_tpx323392b0", + "phases": "BS", + "to": "sx2748124b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3235254", + "name": "xf_t5441331c", + "phases": "CS", + "to": "x3235254c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827506", + "length": "23.1305", + "name": "line_ln6171502-1", + "phases": "AN", + "to": "m1069469" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069500", + "length": "688.9363", + "name": "line_ln5623416-1", + "phases": "ABCN", + "to": "m1047574" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3178978a", + "length": "50.0000", + "name": "tpx_tpx337723a0", + "phases": "AS", + "to": "sx3178978a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3178978", + "name": "xf_t5337723a", + "phases": "AS", + "to": "x3178978a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047497", + "length": "26.1309", + "name": "line_ln5682337-1", + "phases": "BN", + "to": "p901912" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3216344", + "length": "101.9772", + "name": "line_ln5593247-1", + "phases": "BN", + "to": "l2860501" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2860501", + "name": "xf_t5323265b", + "phases": "BS", + "to": "x2860501b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069464", + "length": "20.4578", + "name": "line_ln5859996-1", + "phases": "BN", + "to": "p873787" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p873787", + "length": "48.4679", + "name": "line_ln6163946-1", + "phases": "BN", + "to": "m1069463" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235254c", + "length": "50.0000", + "name": "tpx_tpx441331c0", + "phases": "CS", + "to": "sx3235254c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3019248", + "length": "299.9992", + "name": "line_ln6495088-1", + "phases": "BN", + "to": "m3021569" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1009827", + "length": "499.9987", + "name": "line_ln6495087-1", + "phases": "BN", + "to": "m3019248" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1009655", + "length": "23.2483", + "name": "line_ln8945010-1", + "phases": "C", + "to": "p827528" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4_acsr_ln5589097-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "m1047486", + "length": "59.9987", + "name": "line_ln6437757-1", + "phases": "AN", + "to": "l3177665" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047401", + "length": "183.9115", + "name": "line_ln6388581-2", + "phases": "AN", + "to": "l2748132" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2748132", + "length": "840.8238", + "name": "line_ln6440070-1", + "phases": "AN", + "to": "l2689726" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2748132", + "name": "xf_t5302637a", + "phases": "AS", + "to": "x2748132a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197640c", + "length": "50.0000", + "name": "tpx_tpx338944c0", + "phases": "CS", + "to": "sx3197640c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827573", + "length": "69.0895", + "name": "line_ln6383061-1", + "phases": "BN", + "to": "l2710542" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2710542", + "name": "xf_t5355584b", + "phases": "BS", + "to": "x2710542b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027019", + "length": "198.1320", + "name": "line_ln5593228-1", + "phases": "BN", + "to": "l2785522" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027019", + "length": "673.5960", + "name": "line_ln5924800-1", + "phases": "BN", + "to": "l2801949" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3066812", + "length": "227.1708", + "name": "line_ln5926300-1", + "phases": "AN", + "to": "l2841622" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2673343", + "name": "xf_t21470122b", + "phases": "BS", + "to": "x2673343b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3027133", + "name": "xf_t226101449a", + "phases": "CS", + "to": "x3027133a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047751", + "length": "30.5371", + "name": "line_ln5865236-1", + "phases": "AN", + "to": "l2973154" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027080", + "length": "73.1785", + "name": "line_ln6137084-3", + "phases": "AN", + "to": "n1134471" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3178969", + "length": "251.3492", + "name": "line_ln6259981-2", + "phases": "BN", + "to": "l2729401" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047480", + "length": "373.9578", + "name": "line_ln6077774-1", + "phases": "ABCN", + "to": "m1069483" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069483", + "length": "27.3050", + "name": "line_ln5898056-1", + "phases": "CN", + "to": "p827503" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069483", + "length": "167.1698", + "name": "line_ln6229793-1", + "phases": "ABCN", + "to": "m1069481" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2710515c", + "length": "50.0000", + "name": "tpx_tpx321884c0", + "phases": "CS", + "to": "sx2710515c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897554c", + "length": "50.0000", + "name": "tpx_tpx2212168870c0", + "phases": "CS", + "to": "sx2897554c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3139103a", + "length": "50.0000", + "name": "tpx_tpx225767272a0", + "phases": "AS", + "to": "sx3139103a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3139103", + "name": "xf_t225767272a", + "phases": "AS", + "to": "x3139103a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069488", + "length": "186.9206", + "name": "line_ln6047555-1", + "phases": "CN", + "to": "l2748125" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069488", + "length": "240.6090", + "name": "line_ln6380802-1", + "phases": "CN", + "to": "m1069489" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2935547b", + "length": "50.0000", + "name": "tpx_tpx21383553b0", + "phases": "BS", + "to": "sx2935547b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3010580b", + "length": "50.0000", + "name": "tpx_tpx21451973b0", + "phases": "BS", + "to": "sx3010580b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1137005", + "length": "45.3769", + "name": "line_ln5894206-4", + "phases": "ABCN", + "to": "m1047724" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841639a", + "length": "50.0000", + "name": "tpx_tpx355937a0", + "phases": "AS", + "to": "sx2841639a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047534", + "length": "32.5950", + "name": "line_ln5532752-2", + "phases": "AN", + "to": "n1136660" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047550", + "length": "327.2390", + "name": "line_ln6350542-1", + "phases": "ABCN", + "to": "m1047534" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2729414", + "name": "xf_t5293655a", + "phases": "AS", + "to": "x2729414a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026896", + "length": "47.3277", + "name": "line_ln6201697-1", + "phases": "ABCN", + "to": "p827525" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l3253995", + "name": "xf_t21396815c", + "phases": "CS", + "to": "x3253995c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "n1137999", + "name": "swt_ln0440002_sw", + "phases": "C", + "status": "CLOSED", + "to": "d6440002-2_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069467", + "length": "51.6392", + "name": "line_ln5714044-1", + "phases": "AN", + "to": "m1069466" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3197618", + "name": "xf_t5356008a", + "phases": "AS", + "to": "x3197618a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766499c", + "length": "50.0000", + "name": "tpx_tpx2212168880c0", + "phases": "CS", + "to": "sx2766499c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137995", + "length": "83.9895", + "name": "line_ln6047575-3", + "phases": "AN", + "to": "l3141401" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d5806920-1_int", + "name": "swt_v7313_48332_sw", + "phases": "B", + "status": "CLOSED", + "to": "e182726" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3082992a", + "length": "50.0000", + "name": "tpx_tpx337728a0", + "phases": "AS", + "to": "sx3082992a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3082992", + "name": "xf_t5337728a", + "phases": "AS", + "to": "x3082992a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p901913", + "length": "75.8156", + "name": "line_ln5803262-1", + "phases": "CN", + "to": "l3157708" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047623", + "length": "207.5506", + "name": "line_ln5956497-1", + "phases": "AN", + "to": "l2748157" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1140830", + "length": "28.6734", + "name": "line_ln5986938-3", + "phases": "AN", + "to": "l3216351" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860485b", + "length": "50.0000", + "name": "tpx_tpx321855b0", + "phases": "BS", + "to": "sx2860485b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973165a", + "length": "50.0000", + "name": "tpx_tpx355942a0", + "phases": "AS", + "to": "sx2973165a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2973165", + "name": "xf_t5355942a", + "phases": "AS", + "to": "x2973165a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009832", + "length": "118.2637", + "name": "line_ln6199505-1", + "phases": "BN", + "to": "l2860479" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2860479", + "name": "xf_t5355595b", + "phases": "BS", + "to": "x2860479b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027100", + "length": "229.9990", + "name": "line_ln6122719-1", + "phases": "AN", + "to": "l3140238" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3251808", + "length": "195.1227", + "name": "line_ln6409797-1", + "phases": "AN", + "to": "m1027100" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027100", + "length": "558.6263", + "name": "line_ln6379374-1", + "phases": "AN", + "to": "m1027109" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047558", + "length": "179.8968", + "name": "line_ln5956470-1", + "phases": "ABCN", + "to": "m1047550" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2916620c", + "length": "50.0000", + "name": "tpx_tpx338977c0", + "phases": "CS", + "to": "sx2916620c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137957", + "length": "144.4681", + "name": "line_ln6201695-3", + "phases": "AN", + "to": "l3104119" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2804255", + "name": "xf_t5338913b", + "phases": "BS", + "to": "x2804255b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3178982a", + "length": "50.0000", + "name": "tpx_tpx294843a0", + "phases": "AS", + "to": "sx3178982a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841645c", + "length": "50.0000", + "name": "tpx_tpx321893c0", + "phases": "CS", + "to": "sx2841645c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2841645", + "name": "xf_t5321893c", + "phases": "CS", + "to": "x2841645c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3254208", + "name": "xf_t5338961c", + "phases": "CS", + "to": "x3254208c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1136995", + "length": "41.4644", + "name": "line_ln6268990-4", + "phases": "CN", + "to": "m1047613" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047615", + "length": "44.2254", + "name": "line_ln6268990-3", + "phases": "CN", + "to": "n1136995" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879081a", + "length": "50.0000", + "name": "tpx_tpx391981a0", + "phases": "AS", + "to": "sx2879081a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2879081", + "name": "xf_t5391981a", + "phases": "AS", + "to": "x2879081a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1009698", + "length": "165.6349", + "name": "line_ln5773028-1", + "phases": "AN", + "to": "l3156034" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009698", + "length": "264.9150", + "name": "line_ln6258429-1", + "phases": "ABCN", + "to": "m1026767" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009705", + "length": "155.0904", + "name": "line_ln5894192-1", + "phases": "ABCN", + "to": "m1009698" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047409", + "length": "216.9670", + "name": "line_ln5682375-1", + "phases": "AN", + "to": "l3082992" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3082992", + "length": "195.5266", + "name": "line_ln6167748-1", + "phases": "AN", + "to": "m1047406" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2916620", + "name": "xf_t5338977c", + "phases": "CS", + "to": "x2916620c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841648a", + "length": "50.0000", + "name": "tpx_tpx337720a0", + "phases": "AS", + "to": "sx2841648a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1136355", + "length": "237.7126", + "name": "line_ln5985355-3", + "phases": "BN", + "to": "l2783231" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069556", + "length": "21.1804", + "name": "line_ln6258445-1", + "phases": "CN", + "to": "p901932" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "e182730", + "length": "78.8197", + "name": "line_ln5898059-3", + "phases": "AN", + "to": "n1142109" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026670", + "length": "156.9190", + "name": "line_ln6380818-1", + "phases": "ABCN", + "to": "m1026662" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026662", + "length": "107.8891", + "name": "line_ln6199523-2", + "phases": "CN", + "to": "n1140831" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026662", + "length": "29.1314", + "name": "line_ln5683827-2", + "phases": "CN", + "to": "n1140832" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026662", + "length": "468.6803", + "name": "line_ln6350543-1", + "phases": "ABCN", + "to": "l2673319" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822857b", + "length": "50.0000", + "name": "tpx_tpx355588b0", + "phases": "BS", + "to": "sx2822857b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009834", + "length": "1.0000", + "name": "line_ln6259981-1", + "phases": "BN", + "to": "l3178969" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009832", + "length": "154.8759", + "name": "line_ln5472344-1", + "phases": "BN", + "to": "m1009834" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2783231b", + "length": "50.0000", + "name": "tpx_tpx226193886b0", + "phases": "BS", + "to": "sx2783231b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1136999", + "length": "28.9228", + "name": "line_ln5774455-3", + "phases": "AN", + "to": "m1047671" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027087", + "length": "297.0002", + "name": "line_ln6015811-1", + "phases": "AN", + "to": "l2726983" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673343b", + "length": "50.0000", + "name": "tpx_tpx21470122b0", + "phases": "BS", + "to": "sx2673343b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047483", + "length": "261.1153", + "name": "line_ln6259987-1", + "phases": "ABCN", + "to": "m1047480" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728038a", + "length": "50.0000", + "name": "tpx_tpx2224387019a0", + "phases": "AS", + "to": "sx3728038a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5502543-2_int", + "name": "swt_ln4625713_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q14413" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673314c", + "length": "50.0000", + "name": "tpx_tpx355778c0", + "phases": "CS", + "to": "sx2673314c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1136358", + "length": "62.3526", + "name": "line_ln5561440-3", + "phases": "CN", + "to": "l2729423" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3066811b", + "length": "50.0000", + "name": "tpx_tpx28126875b0", + "phases": "BS", + "to": "sx3066811b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047513", + "length": "20.5212", + "name": "line_ln5773033-1", + "phases": "CN", + "to": "p901913" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1027004", + "length": "478.6856", + "name": "line_ln5986923-1", + "phases": "BN", + "to": "l2897765" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122810b", + "length": "50.0000", + "name": "tpx_tpx323242b0", + "phases": "BS", + "to": "sx3122810b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2785529", + "name": "xf_t5355943c", + "phases": "CS", + "to": "x2785529c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3216351", + "length": "103.9953", + "name": "line_ln5986937-1", + "phases": "AN", + "to": "l2879081" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3216351", + "name": "xf_t21398815a", + "phases": "AS", + "to": "x3216351a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3178975b", + "length": "50.0000", + "name": "tpx_tpx321845b0", + "phases": "BS", + "to": "sx3178975b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m3037538", + "length": "8.2780", + "name": "line_ln6167751-6", + "phases": "CN", + "to": "l3027133" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2801902b", + "length": "50.0000", + "name": "tpx_tpx226194002b0", + "phases": "BS", + "to": "sx2801902b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069514", + "length": "23.7761", + "name": "line_ln6171506-1", + "phases": "AN", + "to": "p827548" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2879087a", + "length": "50.0000", + "name": "tpx_tpx21399762a0", + "phases": "CS", + "to": "sx2879087a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2879087", + "name": "xf_t21399762a", + "phases": "CS", + "to": "x2879087a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2954361b", + "length": "50.0000", + "name": "tpx_tpx21383494b0", + "phases": "BS", + "to": "sx2954361b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2991933c", + "length": "50.0000", + "name": "tpx_tpx355433c0", + "phases": "CS", + "to": "sx2991933c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766747a", + "length": "50.0000", + "name": "tpx_tpx391989a0", + "phases": "AS", + "to": "sx2766747a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879075a", + "length": "50.0000", + "name": "tpx_tpx337724a0", + "phases": "AS", + "to": "sx2879075a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1136996", + "length": "45.5437", + "name": "line_ln5867683-3", + "phases": "ABCN", + "to": "m1047649" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal1/0_tpx_ln6411371-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047649", + "length": "79.0974", + "name": "line_ln6411371-1", + "phases": "ABCN", + "to": "l2973153" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx6_wpal6_wpal_ln6108128-2", + "continuous_rating_C": "115.00", + "emergency_rating_C": "115.00", + "from": "m1047649", + "length": "20.0682", + "name": "line_ln6108128-2", + "phases": "CN", + "to": "n1136997" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct75C", + "from": "l3122814", + "name": "xf_t5338899c", + "phases": "CS", + "to": "x3122814c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2859391b", + "length": "50.0000", + "name": "tpx_tpx227989724b0", + "phases": "BS", + "to": "sx2859391b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3235258", + "name": "xf_t5293652b", + "phases": "BS", + "to": "x3235258b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2859391", + "name": "xf_t227989724b", + "phases": "BS", + "to": "x2859391b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2948732b", + "length": "50.0000", + "name": "tpx_tpx225571845b0", + "phases": "BS", + "to": "sx2948732b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3010585", + "name": "xf_t5294810a", + "phases": "CS", + "to": "x3010585a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l3645811", + "length": "18.7425", + "name": "line_ln81353936-3", + "phases": "C", + "to": "193-103041" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "221-559682", + "length": "43.8021", + "name": "line_ln81354564-10", + "phases": "C", + "to": "n1140525" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "n1140525", + "length": "209.6262", + "name": "line_ln81354564-11", + "phases": "C", + "to": "l3645809" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047435", + "length": "151.1237", + "name": "line_ln5863824-1", + "phases": "AN", + "to": "l2970841" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3066830", + "length": "438.1156", + "name": "line_ln6350570-1", + "phases": "BN", + "to": "l3197660" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p1121283", + "length": "10.6117", + "name": "line_ln81354564-4", + "phases": "C", + "to": "221-559682" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047483", + "length": "25.6840", + "name": "line_ln5958701-1", + "phases": "CN", + "to": "p827505" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3010560", + "length": "106.9941", + "name": "line_ln6169246-1", + "phases": "ABCN", + "to": "m1047483" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3048221", + "name": "xf_t21399305a", + "phases": "AS", + "to": "x3048221a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2954348", + "length": "255.8138", + "name": "line_ln5562926-1", + "phases": "AN", + "to": "l2841615" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2876798", + "name": "xf_t226193745b", + "phases": "BS", + "to": "x2876798b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1147866", + "length": "103.1191", + "name": "line_ln6201702-2", + "phases": "AN", + "to": "m1026713" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3122837", + "length": "494.6796", + "name": "line_ln5744359-1", + "phases": "CN", + "to": "l3048222" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673308b", + "length": "50.0000", + "name": "tpx_tpx337653b0", + "phases": "BS", + "to": "sx2673308b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069629", + "length": "479.9941", + "name": "line_ln5894218-1", + "phases": "BN", + "to": "m1069640" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2727008", + "length": "614.1295", + "name": "line_ln6440071-1", + "phases": "BN", + "to": "m1069629" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3021569", + "length": "519.9970", + "name": "line_ln6496337-2", + "phases": "BN", + "to": "l3315860" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026891", + "length": "30.9474", + "name": "line_ln6169249-2", + "phases": "CN", + "to": "n1147863" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160123a", + "length": "50.0000", + "name": "tpx_tpx21015706a0", + "phases": "AS", + "to": "sx3160123a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069515", + "length": "150.1989", + "name": "line_ln5835160-1", + "phases": "ABCN", + "to": "m1069514" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027114", + "length": "204.6812", + "name": "line_ln5803300-1", + "phases": "AN", + "to": "l2876812" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2876812", + "length": "233.9652", + "name": "line_ln6106582-1", + "phases": "AN", + "to": "l2970811" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2876812", + "name": "xf_t5321880a", + "phases": "AS", + "to": "x2876812a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026857", + "length": "273.7427", + "name": "line_ln5651961-1", + "phases": "AN", + "to": "l2973165" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2876846", + "length": "954.6560", + "name": "line_ln5531325-1", + "phases": "BN", + "to": "l3048203" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1136667", + "length": "115.3725", + "name": "line_ln5863704-3", + "phases": "ABCN", + "to": "196-29519" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009742", + "length": "39.2541", + "name": "line_ln6076268-1", + "phases": "ABCN", + "to": "p901972" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2916599", + "name": "xf_t5356015a", + "phases": "AS", + "to": "x2916599a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx6_wpal6_wpal_ln6108128-2", + "continuous_rating_C": "115.00", + "emergency_rating_C": "115.00", + "from": "n1136997", + "length": "82.9683", + "name": "line_ln6108128-3", + "phases": "CN", + "to": "l3104123" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047786", + "length": "207.1650", + "name": "line_ln5804797-1", + "phases": "BN", + "to": "m1026969" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047786", + "length": "228.0444", + "name": "line_ln6505940-2", + "phases": "BN", + "to": "l3048207" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2691938", + "length": "145.1821", + "name": "line_ln6169242-1", + "phases": "BN", + "to": "m1009840" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "196-29519", + "length": "112.2456", + "name": "line_ln6383460-1", + "phases": "ABCN", + "to": "l3066815" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066816a", + "length": "50.0000", + "name": "tpx_tpx21398676a0", + "phases": "AS", + "to": "sx3066816a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3066816", + "name": "xf_t21398676a", + "phases": "AS", + "to": "x3066816a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2673311a", + "length": "50.0000", + "name": "tpx_tpx21397029a0", + "phases": "AS", + "to": "sx2673311a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2879074", + "length": "242.9692", + "name": "line_ln5714050-1", + "phases": "AN", + "to": "l3122820" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2879074", + "name": "xf_t5310560a", + "phases": "AS", + "to": "x2879074a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026783", + "length": "58.7806", + "name": "line_ln5532754-1", + "phases": "ABCN", + "to": "m1026780" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026780", + "length": "351.2907", + "name": "line_ln6290215-1", + "phases": "ABCN", + "to": "m1026774" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2822872", + "name": "xf_t5338950b", + "phases": "BS", + "to": "x2822872b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3197632", + "name": "xf_t5323266b", + "phases": "BS", + "to": "x3197632b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026997", + "length": "197.8808", + "name": "line_ln5653488-1", + "phases": "ABCN", + "to": "m1027000" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2766716", + "name": "xf_t5337713c", + "phases": "CS", + "to": "x2766716c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2973161", + "name": "xf_t5293592a", + "phases": "AS", + "to": "x2973161a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026954", + "length": "691.4081", + "name": "line_ln5683818-1", + "phases": "ABCN", + "to": "l2804256" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026950", + "length": "345.7933", + "name": "line_ln6350538-1", + "phases": "ABCN", + "to": "m1026954" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026chp-2", + "length": "408.4581", + "name": "line_ln5002chp-1", + "phases": "ABCN", + "to": "m1026chp-3" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026874", + "length": "341.4809", + "name": "line_ln6229799-1", + "phases": "AN", + "to": "l3197638" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p901972", + "length": "295.5487", + "name": "line_ln5954983-1", + "phases": "ABCN", + "to": "m1009726" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2746587c", + "length": "50.0000", + "name": "tpx_tpx227653310c0", + "phases": "CS", + "to": "sx2746587c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069504", + "length": "350.0465", + "name": "line_ln6290230-1", + "phases": "ABCN", + "to": "m1069500" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027109", + "length": "219.7670", + "name": "line_ln6379372-1", + "phases": "AN", + "to": "l3101788" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122847a", + "length": "50.0000", + "name": "tpx_tpx21483138a0", + "phases": "CS", + "to": "sx3122847a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3122847", + "name": "xf_t21483138a", + "phases": "CS", + "to": "x3122847a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6108141-1_int", + "name": "swt_v9111_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e206209" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1140518", + "length": "131.8875", + "name": "line_ln5651977-4", + "phases": "AN", + "to": "l2764403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3122837", + "name": "xf_t5355432c", + "phases": "CS", + "to": "x3122837c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026857", + "length": "28.0186", + "name": "line_ln6228278-1", + "phases": "AN", + "to": "m1026859" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p901912", + "length": "122.7824", + "name": "line_ln6349077-1", + "phases": "BN", + "to": "l3195365" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3197654", + "name": "xf_t21382992a", + "phases": "AS", + "to": "x3197654a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841631c", + "length": "50.0000", + "name": "tpx_tpx391976c0", + "phases": "CS", + "to": "sx2841631c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047434", + "length": "275.1566", + "name": "line_ln5472364-1", + "phases": "AN", + "to": "m1047435" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047433", + "length": "300.0985", + "name": "line_ln5472363-1", + "phases": "AN", + "to": "m1047434" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009827", + "length": "285.8982", + "name": "line_ln5623390-1", + "phases": "BN", + "to": "m1009832" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m3763624", + "length": "32.6906", + "name": "line_ln81354563-2", + "phases": "C", + "to": "p1121283" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3047058a", + "length": "50.0000", + "name": "tpx_tpx227902981a0", + "phases": "AS", + "to": "sx3047058a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3047058", + "name": "xf_t227902981a", + "phases": "AS", + "to": "x3047058a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841621c", + "length": "50.0000", + "name": "tpx_tpx338910c0", + "phases": "CS", + "to": "sx2841621c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2879067", + "name": "xf_t21380616a", + "phases": "AS", + "to": "x2879067a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010011", + "length": "265.9987", + "name": "line_ln6106584-1", + "phases": "AN", + "to": "m1010008" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2860482", + "length": "2024.8548", + "name": "line_ln5744330-1", + "phases": "AN", + "to": "l3254204" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5683000-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2841000", + "length": "196.2395", + "name": "line_ln6128000-1", + "phases": "AN", + "to": "l2841648" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2729429", + "length": "388.5133", + "name": "line_ln5895807-1", + "phases": "AN", + "to": "l3197647" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1142109", + "length": "229.6139", + "name": "line_ln5898059-2", + "phases": "AN", + "to": "l2729429" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "221-240991", + "length": "660.3915", + "name": "line_ln8939783-1", + "phases": "A", + "to": "l3066817" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3141401", + "name": "xf_t5338970a", + "phases": "AS", + "to": "x3141401a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047773", + "length": "221.5927", + "name": "line_ln6320333-1", + "phases": "BN", + "to": "l2973152" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2973152", + "name": "xf_t5323253b", + "phases": "BS", + "to": "x2973152b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2691944a", + "length": "50.0000", + "name": "tpx_tpx321838a0", + "phases": "AS", + "to": "sx2691944a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897765b", + "length": "50.0000", + "name": "tpx_tpx323243b0", + "phases": "BS", + "to": "sx2897765b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216123a", + "length": "50.0000", + "name": "tpx_tpx338926a0", + "phases": "AS", + "to": "sx3216123a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047812", + "length": "71.6005", + "name": "line_ln6137086-2", + "phases": "BN", + "to": "m4350438" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2973171", + "name": "xf_t5339012b", + "phases": "BS", + "to": "x2973171b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1134471", + "length": "243.6564", + "name": "line_ln6137084-2", + "phases": "AN", + "to": "l2839331" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085390b", + "length": "50.0000", + "name": "tpx_tpx321848b0", + "phases": "BS", + "to": "sx3085390b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026773", + "length": "101.2386", + "name": "line_ln5652983-1", + "phases": "CN", + "to": "m1026777" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6077791-3_int", + "name": "swt_ln0077781_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1047522" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804256b", + "length": "50.0000", + "name": "tpx_tpx321840b0", + "phases": "BS", + "to": "sx2804256b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2804256", + "name": "xf_t5321840b", + "phases": "BS", + "to": "x2804256b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2954344c", + "length": "50.0000", + "name": "tpx_tpx338959c0", + "phases": "CS", + "to": "sx2954344c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026774", + "length": "391.3442", + "name": "line_ln6077782-1", + "phases": "ABCN", + "to": "m1026769" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973152b", + "length": "50.0000", + "name": "tpx_tpx323253b0", + "phases": "BS", + "to": "sx2973152b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3066804", + "name": "xf_t21380599a", + "phases": "AS", + "to": "x3066804a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2879063", + "name": "xf_t5337646b", + "phases": "BS", + "to": "x2879063b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047792", + "length": "1213.3654", + "name": "line_ln6349052-1", + "phases": "BN", + "to": "l2876846" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1141475", + "length": "26.1401", + "name": "line_ln5502536-3", + "phases": "CN", + "to": "m1009655" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p827511", + "length": "38.9976", + "name": "line_ln6140775-4", + "phases": "CN", + "to": "n1140527" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1140527", + "length": "462.6533", + "name": "line_ln6140775-5", + "phases": "CN", + "to": "l3342743" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069469", + "length": "27.1370", + "name": "line_ln5683856-2", + "phases": "AN", + "to": "n1139263" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069469", + "length": "70.0389", + "name": "line_ln5683813-1", + "phases": "AN", + "to": "m1069467" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991939b", + "length": "50.0000", + "name": "tpx_tpx337652b0", + "phases": "BS", + "to": "sx2991939b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2783231", + "name": "xf_t226193886b", + "phases": "BS", + "to": "x2783231b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160115b", + "length": "50.0000", + "name": "tpx_tpx338994b0", + "phases": "BS", + "to": "sx3160115b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047795", + "length": "180.4526", + "name": "line_ln5744353-1", + "phases": "BN", + "to": "l3160117" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3160117", + "name": "xf_t21357901b", + "phases": "BS", + "to": "x3160117b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026709", + "length": "18.8611", + "name": "line_ln5655685-1", + "phases": "CN", + "to": "p827561" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069730", + "length": "117.5775", + "name": "line_ln5636753-1", + "phases": "BN", + "to": "l3159037" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l3029506", + "name": "xf_t5338930b", + "phases": "BS", + "to": "x3029506b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2691936", + "name": "xf_t5356009a", + "phases": "AS", + "to": "x2691936a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2841648", + "name": "xf_t5337720a", + "phases": "AS", + "to": "x2841648a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3177665", + "name": "xf_t227731863a", + "phases": "AS", + "to": "x3177665a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026830", + "length": "172.1633", + "name": "line_ln5502528-1", + "phases": "ABCN", + "to": "l2879070" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2879070", + "name": "xf_t5338934b", + "phases": "BS", + "to": "x2879070b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1137002", + "length": "303.4152", + "name": "line_ln6258435-3", + "phases": "AN", + "to": "m1047707" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1147863", + "length": "14.4209", + "name": "line_ln6169249-3", + "phases": "CN", + "to": "l3122817" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3156034", + "length": "195.1084", + "name": "line_ln5739003-1", + "phases": "AN", + "to": "l3066821" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026829", + "length": "449.6545", + "name": "line_ln5531256-1", + "phases": "ABCN", + "to": "m1026824" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729414b", + "length": "50.0000", + "name": "tpx_tpx293655b0", + "phases": "BS", + "to": "sx2729414b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2935553", + "name": "xf_t5323247b", + "phases": "BS", + "to": "x2935553b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2766746", + "name": "xf_t5321886c", + "phases": "CS", + "to": "x2766746c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026848", + "length": "222.8653", + "name": "line_ln5653461-1", + "phases": "AN", + "to": "m1026847" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3235241", + "length": "505.8775", + "name": "line_ln5683805-1", + "phases": "CN", + "to": "l2691941" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2691941", + "name": "xf_t5321887c", + "phases": "CS", + "to": "x2691941c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2822869a", + "length": "50.0000", + "name": "tpx_tpx338942a0", + "phases": "AS", + "to": "sx2822869a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2822869", + "name": "xf_t5338942a", + "phases": "AS", + "to": "x2822869a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026767", + "length": "144.6877", + "name": "line_ln5500957-1", + "phases": "ABCN", + "to": "l3216346" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1027023", + "length": "246.8572", + "name": "line_ln5865237-1", + "phases": "BN", + "to": "l3122815" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1136660", + "length": "129.9708", + "name": "line_ln5532752-3", + "phases": "AN", + "to": "l3010568" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2916620", + "name": "xf_t5338977a", + "phases": "AS", + "to": "x2916620a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2897765", + "length": "374.7407", + "name": "line_ln5835129-1", + "phases": "BN", + "to": "m1047819" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2933120c", + "length": "50.0000", + "name": "tpx_tpx226192890c0", + "phases": "CS", + "to": "sx2933120c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026777", + "length": "202.1688", + "name": "line_ln5773980-1", + "phases": "CN", + "to": "l3233353" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3253995c", + "length": "50.0000", + "name": "tpx_tpx21396815c0", + "phases": "CS", + "to": "sx3253995c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069464", + "length": "263.5708", + "name": "line_ln5593251-1", + "phases": "ABCN", + "to": "m1069461" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069461", + "length": "160.8152", + "name": "line_ln6258443-1", + "phases": "ABCN", + "to": "l2876798" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766723a", + "length": "50.0000", + "name": "tpx_tpx391986a0", + "phases": "AS", + "to": "sx2766723a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3197652", + "name": "xf_t5339021a", + "phases": "AS", + "to": "x3197652a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047430", + "length": "547.2258", + "name": "line_ln5479790-1", + "phases": "AN", + "to": "l2916234" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2897790", + "length": "231.0816", + "name": "line_ln5744351-1", + "phases": "CN", + "to": "l2935566" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2897790", + "name": "xf_t21357984c", + "phases": "CS", + "to": "x2897790c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2746587", + "name": "xf_t227653310c", + "phases": "CS", + "to": "x2746587c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1140825", + "length": "66.9421", + "name": "line_ln5895816-3", + "phases": "ABCN", + "to": "l3216368" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026706", + "length": "49.6115", + "name": "line_ln5895816-2", + "phases": "ABCN", + "to": "n1140825" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1139263", + "length": "85.2588", + "name": "line_ln5683856-3", + "phases": "AN", + "to": "l3048227" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649306a", + "length": "50.0000", + "name": "tpx_tpx2224238167a0", + "phases": "AS", + "to": "sx3649306a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3235267", + "name": "xf_t5321892c", + "phases": "CS", + "to": "x3235267c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1027043", + "length": "144.9393", + "name": "line_ln5956466-1", + "phases": "ABCN", + "to": "m1027055" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3215340a", + "length": "50.0000", + "name": "tpx_tpx228057846a0", + "phases": "AS", + "to": "sx3215340a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026986", + "length": "498.8567", + "name": "line_ln6260021-1", + "phases": "ABCN", + "to": "m1026997" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047828", + "length": "320.4542", + "name": "line_ln5623396-1", + "phases": "BN", + "to": "l2710513" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2710513", + "name": "xf_t5325245b", + "phases": "BS", + "to": "x2710513b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2822869", + "length": "310.9686", + "name": "line_ln5502538-1", + "phases": "ABCN", + "to": "m1026808" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3085401a", + "length": "50.0000", + "name": "tpx_tpx28127253a0", + "phases": "AS", + "to": "sx3085401a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1139550", + "length": "79.6687", + "name": "line_ln6017301-3", + "phases": "AN", + "to": "l3197639" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026785", + "length": "97.5781", + "name": "line_ln6255773-1", + "phases": "ABCN", + "to": "m1026783" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216351a", + "length": "50.0000", + "name": "tpx_tpx21398815a0", + "phases": "AS", + "to": "sx3216351a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026948", + "length": "29.6163", + "name": "line_ln5593227-1", + "phases": "BN", + "to": "m1026949" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "e182725", + "length": "408.1424", + "name": "line_ln6292464-1", + "phases": "BN", + "to": "m1026948" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2729207c", + "length": "50.0000", + "name": "tpx_tpx2212168874c0", + "phases": "CS", + "to": "sx2729207c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l3645809", + "length": "484.3841", + "name": "line_ln81354564-8", + "phases": "C", + "to": "l3645810" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p827503", + "length": "101.2816", + "name": "line_ln5928544-2", + "phases": "CN", + "to": "n1137994" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047623", + "length": "194.1592", + "name": "line_ln6167816-1", + "phases": "AN", + "to": "l3008279" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3008279", + "length": "304.0445", + "name": "line_ln5712578-1", + "phases": "AN", + "to": "l2785537" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047836", + "length": "966.1595", + "name": "line_ln5926289-1", + "phases": "BN", + "to": "l3254203" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047737", + "length": "531.9166", + "name": "line_ln5742898-1", + "phases": "ABCN", + "to": "l3027157" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160109b", + "length": "50.0000", + "name": "tpx_tpx338947b0", + "phases": "BS", + "to": "sx3160109b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3251807", + "name": "xf_t225673440a", + "phases": "AS", + "to": "x3251807a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254206b", + "length": "50.0000", + "name": "tpx_tpx355592b0", + "phases": "BS", + "to": "sx3254206b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2710530", + "name": "xf_t21381118b", + "phases": "BS", + "to": "x2710530b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235268c", + "length": "50.0000", + "name": "tpx_tpx28099529c0", + "phases": "CS", + "to": "sx3235268c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766719a", + "length": "50.0000", + "name": "tpx_tpx21357865a0", + "phases": "AS", + "to": "sx2766719a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2766719", + "name": "xf_t21357865a", + "phases": "AS", + "to": "x2766719a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026969", + "length": "298.5116", + "name": "line_ln6380808-1", + "phases": "BN", + "to": "l2879066" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066829c", + "length": "50.0000", + "name": "tpx_tpx321894c0", + "phases": "CS", + "to": "sx3066829c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748144a", + "length": "50.0000", + "name": "tpx_tpx338984a0", + "phases": "AS", + "to": "sx2748144a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3066808", + "name": "xf_t5337654c", + "phases": "CS", + "to": "x3066808c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026852", + "length": "26.5131", + "name": "line_ln5774469-1", + "phases": "CN", + "to": "l2785529" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2764403", + "length": "193.1124", + "name": "line_ln5651977-2", + "phases": "AN", + "to": "m1047623" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2970811", + "length": "197.2126", + "name": "line_ln5924720-2", + "phases": "AN", + "to": "m1027121" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047792", + "length": "313.4731", + "name": "line_ln5653481-1", + "phases": "BN", + "to": "l2860500" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2860500", + "name": "xf_t5323274b", + "phases": "BS", + "to": "x2860500b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2973166c", + "length": "50.0000", + "name": "tpx_tpx293665c0", + "phases": "CS", + "to": "sx2973166c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2954338b", + "length": "50.0000", + "name": "tpx_tpx355618b0", + "phases": "BS", + "to": "sx2954338b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047526", + "length": "36.6677", + "name": "line_ln6422809-3", + "phases": "ABCN", + "to": "n1136666" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104145b", + "length": "50.0000", + "name": "tpx_tpx339011b0", + "phases": "BS", + "to": "sx3104145b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026898", + "length": "9.5487", + "name": "line_ln6229832-1", + "phases": "CN", + "to": "l3197661" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5742811-3_int", + "name": "swt_ln0742811_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "n1137992" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047409", + "length": "418.4975", + "name": "line_ln6138636-1", + "phases": "AN", + "to": "l2841648" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3047058", + "length": "495.1403", + "name": "line_ln6153058-1", + "phases": "ABCN", + "to": "l3047059" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047835", + "length": "635.6389", + "name": "line_ln5926290-1", + "phases": "BN", + "to": "m1047836" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3216336", + "length": "219.6505", + "name": "line_ln5926286-1", + "phases": "AN", + "to": "l2691936" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104118c", + "length": "50.0000", + "name": "tpx_tpx321890c0", + "phases": "CS", + "to": "sx3104118c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047794", + "length": "289.2147", + "name": "line_ln5502559-1", + "phases": "BN", + "to": "m1047792" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160102b", + "length": "50.0000", + "name": "tpx_tpx355780b0", + "phases": "BS", + "to": "sx3160102b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047752", + "length": "234.0867", + "name": "line_ln5926298-1", + "phases": "AN", + "to": "m1047750" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026961", + "length": "281.3834", + "name": "line_ln6262263-1", + "phases": "AN", + "to": "l2710516" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3120376a", + "length": "50.0000", + "name": "tpx_tpx226163467a0", + "phases": "AS", + "to": "sx3120376a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3178973a", + "length": "50.0000", + "name": "tpx_tpx21149420a0", + "phases": "AS", + "to": "sx3178973a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047794", + "length": "435.2080", + "name": "line_ln5593248-1", + "phases": "BN", + "to": "m1047796" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047796", + "length": "400.9391", + "name": "line_ln5502527-1", + "phases": "BN", + "to": "l3010562" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m3763619", + "length": "138.0636", + "name": "line_ln5532748-6", + "phases": "ABCN", + "to": "m1026830" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026830", + "length": "9.0484", + "name": "line_ln5928545-1", + "phases": "CN", + "to": "p827511" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2935553", + "length": "429.8725", + "name": "line_ln5593223-1", + "phases": "BN", + "to": "m1026987" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2673319", + "length": "109.2091", + "name": "line_ln5591284-1", + "phases": "ABCN", + "to": "m1026658" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026823", + "length": "214.1239", + "name": "line_ln6047598-1", + "phases": "CN", + "to": "l2879087" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2748125", + "name": "xf_t5338962c", + "phases": "CS", + "to": "x2748125c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3216123", + "length": "342.0485", + "name": "line_ln5867683-2", + "phases": "ABCN", + "to": "n1136996" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748132a", + "length": "50.0000", + "name": "tpx_tpx302637a0", + "phases": "AS", + "to": "sx2748132a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235248c", + "length": "50.0000", + "name": "tpx_tpx321861c0", + "phases": "CS", + "to": "sx3235248c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2690941", + "name": "xf_t5323387b", + "phases": "BS", + "to": "x2690941b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027071", + "length": "48.3406", + "name": "line_ln5714043-1", + "phases": "CN", + "to": "l3235241" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710530b", + "length": "50.0000", + "name": "tpx_tpx21381118b0", + "phases": "BS", + "to": "sx2710530b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2935566", + "name": "xf_t5441854c", + "phases": "CS", + "to": "x2935566c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2954355a", + "length": "50.0000", + "name": "tpx_tpx293672a0", + "phases": "AS", + "to": "sx2954355a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069489", + "length": "242.2622", + "name": "line_ln5865228-1", + "phases": "CN", + "to": "l2933120" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3066830", + "name": "xf_t21469960b", + "phases": "BS", + "to": "x3066830b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2729414", + "name": "xf_t5293655c", + "phases": "CS", + "to": "x2729414c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916618b", + "length": "50.0000", + "name": "tpx_tpx323283b0", + "phases": "BS", + "to": "sx2916618b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710544a", + "length": "50.0000", + "name": "tpx_tpx21482279a0", + "phases": "AS", + "to": "sx2710544a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2897765", + "name": "xf_t5323243b", + "phases": "BS", + "to": "x2897765b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5682346-3_int", + "name": "swt_g9343_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e206211" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3102793b", + "length": "50.0000", + "name": "tpx_tpx227734175b0", + "phases": "BS", + "to": "sx3102793b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3027157", + "length": "362.4135", + "name": "line_ln6076346-1", + "phases": "ABCN", + "to": "l2973155" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026987", + "length": "187.1850", + "name": "line_ln5865229-1", + "phases": "BN", + "to": "m1026990" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2710517", + "name": "xf_t5310568a", + "phases": "AS", + "to": "x2710517a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710511a", + "length": "50.0000", + "name": "tpx_tpx21357515a0", + "phases": "AS", + "to": "sx2710511a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026702", + "length": "163.7076", + "name": "line_ln5653470-1", + "phases": "ABCN", + "to": "l2729414" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2729414", + "name": "xf_t5293655b", + "phases": "BS", + "to": "x2729414b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009715", + "length": "263.6724", + "name": "line_ln6380825-1", + "phases": "ABCN", + "to": "m1009705" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710514b", + "length": "50.0000", + "name": "tpx_tpx323267b0", + "phases": "BS", + "to": "sx2710514b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2710514", + "name": "xf_t5323267b", + "phases": "BS", + "to": "x2710514b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026657", + "length": "19.7194", + "name": "line_ln5655683-1", + "phases": "AN", + "to": "m1026656" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785531a", + "length": "50.0000", + "name": "tpx_tpx21399809a0", + "phases": "CS", + "to": "sx2785531a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2933120", + "name": "xf_t226192890c", + "phases": "CS", + "to": "x2933120c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p828359", + "length": "582.3726", + "name": "line_ln8961800-1", + "phases": "C", + "to": "l2878848" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "n1140817", + "length": "51.8058", + "name": "line_ln5926310-3", + "phases": "ABCN", + "to": "l3235258" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1047613", + "length": "14.8440", + "name": "line_ln8961758-1", + "phases": "C", + "to": "p828359" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2972930", + "name": "xf_t5338927a", + "phases": "AS", + "to": "x2972930a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3649298", + "name": "xf_t2224237384a", + "phases": "AS", + "to": "x3649298a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047699", + "length": "263.1622", + "name": "line_ln5683816-1", + "phases": "ABCN", + "to": "l2935554" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3197661", + "length": "222.9381", + "name": "line_ln6229832-2", + "phases": "CN", + "to": "l3122848" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069738", + "length": "323.7003", + "name": "line_ln6212942-1", + "phases": "BN", + "to": "l2690941" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3159037", + "length": "162.1578", + "name": "line_ln5727681-1", + "phases": "BN", + "to": "m1069738" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3037537", + "length": "560.0000", + "name": "line_ln5951197-2", + "phases": "BN", + "to": "l3231269" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3231269", + "name": "xf_t225684682b", + "phases": "BS", + "to": "x3231269b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026706", + "length": "36.5052", + "name": "line_ln5532788-2", + "phases": "CN", + "to": "n1140822" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3122827", + "name": "xf_t5293673a", + "phases": "AS", + "to": "x3122827a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2954344", + "name": "xf_t5338959c", + "phases": "CS", + "to": "x2954344c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710508b", + "length": "50.0000", + "name": "tpx_tpx323241b0", + "phases": "BS", + "to": "sx2710508b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m3763619", + "length": "47.1994", + "name": "line_ln6896673-6", + "phases": "ABCN", + "to": "m3763624" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069548", + "length": "67.5869", + "name": "line_ln5561440-2", + "phases": "CN", + "to": "n1136358" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2935554", + "length": "143.9965", + "name": "line_ln6169247-1", + "phases": "ABCN", + "to": "m1047713" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822873b", + "length": "50.0000", + "name": "tpx_tpx338999b0", + "phases": "BS", + "to": "sx2822873b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2822873", + "name": "xf_t5338999b", + "phases": "BS", + "to": "x2822873b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3085401", + "name": "xf_t28127253a", + "phases": "AS", + "to": "x3085401a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3727708a", + "length": "50.0000", + "name": "tpx_tpx2224386815a0", + "phases": "AS", + "to": "sx3727708a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3177665a", + "length": "50.0000", + "name": "tpx_tpx227731863a0", + "phases": "AS", + "to": "sx3177665a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026861", + "length": "534.5932", + "name": "line_ln6169257-1", + "phases": "ABCN", + "to": "m1026858" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3197624", + "length": "455.1837", + "name": "line_ln6380804-1", + "phases": "BN", + "to": "m1027101" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026808", + "length": "15.4419", + "name": "line_ln6229803-2", + "phases": "CN", + "to": "n1140520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710513b", + "length": "50.0000", + "name": "tpx_tpx325245b0", + "phases": "BS", + "to": "sx2710513b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673313b", + "length": "50.0000", + "name": "tpx_tpx321853b0", + "phases": "BS", + "to": "sx2673313b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3102793", + "name": "xf_t227734175b", + "phases": "BS", + "to": "x3102793b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027071", + "length": "218.1548", + "name": "line_ln5562957-1", + "phases": "CN", + "to": "l3235267" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047615", + "length": "6.5023", + "name": "line_ln6298585-2", + "phases": "ABCN", + "to": "l3216123" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3216123", + "name": "xf_t5338926a", + "phases": "AS", + "to": "x3216123a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973149b", + "length": "50.0000", + "name": "tpx_tpx325472b0", + "phases": "BS", + "to": "sx2973149b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2973149", + "name": "xf_t5325472b", + "phases": "BS", + "to": "x2973149b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122837c", + "length": "50.0000", + "name": "tpx_tpx355432c0", + "phases": "CS", + "to": "sx3122837c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3197638", + "name": "xf_t21396959a", + "phases": "AS", + "to": "x3197638a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3178973", + "name": "xf_t21149420a", + "phases": "AS", + "to": "x3178973a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_wpalxx2_wpal_ln6409800-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1009726", + "length": "128.3298", + "name": "line_ln6409800-1", + "phases": "AN", + "to": "l3101789" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3254204", + "name": "xf_t5337715a", + "phases": "AS", + "to": "x3254204a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069504", + "length": "148.7936", + "name": "line_ln6138623-1", + "phases": "AN", + "to": "l3197654" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047828", + "length": "66.9504", + "name": "line_ln6199515-1", + "phases": "BN", + "to": "l2954346" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3085397", + "name": "xf_t5323261b", + "phases": "BS", + "to": "x3085397b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2785531", + "name": "xf_t21399809a", + "phases": "CS", + "to": "x2785531a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766730b", + "length": "50.0000", + "name": "tpx_tpx355359b0", + "phases": "BS", + "to": "sx2766730b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879074a", + "length": "50.0000", + "name": "tpx_tpx310560a0", + "phases": "AS", + "to": "sx2879074a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2948732", + "name": "xf_t225571845b", + "phases": "BS", + "to": "x2948732b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973150a", + "length": "50.0000", + "name": "tpx_tpx21380528a0", + "phases": "AS", + "to": "sx2973150a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027109", + "length": "205.3368", + "name": "line_ln6379373-1", + "phases": "AN", + "to": "m1027114" + }, + "children": [], + "name": "overhead_line" + } + ], + "schedules": [] +} \ No newline at end of file diff --git a/local-server/tests/golden/8500__ieee8500.json b/local-server/tests/golden/8500__ieee8500.json new file mode 100644 index 00000000..52a9039f --- /dev/null +++ b/local-server/tests/golden/8500__ieee8500.json @@ -0,0 +1,156834 @@ +{ + "classes": [], + "clock": { + "starttime": "2001-08-01 12:00:00 PST", + "stoptime": "2001-08-01 12:00:35 PST", + "timezone": "PST+8PDT" + }, + "definitions": [ + { + "name": "rotor_convergence", + "value": "0.00000000000001" + }, + { + "name": "VSOURCE", + "value": "69715.065" + } + ], + "directives": [ + { + "name": "suppress_repeat_messages", + "value": "1" + }, + { + "name": "relax_naming_rules", + "value": "1" + }, + { + "name": "profiler", + "value": "1" + }, + { + "name": "pauseatexit", + "value": "1" + }, + { + "name": "minimum_timestep", + "value": "35" + }, + { + "name": "double_format", + "value": "%+.12lg" + }, + { + "name": "complex_format", + "value": "%+.12lg%+.12lg%c" + }, + { + "name": "complex_output_format", + "value": "POLAR_DEG" + }, + { + "name": "deltamode_timestep", + "value": "100000000" + }, + { + "name": "deltamode_maximumtime", + "value": "350000000" + }, + { + "name": "deltamode_iteration_limit", + "value": "10" + }, + { + "name": "maximum_synctime", + "value": "6400" + } + ], + "includes": [], + "modules": [ + { + "attributes": {}, + "name": "tape" + }, + { + "attributes": { + "enable_subsecond_models": "true", + "maximum_event_length": "1800000", + "report_event_log": "false" + }, + "name": "reliability" + }, + { + "attributes": { + "all_powerflow_delta": "true", + "deltamode_timestep": "1 ms", + "enable_subsecond_models": "true", + "line_capacitance": "true", + "lu_solver": "KLU", + "solver_method": "NR" + }, + "name": "powerflow" + }, + { + "attributes": {}, + "name": "connection" + }, + { + "attributes": { + "deltamode_timestep": "1 ms", + "enable_subsecond_models": "true" + }, + "name": "generators" + }, + { + "attributes": {}, + "name": "climate" + } + ], + "objects": [ + { + "attributes": { + "configure": "config/gridlabd_config.json", + "message_type": "JSON", + "name": "GLD", + "publish_period": "1" + }, + "children": [], + "name": "helics_msg" + }, + { + "attributes": { + "interpolate": "NONE", + "name": "WA-Yakima", + "tmyfile": "WA-Yakima.tmy2" + }, + "children": [], + "name": "climate" + }, + { + "attributes": { + "file": "trigger.player", + "flags": "DELTAMODE", + "name": "recorder_trigger", + "parent": "m2001-mt1", + "property": "nominal_voltage" + }, + "children": [], + "name": "player" + }, + { + "attributes": { + "file": "pow/ld_251859c0.csv", + "flags": "DELTAMODE", + "interval": "1", + "name": "recorder_ld_251859c0_Pref", + "parent": "ld_251859c0", + "property": "measured_voltage_1, measured_voltage_2, measured_voltage_12" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_A": "0.000000", + "compensator_x_setting_A": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_feeder_reg3a", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_A": "-1" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg3a", + "continuous_rating_A": "4201.39", + "emergency_rating_A": "5729.17", + "from": "regxfmr_hvmv11sub3_lsb", + "name": "reg_feeder_reg3a", + "phases": "A", + "to": "hvmv11sub3_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_A": "0.000000", + "compensator_x_setting_A": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_feeder_reg2a", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_A": "-2" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg2a", + "continuous_rating_A": "4201.39", + "emergency_rating_A": "5729.17", + "from": "regxfmr_hvmv11sub2_lsb", + "name": "reg_feeder_reg2a", + "phases": "A", + "to": "hvmv11sub2_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_B": "0.000000", + "compensator_x_setting_B": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_feeder_reg3b", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_B": "-1" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg3b", + "continuous_rating_B": "4201.39", + "emergency_rating_B": "5729.17", + "from": "regxfmr_hvmv11sub3_lsb", + "name": "reg_feeder_reg3b", + "phases": "B", + "to": "hvmv11sub3_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_A": "0.000000", + "compensator_x_setting_A": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_vreg2_a", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_A": "-7" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg2_a", + "continuous_rating_A": "1527.78", + "emergency_rating_A": "2083.33", + "from": "regxfmr_190-8593", + "name": "reg_vreg2_a", + "phases": "A", + "to": "190-8593" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_B": "0.000000", + "compensator_x_setting_B": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_vreg2_b", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_B": "-4" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg2_b", + "continuous_rating_B": "1527.78", + "emergency_rating_B": "2083.33", + "from": "regxfmr_190-8593", + "name": "reg_vreg2_b", + "phases": "B", + "to": "190-8593" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_A": "0.000000", + "compensator_x_setting_A": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_vreg3_a", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_A": "5" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg3_a", + "continuous_rating_A": "1527.78", + "emergency_rating_A": "2083.33", + "from": "regxfmr_190-8581", + "name": "reg_vreg3_a", + "phases": "A", + "to": "190-8581" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_C": "0.000000", + "compensator_x_setting_C": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_feeder_reg1c", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_C": "-3" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg1c", + "continuous_rating_C": "4201.39", + "emergency_rating_C": "5729.17", + "from": "regxfmr_hvmv11sub1_lsb", + "name": "reg_feeder_reg1c", + "phases": "C", + "to": "hvmv11sub1_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_A": "0.000000", + "compensator_x_setting_A": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_feeder_reg1a", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_A": "-3" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg1a", + "continuous_rating_A": "4201.39", + "emergency_rating_A": "5729.17", + "from": "regxfmr_hvmv11sub1_lsb", + "name": "reg_feeder_reg1a", + "phases": "A", + "to": "hvmv11sub1_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_B": "0.000000", + "compensator_x_setting_B": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_feeder_reg2b", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_B": "-2" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg2b", + "continuous_rating_B": "4201.39", + "emergency_rating_B": "5729.17", + "from": "regxfmr_hvmv11sub2_lsb", + "name": "reg_feeder_reg2b", + "phases": "B", + "to": "hvmv11sub2_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_C": "0.000000", + "compensator_x_setting_C": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_feeder_reg3c", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_C": "-2" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg3c", + "continuous_rating_C": "4201.39", + "emergency_rating_C": "5729.17", + "from": "regxfmr_hvmv11sub3_lsb", + "name": "reg_feeder_reg3c", + "phases": "C", + "to": "hvmv11sub3_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_B": "0.000000", + "compensator_x_setting_B": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_feeder_reg1b", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_B": "-3" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg1b", + "continuous_rating_B": "4201.39", + "emergency_rating_B": "5729.17", + "from": "regxfmr_hvmv11sub1_lsb", + "name": "reg_feeder_reg1b", + "phases": "B", + "to": "hvmv11sub1_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_C": "0.000000", + "compensator_x_setting_C": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_feeder_reg2c", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_C": "-3" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg2c", + "continuous_rating_C": "4201.39", + "emergency_rating_C": "5729.17", + "from": "regxfmr_hvmv11sub2_lsb", + "name": "reg_feeder_reg2c", + "phases": "C", + "to": "hvmv11sub2_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_C": "0.000000", + "compensator_x_setting_C": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_vreg4_c", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_C": "-5" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg4_c", + "continuous_rating_C": "1527.78", + "emergency_rating_C": "2083.33", + "from": "regxfmr_190-7361", + "name": "reg_vreg4_c", + "phases": "C", + "to": "190-7361" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_C": "0.000000", + "compensator_x_setting_C": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_vreg2_c", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_C": "-1" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg2_c", + "continuous_rating_C": "1527.78", + "emergency_rating_C": "2083.33", + "from": "regxfmr_190-8593", + "name": "reg_vreg2_c", + "phases": "C", + "to": "190-8593" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_B": "0.000000", + "compensator_x_setting_B": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_vreg3_b", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_B": "5" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg3_b", + "continuous_rating_B": "1527.78", + "emergency_rating_B": "2083.33", + "from": "regxfmr_190-8581", + "name": "reg_vreg3_b", + "phases": "B", + "to": "190-8581" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_A": "0.000000", + "compensator_x_setting_A": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_vreg4_a", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_A": "-1" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg4_a", + "continuous_rating_A": "1527.78", + "emergency_rating_A": "2083.33", + "from": "regxfmr_190-7361", + "name": "reg_vreg4_a", + "phases": "A", + "to": "190-7361" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_C": "0.000000", + "compensator_x_setting_C": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_vreg3_c", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_C": "4" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg3_c", + "continuous_rating_C": "1527.78", + "emergency_rating_C": "2083.33", + "from": "regxfmr_190-8581", + "name": "reg_vreg3_c", + "phases": "C", + "to": "190-8581" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_B": "0.000000", + "compensator_x_setting_B": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_vreg4_b", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_B": "-4" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg4_b", + "continuous_rating_B": "1527.78", + "emergency_rating_B": "2083.33", + "from": "regxfmr_190-7361", + "name": "reg_vreg4_b", + "phases": "B", + "to": "190-7361" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "diameter": "0.398007", + "geometric_mean_radius": "0.011417", + "name": "wire_1/0_3w_cs", + "rating.summer.continuous": "200.00", + "rating.summer.emergency": "200.00", + "rating.winter.continuous": "200.00", + "rating.winter.emergency": "200.00", + "resistance": "0.971519" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.398007", + "geometric_mean_radius": "0.004458", + "name": "wire_1/0_acsr", + "rating.summer.continuous": "260.00", + "rating.summer.emergency": "260.00", + "rating.winter.continuous": "260.00", + "rating.winter.emergency": "260.00", + "resistance": "1.040999" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.250005", + "geometric_mean_radius": "0.007000", + "name": "wire_4_wpal", + "rating.summer.continuous": "150.00", + "rating.summer.emergency": "150.00", + "rating.winter.continuous": "150.00", + "rating.winter.emergency": "150.00", + "resistance": "2.459419" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.250005", + "geometric_mean_radius": "0.004367", + "name": "wire_4_acsr", + "rating.summer.continuous": "150.00", + "rating.summer.emergency": "150.00", + "rating.winter.continuous": "150.00", + "rating.winter.emergency": "150.00", + "resistance": "2.530689" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.250005", + "geometric_mean_radius": "0.007000", + "name": "wire_4_dpx", + "rating.summer.continuous": "136.00", + "rating.summer.emergency": "136.00", + "rating.winter.continuous": "136.00", + "rating.winter.emergency": "136.00", + "resistance": "2.449900" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.447008", + "geometric_mean_radius": "0.005100", + "name": "wire_2/0_wpal", + "rating.summer.continuous": "300.00", + "rating.summer.emergency": "300.00", + "rating.winter.continuous": "300.00", + "rating.winter.emergency": "300.00", + "resistance": "0.853001" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.743014", + "geometric_mean_radius": "0.024000", + "name": "wire_397_acsr", + "rating.summer.continuous": "630.00", + "rating.summer.emergency": "630.00", + "rating.winter.continuous": "630.00", + "rating.winter.emergency": "630.00", + "resistance": "0.256999" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.743014", + "geometric_mean_radius": "0.024000", + "name": "wire_397_aac_treewire", + "rating.summer.continuous": "526.00", + "rating.summer.emergency": "526.00", + "rating.winter.continuous": "526.00", + "rating.winter.emergency": "526.00", + "resistance": "0.283008" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.316006", + "geometric_mean_radius": "0.004183", + "name": "wire_2_acsr", + "rating.summer.continuous": "200.00", + "rating.summer.emergency": "200.00", + "rating.winter.continuous": "200.00", + "rating.winter.emergency": "200.00", + "resistance": "1.625700" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.316006", + "geometric_mean_radius": "0.004183", + "name": "wire_2_wpal", + "rating.summer.continuous": "155.00", + "rating.summer.emergency": "155.00", + "rating.winter.continuous": "155.00", + "rating.winter.emergency": "155.00", + "resistance": "1.690130" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.198004", + "geometric_mean_radius": "0.003942", + "name": "wire_6_wpal", + "rating.summer.continuous": "115.00", + "rating.summer.emergency": "115.00", + "rating.winter.continuous": "115.00", + "rating.winter.emergency": "115.00", + "resistance": "3.910899" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.250005", + "geometric_mean_radius": "0.007000", + "name": "wire_4_tpx", + "rating.summer.continuous": "115.00", + "rating.summer.emergency": "115.00", + "rating.winter.continuous": "115.00", + "rating.winter.emergency": "115.00", + "resistance": "2.449900" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.398007", + "geometric_mean_radius": "0.011417", + "name": "wire_1/0_tpx", + "rating.summer.continuous": "205.00", + "rating.summer.emergency": "205.00", + "rating.winter.continuous": "205.00", + "rating.winter.emergency": "205.00", + "resistance": "0.184000" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.563010", + "geometric_mean_radius": "0.015767", + "name": "wire_4/0_tpx", + "rating.summer.continuous": "318.00", + "rating.summer.emergency": "318.00", + "rating.winter.continuous": "318.00", + "rating.winter.emergency": "318.00", + "resistance": "0.485760" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.447008", + "geometric_mean_radius": "0.005100", + "name": "wire_2/0_acsr", + "rating.summer.continuous": "300.00", + "rating.summer.emergency": "300.00", + "rating.winter.continuous": "300.00", + "rating.winter.emergency": "300.00", + "resistance": "0.853001" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "conductor_diameter": "0.368117", + "conductor_gmr": "0.011089", + "conductor_resistance": "0.970434", + "insulation_relative_permitivitty": "2.30", + "name": "cncab_1/0_al_15kv_1/3", + "neutral_diameter": "0.025197", + "neutral_gmr": "0.000819", + "neutral_resistance": "4.103827", + "neutral_strands": "6", + "outer_diameter": "1.078760" + }, + "children": [], + "name": "underground_line_conductor" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0001", + "distance_AE": "32.0006", + "distance_AN": "5.5903", + "distance_BC": "2.5000", + "distance_BE": "34.0006", + "distance_BN": "7.0001", + "distance_CE": "32.0006", + "distance_CN": "5.2202", + "distance_NE": "27.0005", + "name": "spc_3ph_h-4_acsr2_acsr2_acsr4_wpal_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5006", + "distance_AN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-4_acsrxx1/0_tpx_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5006", + "distance_BN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-x4_wpalx4_wpal_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5006", + "distance_BN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-x4_wpalx1/0_tpx_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0001", + "distance_AE": "32.0006", + "distance_AN": "5.5903", + "distance_BC": "2.5000", + "distance_BE": "34.0006", + "distance_BN": "7.0001", + "distance_CE": "32.0006", + "distance_CN": "5.2202", + "distance_NE": "27.0005", + "name": "spc_3ph_h-4_wpal4_wpal4_wpal1/0_tpx_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0001", + "distance_AE": "32.0006", + "distance_AN": "5.5903", + "distance_BC": "2.5000", + "distance_BE": "34.0006", + "distance_BN": "7.0001", + "distance_CE": "32.0006", + "distance_CN": "5.2202", + "distance_NE": "27.0005", + "name": "spc_3ph_h-4_acsr4_acsr4_acsr4_wpal_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0001", + "distance_AE": "32.0006", + "distance_AN": "5.5903", + "distance_BC": "2.5000", + "distance_BE": "34.0006", + "distance_BN": "7.0001", + "distance_CE": "32.0006", + "distance_CN": "5.2202", + "distance_NE": "27.0005", + "name": "spc_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5006", + "distance_BN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-x4_wpalx2_acsr_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5006", + "distance_CN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-xx6_wpal6_wpal_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5006", + "distance_BN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-x4_acsrx4_wpal_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5006", + "distance_CN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-xx4_wpal4_wpal_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5006", + "distance_AN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-2_acsrxx4_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5006", + "distance_BN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-x4_acsrx1/0_tpx_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5006", + "distance_BN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-x2_acsrx1/0_tpx_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5006", + "distance_BN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-x4_acsrx4_tpx_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0001", + "distance_AE": "32.0006", + "distance_AN": "5.5903", + "distance_BC": "2.5000", + "distance_BE": "34.0006", + "distance_BN": "7.0001", + "distance_CE": "32.0006", + "distance_CN": "5.2202", + "distance_NE": "27.0005", + "name": "spc_3ph_h-2_acsr2_acsr4_acsr4_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0001", + "distance_AE": "32.0006", + "distance_AN": "5.5903", + "distance_BC": "2.5000", + "distance_BE": "34.0006", + "distance_BN": "7.0001", + "distance_CE": "32.0006", + "distance_CN": "5.2202", + "distance_NE": "27.0005", + "name": "spc_3ph_h-397_acsr397_acsr397_acsr2/0_wpal_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5006", + "distance_BN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-x4_acsrx1/0_3w_cs_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "-4.0027", + "name": "spc_1p_1/0_axnj_db_A" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "-4.0027", + "name": "spc_1p_1/0_axnj_db_B" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "-4.0027", + "name": "spc_1p_1/0_axnj_db_C" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5006", + "distance_AN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-2_acsrxx4_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5006", + "distance_CN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-xx4_acsr1/0_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5006", + "distance_AN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-2_acsrxx2_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5006", + "distance_CN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-xx4_wpal4_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "0.5000", + "distance_AC": "1.0000", + "distance_AE": "-4.0027", + "distance_BC": "0.5000", + "distance_BE": "-4.0027", + "distance_CE": "-4.0027", + "name": "spc_3p_1/0_axnj_db_ABC" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5006", + "distance_AN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-4_acsrxx4_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5006", + "distance_AN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-2_acsrxx4/0_tpx_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5006", + "distance_BN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-x4_acsrx4_dpx_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5006", + "distance_CN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-xx4_acsr4_tpx_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5006", + "distance_AN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-4_acsrxx6_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5006", + "distance_BN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-x4_acsrx2_wpal_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5006", + "distance_BN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-x4_wpalx4_acsr_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5006", + "distance_CN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-xx4_acsr4_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5006", + "distance_CN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-xx4_wpal1/0_tpx_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AC": "4.0001", + "distance_AE": "32.0006", + "distance_AN": "5.5903", + "distance_CE": "32.0006", + "distance_CN": "5.2202", + "distance_NE": "27.0005", + "name": "spc_2ph_h-2_acsrx2_acsr2_acsr_ACN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0001", + "distance_AE": "32.0006", + "distance_AN": "5.5903", + "distance_BC": "2.5000", + "distance_BE": "34.0006", + "distance_BN": "7.0001", + "distance_CE": "32.0006", + "distance_CN": "5.2202", + "distance_NE": "27.0005", + "name": "spc_3ph_h-4_wpal4_wpal4_wpal4_wpal_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5006", + "distance_AN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-2_acsrxx1/0_tpx_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5006", + "distance_BN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-x2_acsrx1/0_3w_cs_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0001", + "distance_AE": "32.0006", + "distance_AN": "5.5903", + "distance_BC": "2.5000", + "distance_BE": "34.0006", + "distance_BN": "7.0001", + "distance_CE": "32.0006", + "distance_CN": "5.2202", + "distance_NE": "27.0005", + "name": "spc_3ph_h-2/0_acsr2/0_acsr2/0_acsr4_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5006", + "distance_AN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-4_wpalxx2_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5006", + "distance_BN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-x2_acsrx4_tpx_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "6.4186", + "distance_AC": "10.0067", + "distance_AE": "39.9942", + "distance_AN": "16.0809", + "distance_BC": "6.3930", + "distance_BE": "45.0139", + "distance_BN": "11.2718", + "distance_CE": "50.0009", + "distance_CN": "6.1886", + "distance_NE": "56.0050", + "name": "spc_3ph-69kv_397_treewire_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5006", + "distance_BN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-x2_acsrx4_acsr_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5006", + "distance_AN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-4_wpalxx4_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5006", + "distance_AN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-2_wpalxx2_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5006", + "distance_AN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-4_acsrxx2_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5006", + "distance_AN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-x4_acsrx4_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5006", + "distance_BN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-x4_acsrx4_acsr_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0001", + "distance_AE": "32.0006", + "distance_AN": "5.5903", + "distance_BC": "2.5000", + "distance_BE": "34.0006", + "distance_BN": "7.0001", + "distance_CE": "32.0006", + "distance_CN": "5.2202", + "distance_NE": "27.0005", + "name": "spc_3ph_h-4_acsr4_acsr4_acsr4_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5006", + "distance_CN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-xx2_acsr4_dpx_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5006", + "distance_AN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-x2_acsrx2_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5006", + "distance_BN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-x2_acsrx2_acsr_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5006", + "distance_CN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-x2_acsrx2_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5006", + "distance_AN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-4_acsrxx4_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5006", + "distance_CN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-xx4_acsr2_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5006", + "distance_AN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-4_wpalxx1/0_tpx_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0001", + "distance_AE": "32.0006", + "distance_AN": "5.5903", + "distance_BC": "2.5000", + "distance_BE": "34.0006", + "distance_BN": "7.0001", + "distance_CE": "32.0006", + "distance_CN": "5.2202", + "distance_NE": "27.0005", + "name": "spc_3ph_h-397_acsr397_acsr397_acsr397_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5006", + "distance_CN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-xx2_acsr1/0_tpx_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0001", + "distance_AE": "32.0006", + "distance_AN": "5.5903", + "distance_BC": "2.5000", + "distance_BE": "34.0006", + "distance_BN": "7.0001", + "distance_CE": "32.0006", + "distance_CN": "5.2202", + "distance_NE": "27.0005", + "name": "spc_3ph_h-2_acsr2_acsr2_acsr2_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5006", + "distance_CN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-xx4_acsr4_wpal_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5006", + "distance_AN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-2/0_acsrxx2_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5006", + "distance_CN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-xx2/0_acsr1/0_tpx_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0001", + "distance_AE": "32.0006", + "distance_AN": "5.5903", + "distance_BC": "2.5000", + "distance_BE": "34.0006", + "distance_BN": "7.0001", + "distance_CE": "32.0006", + "distance_CN": "5.2202", + "distance_NE": "27.0005", + "name": "spc_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5006", + "distance_CN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-xx2_acsr2_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0001", + "distance_AE": "32.0006", + "distance_AN": "5.5903", + "distance_BC": "2.5000", + "distance_BE": "34.0006", + "distance_BN": "7.0001", + "distance_CE": "32.0006", + "distance_CN": "5.2202", + "distance_NE": "27.0005", + "name": "spc_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_wpal_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5006", + "distance_AN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-4_wpalxx4_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0001", + "distance_AE": "32.0006", + "distance_AN": "5.5903", + "distance_BC": "2.5000", + "distance_BE": "34.0006", + "distance_BN": "7.0001", + "distance_CE": "32.0006", + "distance_CN": "5.2202", + "distance_NE": "27.0005", + "name": "spc_3ph_h-4_acsr4_acsr4_acsr4_tpx_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5006", + "distance_AN": "7.5665", + "distance_NE": "27.0005", + "name": "spc_1ph-4_acsrxx1/0_3w_cs_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "conductor_A": "wire_397_acsr", + "conductor_B": "wire_397_acsr", + "conductor_C": "wire_397_acsr", + "conductor_N": "wire_397_acsr", + "name": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "spacing": "spc_3ph_h-397_acsr397_acsr397_acsr397_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "spacing": "spc_1ph-4_acsrxx4_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_wpal", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-4_wpalxx1/0_tpx_ln5895784-1", + "spacing": "spc_1ph-4_wpalxx1/0_tpx_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_2_acsr", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "spacing": "spc_1ph-x2_acsrx1/0_tpx_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_2_wpal", + "name": "lcon_1ph-x4_acsrx2_wpal_ln5496577-1", + "spacing": "spc_1ph-x4_acsrx2_wpal_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_2_acsr", + "conductor_N": "wire_1/0_3w_cs", + "name": "lcon_1ph-x2_acsrx1/0_3w_cs_ln6043468-3", + "spacing": "spc_1ph-x2_acsrx1/0_3w_cs_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_6_wpal", + "name": "lcon_1ph-4_acsrxx6_wpal_ln5895785-1", + "spacing": "spc_1ph-4_acsrxx6_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_397_acsr", + "conductor_B": "wire_397_acsr", + "conductor_C": "wire_397_acsr", + "conductor_N": "wire_2/0_wpal", + "name": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_wpal_ln6291244-1", + "spacing": "spc_3ph_h-397_acsr397_acsr397_acsr2/0_wpal_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_4_dpx", + "name": "lcon_1ph-xx2_acsr4_dpx_ln5744331-1", + "spacing": "spc_1ph-xx2_acsr4_dpx_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_1/0_3w_cs", + "name": "lcon_1ph-4_acsrxx1/0_3w_cs_ln5686244-1", + "spacing": "spc_1ph-4_acsrxx1/0_3w_cs_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "cncab_1/0_al_15kv_1/3", + "name": "lcon_1p_1/0_axnj_db_ln8945010-1", + "spacing": "spc_1p_1/0_axnj_db_C" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "spacing": "spc_1ph-2_acsrxx1/0_tpx_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "spacing": "spc_1ph-2_acsrxx2_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_B": "wire_4_acsr", + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_tpx", + "name": "lcon_3ph_h-4_acsr4_acsr4_acsr4_tpx_ln5742835-1", + "spacing": "spc_3ph_h-4_acsr4_acsr4_acsr4_tpx_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_1/0_acsr", + "name": "lcon_1ph-xx4_acsr1/0_acsr_ln5852082-1", + "spacing": "spc_1ph-xx4_acsr1/0_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_2_acsr", + "conductor_N": "wire_4_tpx", + "name": "lcon_1ph-x2_acsrx4_tpx_ln6169266-1", + "spacing": "spc_1ph-x2_acsrx4_tpx_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_B": "wire_2_acsr", + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "spacing": "spc_3ph_h-4_acsr2_acsr2_acsr4_wpal_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_wpal", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-xx4_wpal1/0_tpx_ln5956462-1", + "spacing": "spc_1ph-xx4_wpal1/0_tpx_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2/0_acsr", + "conductor_B": "wire_2/0_acsr", + "conductor_C": "wire_2/0_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr4_acsr_ln5898194-1", + "spacing": "spc_3ph_h-2/0_acsr2/0_acsr2/0_acsr4_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-x4_acsrx1/0_tpx_ln5562952-1", + "spacing": "spc_1ph-x4_acsrx1/0_tpx_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_4/0_tpx", + "name": "lcon_1ph-2_acsrxx4/0_tpx_ln6103927-1", + "spacing": "spc_1ph-2_acsrxx4/0_tpx_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_wpal", + "conductor_N": "wire_2_wpal", + "name": "lcon_1ph-4_wpalxx2_wpal_ln5561444-1", + "spacing": "spc_1ph-4_wpalxx2_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2/0_acsr", + "conductor_B": "wire_2/0_acsr", + "conductor_C": "wire_2/0_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "spacing": "spc_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_wpal", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-x4_wpalx2_acsr_ln5472350-1", + "spacing": "spc_1ph-x4_wpalx2_acsr_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_wpal", + "conductor_N": "wire_2_wpal", + "name": "lcon_1ph-2_wpalxx2_wpal_ln6409800-1", + "spacing": "spc_1ph-2_wpalxx2_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_B": "wire_2_acsr", + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_3ph_h-2_acsr2_acsr4_acsr4_acsr_ln5655838-1", + "spacing": "spc_3ph_h-2_acsr2_acsr4_acsr4_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "spacing": "spc_1ph-xx4_acsr4_wpal_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "cncab_1/0_al_15kv_1/3", + "conductor_B": "cncab_1/0_al_15kv_1/3", + "conductor_C": "cncab_1/0_al_15kv_1/3", + "name": "lcon_3p_1/0_axnj_db_ln8979254-2", + "spacing": "spc_3p_1/0_axnj_db_ABC" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-2_acsrxx4_acsr_ln5589097-1", + "spacing": "spc_1ph-2_acsrxx4_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "spacing": "spc_1ph-xx2_acsr2_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_B": "wire_2_acsr", + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "spacing": "spc_3ph_h-2_acsr2_acsr2_acsr2_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_6_wpal", + "conductor_N": "wire_6_wpal", + "name": "lcon_1ph-xx6_wpal6_wpal_ln6108128-2", + "spacing": "spc_1ph-xx6_wpal6_wpal_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_tpx", + "name": "lcon_1ph-xx4_acsr4_tpx_ln5531226-1", + "spacing": "spc_1ph-xx4_acsr4_tpx_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_wpal", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "spacing": "spc_1ph-xx4_wpal4_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "spacing": "spc_1ph-x4_acsrx4_acsr_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_wpal", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "spacing": "spc_1ph-4_wpalxx4_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-2_acsrxx4_wpal_ln5686245-2", + "spacing": "spc_1ph-2_acsrxx4_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_wpal", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-x4_wpalx1/0_tpx_ln6077771-1", + "spacing": "spc_1ph-x4_wpalx1/0_tpx_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "spacing": "spc_1ph-4_acsrxx4_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_397_aac_treewire", + "conductor_B": "wire_397_aac_treewire", + "conductor_C": "wire_397_aac_treewire", + "conductor_N": "wire_2/0_acsr", + "name": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "spacing": "spc_3ph-69kv_397_treewire_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_wpal", + "conductor_B": "wire_4_wpal", + "conductor_C": "wire_4_wpal", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_3ph_h-4_wpal4_wpal4_wpal1/0_tpx_ln6411371-1", + "spacing": "spc_3ph_h-4_wpal4_wpal4_wpal1/0_tpx_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_1/0_3w_cs", + "name": "lcon_1ph-x4_acsrx1/0_3w_cs_ln5775368-1", + "spacing": "spc_1ph-x4_acsrx1/0_3w_cs_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_B": "wire_4_acsr", + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "spacing": "spc_3ph_h-4_acsr4_acsr4_acsr4_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-xx2_acsr1/0_tpx_ln6229827-1", + "spacing": "spc_1ph-xx2_acsr1/0_tpx_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "cncab_1/0_al_15kv_1/3", + "name": "lcon_1p_1/0_axnj_db_ln81048087-1", + "spacing": "spc_1p_1/0_axnj_db_B" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-x4_acsrx4_acsr_ln5683000-1", + "spacing": "spc_1ph-x4_acsrx4_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_wpal", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "spacing": "spc_1ph-4_wpalxx4_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_4_dpx", + "name": "lcon_1ph-x4_acsrx4_dpx_ln6506308-1", + "spacing": "spc_1ph-x4_acsrx4_dpx_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_wpal", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "spacing": "spc_1ph-x4_wpalx4_wpal_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_2_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-x2_acsrx4_acsr_ln6201698-2", + "spacing": "spc_1ph-x2_acsrx4_acsr_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-4_acsrxx2_acsr_ln5775367-1", + "spacing": "spc_1ph-4_acsrxx2_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "spacing": "spc_1ph-x2_acsrx2_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2/0_acsr", + "conductor_B": "wire_2/0_acsr", + "conductor_C": "wire_2/0_acsr", + "conductor_N": "wire_2_wpal", + "name": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_wpal_ln6259996-1", + "spacing": "spc_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_wpal_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2/0_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-2/0_acsrxx2_acsr_ln6129680-2", + "spacing": "spc_1ph-2/0_acsrxx2_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_wpal", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "spacing": "spc_1ph-xx4_wpal4_wpal_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-4_acsrxx1/0_tpx_ln6138596-1", + "spacing": "spc_1ph-4_acsrxx1/0_tpx_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "cncab_1/0_al_15kv_1/3", + "name": "lcon_1p_1/0_axnj_db_ln8979370-1", + "spacing": "spc_1p_1/0_axnj_db_A" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_B": "wire_4_acsr", + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "spacing": "spc_3ph_h-4_acsr4_acsr4_acsr4_wpal_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_2/0_acsr", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-xx2/0_acsr1/0_tpx_ln5866260-1", + "spacing": "spc_1ph-xx2/0_acsr1/0_tpx_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_4_tpx", + "name": "lcon_1ph-x4_acsrx4_tpx_ln5804795-1", + "spacing": "spc_1ph-x4_acsrx4_tpx_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "spacing": "spc_1ph-x2_acsrx2_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "spacing": "spc_1ph-x4_acsrx4_wpal_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "spacing": "spc_1ph-x2_acsrx2_acsr_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_wpal", + "conductor_B": "wire_4_wpal", + "conductor_C": "wire_4_wpal", + "conductor_N": "wire_4_wpal", + "name": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "spacing": "spc_3ph_h-4_wpal4_wpal4_wpal4_wpal_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_397_acsr", + "conductor_B": "wire_397_acsr", + "conductor_C": "wire_397_acsr", + "conductor_N": "wire_2/0_acsr", + "name": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "spacing": "spc_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-xx4_acsr2_acsr_ln5741170-3", + "spacing": "spc_1ph-xx4_acsr2_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_wpal", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "spacing": "spc_1ph-x4_wpalx4_acsr_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "spacing": "spc_1ph-xx4_acsr4_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_2ph_h-2_acsrx2_acsr2_acsr_ln5637597-1", + "spacing": "spc_2ph_h-2_acsrx2_acsr2_acsr_ACN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c33": "0.0000", + "name": "lcon_cap_1c_PUZ_C", + "z33": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c22": "0.0000", + "name": "lcon_cap_3b_PUZ_B", + "z22": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c22": "0.0000", + "name": "lcon_cap_1b_PUZ_B", + "z22": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c11": "0.0000", + "name": "lcon_cap_3a_PUZ_A", + "z11": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c11": "0.0000", + "name": "lcon_cap_1a_PUZ_A", + "z11": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c11": "0.0000", + "name": "lcon_cap_2a_PUZ_A", + "z11": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c33": "0.0000", + "name": "lcon_cap_3c_PUZ_C", + "z33": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "name": "tcon_4/0triplex_12", + "z11": "2.16454+0.880800j", + "z12": "0.623542+0.673688j", + "z21": "0.623542+0.673688j", + "z22": "2.16454+0.880800j" + }, + "children": [], + "name": "triplex_line_configuration" + }, + { + "attributes": { + "c33": "0.0000", + "name": "lcon_cap_2c_PUZ_C", + "z33": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "name": "tcon_750_triplex_12", + "z11": "0.262666+0.146913j", + "z12": "0.123666+0.0353481j", + "z21": "0.123666+0.0353481j", + "z22": "0.262666+0.146913j" + }, + "children": [], + "name": "triplex_line_configuration" + }, + { + "attributes": { + "c22": "0.0000", + "name": "lcon_cap_2b_PUZ_B", + "z22": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0163200j", + "impedance1": "0.0120000+0.00816000j", + "impedance2": "0.0120000+0.00816000j", + "name": "xcon_ct100", + "power_rating": "100.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0163200j", + "impedance1": "0.0120000+0.00816000j", + "impedance2": "0.0120000+0.00816000j", + "name": "xcon_ct250", + "power_rating": "250.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0163200j", + "impedance1": "0.0120000+0.00816000j", + "impedance2": "0.0120000+0.00816000j", + "name": "xcon_ct25", + "power_rating": "25.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0163200j", + "impedance1": "0.0120000+0.00816000j", + "impedance2": "0.0120000+0.00816000j", + "name": "xcon_ct75", + "power_rating": "75.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0163200j", + "impedance1": "0.0120000+0.00816000j", + "impedance2": "0.0120000+0.00816000j", + "name": "xcon_ct50", + "power_rating": "50.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0163200j", + "impedance1": "0.0120000+0.00816000j", + "impedance2": "0.0120000+0.00816000j", + "name": "xcon_ct5", + "power_rating": "5.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0163200j", + "impedance1": "0.0120000+0.00816000j", + "impedance2": "0.0120000+0.00816000j", + "name": "xcon_ct15", + "power_rating": "15.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0163200j", + "impedance1": "0.0120000+0.00816000j", + "impedance2": "0.0120000+0.00816000j", + "name": "xcon_ct37", + "power_rating": "37.500", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0163200j", + "impedance1": "0.0120000+0.00816000j", + "impedance2": "0.0120000+0.00816000j", + "name": "xcon_ct10", + "power_rating": "10.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "cap_nominal_voltage": "7199.56", + "capacitor_A": "300000.00", + "capacitor_B": "300000.00", + "capacitor_C": "300000.00", + "name": "cap_capbank4", + "parent": "r18242", + "phases": "ABCN", + "phases_connected": "ABCN", + "switchA": "CLOSED", + "switchB": "CLOSED", + "switchC": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "200000.00", + "VAr_set_low": "-300000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_A": "400000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "100.00", + "name": "cap_capbank3a", + "parent": "r42246", + "phases": "AN", + "phases_connected": "AN", + "pt_phase": "A", + "remote_sense": "line_cap_3a", + "switchA": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "200000.00", + "VAr_set_low": "-300000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_B": "400000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "101.00", + "name": "cap_capbank3b", + "parent": "r42246", + "phases": "BN", + "phases_connected": "BN", + "pt_phase": "B", + "remote_sense": "line_cap_3b", + "switchB": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "150000.00", + "VAr_set_low": "-225000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_A": "300000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "100.00", + "name": "cap_capbank2a", + "parent": "r42247", + "phases": "AN", + "phases_connected": "AN", + "pt_phase": "A", + "remote_sense": "line_cap_2a", + "switchA": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "200000.00", + "VAr_set_low": "-300000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_C": "400000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "102.00", + "name": "cap_capbank3c", + "parent": "r42246", + "phases": "CN", + "phases_connected": "CN", + "pt_phase": "C", + "remote_sense": "line_cap_3c", + "switchC": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "150000.00", + "VAr_set_low": "-225000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_A": "300000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "100.00", + "name": "cap_capbank1a", + "parent": "r20185", + "phases": "AN", + "phases_connected": "AN", + "pt_phase": "A", + "remote_sense": "line_cap_1a", + "switchA": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "150000.00", + "VAr_set_low": "-225000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_B": "300000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "101.00", + "name": "cap_capbank2b", + "parent": "r42247", + "phases": "BN", + "phases_connected": "BN", + "pt_phase": "B", + "remote_sense": "line_cap_2b", + "switchB": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "150000.00", + "VAr_set_low": "-225000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_B": "300000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "101.00", + "name": "cap_capbank1b", + "parent": "r20185", + "phases": "BN", + "phases_connected": "BN", + "pt_phase": "B", + "remote_sense": "line_cap_1b", + "switchB": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "150000.00", + "VAr_set_low": "-225000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_C": "300000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "102.00", + "name": "cap_capbank2c", + "parent": "r42247", + "phases": "CN", + "phases_connected": "CN", + "pt_phase": "C", + "remote_sense": "line_cap_2c", + "switchC": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "150000.00", + "VAr_set_low": "-225000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_C": "300000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "102.00", + "name": "cap_capbank1c", + "parent": "r20185", + "phases": "CN", + "phases_connected": "CN", + "pt_phase": "C", + "remote_sense": "line_cap_1c", + "switchC": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "P_Out": "9710.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_6", + "parent": "sx2000404a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "12140.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_6", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12140.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "14930.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_8", + "parent": "sx2000405a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "18660.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_8", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "18660.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_2", + "parent": "sx2000402a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "14060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_2", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12560.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_4", + "parent": "sx2000403a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "15700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_4", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "15700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5840.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1043", + "parent": "sx2804272b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1043", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7300.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_156", + "parent": "sx2001309a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "10310.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_156", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10310.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1163", + "parent": "sx2879078a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1163", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "19450.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1041", + "parent": "sx2803199b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "24300.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1041", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "24300.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "18150.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_158", + "parent": "sx2001310a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "22680.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_158", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "22680.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1161", + "parent": "sx2730149c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1161", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11200.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_50", + "parent": "sx2000712b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "14000.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_50", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14000.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12780.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_52", + "parent": "sx2000713b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "15970.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_52", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "15970.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9050.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_54", + "parent": "sx2000714b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "11320.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_54", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11320.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "20340.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1049", + "parent": "sx2814529c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "25400.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1049", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "25400.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9470.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_150", + "parent": "sx2001306a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11840.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_150", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11840.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1169", + "parent": "sx2673317a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1169", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_56", + "parent": "sx2000715b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "14060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_56", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1047", + "parent": "sx3104155c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1047", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "13990.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_152", + "parent": "sx2001307a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "17480.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_152", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "17480.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1167", + "parent": "sx2897792a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1167", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_58", + "parent": "sx2000902c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_58", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1045", + "parent": "sx3216347c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1045", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "14650.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_154", + "parent": "sx2001308a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "18300.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_154", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "18300.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "4070.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1165", + "parent": "sx3197637c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "5100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1165", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1153", + "parent": "sx2748143a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1153", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9730.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1031", + "parent": "sx3178981b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1031", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "21450.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_166", + "parent": "sx2001314a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "26810.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_166", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "26810.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "30520.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1151", + "parent": "sx3101194c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "38100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1151", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "38100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "19930.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_168", + "parent": "sx2001315a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "24910.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_168", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "24910.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9900.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_40", + "parent": "sx2000707b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12370.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_40", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12370.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12220.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_42", + "parent": "sx2000708b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "15270.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_42", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "15270.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8710.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_44", + "parent": "sx2000709b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "10900.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_44", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10900.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1039", + "parent": "sx2766721a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1039", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "3550.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1159", + "parent": "sx3104144a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "4400.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1159", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "4400.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10450.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_46", + "parent": "sx2000710b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "13070.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_46", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "13070.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1037", + "parent": "sx2729428a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1037", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "16040.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_160", + "parent": "sx2001311a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "20060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_160", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "20060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1157", + "parent": "sx2710521a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1157", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "7040.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_48", + "parent": "sx2000711b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "8800.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_48", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8800.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1035", + "parent": "sx2935551c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1035", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "14540.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_162", + "parent": "sx2001312a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "18170.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_162", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "18170.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "14590.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1155", + "parent": "sx3252336b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "18300.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1155", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "18300.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "4070.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1033", + "parent": "sx2710510c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "5100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1033", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "22370.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_164", + "parent": "sx2001313a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "27960.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_164", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "27960.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5840.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1019", + "parent": "sx2841636b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1019", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7300.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5840.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1021", + "parent": "sx2955005b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1021", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7300.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "17880.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_134", + "parent": "sx2001212c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "22350.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_134", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "22350.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "15260.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1141", + "parent": "sx2766750c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "19100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1141", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "19100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "18080.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_136", + "parent": "sx2001213c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "22600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_136", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "22600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "16870.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_138", + "parent": "sx2001214c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "21100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_138", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "21100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10520.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_30", + "parent": "sx2000702b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "13160.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_30", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "13160.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1029", + "parent": "sx2804252a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1029", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1149", + "parent": "sx2992657a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1149", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9540.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_32", + "parent": "sx2000703b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "11920.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_32", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11920.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1027", + "parent": "sx2674051a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1027", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5840.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1147", + "parent": "sx2822867b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1147", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7300.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10220.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_34", + "parent": "sx2000704b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12780.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_34", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12780.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "14590.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1025", + "parent": "sx3048965b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "18200.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1025", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "18200.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "13440.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_130", + "parent": "sx2001210c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "16800.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_130", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "16800.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1145", + "parent": "sx3235243c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1145", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9670.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_36", + "parent": "sx2000705b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12090.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_36", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12090.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9730.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1023", + "parent": "sx3254214b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12200.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1023", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12200.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "23420.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_132", + "parent": "sx2001211c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "29270.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_132", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "29270.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1143", + "parent": "sx2973148a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1143", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11790.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_38", + "parent": "sx2000706b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "14730.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_38", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14730.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "14490.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_18", + "parent": "sx2000410a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "18120.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_18", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "18120.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5850.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1009", + "parent": "sx2691946b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1009", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7300.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1129", + "parent": "sx3104134c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1129", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1131", + "parent": "sx2955077c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1131", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "13300.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1097", + "parent": "sx3067478a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "16700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1097", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "16700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12910.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_144", + "parent": "sx2001303a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "16150.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_144", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "16150.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9730.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1095", + "parent": "sx2767409b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1095", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9620.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_146", + "parent": "sx2001304a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "12030.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_146", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12030.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1093", + "parent": "sx2936279c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1093", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10860.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_148", + "parent": "sx2001305a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "13570.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_148", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "13570.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9980.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_20", + "parent": "sx2000411a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "12480.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_20", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12480.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "3550.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1091", + "parent": "sx3254231a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "4500.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1091", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "4500.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "20340.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1139", + "parent": "sx3011293c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "25400.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1139", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "25400.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "19620.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_22", + "parent": "sx2000412a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "24520.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_22", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "24520.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1017", + "parent": "sx2861197c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1017", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1137", + "parent": "sx2841616a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1137", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10630.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_24", + "parent": "sx2000413a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "13290.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_24", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "13290.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5840.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1015", + "parent": "sx3085410b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1015", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7300.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1135", + "parent": "sx2804283a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1135", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10590.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_26", + "parent": "sx2000414a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "13240.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_26", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "13240.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1013", + "parent": "sx2710543c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1013", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "21390.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_140", + "parent": "sx2001215c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "26730.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_140", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "26730.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1133", + "parent": "sx2954350c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1133", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10770.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_28", + "parent": "sx2000415a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "13460.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_28", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "13460.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "4070.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1011", + "parent": "sx3010565c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "5100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1011", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1099", + "parent": "sx2691945c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1099", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8820.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_142", + "parent": "sx2001302a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11020.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_142", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11020.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1119", + "parent": "sx2786274c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1119", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "17570.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_108", + "parent": "sx2001013b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "21960.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_108", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "21960.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1087", + "parent": "sx3160106a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1087", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "24220.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_112", + "parent": "sx2001015b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "30260.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_112", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "30260.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9710.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_90", + "parent": "sx2001004b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12140.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_90", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12140.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1085", + "parent": "sx2897772a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1085", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12430.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_114", + "parent": "sx2001202c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "15530.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_114", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "15530.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11080.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_92", + "parent": "sx2001005b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "13850.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_92", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "13850.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5840.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1083", + "parent": "sx3179650b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1083", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7300.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "16020.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_116", + "parent": "sx2001203c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "20030.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_116", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "20030.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9760.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_94", + "parent": "sx2001006b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12190.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_94", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12190.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "500000.000", + "Q_Out": "0.000", + "V_base": "12470.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pvfarm1", + "parent": "m1047pv-3_pvmtr", + "phases": "ABCN", + "power_factor": "1.0", + "rated_power": "750000.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pvfarm1", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "750000.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1081", + "parent": "sx2897767c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1081", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12950.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_118", + "parent": "sx2001204c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "16180.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_118", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "16180.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9360.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_96", + "parent": "sx2001007b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "11710.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_96", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11710.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "4070.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1007", + "parent": "sx3104126c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "5100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1007", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12600.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_10", + "parent": "sx2000406a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "15740.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_10", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "15740.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1127", + "parent": "sx2936214a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1127", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12720.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_98", + "parent": "sx2001008b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "15900.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_98", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "15900.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1005", + "parent": "sx3045895c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1005", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1125", + "parent": "sx3160862c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1125", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11920.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_12", + "parent": "sx2000407a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "14900.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_12", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14900.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "19450.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1003", + "parent": "sx2673331b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "24300.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1003", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "24300.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "3890.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1123", + "parent": "sx2805036b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "4800.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1123", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "4800.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12440.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_14", + "parent": "sx2000408a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "15550.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_14", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "15550.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1001", + "parent": "sx3216348a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1001", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1089", + "parent": "sx3143999a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1089", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "28330.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_110", + "parent": "sx2001014b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "35410.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_110", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "35410.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9730.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1121", + "parent": "sx3217064b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12200.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1121", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12200.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12980.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_16", + "parent": "sx2000409a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "16230.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_16", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "16230.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1109", + "parent": "sx3178997c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1109", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1107", + "parent": "sx3082992a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1107", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_80", + "parent": "sx2000913c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_80", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1075", + "parent": "sx2673319c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1075", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10530.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_122", + "parent": "sx2001206c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "13170.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_122", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "13170.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_82", + "parent": "sx2000914c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_82", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1073", + "parent": "sx3197641a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1073", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8850.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_124", + "parent": "sx2001207c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "11060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_124", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_84", + "parent": "sx2000915c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_84", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1071", + "parent": "sx2841627a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1071", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11890.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_126", + "parent": "sx2001208c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14850.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_126", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14850.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_86", + "parent": "sx2001002b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "14060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_86", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "13930.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_128", + "parent": "sx2001209c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "17410.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_128", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "17410.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1117", + "parent": "sx2897768c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12800.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1117", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12800.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12560.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_88", + "parent": "sx2001003b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "15700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_88", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "15700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "13300.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1115", + "parent": "sx3728043a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "16700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1115", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "16700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "17740.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1113", + "parent": "sx3215203a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "22100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1113", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "22100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1079", + "parent": "sx2891575c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1079", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "17740.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1111", + "parent": "sx3233412a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "22200.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1111", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "22200.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1077", + "parent": "sx2991943c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12800.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1077", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12800.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8560.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_120", + "parent": "sx2001205c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "10700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_120", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1065", + "parent": "sx2785523c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1065", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "17740.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1063", + "parent": "sx2814529a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "22100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1063", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "22100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "17740.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1183", + "parent": "sx2990098a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "22170.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1183", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "22170.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_70", + "parent": "sx2000908c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_70", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1061", + "parent": "sx2992556c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1061", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "4070.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1181", + "parent": "sx2879076c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "5100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1181", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_72", + "parent": "sx2000909c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_72", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_74", + "parent": "sx2000910c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_74", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "40520.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_170", + "parent": "sx2001400c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "50650.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_170", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "50650.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1105", + "parent": "sx2785513a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11000.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1105", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11000.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_76", + "parent": "sx2000911c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_76", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1103", + "parent": "sx2785538a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1103", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_78", + "parent": "sx2000912c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_78", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1069", + "parent": "sx3216368c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1069", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1101", + "parent": "sx3104132a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1101", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1067", + "parent": "sx2841638c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1067", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1175", + "parent": "sx2691951c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1175", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "13970.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_100", + "parent": "sx2001009b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "17460.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_100", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "17460.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1053", + "parent": "sx2710544a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1053", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5840.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1173", + "parent": "sx2897789b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1173", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7300.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12560.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_60", + "parent": "sx2000903c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "15700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_60", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "15700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "16900.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_102", + "parent": "sx2001010b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "21120.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_102", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "21120.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1051", + "parent": "sx3048937c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1051", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1171", + "parent": "sx3198347c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1171", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9710.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_62", + "parent": "sx2000904c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12140.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_62", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12140.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "7480.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_104", + "parent": "sx2001011b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "9350.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_104", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9350.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_64", + "parent": "sx2000905c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_64", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "13750.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_106", + "parent": "sx2001012b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "17200.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_106", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "17200.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_66", + "parent": "sx2000906c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_66", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_68", + "parent": "sx2000907c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_68", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1059", + "parent": "sx2673318c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1059", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "20340.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1179", + "parent": "sx3215203c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "25500.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1179", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "25500.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9730.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1057", + "parent": "sx3160113b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1057", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "14590.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1177", + "parent": "sx2673308b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "18300.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1177", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "18300.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5330.000", + "Q_Out": "0.000", + "V_base": "208.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1055", + "parent": "sx2839305a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "flags": "DELTAMODE", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1055", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "0.000", + "Q_Out": "0.000", + "V_base": "12470.000", + "charge_lockout_time": "1", + "charge_off_threshold": "0.000", + "charge_on_threshold": "-5000.000", + "discharge_lockout_time": "1", + "discharge_off_threshold": "100000.000", + "discharge_on_threshold": "150000.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "0.975", + "inverter_type": "FOUR_QUADRANT", + "max_charge_rate": "250000.000", + "max_discharge_rate": "250000.000", + "name": "inv_bat_battery1", + "parent": "m2001-ess1_stmtr", + "phases": "ABCN", + "rated_power": "250000.000", + "sense_object": "m2001-ess1_stmtr" + }, + "children": [ + { + "attributes": { + "battery_capacity": "500000.0", + "battery_type": "LI_ION", + "flags": "DELTAMODE", + "generator_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "name": "bat_battery1", + "nominal_voltage": "48", + "rated_power": "250000.000", + "round_trip_efficiency": "0.86", + "state_of_charge": "1.0000", + "use_internal_battery_model": "true" + }, + "children": [], + "name": "battery" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "0.000", + "Q_Out": "0.000", + "V_base": "12470.000", + "charge_lockout_time": "1", + "charge_off_threshold": "0.000", + "charge_on_threshold": "-5000.000", + "discharge_lockout_time": "1", + "discharge_off_threshold": "100000.000", + "discharge_on_threshold": "150000.000", + "flags": "DELTAMODE", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "0.975", + "inverter_type": "FOUR_QUADRANT", + "max_charge_rate": "250000.000", + "max_discharge_rate": "250000.000", + "name": "inv_bat_battery2", + "parent": "m2001-ess2_stmtr", + "phases": "ABCN", + "rated_power": "250000.000", + "sense_object": "m2001-ess2_stmtr" + }, + "children": [ + { + "attributes": { + "battery_capacity": "500000.0", + "battery_type": "LI_ION", + "flags": "DELTAMODE", + "generator_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "name": "bat_battery2", + "nominal_voltage": "48", + "rated_power": "250000.000", + "round_trip_efficiency": "0.86", + "state_of_charge": "1.0000", + "use_internal_battery_model": "true" + }, + "children": [], + "name": "battery" + } + ], + "name": "inverter" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "775000.00", + "flags": "DELTAMODE", + "name": "dg_diesel620", + "parent": "m1209-dies1_dgmtr", + "phases": "ABCN", + "power_out_A": "0.00+0.00j", + "power_out_B": "0.00+0.00j", + "power_out_C": "0.00+0.00j" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "250000.00", + "flags": "DELTAMODE", + "name": "dg_microturb-1", + "parent": "m2001-mt1_dgmtr", + "phases": "ABCN", + "power_out_A": "16666.67+8072.03j", + "power_out_B": "16666.67+8072.03j", + "power_out_C": "16666.67+8072.03j" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "250000.00", + "flags": "DELTAMODE", + "name": "dg_microturb-2", + "parent": "m2001-mt2_dgmtr", + "phases": "ABCN", + "power_out_A": "0.00+0.00j", + "power_out_B": "0.00+0.00j", + "power_out_C": "0.00+0.00j" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "250000.00", + "flags": "DELTAMODE", + "name": "dg_microturb-3", + "parent": "m2001-mt3_dgmtr", + "phases": "ABCN", + "power_out_A": "0.00+0.00j", + "power_out_B": "0.00+0.00j", + "power_out_C": "0.00+0.00j" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "12470.00", + "Rated_VA": "4000000.00", + "flags": "DELTAMODE", + "name": "dg_steamgen1", + "parent": "m1026chp-3_dgmtr", + "phases": "ABCN", + "power_out_A": "333333.33-359828.53j", + "power_out_B": "333333.33-359828.53j", + "power_out_C": "333333.33-359828.53j" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "250000.00", + "flags": "DELTAMODE", + "name": "dg_microturb-4", + "parent": "m1069-mt1_dgmtr", + "phases": "ABCN", + "power_out_A": "33333.33+16144.07j", + "power_out_B": "33333.33+16144.07j", + "power_out_C": "33333.33+16144.07j" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "125000.00", + "flags": "DELTAMODE", + "name": "dg_lngengine100", + "parent": "m1142-lng1_dgmtr", + "phases": "ABCN", + "power_out_A": "0.00+0.00j", + "power_out_B": "0.00+0.00j", + "power_out_C": "0.00+0.00j" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "737000.00", + "flags": "DELTAMODE", + "name": "dg_diesel590", + "parent": "m1089-dies1_dgmtr", + "phases": "ABCN", + "power_out_A": "0.00+0.00j", + "power_out_B": "0.00+0.00j", + "power_out_C": "0.00+0.00j" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "2250000.00", + "flags": "DELTAMODE", + "name": "dg_lngengine1800", + "parent": "m1089-lng1_dgmtr", + "phases": "ABCN", + "power_out_A": "0.00+0.00j", + "power_out_B": "0.00+0.00j", + "power_out_C": "0.00+0.00j" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047671", + "length": "199.6977", + "name": "line_ln6320335-1", + "phases": "A", + "to": "l2710511" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027080", + "length": "217.0266", + "name": "line_ln6392977-2", + "phases": "A", + "to": "l3215340" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069574", + "length": "164.8455", + "name": "line_ln5835159-1", + "phases": "B", + "to": "l2710530" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3215340", + "length": "113.9541", + "name": "line_ln6392977-1", + "phases": "A", + "to": "m1027087" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047755", + "length": "51.9316", + "name": "line_ln5653456-1", + "phases": "A", + "to": "l3066812" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026848", + "length": "196.8776", + "name": "line_ln5683825-1", + "phases": "A", + "to": "l2935557" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p901927", + "length": "53.6061", + "name": "line_ln5621848-2", + "phases": "B", + "to": "n1136353" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047pv-3", + "length": "347.4251", + "name": "line_ln1047pvfrm-2", + "phases": "ABC", + "to": "m1047pv-2" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108400", + "length": "274.7688", + "name": "line_ln6422014-1", + "phases": "ABC", + "to": "m1108404" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047pv-1", + "length": "395.6141", + "name": "line_ln1047pvfrm-1", + "phases": "ABC", + "to": "m1047520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069582", + "length": "206.9440", + "name": "line_ln5833720-1", + "phases": "B", + "to": "l2933165" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2726973", + "length": "277.6861", + "name": "line_ln5739188-1", + "phases": "ABC", + "to": "m1047485" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209797", + "length": "218.5071", + "name": "line_ln6291242-1", + "phases": "ABC", + "to": "m1209791" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027019", + "length": "198.1356", + "name": "line_ln5593228-1", + "phases": "B", + "to": "l2785522" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001312", + "length": "158.2410", + "name": "line_ln2001313-1", + "phases": "A", + "to": "m2001313" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209817", + "length": "82.8502", + "name": "line_ln5742828-1", + "phases": "ABC", + "to": "l2801909" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047812", + "length": "71.6018", + "name": "line_ln6137086-2", + "phases": "B", + "to": "m4350438" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001214", + "length": "158.2410", + "name": "line_ln2001215-1", + "phases": "C", + "to": "m2001215" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069174", + "length": "241.7209", + "name": "line_ln5833622-1", + "phases": "C", + "to": "l3216347" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2801909", + "length": "227.2768", + "name": "line_ln5742828-2", + "phases": "ABC", + "to": "m1209814" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010017", + "length": "280.2467", + "name": "line_ln6106583-2", + "phases": "A", + "to": "l2858175" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2858175", + "length": "15.1671", + "name": "line_ln6106583-3", + "phases": "A", + "to": "m1027110" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027121", + "length": "28.6955", + "name": "line_ln6106583-4", + "phases": "A", + "to": "n1134469" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026658", + "length": "350.0076", + "name": "line_ln6439600-1", + "phases": "A", + "to": "l3172805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1134469", + "length": "1051.9406", + "name": "line_ln6106583-5", + "phases": "A", + "to": "m1010017" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3037537", + "length": "560.0102", + "name": "line_ln5951197-2", + "phases": "B", + "to": "l3231269" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089177", + "length": "439.2613", + "name": "line_ln5865230-1", + "phases": "ABC", + "to": "l2822863" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3048965", + "length": "168.4427", + "name": "line_ln5805761-1", + "phases": "ABC", + "to": "m1142843" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108529", + "length": "20.0060", + "name": "line_ln5563852-1", + "phases": "C", + "to": "p829796" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1069248", + "length": "823.2178", + "name": "line_ln8979370-1", + "phases": "A", + "to": "l2915534" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l2915534", + "length": "555.2905", + "name": "line_ln8979370-2", + "phases": "A", + "to": "193-48013" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026681", + "length": "211.6014", + "name": "line_ln6047580-2", + "phases": "ABC", + "to": "l3048221" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1142843", + "length": "32.4353", + "name": "line_ln5746705-1", + "phases": "A", + "to": "p829976" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2879794", + "length": "110.7500", + "name": "line_ln6109190-1", + "phases": "A", + "to": "m1142811" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089165", + "length": "141.1693", + "name": "line_ln5804789-1", + "phases": "C", + "to": "l2748128" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2936275", + "length": "297.8782", + "name": "line_ln6048632-1", + "phases": "B", + "to": "l3179674" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1140528", + "length": "161.6176", + "name": "line_ln6900591-29", + "phases": "A", + "to": "l3649297" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2691952", + "length": "7.1517", + "name": "line_ln6505949-1", + "phases": "ABC", + "to": "m3036170" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3197638", + "length": "200.8781", + "name": "line_ln6290213-1", + "phases": "A", + "to": "m1026849" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p1123251", + "length": "20.7337", + "name": "line_ln6900591-28", + "phases": "A", + "to": "n1140528" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3772794", + "length": "200.0205", + "name": "line_ln6900591-27", + "phases": "A", + "to": "l3649300" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649299", + "length": "12.7266", + "name": "line_ln6900591-26", + "phases": "A", + "to": "m3772794" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069481", + "length": "32.1709", + "name": "line_ln5565091-1", + "phases": "C", + "to": "p827507" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649304", + "length": "220.1077", + "name": "line_ln6900591-22", + "phases": "A", + "to": "l3649305" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2936211", + "length": "265.2192", + "name": "line_ln6018241-1", + "phases": "C", + "to": "l2842329" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000403", + "length": "158.2410", + "name": "line_ln2000404-1", + "phases": "A", + "to": "m2000404" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649302", + "length": "205.9112", + "name": "line_ln6900591-20", + "phases": "A", + "to": "l3649304" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3160100", + "length": "219.3926", + "name": "line_ln5472346-1", + "phases": "B", + "to": "l3085390" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1089143", + "length": "84.3585", + "name": "line_ln6411382-1", + "phases": "A", + "to": "m1089144" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069731", + "length": "182.6261", + "name": "line_ln5835124-1", + "phases": "B", + "to": "l2710504" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2711234", + "length": "389.8953", + "name": "line_ln5654485-1", + "phases": "B", + "to": "l3198355" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3254207", + "length": "232.5821", + "name": "line_ln5532739-1", + "phases": "A", + "to": "m1069390" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026942", + "length": "100.0027", + "name": "line_ln5621826-1", + "phases": "A", + "to": "l3270814" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089155", + "length": "334.0934", + "name": "line_ln5562921-1", + "phases": "C", + "to": "m1089158" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1126005", + "length": "264.1888", + "name": "line_ln6351417-1", + "phases": "A", + "to": "l3011229" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2860485", + "length": "683.6444", + "name": "line_ln5744361-1", + "phases": "B", + "to": "l2860506" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649301", + "length": "206.8952", + "name": "line_ln6900591-14", + "phases": "A", + "to": "l3649302" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000500", + "length": "487.0540", + "name": "line_ln2000600-1", + "phases": "ABC", + "to": "m2000600" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649300", + "length": "200.7077", + "name": "line_ln6900591-12", + "phases": "A", + "to": "l3649301" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1108278", + "length": "377.7602", + "name": "line_ln5987964-1", + "phases": "B", + "to": "l3179699" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827521", + "length": "29.9900", + "name": "line_ln5955074-3", + "phases": "B", + "to": "n1139546" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "d5955074-2_int", + "length": "280.7418", + "name": "line_ln5955074-2", + "phases": "B", + "to": "l2970842" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m3037449", + "length": "60.2710", + "name": "line_ln6170199-2", + "phases": "C", + "to": "m1108375" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3104131", + "length": "200.5237", + "name": "line_ln5835146-1", + "phases": "A", + "to": "m1026377" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2879055", + "length": "298.3108", + "name": "line_ln6320322-1", + "phases": "C", + "to": "l2973144" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142798", + "length": "260.6285", + "name": "line_ln6078773-1", + "phases": "B", + "to": "m1142801" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047732", + "length": "284.4470", + "name": "line_ln6380810-1", + "phases": "ABC", + "to": "m1047737" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047613", + "length": "1.2596", + "name": "line_ln6268990-2", + "phases": "C", + "to": "m1047612" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026907", + "length": "242.8637", + "name": "line_ln5774458-1", + "phases": "ABC", + "to": "m1026915" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1136995", + "length": "41.4651", + "name": "line_ln6268990-4", + "phases": "C", + "to": "m1047613" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1137998", + "length": "78.1852", + "name": "line_ln6318740-3", + "phases": "C", + "to": "m1026895" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2954355", + "length": "78.1163", + "name": "line_ln5502544-1", + "phases": "A", + "to": "m1026665" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047615", + "length": "44.2262", + "name": "line_ln6268990-3", + "phases": "C", + "to": "n1136995" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p895409", + "length": "39.6178", + "name": "line_ln6318740-2", + "phases": "C", + "to": "n1137998" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047623", + "length": "194.1627", + "name": "line_ln6167816-1", + "phases": "A", + "to": "l3008279" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2730163", + "length": "277.3420", + "name": "line_ln6200527-1", + "phases": "ABC", + "to": "l2992624" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108381", + "length": "249.2006", + "name": "line_ln6350574-1", + "phases": "ABC", + "to": "l3254237" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1139552", + "length": "287.6580", + "name": "line_ln5895789-2", + "phases": "ABC", + "to": "m1026702" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047780", + "length": "403.1331", + "name": "line_ln5714046-1", + "phases": "B", + "to": "l3066811" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "r18243", + "length": "101.5811", + "name": "line_ln5895789-3", + "phases": "ABC", + "to": "n1139552" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1209800", + "length": "33.1037", + "name": "line_ln5958865-1", + "phases": "C", + "to": "p829957" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026978", + "length": "14.9610", + "name": "line_ln6169251-1", + "phases": "ABC", + "to": "m1026979" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026693", + "length": "279.6765", + "name": "line_ln6327237-1", + "phases": "B", + "to": "m1026699" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166402", + "length": "307.1493", + "name": "line_ln5866187-1", + "phases": "C", + "to": "l3048889" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108316", + "length": "27.5077", + "name": "line_ln5686489-1", + "phases": "C", + "to": "196-35541" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026699", + "length": "172.3718", + "name": "line_ln6327237-2", + "phases": "B", + "to": "m1026704" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047513", + "length": "20.5216", + "name": "line_ln5773033-1", + "phases": "C", + "to": "p901913" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047358", + "length": "317.3886", + "name": "line_ln5472368-1", + "phases": "A", + "to": "l2729411" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026485", + "length": "24.1747", + "name": "line_ln5504714-1", + "phases": "B", + "to": "p827542" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1089204", + "length": "144.1017", + "name": "line_ln5774449-1", + "phases": "A", + "to": "l3010557" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069560", + "length": "267.1578", + "name": "line_ln5773046-1", + "phases": "B", + "to": "m1069567" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069551", + "length": "399.6722", + "name": "line_ln5773046-2", + "phases": "B", + "to": "m1069560" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2710542", + "length": "116.0445", + "name": "line_ln6229831-1", + "phases": "B", + "to": "l2729430" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "d2001201_int", + "length": "158.2410", + "name": "line_ln2001202-1", + "phases": "C", + "to": "m2001202" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010013", + "length": "179.8878", + "name": "line_ln6379375-1", + "phases": "A", + "to": "l3120503" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "d5804798-3_int", + "length": "101.0495", + "name": "line_ln5804798-3", + "phases": "B", + "to": "m1047766" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "q14411", + "length": "148.8157", + "name": "line_ln5956499-3", + "phases": "ABC", + "to": "m1069428" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047763", + "length": "57.4991", + "name": "line_ln5804798-2", + "phases": "B", + "to": "n1136030" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3036165", + "length": "214.2829", + "name": "line_ln5986931-2", + "phases": "B", + "to": "l3235252" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2766749", + "length": "133.6607", + "name": "line_ln5956499-2", + "phases": "ABC", + "to": "d5956499-2_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827553", + "length": "17.5676", + "name": "line_ln6110366-1", + "phases": "B", + "to": "m1047826" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047793", + "length": "21.4717", + "name": "line_ln6108170-1", + "phases": "B", + "to": "m1047795" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026800", + "length": "191.5399", + "name": "line_ln5562934-1", + "phases": "ABC", + "to": "m1026797" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx1/0_tpx_ln6138596-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069390", + "length": "151.3075", + "name": "line_ln6138596-1", + "phases": "A", + "to": "l2841618" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047388", + "length": "161.6184", + "name": "line_ln5623394-1", + "phases": "B", + "to": "l2729407" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027039", + "length": "15.0029", + "name": "line_ln5806920-1", + "phases": "B", + "to": "d5806920-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069418", + "length": "287.9649", + "name": "line_ln5926291-1", + "phases": "ABC", + "to": "m1069417" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1147864", + "length": "225.2945", + "name": "line_ln6411373-3", + "phases": "A", + "to": "l2710536" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026902", + "length": "34.6921", + "name": "line_ln6411373-2", + "phases": "A", + "to": "n1147864" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001005", + "length": "158.2410", + "name": "line_ln2001006-1", + "phases": "B", + "to": "m2001006" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047406", + "length": "95.9189", + "name": "line_ln5472359-1", + "phases": "A", + "to": "l3216348" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3263051", + "length": "234.3576", + "name": "line_ln5623404-1", + "phases": "C", + "to": "m1069199" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069610", + "length": "200.0027", + "name": "line_ln5650048-1", + "phases": "B", + "to": "m1069600" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008733", + "length": "45.0148", + "name": "line_ln5644817-1", + "phases": "B", + "to": "l3225319" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108375", + "length": "176.6501", + "name": "line_ln6048521-1", + "phases": "C", + "to": "l3160793" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209791", + "length": "181.2465", + "name": "line_ln5654472-1", + "phases": "ABC", + "to": "m1209790" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3048937", + "length": "354.9270", + "name": "line_ln5651998-1", + "phases": "C", + "to": "l3176661" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2841638", + "length": "299.2813", + "name": "line_ln6199531-1", + "phases": "C", + "to": "l2860492" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026961", + "length": "281.3886", + "name": "line_ln6262263-1", + "phases": "A", + "to": "l2710516" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026366", + "length": "205.2000", + "name": "line_ln5653465-1", + "phases": "A", + "to": "l3122824" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p901905", + "length": "84.6496", + "name": "line_ln5682333-1", + "phases": "B", + "to": "l2804257" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047669", + "length": "11.1373", + "name": "line_ln5956464-1", + "phases": "ABC", + "to": "m1047672" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2954350", + "length": "376.7518", + "name": "line_ln6138606-1", + "phases": "C", + "to": "m1069206" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e183493", + "length": "292.8500", + "name": "line_ln6201850-1", + "phases": "ABC", + "to": "m1125902" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026926", + "length": "46.1483", + "name": "line_ln5926301-1", + "phases": "ABC", + "to": "m1026927" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009843", + "length": "187.1745", + "name": "line_ln6350552-1", + "phases": "B", + "to": "l3160108" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1139549", + "length": "144.2152", + "name": "line_ln6259994-2", + "phases": "A", + "to": "l2879074" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089189", + "length": "260.3539", + "name": "line_ln5593219-1", + "phases": "ABC", + "to": "l2841619" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026646", + "length": "170.0571", + "name": "line_ln6259994-3", + "phases": "A", + "to": "n1139549" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p827514", + "length": "19.9927", + "name": "line_ln6352699-1", + "phases": "ABC", + "to": "m1026876" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1089143", + "length": "243.0056", + "name": "line_ln5604685-1", + "phases": "ABC", + "to": "m1089145" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026947", + "length": "454.8886", + "name": "line_ln6077775-1", + "phases": "B", + "to": "m1026946" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1009650", + "length": "890.6687", + "name": "line_ln6044631-1", + "phases": "ABC", + "to": "e203026" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1089145", + "length": "243.0030", + "name": "line_ln5604685-2", + "phases": "ABC", + "to": "l3047289" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3104125", + "length": "125.4843", + "name": "line_ln5502531-1", + "phases": "ABC", + "to": "m1089131" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108276", + "length": "135.7914", + "name": "line_ln6048641-1", + "phases": "B", + "to": "l2786273" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069554", + "length": "109.3258", + "name": "line_ln5653478-1", + "phases": "B", + "to": "l3160115" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1136357", + "length": "131.1822", + "name": "line_ln5651985-3", + "phases": "C", + "to": "l2897790" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069548", + "length": "61.2280", + "name": "line_ln5651985-2", + "phases": "C", + "to": "n1136357" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p830058", + "length": "29.0947", + "name": "line_ln5776833-1", + "phases": "C", + "to": "m1166370" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4_wpal_ln5686245-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "p829961", + "length": "32.4490", + "name": "line_ln5686245-2", + "phases": "A", + "to": "n1141476" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3027133", + "length": "197.8784", + "name": "line_ln5528079-3", + "phases": "A", + "to": "m3037453" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4_wpal_ln5686245-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "n1141476", + "length": "250.6069", + "name": "line_ln5686245-3", + "phases": "A", + "to": "l2692654" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166396", + "length": "220.5701", + "name": "line_ln6324073-1", + "phases": "C", + "to": "m1166399" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2767342", + "length": "160.3990", + "name": "line_ln5503479-1", + "phases": "A", + "to": "l2748780" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047471", + "length": "60.3676", + "name": "line_ln6108139-1", + "phases": "B", + "to": "l3216349" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2804257", + "length": "194.9660", + "name": "line_ln5895776-1", + "phases": "B", + "to": "l2860485" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047503", + "length": "77.9751", + "name": "line_ln5863706-1", + "phases": "ABC", + "to": "l2841635" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1134479", + "length": "207.8592", + "name": "line_ln5682346-3", + "phases": "ABC", + "to": "d5682346-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009834", + "length": "1.0000", + "name": "line_ln6259981-1", + "phases": "B", + "to": "l3178969" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3178969", + "length": "251.3538", + "name": "line_ln6259981-2", + "phases": "B", + "to": "l2729401" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089207", + "length": "77.7650", + "name": "line_ln6290200-1", + "phases": "ABC", + "to": "l3160098" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069503", + "length": "92.9132", + "name": "line_ln5682346-2", + "phases": "ABC", + "to": "n1134479" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108364", + "length": "315.4259", + "name": "line_ln5683812-1", + "phases": "C", + "to": "l2897766" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3029500", + "length": "299.3632", + "name": "line_ln5835137-1", + "phases": "A", + "to": "m1026764" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p901932", + "length": "16.3311", + "name": "line_ln6439986-2", + "phases": "C", + "to": "n1136359" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1136359", + "length": "94.4884", + "name": "line_ln6439986-3", + "phases": "C", + "to": "l3008237" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3010585", + "length": "190.3367", + "name": "line_ln6320366-1", + "phases": "A", + "to": "m1026798" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000710", + "length": "158.2410", + "name": "line_ln2000711-1", + "phases": "B", + "to": "m2000711" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069590", + "length": "32.0216", + "name": "line_ln5744352-1", + "phases": "B", + "to": "l2801902" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3949157", + "length": "345.7821", + "name": "line_ln6991377-17", + "phases": "A", + "to": "l3728037" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3727708", + "length": "16.6518", + "name": "line_ln6991377-16", + "phases": "A", + "to": "m3949157" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3728037", + "length": "340.1888", + "name": "line_ln6991377-18", + "phases": "A", + "to": "m3949154" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069551", + "length": "185.1609", + "name": "line_ln5562947-1", + "phases": "B", + "to": "m1069555" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln5775367-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "m1126025", + "length": "182.4407", + "name": "line_ln5775367-1", + "phases": "A", + "to": "l2823545" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3729298", + "length": "195.4970", + "name": "line_ln6991377-13", + "phases": "A", + "to": "l3727707" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3727707", + "length": "180.7066", + "name": "line_ln6991377-15", + "phases": "A", + "to": "l3727708" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "n1136353", + "length": "34.7957", + "name": "line_ln5621848-3", + "phases": "B", + "to": "l2820535" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047819", + "length": "222.4618", + "name": "line_ln6350530-1", + "phases": "B", + "to": "m1047821" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069627", + "length": "454.5807", + "name": "line_ln6077797-1", + "phases": "B", + "to": "l2897791" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2674027", + "length": "222.7133", + "name": "line_ln5684836-1", + "phases": "ABC", + "to": "l2692633" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3729297", + "length": "205.3482", + "name": "line_ln6991377-11", + "phases": "A", + "to": "l3729298" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1009655", + "length": "23.2487", + "name": "line_ln8945010-1", + "phases": "C", + "to": "p827528" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2001200", + "length": "475.1888", + "name": "line_ln2001300-1", + "phases": "ABC", + "to": "m2001300" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1126023", + "length": "251.9229", + "name": "line_ln6291153-1", + "phases": "A", + "to": "m1126017" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047750", + "length": "276.6123", + "name": "line_ln5865234-1", + "phases": "A", + "to": "m1047744" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3085396", + "length": "765.8251", + "name": "line_ln6320331-1", + "phases": "A", + "to": "l3122813" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009820", + "length": "261.9394", + "name": "line_ln5774489-1", + "phases": "B", + "to": "l3254234" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000407", + "length": "158.2410", + "name": "line_ln2000408-1", + "phases": "A", + "to": "m2000408" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "221-311905", + "length": "45.8727", + "name": "line_ln8979254-2", + "phases": "ABC", + "to": "l3215203" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "p850080", + "length": "16.6854", + "name": "line_ln8979254-1", + "phases": "ABC", + "to": "221-311905" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1089103", + "length": "358.9900", + "name": "line_ln6047558-1", + "phases": "B", + "to": "l2673305" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx4_acsr_ln6201698-2", + "continuous_rating_B": "200.00", + "emergency_rating_B": "200.00", + "from": "p827529", + "length": "14.9008", + "name": "line_ln6201698-2", + "phases": "B", + "to": "n1136668" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx4_acsr_ln6201698-2", + "continuous_rating_B": "200.00", + "emergency_rating_B": "200.00", + "from": "n1136668", + "length": "142.0412", + "name": "line_ln6201698-3", + "phases": "B", + "to": "l3029506" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3235249", + "length": "307.3074", + "name": "line_ln6350539-1", + "phases": "A", + "to": "l2954348" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2954347", + "length": "100.0017", + "name": "line_ln5500962-1", + "phases": "B", + "to": "m1026953" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2992624", + "length": "167.4939", + "name": "line_ln6170293-1", + "phases": "ABC", + "to": "m1125919" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026953", + "length": "100.0001", + "name": "line_ln5500962-2", + "phases": "B", + "to": "l3008232" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2917328", + "length": "211.9502", + "name": "line_ln6351511-1", + "phases": "ABC", + "to": "l2861218" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047592", + "length": "131.5355", + "name": "line_ln5532748-5", + "phases": "ABC", + "to": "m3763619" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m3763619", + "length": "138.0662", + "name": "line_ln5532748-6", + "phases": "ABC", + "to": "m1026830" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069169", + "length": "275.2806", + "name": "line_ln6108126-1", + "phases": "A", + "to": "l2879064" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m3036164", + "length": "553.9034", + "name": "line_ln5593224-2", + "phases": "B", + "to": "l3085397" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln5775367-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "m1026851", + "length": "22.0639", + "name": "line_ln6019479-1", + "phases": "A", + "to": "p827536" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2860482", + "length": "2024.8919", + "name": "line_ln5744330-1", + "phases": "A", + "to": "l3254204" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3104154", + "length": "132.6244", + "name": "line_ln5859993-1", + "phases": "ABC", + "to": "l3104155" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2933120", + "length": "821.8043", + "name": "line_ln5804785-1", + "phases": "C", + "to": "l3104117" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026940", + "length": "376.8321", + "name": "line_ln6017291-1", + "phases": "B", + "to": "m1026935" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010011", + "length": "269.0022", + "name": "line_ln6198052-1", + "phases": "A", + "to": "l3120504" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "l3207907", + "length": "7.9536", + "name": "line_ln6506307-4", + "phases": "ABC", + "to": "m3037441" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m3036167", + "length": "10.2362", + "name": "line_ln6505945-1", + "phases": "ABC", + "to": "l2973156" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166386", + "length": "207.0501", + "name": "line_ln6381856-1", + "phases": "C", + "to": "l3048966" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026826", + "length": "198.3720", + "name": "line_ln5683843-1", + "phases": "A", + "to": "m1026820" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009843", + "length": "116.6697", + "name": "line_ln6167749-1", + "phases": "B", + "to": "l3251806" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047340", + "length": "320.4711", + "name": "line_ln6411391-1", + "phases": "A", + "to": "m1047342" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000700", + "length": "467.5113", + "name": "line_ln2000800-1", + "phases": "ABC", + "to": "m2000800" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069572", + "length": "129.9635", + "name": "line_ln6320353-1", + "phases": "B", + "to": "m1069574" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2973833", + "length": "135.8332", + "name": "line_ln5866308-1", + "phases": "ABC", + "to": "m1166373" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2711225", + "length": "324.5452", + "name": "line_ln6018330-1", + "phases": "C", + "to": "l3030200" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "d2000701_int", + "length": "158.2410", + "name": "line_ln2000702-1", + "phases": "B", + "to": "m2000702" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2936271", + "length": "457.8705", + "name": "line_ln5927423-1", + "phases": "ABC", + "to": "m1142815" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1136366", + "length": "15.5676", + "name": "line_ln5472390-3", + "phases": "ABC", + "to": "l2916620" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142835", + "length": "122.5730", + "name": "line_ln5896824-1", + "phases": "C", + "to": "l3104853" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026883", + "length": "202.1915", + "name": "line_ln5653491-1", + "phases": "C", + "to": "m1026898" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3027122", + "length": "23.6143", + "name": "line_ln5500984-1", + "phases": "A", + "to": "m1108506" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026667", + "length": "181.4030", + "name": "line_ln5956473-1", + "phases": "A", + "to": "m1026661" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069632", + "length": "121.5243", + "name": "line_ln5985349-1", + "phases": "B", + "to": "l2726974" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2726974", + "length": "292.5107", + "name": "line_ln5985349-2", + "phases": "B", + "to": "l2916618" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1069312", + "length": "24.0668", + "name": "line_ln81018875-1", + "phases": "C", + "to": "p873800" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069518", + "length": "54.0060", + "name": "line_ln5472390-2", + "phases": "ABC", + "to": "n1136366" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047483", + "length": "25.6845", + "name": "line_ln5958701-1", + "phases": "C", + "to": "p827505" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1142105", + "length": "37.9841", + "name": "line_ln5500984-3", + "phases": "A", + "to": "l3027122" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p901946", + "length": "11.6133", + "name": "line_ln5500984-4", + "phases": "A", + "to": "n1142105" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3225319", + "length": "167.4501", + "name": "line_ln5644817-2", + "phases": "B", + "to": "l3048201" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026463", + "length": "68.0458", + "name": "line_ln6292462-1", + "phases": "B", + "to": "p827495" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069469", + "length": "27.1375", + "name": "line_ln5683856-2", + "phases": "A", + "to": "n1139263" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1139263", + "length": "85.2604", + "name": "line_ln5683856-3", + "phases": "A", + "to": "l3048227" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047388", + "length": "704.6481", + "name": "line_ln5774454-1", + "phases": "B", + "to": "l2691942" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047344", + "length": "246.9745", + "name": "line_ln6108148-1", + "phases": "A", + "to": "l3029499" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx1/0_tpx_ln5562952-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "l2766742", + "length": "296.0489", + "name": "line_ln5562952-1", + "phases": "B", + "to": "m1009820" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047441", + "length": "199.4209", + "name": "line_ln6380814-1", + "phases": "B", + "to": "l3197635" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3327097", + "length": "141.0013", + "name": "line_ln6660515-2", + "phases": "B", + "to": "l3448661" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3066830", + "length": "438.1236", + "name": "line_ln6350570-1", + "phases": "B", + "to": "l3197660" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1166373", + "length": "30.6679", + "name": "line_ln6412354-1", + "phases": "ABC", + "to": "m1166374" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047335", + "length": "279.9641", + "name": "line_ln6169255-1", + "phases": "A", + "to": "l2710519" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069217", + "length": "289.9245", + "name": "line_ln5683821-1", + "phases": "C", + "to": "l2954350" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3216336", + "length": "219.6545", + "name": "line_ln5926286-1", + "phases": "A", + "to": "l2691936" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3772794", + "length": "242.3284", + "name": "line_ln6900592-3", + "phases": "A", + "to": "l3649306" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069556", + "length": "21.1808", + "name": "line_ln6258445-1", + "phases": "C", + "to": "p901932" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx6_wpal_ln5895785-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "l2710520", + "length": "140.3792", + "name": "line_ln5895785-1", + "phases": "A", + "to": "m1069131" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047423", + "length": "165.5714", + "name": "line_ln5835142-1", + "phases": "A", + "to": "m1047420" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2673300", + "length": "160.3403", + "name": "line_ln5532735-1", + "phases": "B", + "to": "m1008753" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "p827580", + "length": "26.2795", + "name": "line_ln5686080-1", + "phases": "ABC", + "to": "d5686080-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089205", + "length": "201.2216", + "name": "line_ln6015794-1", + "phases": "A", + "to": "m1089200" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069555", + "length": "158.7364", + "name": "line_ln5502557-1", + "phases": "B", + "to": "l3085410" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047292", + "length": "290.7026", + "name": "line_ln6229835-1", + "phases": "ABC", + "to": "l2691954" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001205", + "length": "158.2410", + "name": "line_ln2001206-1", + "phases": "C", + "to": "m2001206" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089132", + "length": "154.2124", + "name": "line_ln6077779-1", + "phases": "ABC", + "to": "l3029503" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026366", + "length": "307.2786", + "name": "line_ln5593237-1", + "phases": "A", + "to": "l3104131" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1145955", + "length": "44.7310", + "name": "line_ln5744343-3", + "phases": "A", + "to": "m1026335" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p829974", + "length": "217.0764", + "name": "line_ln5989328-1", + "phases": "A", + "to": "l2805034" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026468", + "length": "307.9317", + "name": "line_ln6380827-1", + "phases": "B", + "to": "l2766732" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047324", + "length": "303.8008", + "name": "line_ln5986935-1", + "phases": "ABC", + "to": "l2897780" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047769", + "length": "536.6376", + "name": "line_ln5954962-1", + "phases": "B", + "to": "l3197632" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026333", + "length": "45.1801", + "name": "line_ln5744343-2", + "phases": "A", + "to": "n1145955" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069300", + "length": "773.7608", + "name": "line_ln5637600-1", + "phases": "ABC", + "to": "m1069310" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "p895114", + "length": "19.4392", + "name": "line_ln5528573-2", + "phases": "A", + "to": "n1141479" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "n1141479", + "length": "34.1196", + "name": "line_ln5528573-3", + "phases": "A", + "to": "l3198348" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3122817", + "length": "182.9930", + "name": "line_ln5623400-1", + "phases": "C", + "to": "l2673314" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069181", + "length": "247.4870", + "name": "line_ln5804794-1", + "phases": "A", + "to": "l2973151" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "m1009715", + "length": "168.9360", + "name": "line_ln5804808-1", + "phases": "A", + "to": "l3010563" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009827", + "length": "285.9034", + "name": "line_ln5623390-1", + "phases": "B", + "to": "m1009832" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1089119", + "length": "22.3478", + "name": "line_ln5625547-1", + "phases": "B", + "to": "p827521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089165", + "length": "502.0201", + "name": "line_ln5926295-1", + "phases": "C", + "to": "l3216343" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047325", + "length": "31.5977", + "name": "line_ln5837356-1", + "phases": "A", + "to": "p827532" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089188", + "length": "217.5841", + "name": "line_ln6229790-1", + "phases": "ABC", + "to": "m1089189" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026341", + "length": "224.9630", + "name": "line_ln5683830-1", + "phases": "ABC", + "to": "l2973162" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026829", + "length": "449.6627", + "name": "line_ln5531256-1", + "phases": "ABC", + "to": "m1026824" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069208", + "length": "363.5215", + "name": "line_ln5865243-1", + "phases": "C", + "to": "l3010567" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m4362181", + "length": "214.7398", + "name": "line_ln5588016-4", + "phases": "B", + "to": "l3254214" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2710546", + "length": "84.9670", + "name": "line_ln5588016-3", + "phases": "B", + "to": "m4362181" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2917330", + "length": "293.7519", + "name": "line_ln5654476-1", + "phases": "A", + "to": "l2861222" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "d5653469-1_int", + "length": "196.0990", + "name": "line_ln5653469-1", + "phases": "B", + "to": "l3178981" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3118855", + "length": "165.6367", + "name": "line_ln5769126-1", + "phases": "ABC", + "to": "l3231255" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p901913", + "length": "75.8170", + "name": "line_ln5803262-1", + "phases": "C", + "to": "l3157708" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2841630", + "length": "93.0983", + "name": "line_ln5926305-1", + "phases": "C", + "to": "l2954352" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069513", + "length": "288.9146", + "name": "line_ln5895804-1", + "phases": "ABC", + "to": "m1069516" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026327", + "length": "834.7870", + "name": "line_ln6320340-1", + "phases": "B", + "to": "l3197643" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026648", + "length": "171.3352", + "name": "line_ln6229800-1", + "phases": "A", + "to": "m1026647" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m4113345", + "length": "264.5618", + "name": "line_ln5803262-6", + "phases": "C", + "to": "l3197640" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069192", + "length": "303.5370", + "name": "line_ln5562930-1", + "phases": "A", + "to": "l2991913" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047447", + "length": "175.3796", + "name": "line_ln6047567-1", + "phases": "B", + "to": "l2954349" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108484", + "length": "29.0088", + "name": "line_ln5565229-1", + "phases": "A", + "to": "p829797" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3010563", + "length": "201.8710", + "name": "line_ln6259990-1", + "phases": "A", + "to": "l2841623" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1136029", + "length": "358.6271", + "name": "line_ln5898058-2", + "phases": "B", + "to": "m1047767" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3157708", + "length": "46.3646", + "name": "line_ln5803262-7", + "phases": "C", + "to": "n1137991" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827509", + "length": "21.7021", + "name": "line_ln5898058-3", + "phases": "B", + "to": "n1136029" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1137991", + "length": "142.3802", + "name": "line_ln5803262-8", + "phases": "C", + "to": "m4113345" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209772", + "length": "571.9781", + "name": "line_ln5542283-1", + "phases": "ABC", + "to": "e192258" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "l2879062", + "length": "295.8563", + "name": "line_ln5956460-1", + "phases": "C", + "to": "m1089173" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125952", + "length": "18.0267", + "name": "line_ln5591708-1", + "phases": "C", + "to": "p901936" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1142811", + "length": "169.1020", + "name": "line_ln5745385-1", + "phases": "A", + "to": "l2992657" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108270", + "length": "404.8021", + "name": "line_ln6199509-1", + "phases": "B", + "to": "l2785516" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1142874", + "length": "26.4962", + "name": "line_ln6346338-1", + "phases": "C", + "to": "p895111" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047344", + "length": "184.8575", + "name": "line_ln5532757-1", + "phases": "A", + "to": "l3066819" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108524", + "length": "115.7807", + "name": "line_ln5679770-2", + "phases": "C", + "to": "n1136031" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125961", + "length": "21.8290", + "name": "line_ln5864458-1", + "phases": "C", + "to": "m1125959" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089179", + "length": "373.4225", + "name": "line_ln5835133-1", + "phases": "ABC", + "to": "m1069451" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1136031", + "length": "193.1489", + "name": "line_ln5679770-3", + "phases": "C", + "to": "l3197625" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2748133", + "length": "279.9007", + "name": "line_ln6108135-1", + "phases": "C", + "to": "l3085399" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026309", + "length": "716.4934", + "name": "line_ln5774467-1", + "phases": "B", + "to": "l2804260" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3104114", + "length": "182.2379", + "name": "line_ln5593215-1", + "phases": "B", + "to": "m1009824" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108526", + "length": "329.1773", + "name": "line_ln6380805-1", + "phases": "ABC", + "to": "m1089199" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125914", + "length": "14.3217", + "name": "line_ln6049963-1", + "phases": "B", + "to": "p829963" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2823544", + "length": "101.4413", + "name": "line_ln6379357-1", + "phases": "A", + "to": "m1126016" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3082993", + "length": "200.0021", + "name": "line_ln6492183-1", + "phases": "A", + "to": "m3016088" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "e182722", + "length": "43.8215", + "name": "line_ln5534966-2", + "phases": "A", + "to": "n1138596" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2001400", + "length": "620.8889", + "name": "line_ln2001500-1", + "phases": "ABC", + "to": "m2001500" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000910", + "length": "158.2410", + "name": "line_ln2000911-1", + "phases": "C", + "to": "m2000911" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2691938", + "length": "145.1848", + "name": "line_ln6169242-1", + "phases": "B", + "to": "m1009840" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m4113348", + "length": "27.2259", + "name": "line_ln8979343-3", + "phases": "C", + "to": "p850400" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1138596", + "length": "80.3537", + "name": "line_ln5534966-3", + "phases": "A", + "to": "l3254207" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125987", + "length": "221.2629", + "name": "line_ln6413700-1", + "phases": "ABC", + "to": "m1125989" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069181", + "length": "60.3135", + "name": "line_ln5532744-1", + "phases": "A", + "to": "l2804253" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108353", + "length": "279.4777", + "name": "line_ln5895772-1", + "phases": "C", + "to": "l3048205" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166387", + "length": "383.3797", + "name": "line_ln5624375-1", + "phases": "C", + "to": "l3198347" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027073", + "length": "151.8469", + "name": "line_ln6320362-1", + "phases": "C", + "to": "l2879089" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3214071", + "length": "176.9307", + "name": "line_ln5561442-2", + "phases": "ABC", + "to": "m1125952" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027004", + "length": "125.0134", + "name": "line_ln5986922-1", + "phases": "B", + "to": "l2804248" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000714", + "length": "158.2410", + "name": "line_ln2000715-1", + "phases": "B", + "to": "m2000715" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125947", + "length": "192.6255", + "name": "line_ln5561442-1", + "phases": "ABC", + "to": "l3214071" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069629", + "length": "480.0029", + "name": "line_ln5894218-1", + "phases": "B", + "to": "m1069640" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069550", + "length": "13.6103", + "name": "line_ln5956482-1", + "phases": "B", + "to": "m1069551" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1149233", + "length": "319.5453", + "name": "line_ln5896833-1", + "phases": "ABC", + "to": "l3048965" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108268", + "length": "1395.5175", + "name": "line_ln5500971-1", + "phases": "B", + "to": "m1108267" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001303", + "length": "158.2410", + "name": "line_ln2001304-1", + "phases": "A", + "to": "m2001304" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1139550", + "length": "79.6702", + "name": "line_ln6017301-3", + "phases": "A", + "to": "l3197639" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m3036169", + "length": "76.7364", + "name": "line_ln6017301-4", + "phases": "A", + "to": "n1139550" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069564", + "length": "21.4538", + "name": "line_ln6076243-1", + "phases": "A", + "to": "p901933" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3011298", + "length": "262.9836", + "name": "line_ln6351524-1", + "phases": "ABC", + "to": "m1108295" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3342743", + "length": "926.5898", + "name": "line_ln6140775-3", + "phases": "C", + "to": "m1026883" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p827511", + "length": "38.9983", + "name": "line_ln6140775-4", + "phases": "C", + "to": "n1140527" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1140527", + "length": "462.6618", + "name": "line_ln6140775-5", + "phases": "C", + "to": "l3342743" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3104830", + "length": "244.3375", + "name": "line_ln5563901-2", + "phases": "ABC", + "to": "n1142104" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1142104", + "length": "149.2232", + "name": "line_ln5563901-3", + "phases": "ABC", + "to": "m1108500" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047406", + "length": "215.2599", + "name": "line_ln6108134-1", + "phases": "A", + "to": "l2691947" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2879069", + "length": "401.0622", + "name": "line_ln6350535-1", + "phases": "A", + "to": "l3197633" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047404", + "length": "204.0024", + "name": "line_ln5480058-1", + "phases": "A", + "to": "l3091052" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008752", + "length": "98.9449", + "name": "line_ln6047554-1", + "phases": "B", + "to": "l3085389" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "n1139251", + "length": "572.7144", + "name": "line_ln8979344-4", + "phases": "C", + "to": "m1069249" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "221-311595", + "length": "12.6736", + "name": "line_ln8979344-3", + "phases": "C", + "to": "n1139251" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186065", + "length": "226.6769", + "name": "line_ln5927383-1", + "phases": "ABC", + "to": "m1186064" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l3101194", + "length": "732.6354", + "name": "line_ln81001717-1", + "phases": "C", + "to": "l2862616" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p850400", + "length": "22.9945", + "name": "line_ln8979344-1", + "phases": "C", + "to": "221-311595" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p901936", + "length": "116.9852", + "name": "line_ln6258453-1", + "phases": "C", + "to": "m1125955" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008743", + "length": "270.1045", + "name": "line_ln6017283-1", + "phases": "B", + "to": "m1008742" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069462", + "length": "98.5291", + "name": "line_ln5958706-1", + "phases": "B", + "to": "l3216342" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3217053", + "length": "8.7064", + "name": "line_ln6506315-4", + "phases": "C", + "to": "m3037455" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2935554", + "length": "143.9991", + "name": "line_ln6169247-1", + "phases": "ABC", + "to": "m1047713" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069155", + "length": "329.8938", + "name": "line_ln5532743-1", + "phases": "ABC", + "to": "m1069154" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3122816", + "length": "1669.6700", + "name": "line_ln6290209-1", + "phases": "ABC", + "to": "l3160103" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009828", + "length": "223.8816", + "name": "line_ln5865226-1", + "phases": "B", + "to": "l2766715" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3159448", + "length": "8.1646", + "name": "line_ln5965099-2", + "phases": "ABC", + "to": "m1069311" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069224", + "length": "392.4901", + "name": "line_ln5744357-1", + "phases": "C", + "to": "m1069218" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m3037540", + "length": "191.4830", + "name": "line_ln5593220-2", + "phases": "C", + "to": "l2822862" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089198", + "length": "580.8766", + "name": "line_ln6290199-1", + "phases": "ABC", + "to": "m1089201" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m4113347", + "length": "76.1859", + "name": "line_ln5965099-8", + "phases": "ABC", + "to": "n1138607" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1138607", + "length": "211.0061", + "name": "line_ln5965099-9", + "phases": "ABC", + "to": "l3159448" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3120534", + "length": "341.3440", + "name": "line_ln5501092-1", + "phases": "A", + "to": "m1126020" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026796", + "length": "99.7795", + "name": "line_ln5498301-1", + "phases": "ABC", + "to": "m1026795" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001308", + "length": "158.2410", + "name": "line_ln2001309-1", + "phases": "A", + "to": "m2001309" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026895", + "length": "200.0023", + "name": "line_ln5863691-1", + "phases": "C", + "to": "l2820528" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2820528", + "length": "99.9990", + "name": "line_ln5863691-2", + "phases": "C", + "to": "l2745799" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108372", + "length": "220.9222", + "name": "line_ln6230694-1", + "phases": "B", + "to": "l3179607" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026906", + "length": "407.0278", + "name": "line_ln6260001-1", + "phases": "A", + "to": "l2916598" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108484", + "length": "340.7917", + "name": "line_ln5503480-1", + "phases": "ABC", + "to": "l2730106" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026886", + "length": "31.7450", + "name": "line_ln6225673-1", + "phases": "C", + "to": "p895409" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2897772", + "length": "185.1913", + "name": "line_ln6318859-1", + "phases": "A", + "to": "l3101814" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069640", + "length": "308.8730", + "name": "line_ln6015793-1", + "phases": "B", + "to": "l3160113" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069514", + "length": "23.7765", + "name": "line_ln6171506-1", + "phases": "A", + "to": "p827548" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069738", + "length": "314.0726", + "name": "line_ln5878934-1", + "phases": "B", + "to": "l3234185" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p895105", + "length": "32.4339", + "name": "line_ln6134417-2", + "phases": "A", + "to": "n1142110" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1142110", + "length": "29.2657", + "name": "line_ln6134417-3", + "phases": "A", + "to": "l2673316" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137961", + "length": "404.0888", + "name": "line_ln6301772-3", + "phases": "A", + "to": "l3104133" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026935", + "length": "300.0984", + "name": "line_ln5865239-1", + "phases": "B", + "to": "l2935556" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026320", + "length": "240.9898", + "name": "line_ln6138611-1", + "phases": "B", + "to": "l3104130" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3160108", + "length": "192.4166", + "name": "line_ln6108156-1", + "phases": "B", + "to": "l3029510" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047314", + "length": "63.3868", + "name": "line_ln6301772-2", + "phases": "A", + "to": "n1137961" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026830", + "length": "9.0485", + "name": "line_ln5928545-1", + "phases": "C", + "to": "p827511" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069192", + "length": "180.7552", + "name": "line_ln5804793-1", + "phases": "A", + "to": "m1069191" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209753", + "length": "675.8918", + "name": "line_ln5866267-1", + "phases": "B", + "to": "m1209748" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108315", + "length": "38.0830", + "name": "line_ln6332133-1", + "phases": "C", + "to": "p860843" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3949157", + "length": "160.9866", + "name": "line_ln6991379-2", + "phases": "A", + "to": "l3727711" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026744", + "length": "552.4879", + "name": "line_ln5835150-1", + "phases": "ABC", + "to": "m1026724" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166356", + "length": "167.1584", + "name": "line_ln6078810-1", + "phases": "A", + "to": "l2730187" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3727711", + "length": "139.6441", + "name": "line_ln6991379-4", + "phases": "A", + "to": "l3727712" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047552", + "length": "28.7636", + "name": "line_ln6292466-1", + "phases": "B", + "to": "p827529" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1027002", + "length": "300.7955", + "name": "line_ln6199518-1", + "phases": "ABC", + "to": "l2673313" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2839305", + "length": "331.0785", + "name": "line_ln5712498-1", + "phases": "A", + "to": "m1166361" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1125979", + "length": "298.1622", + "name": "line_ln5957413-1", + "phases": "C", + "to": "l2917255" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1136363", + "length": "184.1570", + "name": "line_ln6290240-2", + "phases": "ABC", + "to": "r18245" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069564", + "length": "117.8696", + "name": "line_ln6290240-3", + "phases": "ABC", + "to": "n1136363" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166386", + "length": "656.1876", + "name": "line_ln6261020-1", + "phases": "C", + "to": "l2898515" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069202", + "length": "69.2940", + "name": "line_ln6017296-1", + "phases": "C", + "to": "l2785524" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2879074", + "length": "242.9736", + "name": "line_ln5714050-1", + "phases": "A", + "to": "l3122820" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047368", + "length": "208.7637", + "name": "line_ln6350548-1", + "phases": "B", + "to": "l2748130" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3160103", + "length": "78.8856", + "name": "line_ln5744335-1", + "phases": "ABC", + "to": "m1026950" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026670", + "length": "156.9219", + "name": "line_ln6380818-1", + "phases": "ABC", + "to": "m1026662" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3231255", + "length": "84.3952", + "name": "line_ln5527264-8", + "phases": "ABC", + "to": "n1144663" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1144663", + "length": "83.5498", + "name": "line_ln5527264-7", + "phases": "ABC", + "to": "m1089215" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3254234", + "length": "271.8398", + "name": "line_ln6077802-1", + "phases": "B", + "to": "l3104114" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2973150", + "length": "310.8926", + "name": "line_ln5774450-1", + "phases": "A", + "to": "m1047733" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000705", + "length": "158.2410", + "name": "line_ln2000706-1", + "phases": "B", + "to": "m2000706" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069311", + "length": "1.8394", + "name": "line_ln5486729-1", + "phases": "ABC", + "to": "m1069310" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1108380", + "length": "21.4622", + "name": "line_ln81048087-1", + "phases": "B", + "to": "p904452" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2785546", + "length": "390.7030", + "name": "line_ln6376200-2", + "phases": "A", + "to": "m1026810" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "d2000901_int", + "length": "158.2410", + "name": "line_ln2000902-1", + "phases": "C", + "to": "m2000902" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2822865", + "length": "253.7987", + "name": "line_ln6411368-1", + "phases": "C", + "to": "l2916606" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3082983", + "length": "75.8301", + "name": "line_ln6228303-1", + "phases": "B", + "to": "m1069588" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047750", + "length": "621.1883", + "name": "line_ln6349051-1", + "phases": "A", + "to": "l2708293" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089120", + "length": "190.0767", + "name": "line_ln5472360-1", + "phases": "ABC", + "to": "m1089119" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001010", + "length": "158.2410", + "name": "line_ln2001011-1", + "phases": "B", + "to": "m2001011" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166355", + "length": "367.5006", + "name": "line_ln6015891-1", + "phases": "A", + "to": "l2858200" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "e206614", + "length": "76.2777", + "name": "line_ln6228303-2", + "phases": "B", + "to": "l3082983" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009838", + "length": "133.9233", + "name": "line_ln6108121-1", + "phases": "B", + "to": "l2804245" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108526", + "length": "31.5603", + "name": "line_ln6437384-1", + "phases": "C", + "to": "p895075" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3729981", + "length": "110.0016", + "name": "line_ln6879075-2", + "phases": "A", + "to": "l3632979" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069213", + "length": "516.1835", + "name": "line_ln6259999-1", + "phases": "ABC", + "to": "m1069215" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026783", + "length": "96.2029", + "name": "line_ln6259999-2", + "phases": "A", + "to": "n1140524" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1140524", + "length": "385.6849", + "name": "line_ln6259999-3", + "phases": "A", + "to": "l3197641" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3066821", + "length": "208.2746", + "name": "line_ln5804812-1", + "phases": "A", + "to": "m1009691" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026660", + "length": "1114.9225", + "name": "line_ln5895781-1", + "phases": "A", + "to": "l3160106" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069384", + "length": "252.8025", + "name": "line_ln5683808-1", + "phases": "A", + "to": "l2785514" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142880", + "length": "400.7514", + "name": "line_ln5803293-1", + "phases": "C", + "to": "l2764411" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069208", + "length": "464.4504", + "name": "line_ln5593233-1", + "phases": "ABC", + "to": "m1069213" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026357", + "length": "191.9507", + "name": "line_ln5653492-1", + "phases": "C", + "to": "l3178997" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2764411", + "length": "180.1989", + "name": "line_ln5803293-2", + "phases": "C", + "to": "l2767343" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026823", + "length": "214.1278", + "name": "line_ln6047598-1", + "phases": "A", + "to": "l2879087" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m4122658", + "length": "5.4764", + "name": "line_ln5591731-3", + "phases": "ABC", + "to": "l2933135" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108311", + "length": "291.4310", + "name": "line_ln6170302-1", + "phases": "ABC", + "to": "d6170302-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010015", + "length": "267.0033", + "name": "line_ln6409799-1", + "phases": "A", + "to": "m1010014" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2973151", + "length": "251.8523", + "name": "line_ln5472351-1", + "phases": "A", + "to": "m1069187" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026972", + "length": "199.0756", + "name": "line_ln5926299-1", + "phases": "B", + "to": "l2860483" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047471", + "length": "249.8761", + "name": "line_ln5532787-1", + "phases": "B", + "to": "l2973180" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p829975", + "length": "40.8593", + "name": "line_ln6352834-1", + "phases": "C", + "to": "l3160871" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr1/0_tpx_ln6229827-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027066", + "length": "40.2007", + "name": "line_ln6229827-1", + "phases": "C", + "to": "l2841645" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108345", + "length": "127.0236", + "name": "line_ln5715018-1", + "phases": "C", + "to": "m1108347" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108535", + "length": "999.0802", + "name": "line_ln6167731-2", + "phases": "ABC", + "to": "m1108534" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1139539", + "length": "387.1738", + "name": "line_ln5926309-3", + "phases": "A", + "to": "l2710520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m3763623", + "length": "469.3374", + "name": "line_ln81353936-2", + "phases": "C", + "to": "l3645811" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3197631", + "length": "173.5427", + "name": "line_ln6047563-1", + "phases": "A", + "to": "l2748127" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4_wpal_ln5686245-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "m1125919", + "length": "34.2760", + "name": "line_ln6171683-1", + "phases": "A", + "to": "p829961" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l3645811", + "length": "18.7428", + "name": "line_ln81353936-3", + "phases": "C", + "to": "193-103041" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108534", + "length": "421.7730", + "name": "line_ln6167731-1", + "phases": "ABC", + "to": "m1108526" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026656", + "length": "612.1457", + "name": "line_ln6322630-1", + "phases": "A", + "to": "l2729428" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1137989", + "length": "118.0507", + "name": "line_ln5502526-3", + "phases": "C", + "to": "l3122814" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047737", + "length": "38.6342", + "name": "line_ln5502526-2", + "phases": "C", + "to": "n1137989" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1125974", + "length": "131.4431", + "name": "line_ln6260930-1", + "phases": "C", + "to": "m1125979" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3027157", + "length": "362.4202", + "name": "line_ln6076346-1", + "phases": "ABC", + "to": "l2973155" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026925", + "length": "51.1051", + "name": "line_ln5986927-1", + "phases": "A", + "to": "l2916599" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069135", + "length": "94.7918", + "name": "line_ln5926309-2", + "phases": "A", + "to": "n1139539" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000914", + "length": "158.2410", + "name": "line_ln2000915-1", + "phases": "C", + "to": "m2000915" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_3w_cs_ln6043468-3", + "continuous_rating_B": "200.00", + "emergency_rating_B": "200.00", + "from": "n1142106", + "length": "85.9279", + "name": "line_ln6043468-3", + "phases": "B", + "to": "l2936213" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_3w_cs_ln6043468-3", + "continuous_rating_B": "200.00", + "emergency_rating_B": "200.00", + "from": "p895082", + "length": "54.9488", + "name": "line_ln6043468-2", + "phases": "B", + "to": "n1142106" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047338", + "length": "495.8454", + "name": "line_ln6169256-1", + "phases": "A", + "to": "l2691953" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3254217", + "length": "202.9672", + "name": "line_ln6108143-1", + "phases": "ABC", + "to": "m1026800" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108328", + "length": "119.5846", + "name": "line_ln6076248-1", + "phases": "C", + "to": "l2767414" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069463", + "length": "7.6541", + "name": "line_ln5746549-1", + "phases": "B", + "to": "m1069462" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009832", + "length": "118.2659", + "name": "line_ln6199505-1", + "phases": "B", + "to": "l2860479" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1089113", + "length": "249.3927", + "name": "line_ln5835141-1", + "phases": "B", + "to": "l2691946" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069565", + "length": "58.9532", + "name": "line_ln5472386-1", + "phases": "B", + "to": "l3178988" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137003", + "length": "21.4361", + "name": "line_ln6229795-2", + "phases": "A", + "to": "l2935555" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009784", + "length": "199.5037", + "name": "line_ln5501004-1", + "phases": "ABC", + "to": "m1009770" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125978", + "length": "254.6946", + "name": "line_ln6286261-1", + "phases": "B", + "to": "m1125982" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047713", + "length": "31.5492", + "name": "line_ln6229795-3", + "phases": "A", + "to": "n1137003" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3104155", + "length": "209.1179", + "name": "line_ln5562961-1", + "phases": "ABC", + "to": "m1069456" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3197641", + "length": "427.7634", + "name": "line_ln5502539-1", + "phases": "A", + "to": "l2973161" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2973153", + "length": "34.5431", + "name": "line_ln6380809-2", + "phases": "ABC", + "to": "n1136998" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125994", + "length": "349.3140", + "name": "line_ln5775438-1", + "phases": "ABC", + "to": "m1125997" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069175", + "length": "251.0233", + "name": "line_ln5774463-1", + "phases": "C", + "to": "l3197637" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026907", + "length": "270.2779", + "name": "line_ln5916435-1", + "phases": "B", + "to": "p875742" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2990828", + "length": "700.7579", + "name": "line_ln8979259-1", + "phases": "ABC", + "to": "l2841619" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026702", + "length": "163.7106", + "name": "line_ln5653470-1", + "phases": "ABC", + "to": "l2729414" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047490", + "length": "237.7120", + "name": "line_ln6047576-1", + "phases": "ABC", + "to": "l2726973" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p860843", + "length": "130.5409", + "name": "line_ln5957502-1", + "phases": "C", + "to": "l3179682" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108335", + "length": "657.9893", + "name": "line_ln5625542-1", + "phases": "C", + "to": "m1108340" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166393", + "length": "405.4462", + "name": "line_ln5894226-3", + "phases": "C", + "to": "l2745811" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2727008", + "length": "614.1407", + "name": "line_ln6440071-1", + "phases": "B", + "to": "m1069629" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125905", + "length": "431.2295", + "name": "line_ln6170292-1", + "phases": "B", + "to": "l2917310" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047368", + "length": "138.7275", + "name": "line_ln5472373-1", + "phases": "B", + "to": "l2785528" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1136998", + "length": "219.2562", + "name": "line_ln6380809-3", + "phases": "ABC", + "to": "m1047669" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047580", + "length": "22.8385", + "name": "line_ln5843536-1", + "phases": "ABC", + "to": "p828362" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2745811", + "length": "178.5957", + "name": "line_ln6228316-5", + "phases": "C", + "to": "m4122657" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026344", + "length": "966.7167", + "name": "line_ln5804803-1", + "phases": "A", + "to": "m1026364" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108302", + "length": "115.5010", + "name": "line_ln6164818-1", + "phases": "B", + "to": "l3236011" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009771", + "length": "244.9447", + "name": "line_ln6167753-1", + "phases": "B", + "to": "l2914323" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047346", + "length": "141.5569", + "name": "line_ln5865248-1", + "phases": "ABC", + "to": "m1047345" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026363", + "length": "293.3988", + "name": "line_ln6229805-1", + "phases": "C", + "to": "l2897779" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008753", + "length": "283.0743", + "name": "line_ln5623389-1", + "phases": "B", + "to": "l3141390" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx1/0_tpx_ln5562952-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1069555", + "length": "148.6512", + "name": "line_ln5593246-1", + "phases": "B", + "to": "m1069557" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2933135", + "length": "246.4205", + "name": "line_ln5591731-1", + "phases": "ABC", + "to": "m1108484" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3083019", + "length": "94.2342", + "name": "line_ln6106658-1", + "phases": "A", + "to": "m1027080" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142818", + "length": "305.6238", + "name": "line_ln6200532-1", + "phases": "ABC", + "to": "l2955074" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008743", + "length": "216.4303", + "name": "line_ln5804780-1", + "phases": "B", + "to": "l3104115" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069597", + "length": "333.5841", + "name": "line_ln6108165-1", + "phases": "B", + "to": "l3197653" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2804283", + "length": "441.2658", + "name": "line_ln6017328-1", + "phases": "A", + "to": "l2916627" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1136660", + "length": "129.9732", + "name": "line_ln5532752-3", + "phases": "A", + "to": "l3010568" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047534", + "length": "32.5956", + "name": "line_ln5532752-2", + "phases": "A", + "to": "n1136660" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3254218", + "length": "233.8117", + "name": "line_ln6199527-1", + "phases": "ABC", + "to": "l2860490" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108356", + "length": "227.8079", + "name": "line_ln6139656-1", + "phases": "C", + "to": "l2842390" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2804272", + "length": "260.7098", + "name": "line_ln6229818-1", + "phases": "B", + "to": "l2841641" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m3327098", + "length": "655.5371", + "name": "line_ln6108130-6", + "phases": "B", + "to": "l2691943" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3178974", + "length": "236.0243", + "name": "line_ln6108130-5", + "phases": "B", + "to": "m3327098" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089158", + "length": "590.3313", + "name": "line_ln5956459-1", + "phases": "C", + "to": "m1089162" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "d5712587-2_int", + "length": "308.5397", + "name": "line_ln5712587-2", + "phases": "A", + "to": "l3083019" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027056", + "length": "104.1866", + "name": "line_ln5712587-3", + "phases": "A", + "to": "n1144667" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069487", + "length": "224.9118", + "name": "line_ln6017287-1", + "phases": "C", + "to": "l2954344" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009832", + "length": "312.9325", + "name": "line_ln5744326-1", + "phases": "B", + "to": "m1009838" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1089213", + "length": "30.6815", + "name": "line_ln5861081-1", + "phases": "C", + "to": "p895089" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089196", + "length": "350.5988", + "name": "line_ln5653452-1", + "phases": "ABC", + "to": "m1089198" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047484", + "length": "193.8668", + "name": "line_ln6290205-1", + "phases": "ABC", + "to": "l3010560" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089187", + "length": "180.2487", + "name": "line_ln6311089-1", + "phases": "ABC", + "to": "m1089186" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1144668", + "length": "97.1491", + "name": "line_ln5965099-11", + "phases": "ABC", + "to": "m4113347" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001210", + "length": "158.2410", + "name": "line_ln2001211-1", + "phases": "C", + "to": "m2001211" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069350", + "length": "87.7578", + "name": "line_ln5965099-10", + "phases": "ABC", + "to": "n1144668" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209758", + "length": "397.2876", + "name": "line_ln5624380-1", + "phases": "B", + "to": "m1209753" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089204", + "length": "176.4273", + "name": "line_ln5620694-1", + "phases": "A", + "to": "l3157167" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4_acsr_ln5589097-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "p895112", + "length": "84.0047", + "name": "line_ln5589097-1", + "phases": "A", + "to": "l3048962" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2767340", + "length": "6.3566", + "name": "line_ln6506311-4", + "phases": "ABC", + "to": "m3037449" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047766", + "length": "180.8875", + "name": "line_ln5683817-1", + "phases": "B", + "to": "l3216344" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2991907", + "length": "187.6262", + "name": "line_ln6199514-1", + "phases": "A", + "to": "m1069192" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142851", + "length": "45.4604", + "name": "line_ln5558790-1", + "phases": "ABC", + "to": "196-31070" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069730", + "length": "117.5797", + "name": "line_ln5636753-1", + "phases": "B", + "to": "l3159037" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108493", + "length": "122.0701", + "name": "line_ln6321372-3", + "phases": "ABC", + "to": "n1142103" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p829986", + "length": "70.4109", + "name": "line_ln5837516-1", + "phases": "A", + "to": "m1125904" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1142103", + "length": "36.7083", + "name": "line_ln6321372-2", + "phases": "ABC", + "to": "l3104830" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166394", + "length": "216.4745", + "name": "line_ln6230698-1", + "phases": "C", + "to": "m1166398" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3552667", + "length": "653.2326", + "name": "line_ln5987955-3", + "phases": "C", + "to": "l3160862" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1142873", + "length": "181.4969", + "name": "line_ln5987955-2", + "phases": "C", + "to": "l3552667" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2970845", + "length": "288.1818", + "name": "line_ln5501096-1", + "phases": "B", + "to": "l2897771" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2955074", + "length": "292.5235", + "name": "line_ln5594239-1", + "phases": "ABC", + "to": "l3030199" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047824", + "length": "1364.0281", + "name": "line_ln6350531-1", + "phases": "B", + "to": "m1047834" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069588", + "length": "37.5543", + "name": "line_ln6077796-1", + "phases": "B", + "to": "l2804270" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "m1047522", + "length": "29.5400", + "name": "line_ln6411386-2", + "phases": "A", + "to": "n1136664" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "n1136664", + "length": "26.6862", + "name": "line_ln6411386-3", + "phases": "A", + "to": "l3085401" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026931", + "length": "184.8177", + "name": "line_ln5472342-1", + "phases": "A", + "to": "l3216337" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2804248", + "length": "194.8072", + "name": "line_ln5835128-1", + "phases": "B", + "to": "m1027005" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3216348", + "length": "617.8543", + "name": "line_ln6320339-1", + "phases": "A", + "to": "l2841627" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3047060", + "length": "266.5638", + "name": "line_ln6153059-1", + "phases": "ABC", + "to": "l3048221" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4_wpal_ln5686245-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "l2692654", + "length": "7.7823", + "name": "line_ln5957492-1", + "phases": "A", + "to": "m1125929" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069464", + "length": "263.5756", + "name": "line_ln5593251-1", + "phases": "ABC", + "to": "m1069461" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_3w_cs_ln6043468-3", + "continuous_rating_B": "200.00", + "emergency_rating_B": "200.00", + "from": "m1108532", + "length": "35.7993", + "name": "line_ln5830952-1", + "phases": "B", + "to": "p895082" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827506", + "length": "23.1309", + "name": "line_ln6171502-1", + "phases": "A", + "to": "m1069469" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m3763619", + "length": "47.2003", + "name": "line_ln6896673-6", + "phases": "ABC", + "to": "m3763624" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026877", + "length": "402.1907", + "name": "line_ln6138615-1", + "phases": "A", + "to": "l2729413" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m3763624", + "length": "17.9005", + "name": "line_ln6896673-7", + "phases": "ABC", + "to": "m3763618" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000905", + "length": "158.2410", + "name": "line_ln2000906-1", + "phases": "C", + "to": "m2000906" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1137001", + "length": "162.8428", + "name": "line_ln5924696-3", + "phases": "A", + "to": "l2929261" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047702", + "length": "139.9731", + "name": "line_ln5924696-2", + "phases": "A", + "to": "n1137001" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047485", + "length": "645.7139", + "name": "line_ln5829831-1", + "phases": "ABC", + "to": "l3122821" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1108395", + "length": "282.4844", + "name": "line_ln6364659-1", + "phases": "ABC", + "to": "l2728247" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047835", + "length": "635.6506", + "name": "line_ln5926290-1", + "phases": "B", + "to": "m1047836" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3195327", + "length": "226.1158", + "name": "line_ln6258471-1", + "phases": "A", + "to": "l3139103" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p827575", + "length": "16.6826", + "name": "line_ln5776673-1", + "phases": "C", + "to": "m1069437" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047309", + "length": "14.9975", + "name": "line_ln6049825-1", + "phases": "ABC", + "to": "d6049825-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026463", + "length": "134.3393", + "name": "line_ln6380799-1", + "phases": "B", + "to": "m1026468" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209788", + "length": "351.7458", + "name": "line_ln6351519-1", + "phases": "ABC", + "to": "m1209787" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047335", + "length": "194.8681", + "name": "line_ln6077783-1", + "phases": "A", + "to": "l2954354" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166400", + "length": "241.9082", + "name": "line_ln6103754-1", + "phases": "C", + "to": "l3179637" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069376", + "length": "31.5853", + "name": "line_ln5867449-1", + "phases": "ABC", + "to": "p827563" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l3645809", + "length": "484.3930", + "name": "line_ln81354564-8", + "phases": "C", + "to": "l3645810" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827573", + "length": "69.0908", + "name": "line_ln6383061-1", + "phases": "B", + "to": "l2710542" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln5775367-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "l2914324", + "length": "351.8457", + "name": "line_ln6047585-1", + "phases": "A", + "to": "m1026805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3104122", + "length": "289.7434", + "name": "line_ln5986962-1", + "phases": "A", + "to": "l2804283" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m4113347", + "length": "49.3005", + "name": "line_ln7061777-3", + "phases": "C", + "to": "n1138606" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2991919", + "length": "279.8318", + "name": "line_ln5744339-1", + "phases": "A", + "to": "m1026361" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089162", + "length": "354.6122", + "name": "line_ln6320326-1", + "phases": "C", + "to": "l3197626" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p1121283", + "length": "10.6119", + "name": "line_ln81354564-4", + "phases": "C", + "to": "221-559682" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1136671", + "length": "140.1671", + "name": "line_ln5752776-3", + "phases": "ABC", + "to": "m1047593" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "p828362", + "length": "20.4461", + "name": "line_ln5752776-2", + "phases": "ABC", + "to": "n1136671" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1136669", + "length": "198.7289", + "name": "line_ln6350544-3", + "phases": "ABC", + "to": "l3103822" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047552", + "length": "94.0284", + "name": "line_ln6350544-2", + "phases": "ABC", + "to": "n1136669" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1089097", + "length": "468.9501", + "name": "line_ln5803267-1", + "phases": "B", + "to": "m1108268" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2897779", + "length": "316.7927", + "name": "line_ln5714054-1", + "phases": "C", + "to": "l2804261" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3216346", + "length": "430.9816", + "name": "line_ln5621834-1", + "phases": "ABC", + "to": "l2858163" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p827507", + "length": "36.8438", + "name": "line_ln6079949-2", + "phases": "C", + "to": "n1137956" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1138606", + "length": "105.8323", + "name": "line_ln7061777-4", + "phases": "C", + "to": "m1069335" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1137956", + "length": "166.6545", + "name": "line_ln6079949-3", + "phases": "C", + "to": "l3141396" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l3645810", + "length": "32.1749", + "name": "line_ln81354564-9", + "phases": "C", + "to": "m3763623" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069457", + "length": "35.9005", + "name": "line_ln6352701-1", + "phases": "ABC", + "to": "e182745" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2954348", + "length": "255.8185", + "name": "line_ln5562926-1", + "phases": "A", + "to": "l2841615" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001014", + "length": "158.2410", + "name": "line_ln2001015-1", + "phases": "B", + "to": "m2001015" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089141", + "length": "362.7082", + "name": "line_ln6259995-1", + "phases": "ABC", + "to": "l3160107" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3066812", + "length": "227.1750", + "name": "line_ln5926300-1", + "phases": "A", + "to": "l2841622" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069364", + "length": "151.5900", + "name": "line_ln6411364-1", + "phases": "C", + "to": "m1069365" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047434", + "length": "275.1617", + "name": "line_ln5472364-1", + "phases": "A", + "to": "m1047435" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2710514", + "length": "504.4690", + "name": "line_ln5623417-1", + "phases": "B", + "to": "m1047787" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l2916625", + "length": "457.0066", + "name": "line_ln81048230-1", + "phases": "B", + "to": "l3139598" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026366", + "length": "196.5599", + "name": "line_ln6290218-1", + "phases": "A", + "to": "l2860489" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047737", + "length": "531.9264", + "name": "line_ln5742898-1", + "phases": "ABC", + "to": "l3027157" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p859135", + "length": "22.2731", + "name": "line_ln6288693-1", + "phases": "A", + "to": "m1047702" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2001000", + "length": "421.2981", + "name": "line_ln2001100-1", + "phases": "ABC", + "to": "m2001100" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026777", + "length": "202.1725", + "name": "line_ln5773980-1", + "phases": "A", + "to": "l3233353" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089096", + "length": "286.9126", + "name": "line_ln5683804-1", + "phases": "C", + "to": "m1089093" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2763811", + "length": "330.7471", + "name": "line_ln81043320-2", + "phases": "C", + "to": "l2763812" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2952003", + "length": "351.8687", + "name": "line_ln5561437-1", + "phases": "ABC", + "to": "m1108381" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2763812", + "length": "607.6917", + "name": "line_ln81043320-3", + "phases": "C", + "to": "l2951995" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1069328", + "length": "629.7612", + "name": "line_ln81043320-1", + "phases": "C", + "to": "l2763811" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2951995", + "length": "496.6010", + "name": "line_ln81043320-4", + "phases": "C", + "to": "l3101194" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026939", + "length": "80.6324", + "name": "line_ln5623398-1", + "phases": "B", + "to": "l3104124" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_3", + "length": "2460.6750", + "name": "line_hvmv69s1s2-3", + "phases": "ABC", + "to": "hvmv69s1s2_4" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_2", + "length": "2460.6750", + "name": "line_hvmv69s1s2-2", + "phases": "ABC", + "to": "hvmv69s1s2_3" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_5", + "length": "6561.8000", + "name": "line_hvmv69s1s2-5", + "phases": "ABC", + "to": "hvmv69s1s2_6" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_4", + "length": "6561.8000", + "name": "line_hvmv69s1s2-4", + "phases": "ABC", + "to": "hvmv69s1s2_5" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_1", + "length": "3280.9000", + "name": "line_hvmv69s1s2-1", + "phases": "ABC", + "to": "hvmv69s1s2_2" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "d2001001_int", + "length": "158.2410", + "name": "line_ln2001002-1", + "phases": "B", + "to": "m2001002" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2691973", + "length": "111.7060", + "name": "line_ln5865270-1", + "phases": "A", + "to": "m1026890" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2691944", + "length": "297.4082", + "name": "line_ln5472355-1", + "phases": "A", + "to": "l2673312" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047420", + "length": "438.4929", + "name": "line_ln6411377-1", + "phases": "A", + "to": "l2820556" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026347", + "length": "167.1548", + "name": "line_ln5623408-1", + "phases": "ABC", + "to": "m1026341" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026760", + "length": "377.7446", + "name": "line_ln6229809-1", + "phases": "ABC", + "to": "m1026744" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3048890", + "length": "203.4283", + "name": "line_ln6048525-1", + "phases": "C", + "to": "m1166402" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m3036170", + "length": "53.3640", + "name": "line_ln6505950-1", + "phases": "ABC", + "to": "m1026670" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186064", + "length": "16.8848", + "name": "line_ln5654480-1", + "phases": "ABC", + "to": "m1186063" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069428", + "length": "251.5168", + "name": "line_ln6047604-1", + "phases": "ABC", + "to": "m1069424" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108361", + "length": "417.5641", + "name": "line_ln6199558-1", + "phases": "C", + "to": "m1089155" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2673326", + "length": "145.2550", + "name": "line_ln6320348-1", + "phases": "B", + "to": "l2691938" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026848", + "length": "222.8694", + "name": "line_ln5653461-1", + "phases": "A", + "to": "m1026847" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1209823", + "length": "302.2729", + "name": "line_ln5624291-1", + "phases": "C", + "to": "m1209824" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3008279", + "length": "304.0500", + "name": "line_ln5712578-1", + "phases": "A", + "to": "l2785537" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p901912", + "length": "122.7847", + "name": "line_ln6349077-1", + "phases": "B", + "to": "l3195365" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_7", + "length": "3280.9000", + "name": "line_hvmv69s1s2-7", + "phases": "ABC", + "to": "hvmv69s1s2_8" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_6", + "length": "6561.8000", + "name": "line_hvmv69s1s2-6", + "phases": "ABC", + "to": "hvmv69s1s2_7" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1089132", + "length": "124.7899", + "name": "line_ln5956468-1", + "phases": "C", + "to": "l2691950" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_9", + "length": "3280.9000", + "name": "line_hvmv69s1s2-9", + "phases": "ABC", + "to": "hvmv69s1s2_10" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108489", + "length": "80.6572", + "name": "line_ln5533710-1", + "phases": "A", + "to": "m1108492" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108490", + "length": "144.7308", + "name": "line_ln5927298-1", + "phases": "ABC", + "to": "l3142049" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_8", + "length": "3280.9000", + "name": "line_hvmv69s1s2-8", + "phases": "ABC", + "to": "hvmv69s1s2_9" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1139259", + "length": "116.9005", + "name": "line_ln5744370-3", + "phases": "C", + "to": "l2710543" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1108501", + "length": "188.2197", + "name": "line_ln6137015-1", + "phases": "A", + "to": "m1108499" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827554", + "length": "25.8492", + "name": "line_ln6258440-1", + "phases": "B", + "to": "m1047769" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047403", + "length": "225.0052", + "name": "line_ln6207101-1", + "phases": "A", + "to": "m1047404" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069437", + "length": "148.7545", + "name": "line_ln5744370-2", + "phases": "C", + "to": "n1139259" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047497", + "length": "26.1314", + "name": "line_ln5682337-1", + "phases": "B", + "to": "p901912" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2691939", + "length": "204.2774", + "name": "line_ln5714041-1", + "phases": "B", + "to": "l2860478" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3178971", + "length": "130.6145", + "name": "line_ln6138602-1", + "phases": "A", + "to": "l2879067" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026792", + "length": "567.0789", + "name": "line_ln5652982-1", + "phases": "A", + "to": "l2821010" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108295", + "length": "274.7377", + "name": "line_ln6109158-1", + "phases": "ABC", + "to": "l2936279" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026662", + "length": "107.8911", + "name": "line_ln6199523-2", + "phases": "C", + "to": "n1140831" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1140831", + "length": "400.8150", + "name": "line_ln6199523-3", + "phases": "C", + "to": "l3141402" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3784018", + "length": "158.5292", + "name": "line_ln6077815-5", + "phases": "ABC", + "to": "n1136028" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026874", + "length": "341.4872", + "name": "line_ln6229799-1", + "phases": "A", + "to": "l3197638" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l3214549", + "length": "26.2533", + "name": "line_ln81048110-3", + "phases": "A", + "to": "m1108393" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2973155", + "length": "210.0032", + "name": "line_ln6077815-4", + "phases": "ABC", + "to": "l3784018" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l2802481", + "length": "292.0428", + "name": "line_ln81048110-2", + "phases": "A", + "to": "l3214549" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1136028", + "length": "25.5998", + "name": "line_ln6077815-3", + "phases": "ABC", + "to": "l2876797" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1136365", + "length": "97.8402", + "name": "line_ln5714063-2", + "phases": "ABC", + "to": "m1069517" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069516", + "length": "168.6797", + "name": "line_ln5714063-3", + "phases": "ABC", + "to": "n1136365" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1108423", + "length": "135.1289", + "name": "line_ln81048110-1", + "phases": "A", + "to": "l2802481" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1009698", + "length": "165.6379", + "name": "line_ln5773028-1", + "phases": "A", + "to": "l3156034" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125982", + "length": "200.0042", + "name": "line_ln5588822-1", + "phases": "B", + "to": "l3029055" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125944", + "length": "569.2161", + "name": "line_ln6348948-1", + "phases": "ABC", + "to": "m1125947" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000411", + "length": "158.2410", + "name": "line_ln2000412-1", + "phases": "A", + "to": "m2000412" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069613", + "length": "324.3617", + "name": "line_ln6290227-1", + "phases": "B", + "to": "m1069597" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2842384", + "length": "222.3554", + "name": "line_ln5805762-1", + "phases": "ABC", + "to": "m1149236" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3101827", + "length": "493.8479", + "name": "line_ln5591811-1", + "phases": "C", + "to": "m1108540" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069169", + "length": "36.8592", + "name": "line_ln6413565-1", + "phases": "A", + "to": "p827508" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1134476", + "length": "130.9131", + "name": "line_ln6247127-2", + "phases": "ABC", + "to": "l3066814" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069499", + "length": "110.8912", + "name": "line_ln6247127-3", + "phases": "ABC", + "to": "n1134476" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125940", + "length": "582.4116", + "name": "line_ln5775469-1", + "phases": "B", + "to": "l3254915" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1125994", + "length": "11.1987", + "name": "line_ln5867591-1", + "phases": "ABC", + "to": "d5867591-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3253570", + "length": "291.0423", + "name": "line_ln6359077-2", + "phases": "C", + "to": "l2937757" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2937757", + "length": "265.2675", + "name": "line_ln6359077-1", + "phases": "C", + "to": "l3067448" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008742", + "length": "91.2261", + "name": "line_ln5895768-1", + "phases": "B", + "to": "l3029495" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047732", + "length": "39.2118", + "name": "line_ln5682448-2", + "phases": "C", + "to": "n1137987" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1137987", + "length": "128.2729", + "name": "line_ln5682448-3", + "phases": "C", + "to": "l3027156" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026941", + "length": "382.5877", + "name": "line_ln6077770-1", + "phases": "A", + "to": "l3197618" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009726", + "length": "238.6500", + "name": "line_ln5833652-1", + "phases": "ABC", + "to": "m1009724" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "196-29520", + "length": "212.1054", + "name": "line_ln5800830-1", + "phases": "ABC", + "to": "l3160109" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069505", + "length": "102.7877", + "name": "line_ln5653479-1", + "phases": "ABC", + "to": "m1069509" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p901941", + "length": "160.9551", + "name": "line_ln5651988-1", + "phases": "A", + "to": "l3251799" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047826", + "length": "194.0147", + "name": "line_ln5742816-1", + "phases": "B", + "to": "m1047825" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3036162", + "length": "189.5865", + "name": "line_ln5563909-2", + "phases": "B", + "to": "l2879753" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2/0_acsr1/0_tpx_ln5866260-1", + "continuous_rating_C": "225.00", + "emergency_rating_C": "300.00", + "from": "m1142839", + "length": "137.9666", + "name": "line_ln5866260-1", + "phases": "C", + "to": "l3067507" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2710508", + "length": "455.9166", + "name": "line_ln5562920-1", + "phases": "B", + "to": "l2822860" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "d6138609-1_int", + "length": "213.3922", + "name": "line_ln6138609-1", + "phases": "ABC", + "to": "l2691951" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026997", + "length": "69.2842", + "name": "line_ln5744360-1", + "phases": "B", + "to": "l3216361" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3178977", + "length": "195.6659", + "name": "line_ln5895777-1", + "phases": "C", + "to": "l3160105" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1125905", + "length": "797.8088", + "name": "line_ln6505937-2", + "phases": "B", + "to": "l3142079" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1138593", + "length": "134.7101", + "name": "line_ln6411394-3", + "phases": "A", + "to": "l2804262" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026859", + "length": "55.9754", + "name": "line_ln6411394-2", + "phases": "A", + "to": "n1138593" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108261", + "length": "160.2746", + "name": "line_ln6320323-1", + "phases": "B", + "to": "m1108260" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026387", + "length": "309.9930", + "name": "line_ln5835147-1", + "phases": "A", + "to": "l3085402" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1142819", + "length": "8.2337", + "name": "line_ln5625715-1", + "phases": "B", + "to": "p829960" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3160123", + "length": "301.0885", + "name": "line_ln6199556-1", + "phases": "A", + "to": "l2897805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069469", + "length": "70.0402", + "name": "line_ln5683813-1", + "phases": "A", + "to": "m1069467" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1047612", + "length": "17.6238", + "name": "line_ln8961760-1", + "phases": "C", + "to": "p828360" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026872", + "length": "299.2568", + "name": "line_ln5502543-2", + "phases": "ABC", + "to": "d5502543-2_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "p827530", + "length": "22.3774", + "name": "line_ln8945013-1", + "phases": "A", + "to": "221-240991" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3179678", + "length": "386.3706", + "name": "line_ln6079946-1", + "phases": "ABC", + "to": "l2804249" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3195315", + "length": "276.1621", + "name": "line_ln6015788-2", + "phases": "A", + "to": "m1069181" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209752", + "length": "516.6020", + "name": "line_ln6200528-1", + "phases": "B", + "to": "m1209751" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089203", + "length": "183.0172", + "name": "line_ln5986921-1", + "phases": "ABC", + "to": "m1089207" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069191", + "length": "155.4492", + "name": "line_ln6015788-1", + "phases": "A", + "to": "l3195315" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2804250", + "length": "226.7678", + "name": "line_ln5531326-1", + "phases": "C", + "to": "l2820583" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1140819", + "length": "88.3566", + "name": "line_ln6347196-2", + "phases": "ABC", + "to": "m1026700" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2955047", + "length": "156.3419", + "name": "line_ln5594212-1", + "phases": "ABC", + "to": "l3179646" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2804256", + "length": "177.0470", + "name": "line_ln6169250-1", + "phases": "ABC", + "to": "m1026960" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p827501", + "length": "14.1270", + "name": "line_ln6231992-3", + "phases": "ABC", + "to": "n1140516" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2973167", + "length": "226.3454", + "name": "line_ln6347196-3", + "phases": "ABC", + "to": "n1140819" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069564", + "length": "125.9584", + "name": "line_ln6041764-1", + "phases": "A", + "to": "l3104144" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1140516", + "length": "413.3485", + "name": "line_ln6231992-2", + "phases": "ABC", + "to": "m1089176" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1108258", + "length": "150.0009", + "name": "line_ln5500978-1", + "phases": "B", + "to": "l3195318" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047825", + "length": "282.3645", + "name": "line_ln5742816-2", + "phases": "B", + "to": "m1069731" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3030203", + "length": "177.7133", + "name": "line_ln5957496-1", + "phases": "C", + "to": "l3179673" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027013", + "length": "33.0822", + "name": "line_ln5863699-1", + "phases": "B", + "to": "p901905" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001300", + "length": "158.2410", + "name": "line_ln2001301-1", + "phases": "A", + "to": "m2001301" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2952007", + "length": "415.1863", + "name": "line_ln5894230-1", + "phases": "C", + "to": "l2861158" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3104134", + "length": "152.5333", + "name": "line_ln5472369-1", + "phases": "ABC", + "to": "m1047346" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m3037455", + "length": "233.9614", + "name": "line_ln5927379-2", + "phases": "C", + "to": "l3217052" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069148", + "length": "90.2982", + "name": "line_ln5865231-1", + "phases": "C", + "to": "l2785518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166395", + "length": "25.3826", + "name": "line_ln6142227-1", + "phases": "C", + "to": "m1166396" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069557", + "length": "231.7372", + "name": "line_ln5502556-1", + "phases": "B", + "to": "m1069558" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026854", + "length": "430.5449", + "name": "line_ln6380822-1", + "phases": "ABC", + "to": "m1026852" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "d5653457-1_int", + "length": "281.2004", + "name": "line_ln5653457-1", + "phases": "ABC", + "to": "m1026891" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1142099", + "length": "114.4203", + "name": "line_ln5920279-4", + "phases": "ABC", + "to": "n1142100" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3178978", + "length": "545.1564", + "name": "line_ln5683826-1", + "phases": "A", + "to": "m1047432" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089115", + "length": "235.6286", + "name": "line_ln6199521-1", + "phases": "C", + "to": "l2991911" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1142100", + "length": "43.6129", + "name": "line_ln5920279-2", + "phases": "ABC", + "to": "m1108490" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001202", + "length": "158.2410", + "name": "line_ln2001203-1", + "phases": "C", + "to": "m2001203" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2730106", + "length": "73.3906", + "name": "line_ln5920279-5", + "phases": "ABC", + "to": "n1142099" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p827576", + "length": "31.5531", + "name": "line_ln5746550-2", + "phases": "B", + "to": "n1139256" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108402", + "length": "194.7122", + "name": "line_ln6422013-1", + "phases": "ABC", + "to": "m1108403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026784", + "length": "51.5389", + "name": "line_ln5562933-3", + "phases": "C", + "to": "n1140523" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1140523", + "length": "71.7140", + "name": "line_ln5562933-2", + "phases": "C", + "to": "l2766724" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069213", + "length": "134.2738", + "name": "line_ln5623401-1", + "phases": "C", + "to": "l3178977" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "n1139256", + "length": "208.8243", + "name": "line_ln5746550-3", + "phases": "B", + "to": "l2973178" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2973144", + "length": "550.6982", + "name": "line_ln5706733-1", + "phases": "C", + "to": "l2724120" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1009720", + "length": "319.3456", + "name": "line_ln5804809-1", + "phases": "A", + "to": "l3178982" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2724120", + "length": "16.7530", + "name": "line_ln5706733-2", + "phases": "C", + "to": "m1069149" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001313", + "length": "158.2410", + "name": "line_ln2001314-1", + "phases": "A", + "to": "m2001314" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3235242", + "length": "451.5144", + "name": "line_ln5623391-1", + "phases": "C", + "to": "m1089195" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108368", + "length": "230.8171", + "name": "line_ln5926294-1", + "phases": "C", + "to": "l3085393" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1108433", + "length": "438.1220", + "name": "line_ln81048090-1", + "phases": "B", + "to": "228-1048090-1_int" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001006", + "length": "158.2410", + "name": "line_ln2001007-1", + "phases": "B", + "to": "m2001007" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1009809", + "length": "296.3248", + "name": "line_ln6077787-1", + "phases": "C", + "to": "l2710525" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010011", + "length": "266.0036", + "name": "line_ln6106584-1", + "phases": "A", + "to": "m1010008" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108507", + "length": "204.0031", + "name": "line_ln6206103-1", + "phases": "A", + "to": "l3108449" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047442", + "length": "211.6190", + "name": "line_ln5472356-1", + "phases": "B", + "to": "l3235250" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "150.00", + "continuous_rating_B": "150.00", + "continuous_rating_C": "150.00", + "emergency_rating_A": "150.00", + "emergency_rating_B": "150.00", + "emergency_rating_C": "150.00", + "from": "m1047672", + "length": "126.3856", + "name": "line_ln6411372-1", + "phases": "ABC", + "to": "l2822866" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047728", + "length": "311.4050", + "name": "line_ln6108129-1", + "phases": "B", + "to": "l2804255" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_2ph_h-2_acsrx2_acsr2_acsr_ln5637597-1", + "continuous_rating_A": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_C": "175.00", + "from": "m1069311", + "length": "271.5506", + "name": "line_ln5637597-1", + "phases": "AC", + "to": "m1069285" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_wpalxx2_wpal_ln6409800-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1009726", + "length": "128.3322", + "name": "line_ln6409800-1", + "phases": "A", + "to": "l3101789" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1069250", + "length": "67.4391", + "name": "line_ln8979371-1", + "phases": "C", + "to": "l2690868" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2690868", + "length": "37.6010", + "name": "line_ln8979371-2", + "phases": "C", + "to": "228-979371-2_int" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026330", + "length": "98.7159", + "name": "line_ln6047581-1", + "phases": "B", + "to": "l2766726" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009840", + "length": "179.8876", + "name": "line_ln5502521-1", + "phases": "B", + "to": "l2991901" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142863", + "length": "220.3181", + "name": "line_ln5836178-1", + "phases": "ABC", + "to": "m1142865" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026925", + "length": "361.9296", + "name": "line_ln5926304-1", + "phases": "A", + "to": "l3235249" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047722", + "length": "116.0008", + "name": "line_ln5863709-1", + "phases": "B", + "to": "l3214064" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026949", + "length": "286.0052", + "name": "line_ln6259991-1", + "phases": "B", + "to": "m1026951" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3104117", + "length": "412.6293", + "name": "line_ln5593218-1", + "phases": "C", + "to": "m1069494" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000402", + "length": "158.2410", + "name": "line_ln2000403-1", + "phases": "A", + "to": "m2000403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "630.00", + "continuous_rating_B": "630.00", + "continuous_rating_C": "630.00", + "emergency_rating_A": "630.00", + "emergency_rating_B": "630.00", + "emergency_rating_C": "630.00", + "from": "m1142843", + "length": "245.0608", + "name": "line_ln6381853-1", + "phases": "ABC", + "to": "l2955077" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069412", + "length": "202.6322", + "name": "line_ln5502530-1", + "phases": "B", + "to": "l3066813" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1147858", + "length": "173.5184", + "name": "line_ln5943422-4", + "phases": "C", + "to": "l2991933" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2746587", + "length": "74.8775", + "name": "line_ln5943422-3", + "phases": "C", + "to": "n1147858" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3216338", + "length": "192.1988", + "name": "line_ln6380800-1", + "phases": "B", + "to": "l2973146" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p859694", + "length": "52.8042", + "name": "line_ln5943422-1", + "phases": "C", + "to": "l2746587" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026487", + "length": "31.3447", + "name": "line_ln5956476-1", + "phases": "B", + "to": "l2897784" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3198355", + "length": "363.5753", + "name": "line_ln6048642-1", + "phases": "B", + "to": "l2805037" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009855", + "length": "384.1835", + "name": "line_ln6138618-1", + "phases": "B", + "to": "l2991927" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2860486", + "length": "331.2102", + "name": "line_ln6350540-1", + "phases": "C", + "to": "l3141399" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1166377", + "length": "110.7624", + "name": "line_ln5992960-1", + "phases": "ABC", + "to": "m1166376" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026726", + "length": "129.8469", + "name": "line_ln6286965-1", + "phases": "ABC", + "to": "l2814529" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln5775367-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "m1026826", + "length": "274.2617", + "name": "line_ln6258470-1", + "phases": "A", + "to": "l2952013" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m3032980", + "length": "844.6493", + "name": "line_ln6504020-2", + "phases": "ABC", + "to": "m3032977" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3254206", + "length": "162.4460", + "name": "line_ln6259982-1", + "phases": "B", + "to": "m1009827" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2729409", + "length": "284.6627", + "name": "line_ln5835138-1", + "phases": "B", + "to": "l2841624" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047312", + "length": "49.7687", + "name": "line_ln6320367-3", + "phases": "ABC", + "to": "n1137960" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047713", + "length": "361.5443", + "name": "line_ln6132680-1", + "phases": "ABC", + "to": "m1047720" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1137960", + "length": "82.5215", + "name": "line_ln6320367-2", + "phases": "ABC", + "to": "m1047309" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166362", + "length": "338.9199", + "name": "line_ln6078774-1", + "phases": "A", + "to": "m1166355" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1138599", + "length": "207.3310", + "name": "line_ln6375549-3", + "phases": "ABC", + "to": "l3181545" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069376", + "length": "72.1654", + "name": "line_ln6375549-4", + "phases": "ABC", + "to": "n1138599" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649297", + "length": "208.8413", + "name": "line_ln6900591-6", + "phases": "A", + "to": "l3649298" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2991914", + "length": "116.9643", + "name": "line_ln5651975-1", + "phases": "ABC", + "to": "m1047503" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1138603", + "length": "72.4428", + "name": "line_ln6375549-5", + "phases": "ABC", + "to": "l3125349" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649298", + "length": "212.0879", + "name": "line_ln6900591-8", + "phases": "A", + "to": "l3649299" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026906", + "length": "603.8337", + "name": "line_ln5683857-1", + "phases": "A", + "to": "l2691973" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3181545", + "length": "257.6979", + "name": "line_ln6375549-6", + "phases": "ABC", + "to": "n1138603" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1047371", + "length": "8.0703", + "name": "line_ln8968081-1", + "phases": "B", + "to": "p841985" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026997", + "length": "197.8844", + "name": "line_ln5653488-1", + "phases": "ABC", + "to": "m1027000" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000709", + "length": "158.2410", + "name": "line_ln2000710-1", + "phases": "B", + "to": "m2000710" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069526", + "length": "126.3230", + "name": "line_ln5562946-1", + "phases": "B", + "to": "l2673331" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089173", + "length": "275.8833", + "name": "line_ln5714045-1", + "phases": "C", + "to": "l2673307" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2897790", + "length": "231.0858", + "name": "line_ln5744351-1", + "phases": "C", + "to": "l2935566" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2861218", + "length": "522.7714", + "name": "line_ln5958866-1", + "phases": "ABC", + "to": "d5958866-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026364", + "length": "196.0555", + "name": "line_ln5895786-1", + "phases": "A", + "to": "l3010570" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026357", + "length": "97.0959", + "name": "line_ln5532791-1", + "phases": "ABC", + "to": "m1026356" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2783231", + "length": "498.4985", + "name": "line_ln5985355-1", + "phases": "B", + "to": "l3254227" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "196-29521", + "length": "33.6248", + "name": "line_ln5985355-4", + "phases": "B", + "to": "n1136355" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1136355", + "length": "237.7170", + "name": "line_ln5985355-3", + "phases": "B", + "to": "l2783231" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026786", + "length": "12.6965", + "name": "line_ln5770318-1", + "phases": "ABC", + "to": "m1026785" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047424", + "length": "213.0072", + "name": "line_ln5683822-1", + "phases": "ABC", + "to": "l2691949" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2684420", + "length": "273.7994", + "name": "line_ln5532738-1", + "phases": "B", + "to": "m1047824" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der480-2", + "length": "164.0450", + "name": "line_ln2001der-5", + "phases": "ABC", + "to": "m2001der-5" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026646", + "length": "645.2385", + "name": "line_ln5986930-1", + "phases": "A", + "to": "l3178978" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2841620", + "length": "786.5047", + "name": "line_ln6320332-1", + "phases": "B", + "to": "l2785520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3104118", + "length": "261.7369", + "name": "line_ln5774448-1", + "phases": "C", + "to": "l2748126" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027027", + "length": "141.4650", + "name": "line_ln6137083-1", + "phases": "C", + "to": "l3270853" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047568", + "length": "52.2944", + "name": "line_ln6383059-1", + "phases": "ABC", + "to": "p827527" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3197661", + "length": "222.9421", + "name": "line_ln6229832-2", + "phases": "C", + "to": "l3122848" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026898", + "length": "9.5488", + "name": "line_ln6229832-1", + "phases": "C", + "to": "l3197661" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108534", + "length": "20.8799", + "name": "line_ln5863718-1", + "phases": "A", + "to": "p901934" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der480-1", + "length": "164.0450", + "name": "line_ln2001der-2", + "phases": "ABC", + "to": "m2001der-2" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026847", + "length": "199.3486", + "name": "line_ln5804799-1", + "phases": "A", + "to": "l2673311" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der480-1", + "length": "164.0450", + "name": "line_ln2001der-1", + "phases": "ABC", + "to": "m2001der-1" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1139258", + "length": "133.4038", + "name": "line_ln5956498-3", + "phases": "C", + "to": "l3066810" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der480-2", + "length": "164.0450", + "name": "line_ln2001der-4", + "phases": "ABC", + "to": "m2001der-4" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069437", + "length": "36.9412", + "name": "line_ln5956498-2", + "phases": "C", + "to": "n1139258" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125957", + "length": "124.2152", + "name": "line_ln5982822-1", + "phases": "C", + "to": "l2936211" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der480-1", + "length": "164.0450", + "name": "line_ln2001der-3", + "phases": "ABC", + "to": "m2001der-3" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1126005", + "length": "228.4940", + "name": "line_ln6381764-1", + "phases": "A", + "to": "l2767342" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "p862322", + "length": "17.0725", + "name": "line_ln8979251-1", + "phases": "ABC", + "to": "221-308718" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108540", + "length": "80.6050", + "name": "line_ln6078689-1", + "phases": "C", + "to": "l2955006" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069497", + "length": "50.1289", + "name": "line_ln6138595-1", + "phases": "ABC", + "to": "m1069495" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "221-308718", + "length": "110.4917", + "name": "line_ln8979251-2", + "phases": "ABC", + "to": "l2803199" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026699", + "length": "304.0944", + "name": "line_ln5993742-1", + "phases": "B", + "to": "m1026722" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3177894", + "length": "302.0037", + "name": "line_ln5486878-2", + "phases": "A", + "to": "l3082993" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010004", + "length": "818.0145", + "name": "line_ln5486878-1", + "phases": "A", + "to": "l3177894" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2876797", + "length": "161.9998", + "name": "line_ln6258439-1", + "phases": "ABC", + "to": "r18241" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx1/0_tpx_ln6138596-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026942", + "length": "13.9427", + "name": "line_ln6228279-2", + "phases": "A", + "to": "l3141389" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx1/0_tpx_ln6138596-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026941", + "length": "70.5679", + "name": "line_ln6228279-1", + "phases": "A", + "to": "m1026942" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p829979", + "length": "106.8505", + "name": "line_ln5746706-2", + "phases": "B", + "to": "m3036172" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "r18242", + "length": "124.2353", + "name": "line_ln6199530-1", + "phases": "ABC", + "to": "l3254218" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209805", + "length": "346.3323", + "name": "line_ln5775442-1", + "phases": "ABC", + "to": "l2823592" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1126020", + "length": "415.6966", + "name": "line_ln5651997-1", + "phases": "A", + "to": "m1126025" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1209828", + "length": "131.8017", + "name": "line_ln5873976-1", + "phases": "C", + "to": "l3253570" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026377", + "length": "417.5009", + "name": "line_ln5653466-1", + "phases": "A", + "to": "l3048210" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125955", + "length": "22.3958", + "name": "line_ln5740283-1", + "phases": "C", + "to": "m1125957" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069521", + "length": "163.7358", + "name": "line_ln6380835-1", + "phases": "A", + "to": "l3254231" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2766718", + "length": "301.1786", + "name": "line_ln5956463-1", + "phases": "ABC", + "to": "l3048206" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047386", + "length": "438.7386", + "name": "line_ln5562924-1", + "phases": "B", + "to": "m1047388" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3142049", + "length": "277.7944", + "name": "line_ln5889821-1", + "phases": "ABC", + "to": "m1108493" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026745", + "length": "298.6161", + "name": "line_ln5841919-1", + "phases": "B", + "to": "l3029183" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3216347", + "length": "282.0352", + "name": "line_ln6138605-1", + "phases": "C", + "to": "l2785523" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3235946", + "length": "573.5518", + "name": "line_ln5836089-1", + "phases": "A", + "to": "m1126005" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010004", + "length": "55.0000", + "name": "line_ln6198053-1", + "phases": "A", + "to": "m1010003" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089131", + "length": "314.2117", + "name": "line_ln6290212-1", + "phases": "ABC", + "to": "l3029502" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "190-8593", + "length": "26.3392", + "name": "line_ln5860423-3", + "phases": "ABC", + "to": "d5860423-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "q14733", + "length": "49.0923", + "name": "line_ln5860423-4", + "phases": "ABC", + "to": "m1047568" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3029505", + "length": "326.7059", + "name": "line_ln6411385-1", + "phases": "C", + "to": "l2673318" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142819", + "length": "199.4706", + "name": "line_ln5684859-1", + "phases": "B", + "to": "l2861219" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142874", + "length": "180.3150", + "name": "line_ln5987954-1", + "phases": "ABC", + "to": "m1142875" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108274", + "length": "173.3932", + "name": "line_ln5472347-1", + "phases": "B", + "to": "m1108276" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2841632", + "length": "82.4350", + "name": "line_ln5860423-1", + "phases": "ABC", + "to": "d5860450-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1008758", + "length": "146.2941", + "name": "line_ln5835125-1", + "phases": "B", + "to": "l2822859" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047575", + "length": "29.1784", + "name": "line_ln5860423-2", + "phases": "ABC", + "to": "regxfmr_190-8593" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047480", + "length": "373.9647", + "name": "line_ln6077774-1", + "phases": "ABC", + "to": "m1069483" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026979", + "length": "252.7192", + "name": "line_ln5865240-1", + "phases": "B", + "to": "l2748152" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047592", + "length": "11.9955", + "name": "line_ln5565092-1", + "phases": "C", + "to": "p827512" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047340", + "length": "212.5907", + "name": "line_ln6411390-1", + "phases": "A", + "to": "l2991923" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln5775367-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "p827536", + "length": "41.1322", + "name": "line_ln6440002-3", + "phases": "A", + "to": "n1137999" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2954361", + "length": "177.7935", + "name": "line_ln6320354-1", + "phases": "B", + "to": "m1069627" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln5775367-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "d6440002-2_int", + "length": "264.7623", + "name": "line_ln6440002-2", + "phases": "A", + "to": "l2876813" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m3032980", + "length": "84.9074", + "name": "line_ln0504020-1", + "phases": "ABC", + "to": "m3032981" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2730108", + "length": "276.7724", + "name": "line_ln5896731-1", + "phases": "C", + "to": "l2786204" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026339", + "length": "237.5300", + "name": "line_ln5774466-1", + "phases": "B", + "to": "l2766727" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142832", + "length": "220.0818", + "name": "line_ln6018331-1", + "phases": "ABC", + "to": "l3160865" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027036", + "length": "70.3834", + "name": "line_ln5744364-1", + "phases": "B", + "to": "l3010580" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000700", + "length": "158.2410", + "name": "line_ln2000701-1", + "phases": "B", + "to": "m2000701" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p860892", + "length": "35.2100", + "name": "line_ln6108138-2", + "phases": "C", + "to": "n1139543" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1139543", + "length": "162.8483", + "name": "line_ln6108138-3", + "phases": "C", + "to": "l2727795" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2955077", + "length": "197.7251", + "name": "line_ln6413954-1", + "phases": "ABC", + "to": "m1142851" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2692655", + "length": "175.6059", + "name": "line_ln5896825-1", + "phases": "ABC", + "to": "m1142821" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3214112", + "length": "339.3890", + "name": "line_ln5803984-2", + "phases": "B", + "to": "l3160104" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3254214", + "length": "273.9130", + "name": "line_ln5803984-1", + "phases": "B", + "to": "l3214112" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1089145", + "length": "118.0004", + "name": "line_ln6028890-1", + "phases": "ABC", + "to": "l3215385" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1137958", + "length": "291.0830", + "name": "line_ln5958702-3", + "phases": "C", + "to": "m1047478" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026485", + "length": "216.2351", + "name": "line_ln6290243-1", + "phases": "B", + "to": "m1026492" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3030197", + "length": "231.4259", + "name": "line_ln6381844-1", + "phases": "ABC", + "to": "m1142868" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142880", + "length": "324.5431", + "name": "line_ln5591718-1", + "phases": "C", + "to": "l2891575" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p827505", + "length": "15.0182", + "name": "line_ln5958702-2", + "phases": "C", + "to": "n1137958" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026468", + "length": "31.6188", + "name": "line_ln6167715-1", + "phases": "B", + "to": "p901909" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2748130", + "length": "236.7820", + "name": "line_ln5895773-1", + "phases": "B", + "to": "l3254212" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2897773", + "length": "398.2591", + "name": "line_ln5532747-1", + "phases": "A", + "to": "l3197631" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026970", + "length": "205.1630", + "name": "line_ln6380813-1", + "phases": "ABC", + "to": "m1026977" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1144666", + "length": "102.8862", + "name": "line_ln6318745-2", + "phases": "C", + "to": "m1027041" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2861197", + "length": "241.4790", + "name": "line_ln6292461-1", + "phases": "C", + "to": "l3160896" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3234185", + "length": "326.2078", + "name": "line_ln6121686-1", + "phases": "B", + "to": "l3065750" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2897769", + "length": "180.8516", + "name": "line_ln5986925-2", + "phases": "C", + "to": "l3778577" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1136362", + "length": "89.8413", + "name": "line_ln6409781-3", + "phases": "A", + "to": "l3197652" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069563", + "length": "62.6226", + "name": "line_ln6409781-2", + "phases": "A", + "to": "n1136362" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3778577", + "length": "209.7570", + "name": "line_ln5986925-3", + "phases": "C", + "to": "l3141395" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1027042", + "length": "76.8784", + "name": "line_ln6318745-3", + "phases": "C", + "to": "n1144666" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2841645", + "length": "98.4831", + "name": "line_ln6077810-1", + "phases": "C", + "to": "l3066829" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3327098", + "length": "261.0035", + "name": "line_ln6660514-2", + "phases": "B", + "to": "m3327097" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069582", + "length": "80.9761", + "name": "line_ln6231996-1", + "phases": "B", + "to": "d6231996-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3085402", + "length": "48.1469", + "name": "line_ln6169254-1", + "phases": "A", + "to": "m1026394" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3159645", + "length": "312.3211", + "name": "line_ln5511594-2", + "phases": "A", + "to": "l2983432" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047515", + "length": "369.7161", + "name": "line_ln5593236-6", + "phases": "ABC", + "to": "m1047513" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047707", + "length": "7.6844", + "name": "line_ln5511594-1", + "phases": "A", + "to": "l3159645" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026855", + "length": "121.4688", + "name": "line_ln5623410-1", + "phases": "ABC", + "to": "m1026861" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026356", + "length": "127.1138", + "name": "line_ln5895818-1", + "phases": "ABC", + "to": "m1026354" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001304", + "length": "158.2410", + "name": "line_ln2001305-1", + "phases": "A", + "to": "m2001305" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1166374", + "length": "221.9424", + "name": "line_ln6412355-1", + "phases": "ABC", + "to": "l2786266" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1186078", + "length": "271.6182", + "name": "line_ln6254100-1", + "phases": "C", + "to": "l2806553" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2748780", + "length": "227.0927", + "name": "line_ln6291152-1", + "phases": "A", + "to": "l2823544" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3235945", + "length": "104.9355", + "name": "line_ln6200439-1", + "phases": "C", + "to": "l2842330" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089118", + "length": "530.5487", + "name": "line_ln5835143-1", + "phases": "ABC", + "to": "m1089115" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3156034", + "length": "195.1119", + "name": "line_ln5739003-1", + "phases": "A", + "to": "l3066821" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1108403", + "length": "485.3393", + "name": "line_ln6422017-1", + "phases": "B", + "to": "m1108407" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108328", + "length": "684.8674", + "name": "line_ln5621860-1", + "phases": "C", + "to": "l3160878" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001206", + "length": "158.2410", + "name": "line_ln2001207-1", + "phases": "C", + "to": "m2001207" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1136996", + "length": "45.5445", + "name": "line_ln5867683-3", + "phases": "ABC", + "to": "m1047649" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3235255", + "length": "168.0100", + "name": "line_ln5714080-1", + "phases": "ABC", + "to": "m1047316" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3216123", + "length": "342.0547", + "name": "line_ln5867683-2", + "phases": "ABC", + "to": "n1136996" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p895080", + "length": "274.8737", + "name": "line_ln6195470-1", + "phases": "A", + "to": "l2917333" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2841621", + "length": "113.3926", + "name": "line_ln5865235-2", + "phases": "ABC", + "to": "n1137986" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2933165", + "length": "420.7586", + "name": "line_ln5863825-1", + "phases": "B", + "to": "l3235273" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026805", + "length": "296.9937", + "name": "line_ln6106580-1", + "phases": "A", + "to": "l3120502" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1137986", + "length": "141.2849", + "name": "line_ln5865235-3", + "phases": "ABC", + "to": "m1047732" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p828360", + "length": "103.3415", + "name": "line_ln8961799-1", + "phases": "C", + "to": "l2729206" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1009651", + "length": "173.0026", + "name": "line_ln5774488-1", + "phases": "C", + "to": "l2879092" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2729207", + "length": "40.0035", + "name": "line_ln8961799-3", + "phases": "C", + "to": "228-961799-3_int" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2729206", + "length": "961.5771", + "name": "line_ln8961799-2", + "phases": "C", + "to": "l2729207" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089155", + "length": "239.3280", + "name": "line_ln6047559-2", + "phases": "C", + "to": "m3037540" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p827532", + "length": "23.9266", + "name": "line_ln6201699-1", + "phases": "A", + "to": "m1047326" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2785527", + "length": "237.2446", + "name": "line_ln5744342-1", + "phases": "A", + "to": "l2766729" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108524", + "length": "123.1739", + "name": "line_ln5649361-1", + "phases": "C", + "to": "m1108520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108520", + "length": "176.8203", + "name": "line_ln5649361-2", + "phases": "C", + "to": "l2804277" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3048228", + "length": "297.7519", + "name": "line_ln6260030-1", + "phases": "C", + "to": "l2991940" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3235257", + "length": "362.4712", + "name": "line_ln5804805-1", + "phases": "ABC", + "to": "l2822871" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2992656", + "length": "195.1576", + "name": "line_ln5533838-1", + "phases": "A", + "to": "m1166356" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047752", + "length": "234.0910", + "name": "line_ln5926298-1", + "phases": "A", + "to": "m1047750" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e206217", + "length": "183.5864", + "name": "line_ln6318767-1", + "phases": "ABC", + "to": "m1125969" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089215", + "length": "289.8607", + "name": "line_ln6108125-4", + "phases": "ABC", + "to": "m1089220" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089215", + "length": "149.8238", + "name": "line_ln6108125-3", + "phases": "ABC", + "to": "n1134474" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1134474", + "length": "186.3687", + "name": "line_ln6108125-2", + "phases": "ABC", + "to": "m1069496" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m3037452", + "length": "390.1028", + "name": "line_ln6320341-2", + "phases": "A", + "to": "m1026387" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3217064", + "length": "753.5275", + "name": "line_ln6315098-1", + "phases": "B", + "to": "l3200222" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l3232301", + "length": "48.4173", + "name": "line_ln81037792-1", + "phases": "C", + "to": "m1069328" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2710511", + "length": "220.7455", + "name": "line_ln5502525-1", + "phases": "A", + "to": "l2766719" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "q14412", + "length": "111.3701", + "name": "line_ln5926308-2", + "phases": "ABC", + "to": "m1047325" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2860491", + "length": "112.6801", + "name": "line_ln5926308-3", + "phases": "ABC", + "to": "d5926308-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p860847", + "length": "248.9197", + "name": "line_ln5472401-1", + "phases": "A", + "to": "m1026880" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026891", + "length": "286.3339", + "name": "line_ln6017292-1", + "phases": "ABC", + "to": "l3160102" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_dpx_ln6506308-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1026726", + "length": "215.9109", + "name": "line_ln6506308-1", + "phases": "B", + "to": "l2916610" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009742", + "length": "39.2548", + "name": "line_ln6076268-1", + "phases": "ABC", + "to": "p901972" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3254237", + "length": "460.0096", + "name": "line_ln6425615-1", + "phases": "ABC", + "to": "m1108387" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m3036167", + "length": "240.6049", + "name": "line_ln6505946-1", + "phases": "ABC", + "to": "l3085391" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1136368", + "length": "23.1714", + "name": "line_ln5776669-3", + "phases": "A", + "to": "l2897792" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000406", + "length": "158.2410", + "name": "line_ln2000407-1", + "phases": "A", + "to": "m2000407" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108514", + "length": "320.0065", + "name": "line_ln5735714-1", + "phases": "C", + "to": "m1108508" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827548", + "length": "25.1914", + "name": "line_ln5776669-2", + "phases": "A", + "to": "n1136368" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047374", + "length": "723.3506", + "name": "line_ln5835134-1", + "phases": "B", + "to": "l3197629" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3254870", + "length": "1568.1756", + "name": "line_ln6030576-1", + "phases": "C", + "to": "m1125943" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047432", + "length": "150.3936", + "name": "line_ln5502534-1", + "phases": "A", + "to": "m1047433" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089093", + "length": "198.8806", + "name": "line_ln5593214-1", + "phases": "C", + "to": "m1089094" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3197624", + "length": "455.1920", + "name": "line_ln6380804-1", + "phases": "B", + "to": "m1027101" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l3027671", + "length": "438.7781", + "name": "line_ln81048108-2", + "phases": "A", + "to": "m1108423" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1108462", + "length": "390.3737", + "name": "line_ln81048108-1", + "phases": "A", + "to": "l3027671" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "d5534967-1_int", + "length": "348.0554", + "name": "line_ln5534967-1", + "phases": "ABC", + "to": "p827501" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026693", + "length": "333.9117", + "name": "line_ln5956472-1", + "phases": "B", + "to": "l2991916" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000909", + "length": "158.2410", + "name": "line_ln2000910-1", + "phases": "C", + "to": "m2000910" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "p901945", + "length": "18.9477", + "name": "line_ln6228311-1", + "phases": "ABC", + "to": "m1125988" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026902", + "length": "326.1171", + "name": "line_ln5985039-1", + "phases": "ABC", + "to": "m1026905" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2935568", + "length": "604.5907", + "name": "line_ln5895805-1", + "phases": "B", + "to": "l3235246" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3160862", + "length": "433.6201", + "name": "line_ln6412346-1", + "phases": "C", + "to": "l3104850" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2911069", + "length": "725.4963", + "name": "line_ln6506317-2", + "phases": "B", + "to": "l2948732" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2897801", + "length": "179.1493", + "name": "line_ln5683853-1", + "phases": "A", + "to": "m1069384" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069390", + "length": "143.3663", + "name": "line_ln5865266-1", + "phases": "A", + "to": "l2897801" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047316", + "length": "218.6290", + "name": "line_ln6138640-1", + "phases": "A", + "to": "l2785527" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "d5774457-1_int", + "length": "134.0134", + "name": "line_ln5774457-1", + "phases": "ABC", + "to": "m1026920" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069181", + "length": "325.5688", + "name": "line_ln5593249-1", + "phases": "A", + "to": "l2748146" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026323", + "length": "143.2717", + "name": "line_ln6108147-1", + "phases": "B", + "to": "l2991917" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069202", + "length": "297.3751", + "name": "line_ln5714049-1", + "phases": "C", + "to": "l3104126" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000713", + "length": "158.2410", + "name": "line_ln2000714-1", + "phases": "B", + "to": "m2000714" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2973162", + "length": "174.3819", + "name": "line_ln6017302-1", + "phases": "ABC", + "to": "m1026333" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1166375", + "length": "317.7015", + "name": "line_ln5896834-1", + "phases": "ABC", + "to": "l2842383" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2973163", + "length": "281.7723", + "name": "line_ln5895782-1", + "phases": "B", + "to": "m1026309" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2801896", + "length": "248.3742", + "name": "line_ln5532734-1", + "phases": "B", + "to": "m1009839" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010007", + "length": "524.5032", + "name": "line_ln6102293-1", + "phases": "A", + "to": "m1010004" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166387", + "length": "280.2973", + "name": "line_ln5624374-1", + "phases": "C", + "to": "l3048946" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108360", + "length": "180.3730", + "name": "line_ln5624387-1", + "phases": "C", + "to": "l3048968" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026328", + "length": "15.5181", + "name": "line_ln6140778-1", + "phases": "B", + "to": "d6140778-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069192", + "length": "267.5298", + "name": "line_ln6077778-1", + "phases": "A", + "to": "l3235253" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069504", + "length": "350.0529", + "name": "line_ln6290230-1", + "phases": "ABC", + "to": "m1069500" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1149235", + "length": "20.5024", + "name": "line_ln5989329-1", + "phases": "C", + "to": "p829975" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "m1108387", + "length": "10.7693", + "name": "line_ln8979255-1", + "phases": "ABC", + "to": "p850080" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047292", + "length": "191.0380", + "name": "line_ln6199561-1", + "phases": "C", + "to": "l2766750" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1141480", + "length": "20.4505", + "name": "line_ln5528574-3", + "phases": "C", + "to": "p895113" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047358", + "length": "298.4043", + "name": "line_ln5986934-1", + "phases": "A", + "to": "l2897781" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1147857", + "length": "179.6391", + "name": "line_ln5531255-3", + "phases": "ABC", + "to": "m1009742" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108372", + "length": "261.2468", + "name": "line_ln5624289-1", + "phases": "B", + "to": "l3216988" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_tpx_ln5804795-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1047386", + "length": "180.3912", + "name": "line_ln5804795-1", + "phases": "B", + "to": "l3254211" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142863", + "length": "15.1091", + "name": "line_ln5528574-2", + "phases": "C", + "to": "n1141480" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069487", + "length": "446.8522", + "name": "line_ln6138599-1", + "phases": "C", + "to": "m1069488" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027068", + "length": "298.4087", + "name": "line_ln5956494-1", + "phases": "C", + "to": "l3235268" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166373", + "length": "33.6699", + "name": "line_ln5594243-1", + "phases": "A", + "to": "m1166369" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p827523", + "length": "115.9362", + "name": "line_ln5837355-1", + "phases": "ABC", + "to": "l2879076" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2801950", + "length": "107.9383", + "name": "line_ln6137087-1", + "phases": "ABC", + "to": "m1069224" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047702", + "length": "62.1381", + "name": "line_ln6258435-2", + "phases": "A", + "to": "n1137002" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1137002", + "length": "303.4208", + "name": "line_ln6258435-3", + "phases": "A", + "to": "m1047707" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2860490", + "length": "207.8709", + "name": "line_ln5683831-1", + "phases": "ABC", + "to": "l3104134" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3104859", + "length": "370.3300", + "name": "line_ln5742901-1", + "phases": "B", + "to": "l2970845" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1142811", + "length": "261.1352", + "name": "line_ln6321458-1", + "phases": "A", + "to": "l2917330" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009770", + "length": "26.3922", + "name": "line_ln5531255-2", + "phases": "ABC", + "to": "n1147857" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2954344", + "length": "167.0664", + "name": "line_ln6229791-1", + "phases": "C", + "to": "l2897767" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209750", + "length": "27.9726", + "name": "line_ln6351512-1", + "phases": "B", + "to": "m1209749" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4/0_tpx_ln6103927-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "m1142860", + "length": "21.6019", + "name": "line_ln6103927-1", + "phases": "A", + "to": "p895114" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2710517", + "length": "160.1385", + "name": "line_ln5865244-1", + "phases": "A", + "to": "m1026646" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2879072", + "length": "755.7507", + "name": "line_ln6047568-1", + "phases": "B", + "to": "m1047441" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2786273", + "length": "354.3178", + "name": "line_ln6018340-1", + "phases": "B", + "to": "m1108278" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026948", + "length": "29.6168", + "name": "line_ln5593227-1", + "phases": "B", + "to": "m1026949" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047766", + "length": "155.8336", + "name": "line_ln6108169-1", + "phases": "B", + "to": "m1047768" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069438", + "length": "223.1566", + "name": "line_ln5502569-1", + "phases": "ABC", + "to": "l2766749" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108340", + "length": "229.6035", + "name": "line_ln5744333-1", + "phases": "C", + "to": "m1108344" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e182729", + "length": "25.0048", + "name": "line_ln5863714-2", + "phases": "ABC", + "to": "m1069503" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1134478", + "length": "36.8862", + "name": "line_ln5863714-3", + "phases": "ABC", + "to": "m1069505" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026986", + "length": "498.8658", + "name": "line_ln6260021-1", + "phases": "ABC", + "to": "m1026997" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069503", + "length": "79.1901", + "name": "line_ln5863714-4", + "phases": "ABC", + "to": "n1134478" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069468", + "length": "27.9341", + "name": "line_ln5898057-1", + "phases": "A", + "to": "p827506" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "196-29519", + "length": "112.2476", + "name": "line_ln6383460-1", + "phases": "ABC", + "to": "l3066815" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3104133", + "length": "418.7240", + "name": "line_ln5532756-1", + "phases": "A", + "to": "m1047323" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1126017", + "length": "150.7920", + "name": "line_ln6018242-1", + "phases": "A", + "to": "l2748781" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e182724", + "length": "305.1088", + "name": "line_ln5806919-1", + "phases": "ABC", + "to": "m1069169" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2991912", + "length": "368.7648", + "name": "line_ln6411381-1", + "phases": "A", + "to": "l3104128" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047819", + "length": "234.1299", + "name": "line_ln6199508-1", + "phases": "B", + "to": "l2916603" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p827525", + "length": "325.1173", + "name": "line_ln5686079-1", + "phases": "ABC", + "to": "m1026902" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "d5621886-1_int", + "length": "841.5538", + "name": "line_ln5621886-1", + "phases": "ABC", + "to": "m1009784" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069420", + "length": "25.2103", + "name": "line_ln6201694-1", + "phases": "A", + "to": "p827499" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069535", + "length": "332.7078", + "name": "line_ln5714062-1", + "phases": "B", + "to": "l2804271" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026307", + "length": "410.7422", + "name": "line_ln5981121-1", + "phases": "B", + "to": "l3085388" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m3036165", + "length": "647.8272", + "name": "line_ln5774462-2", + "phases": "ABC", + "to": "l3197636" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166369", + "length": "13.6833", + "name": "line_ln6049964-1", + "phases": "A", + "to": "p829978" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1089113", + "length": "1447.3199", + "name": "line_ln6046042-1", + "phases": "B", + "to": "m1089103" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3139086", + "length": "220.6426", + "name": "line_ln5472406-1", + "phases": "B", + "to": "l3029520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047513", + "length": "228.0874", + "name": "line_ln6047577-1", + "phases": "ABC", + "to": "m1047507" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089197", + "length": "309.7771", + "name": "line_ln6290198-1", + "phases": "ABC", + "to": "m1089196" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026807", + "length": "60.1957", + "name": "line_ln6073575-2", + "phases": "ABC", + "to": "n1140521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1140521", + "length": "117.8477", + "name": "line_ln6073575-3", + "phases": "ABC", + "to": "l3254217" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3030204", + "length": "220.4752", + "name": "line_ln5866268-1", + "phases": "ABC", + "to": "m1186072" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3949157", + "length": "206.9199", + "name": "line_ln6991378-3", + "phases": "A", + "to": "l3727709" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "d6017316-1_int", + "length": "356.4411", + "name": "line_ln6017316-1", + "phases": "B", + "to": "l2766742" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2785530", + "length": "378.8647", + "name": "line_ln5835151-1", + "phases": "A", + "to": "l2822868" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3727709", + "length": "237.1987", + "name": "line_ln6991378-5", + "phases": "A", + "to": "l3727710" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1069247", + "length": "402.8782", + "name": "line_ln8979367-1", + "phases": "A", + "to": "m1069248" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3122849", + "length": "275.5346", + "name": "line_ln5956503-1", + "phases": "ABC", + "to": "m1026357" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1139542", + "length": "70.8522", + "name": "line_ln6292465-3", + "phases": "ABC", + "to": "p827523" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2766716", + "length": "225.3148", + "name": "line_ln6229792-1", + "phases": "C", + "to": "l3235245" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026chp-2", + "length": "408.4656", + "name": "line_ln5002chp-1", + "phases": "ABC", + "to": "m1026chp-3" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2691951", + "length": "75.8471", + "name": "line_ln6292465-2", + "phases": "ABC", + "to": "n1139542" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1126031", + "length": "435.9899", + "name": "line_ln5957412-1", + "phases": "C", + "to": "l2730107" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125969", + "length": "21.7529", + "name": "line_ln6103926-1", + "phases": "B", + "to": "p895102" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026665", + "length": "278.8809", + "name": "line_ln6229802-1", + "phases": "A", + "to": "m1026660" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026697", + "length": "202.8932", + "name": "line_ln5865249-1", + "phases": "ABC", + "to": "m1026690" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069155", + "length": "353.2134", + "name": "line_ln5744334-1", + "phases": "C", + "to": "l3254210" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108529", + "length": "81.3956", + "name": "line_ln5473349-1", + "phases": "ABC", + "to": "m1108532" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069504", + "length": "148.7963", + "name": "line_ln6138623-1", + "phases": "A", + "to": "l3197654" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3027116", + "length": "226.0115", + "name": "line_ln5774497-1", + "phases": "ABC", + "to": "m1047300" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047574", + "length": "39.4486", + "name": "line_ln6380817-1", + "phases": "ABC", + "to": "l2841632" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166361", + "length": "55.1830", + "name": "line_ln6015890-1", + "phases": "A", + "to": "l2989600" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001011", + "length": "158.2410", + "name": "line_ln2001012-1", + "phases": "B", + "to": "m2001012" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000704", + "length": "158.2410", + "name": "line_ln2000705-1", + "phases": "B", + "to": "m2000705" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026876", + "length": "344.9000", + "name": "line_ln5894238-2", + "phases": "ABC", + "to": "m1026866" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000900", + "length": "158.2410", + "name": "line_ln2000901-1", + "phases": "C", + "to": "m2000901" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008752", + "length": "260.2483", + "name": "line_ln5804781-1", + "phases": "B", + "to": "m1008746" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026866", + "length": "441.3124", + "name": "line_ln5894238-1", + "phases": "ABC", + "to": "m1026844" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089143", + "length": "312.2034", + "name": "line_ln5472361-1", + "phases": "A", + "to": "l3141400" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3216342", + "length": "203.0258", + "name": "line_ln6411367-1", + "phases": "B", + "to": "l2879063" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047424", + "length": "154.0289", + "name": "line_ln5562929-1", + "phases": "B", + "to": "l3104127" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2936213", + "length": "285.1149", + "name": "line_ln5533709-1", + "phases": "B", + "to": "m1108527" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047792", + "length": "1213.3876", + "name": "line_ln6349052-1", + "phases": "B", + "to": "l2876846" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1139540", + "length": "274.3940", + "name": "line_ln5806918-3", + "phases": "A", + "to": "l2991907" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827508", + "length": "29.6234", + "name": "line_ln5806918-2", + "phases": "A", + "to": "n1139540" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047836", + "length": "966.1772", + "name": "line_ln5926289-1", + "phases": "B", + "to": "l3254203" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1069226", + "length": "27.3356", + "name": "line_ln5712486-1", + "phases": "C", + "to": "d5712486-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2806553", + "length": "2063.3368", + "name": "line_ln6435650-1", + "phases": "C", + "to": "m1166391" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "221-559682", + "length": "43.8029", + "name": "line_ln81354564-10", + "phases": "C", + "to": "n1140525" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx1/0_tpx_ln5562952-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1008746", + "length": "133.1816", + "name": "line_ln6017284-1", + "phases": "B", + "to": "l2954339" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2673312", + "length": "545.4604", + "name": "line_ln6350536-1", + "phases": "A", + "to": "l3235247" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "n1140525", + "length": "209.6300", + "name": "line_ln81354564-11", + "phases": "C", + "to": "l3645809" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069451", + "length": "673.2061", + "name": "line_ln5744369-1", + "phases": "ABC", + "to": "l2804282" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1142815", + "length": "59.5749", + "name": "line_ln6048681-1", + "phases": "A", + "to": "l2917359" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1142107", + "length": "364.7589", + "name": "line_ln5712584-3", + "phases": "C", + "to": "l3101827" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069488", + "length": "186.9240", + "name": "line_ln6047555-1", + "phases": "C", + "to": "l2748125" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1125987", + "length": "15.8051", + "name": "line_ln5621864-1", + "phases": "ABC", + "to": "p901945" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1027041", + "length": "229.2490", + "name": "line_ln5623399-1", + "phases": "C", + "to": "l2916607" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3010565", + "length": "462.0359", + "name": "line_ln5593232-1", + "phases": "C", + "to": "l2897775" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p829796", + "length": "88.3189", + "name": "line_ln5712584-2", + "phases": "C", + "to": "n1142107" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1108464", + "length": "352.5510", + "name": "line_ln81048109-1", + "phases": "B", + "to": "l3102286" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l3102286", + "length": "128.1121", + "name": "line_ln81048109-2", + "phases": "B", + "to": "m1108433" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1069284", + "length": "30.1750", + "name": "line_ln8979345-1", + "phases": "A", + "to": "p850401" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3037537", + "length": "9.5160", + "name": "line_ln6506316-6", + "phases": "B", + "to": "l2911069" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827515", + "length": "215.1609", + "name": "line_ln5534968-1", + "phases": "A", + "to": "l2991909" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027091", + "length": "129.6702", + "name": "line_ln6409798-1", + "phases": "A", + "to": "l2764412" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2991901", + "length": "1530.0278", + "name": "line_ln6506316-3", + "phases": "B", + "to": "m3037537" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069149", + "length": "203.1143", + "name": "line_ln5532742-1", + "phases": "C", + "to": "m1069148" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047483", + "length": "261.1201", + "name": "line_ln6259987-1", + "phases": "ABC", + "to": "m1047480" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3216367", + "length": "135.6548", + "name": "line_ln5835173-1", + "phases": "ABC", + "to": "m1069468" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047319", + "length": "243.0172", + "name": "line_ln5623409-1", + "phases": "C", + "to": "m1047318" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "m1186052", + "length": "19.1575", + "name": "line_ln8978752-1", + "phases": "ABC", + "to": "198-5320" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089205", + "length": "47.3977", + "name": "line_ln6167732-2", + "phases": "A", + "to": "n1134472" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027114", + "length": "204.6849", + "name": "line_ln5803300-1", + "phases": "A", + "to": "l2876812" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1134472", + "length": "631.9041", + "name": "line_ln6167732-3", + "phases": "A", + "to": "l2973148" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125916", + "length": "117.0355", + "name": "line_ln5563935-1", + "phases": "B", + "to": "m1125913" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1136658", + "length": "140.7360", + "name": "line_ln5716230-3", + "phases": "ABC", + "to": "m1047566" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209776", + "length": "218.1105", + "name": "line_ln5533797-1", + "phases": "ABC", + "to": "m1209775" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1209824", + "length": "824.2047", + "name": "line_ln6139544-1", + "phases": "C", + "to": "m1209828" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000913", + "length": "158.2410", + "name": "line_ln2000914-1", + "phases": "C", + "to": "m2000914" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "p827527", + "length": "20.1499", + "name": "line_ln5716230-2", + "phases": "ABC", + "to": "n1136658" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026915", + "length": "10.0034", + "name": "line_ln5502529-1", + "phases": "B", + "to": "m1026916" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047763", + "length": "15.2272", + "name": "line_ln5776665-1", + "phases": "B", + "to": "p827509" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1126016", + "length": "219.0525", + "name": "line_ln5531242-1", + "phases": "A", + "to": "l3195321" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2841636", + "length": "169.7935", + "name": "line_ln6260000-1", + "phases": "B", + "to": "m1026324" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2935551", + "length": "105.1211", + "name": "line_ln5746546-1", + "phases": "ABC", + "to": "d5746546-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069393", + "length": "362.2046", + "name": "line_ln6505942-2", + "phases": "ABC", + "to": "l3029501" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026320", + "length": "220.6563", + "name": "line_ln6017303-1", + "phases": "B", + "to": "l2879079" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3176661", + "length": "252.7603", + "name": "line_ln6348954-1", + "phases": "C", + "to": "l2970804" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2916627", + "length": "254.8594", + "name": "line_ln5804835-1", + "phases": "A", + "to": "l2673310" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047430", + "length": "547.2358", + "name": "line_ln5479790-1", + "phases": "A", + "to": "l2916234" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2879773", + "length": "304.0456", + "name": "line_ln6321427-1", + "phases": "ABC", + "to": "m1108298" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027114", + "length": "240.0034", + "name": "line_ln5501003-1", + "phases": "A", + "to": "l3195327" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047751", + "length": "30.5377", + "name": "line_ln5865236-1", + "phases": "A", + "to": "l2973154" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1144665", + "length": "89.8590", + "name": "line_ln6138610-2", + "phases": "ABC", + "to": "m1047515" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2822869", + "length": "310.9743", + "name": "line_ln5502538-1", + "phases": "ABC", + "to": "m1026808" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2897777", + "length": "88.9661", + "name": "line_ln6138610-3", + "phases": "ABC", + "to": "n1144665" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "190-8581", + "length": "27.4009", + "name": "line_ln5587291-3", + "phases": "ABC", + "to": "d5587291-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026969", + "length": "298.5171", + "name": "line_ln6380808-1", + "phases": "B", + "to": "l2879066" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2692633", + "length": "131.1380", + "name": "line_ln5587291-1", + "phases": "ABC", + "to": "d5578300-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108334", + "length": "128.5535", + "name": "line_ln5957501-1", + "phases": "C", + "to": "l2692664" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047793", + "length": "20.0025", + "name": "line_ln5928546-1", + "phases": "B", + "to": "p827555" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000200", + "length": "463.8855", + "name": "line_ln2000300-1", + "phases": "ABC", + "to": "m2000300" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "226-23745", + "length": "1709.3538", + "name": "line_ln6109068-1", + "phases": "C", + "to": "m1209822" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125959", + "length": "226.0799", + "name": "line_ln5924709-1", + "phases": "C", + "to": "l2861197" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "l2729406", + "length": "639.0295", + "name": "line_ln5804790-1", + "phases": "C", + "to": "l2897768" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "q14734", + "length": "182.0324", + "name": "line_ln5587291-4", + "phases": "ABC", + "to": "m1108529" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142810", + "length": "61.2217", + "name": "line_ln5894225-1", + "phases": "B", + "to": "m1142808" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026834", + "length": "29.2542", + "name": "line_ln5487004-6", + "phases": "C", + "to": "n1147860" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1147860", + "length": "60.7489", + "name": "line_ln5487004-7", + "phases": "C", + "to": "l3177881" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3122827", + "length": "191.9507", + "name": "line_ln5472374-1", + "phases": "A", + "to": "l2954355" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "m1108381", + "length": "24.2613", + "name": "line_ln8989758-1", + "phases": "ABC", + "to": "p862322" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069382", + "length": "36.9643", + "name": "line_ln6049822-1", + "phases": "A", + "to": "d6049822-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2916234", + "length": "850.4141", + "name": "line_ln5479790-2", + "phases": "A", + "to": "m1047423" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026977", + "length": "196.1828", + "name": "line_ln6199517-1", + "phases": "ABC", + "to": "m1026978" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026858", + "length": "160.0875", + "name": "line_ln5804804-1", + "phases": "ABC", + "to": "m1026854" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026829", + "length": "34.1928", + "name": "line_ln6167754-2", + "phases": "B", + "to": "n1147859" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1147859", + "length": "22.2190", + "name": "line_ln6167754-3", + "phases": "B", + "to": "p827573" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108489", + "length": "47.3118", + "name": "line_ln5837496-3", + "phases": "A", + "to": "n1142101" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1142101", + "length": "121.2201", + "name": "line_ln5837496-4", + "phases": "A", + "to": "l2936214" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p829798", + "length": "0.8525", + "name": "line_ln5837496-1", + "phases": "A", + "to": "m1108489" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069156", + "length": "409.9910", + "name": "line_ln5774453-1", + "phases": "ABC", + "to": "m1069155" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069632", + "length": "274.5504", + "name": "line_ln5593245-1", + "phases": "B", + "to": "l2954361" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069224", + "length": "404.1452", + "name": "line_ln6077801-1", + "phases": "C", + "to": "m1069226" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047319", + "length": "118.9992", + "name": "line_ln6350549-1", + "phases": "C", + "to": "l2991921" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047497", + "length": "75.8969", + "name": "line_ln6134514-1", + "phases": "ABC", + "to": "l3104136" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3160109", + "length": "236.0163", + "name": "line_ln6134514-2", + "phases": "ABC", + "to": "m1047497" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108331", + "length": "323.9958", + "name": "line_ln6139655-1", + "phases": "C", + "to": "m1108334" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2691967", + "length": "150.0236", + "name": "line_ln5653480-1", + "phases": "ABC", + "to": "m1069504" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026960", + "length": "260.6207", + "name": "line_ln6017293-1", + "phases": "ABC", + "to": "m1026970" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209774", + "length": "205.1593", + "name": "line_ln6381858-1", + "phases": "ABC", + "to": "l3123509" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125989", + "length": "16.0854", + "name": "line_ln5807070-1", + "phases": "ABC", + "to": "m1125990" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3123452", + "length": "218.3168", + "name": "line_ln6198039-1", + "phases": "ABC", + "to": "d6198039-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1108506", + "length": "258.9349", + "name": "line_ln5565240-1", + "phases": "A", + "to": "m1108501" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137993", + "length": "211.0432", + "name": "line_ln6140774-2", + "phases": "A", + "to": "l2860482" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827502", + "length": "76.4762", + "name": "line_ln6140774-3", + "phases": "A", + "to": "n1137993" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047507", + "length": "130.8039", + "name": "line_ln5742811-1", + "phases": "ABC", + "to": "l2820531" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2785514", + "length": "214.4023", + "name": "line_ln5683809-1", + "phases": "A", + "to": "l3235244" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2820531", + "length": "122.7726", + "name": "line_ln5742811-3", + "phases": "ABC", + "to": "d5742811-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1137992", + "length": "14.8937", + "name": "line_ln5742811-4", + "phases": "ABC", + "to": "196-29520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "q14414", + "length": "260.9690", + "name": "line_ln6047599-3", + "phases": "ABC", + "to": "l2691952" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1209828", + "length": "241.7675", + "name": "line_ln5775370-1", + "phases": "C", + "to": "l2861157" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047457", + "length": "131.6282", + "name": "line_ln5653493-1", + "phases": "B", + "to": "l2710546" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2860478", + "length": "208.7943", + "name": "line_ln5744325-1", + "phases": "B", + "to": "l2822858" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3198358", + "length": "348.6716", + "name": "line_ln6170303-1", + "phases": "B", + "to": "l3104859" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069428", + "length": "31.2014", + "name": "line_ln5958707-1", + "phases": "B", + "to": "p827576" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m3763618", + "length": "12.4154", + "name": "line_ln81354561-2", + "phases": "C", + "to": "p1121282" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3010560", + "length": "106.9961", + "name": "line_ln6169246-1", + "phases": "ABC", + "to": "m1047483" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027038", + "length": "340.7691", + "name": "line_ln5472396-1", + "phases": "B", + "to": "m1027036" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108500", + "length": "83.4274", + "name": "line_ln5503544-1", + "phases": "ABC", + "to": "m1108505" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069428", + "length": "54.0580", + "name": "line_ln5532786-2", + "phases": "B", + "to": "n1139257" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "n1139257", + "length": "89.4322", + "name": "line_ln5532786-3", + "phases": "B", + "to": "l3029518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027091", + "length": "90.5315", + "name": "line_ln6348967-1", + "phases": "A", + "to": "m1027092" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047831", + "length": "263.7236", + "name": "line_ln6290208-1", + "phases": "B", + "to": "l3178974" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1126031", + "length": "109.2924", + "name": "line_ln5896727-1", + "phases": "C", + "to": "l3179608" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108355", + "length": "286.5169", + "name": "line_ln5715019-1", + "phases": "C", + "to": "m1108352" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1144664", + "length": "216.4782", + "name": "line_ln5986926-3", + "phases": "C", + "to": "l3178972" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069607", + "length": "125.9271", + "name": "line_ln5895801-1", + "phases": "B", + "to": "l2916617" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p873801", + "length": "23.9460", + "name": "line_ln81018878-2", + "phases": "C", + "to": "n1138608" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047688", + "length": "50.7785", + "name": "line_ln5986926-2", + "phases": "C", + "to": "n1144664" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "n1138608", + "length": "275.6842", + "name": "line_ln81018878-3", + "phases": "C", + "to": "l3232301" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069227", + "length": "327.7285", + "name": "line_ln6019478-1", + "phases": "C", + "to": "l2748133" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026951", + "length": "218.4451", + "name": "line_ln6047564-1", + "phases": "B", + "to": "l2954347" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2935553", + "length": "429.8804", + "name": "line_ln5593223-1", + "phases": "B", + "to": "m1026987" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l3047073", + "length": "697.3311", + "name": "line_ln8979358-3", + "phases": "C", + "to": "m1069250" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2803194", + "length": "289.8179", + "name": "line_ln8979358-2", + "phases": "C", + "to": "l3047073" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1069249", + "length": "194.9488", + "name": "line_ln8979358-1", + "phases": "C", + "to": "l2803194" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827537", + "length": "228.7705", + "name": "line_ln6079950-1", + "phases": "A", + "to": "l3122827" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069335", + "length": "38.7530", + "name": "line_ln6231997-1", + "phases": "C", + "to": "p827564" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069461", + "length": "160.8181", + "name": "line_ln6258443-1", + "phases": "ABC", + "to": "l2876798" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e206209", + "length": "408.6622", + "name": "line_ln6108142-1", + "phases": "ABC", + "to": "l2897777" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027055", + "length": "22.0213", + "name": "line_ln6228328-1", + "phases": "A", + "to": "m1027056" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069494", + "length": "200.0035", + "name": "line_ln6076247-1", + "phases": "C", + "to": "l2745806" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "d5712477-3_int", + "length": "338.3019", + "name": "line_ln5712477-3", + "phases": "C", + "to": "m1069174" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2841615", + "length": "132.3703", + "name": "line_ln6199504-1", + "phases": "A", + "to": "m1026931" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p827520", + "length": "21.0146", + "name": "line_ln5712477-2", + "phases": "C", + "to": "n1139545" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125940", + "length": "110.0800", + "name": "line_ln5957491-1", + "phases": "B", + "to": "l3048963" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2991908", + "length": "330.8068", + "name": "line_ln6229796-1", + "phases": "A", + "to": "l3178973" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026647", + "length": "345.3313", + "name": "line_ln6047573-2", + "phases": "A", + "to": "m3036169" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx1/0_3w_cs_ln5686244-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "m1209791", + "length": "11.0553", + "name": "line_ln5686244-1", + "phases": "A", + "to": "p903354" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2766744", + "length": "175.1934", + "name": "line_ln5895810-1", + "phases": "B", + "to": "m1027038" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000904", + "length": "158.2410", + "name": "line_ln2000905-1", + "phases": "C", + "to": "m2000905" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3179650", + "length": "139.7591", + "name": "line_ln5591710-2", + "phases": "ABC", + "to": "l3232902" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3232902", + "length": "127.6117", + "name": "line_ln5591710-3", + "phases": "ABC", + "to": "m4122658" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p903490", + "length": "8.2163", + "name": "line_ln6137794-1", + "phases": "C", + "to": "m1125961" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047725", + "length": "287.6708", + "name": "line_ln5738651-1", + "phases": "B", + "to": "m1047728" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p829962", + "length": "20.1079", + "name": "line_ln5807087-1", + "phases": "C", + "to": "m1142835" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000410", + "length": "158.2410", + "name": "line_ln2000411-1", + "phases": "A", + "to": "m2000411" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089197", + "length": "39.5384", + "name": "line_ln5867448-1", + "phases": "A", + "to": "p827498" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1139538", + "length": "114.1799", + "name": "line_ln6383060-3", + "phases": "B", + "to": "l3066818" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827533", + "length": "30.7176", + "name": "line_ln6383060-2", + "phases": "B", + "to": "n1139538" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026312", + "length": "175.4856", + "name": "line_ln5744338-1", + "phases": "B", + "to": "l2973163" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p903360", + "length": "31.8690", + "name": "line_ln6413566-1", + "phases": "A", + "to": "m1047430" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2748128", + "length": "570.6647", + "name": "line_ln6320327-1", + "phases": "C", + "to": "m1089170" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2954354", + "length": "189.4215", + "name": "line_ln6229806-1", + "phases": "A", + "to": "l2673321" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2897792", + "length": "309.4270", + "name": "line_ln6260017-1", + "phases": "A", + "to": "l2785538" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1140829", + "length": "18.3409", + "name": "line_ln5621833-3", + "phases": "C", + "to": "m1026703" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026705", + "length": "23.0103", + "name": "line_ln5621833-2", + "phases": "C", + "to": "n1140829" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p895107", + "length": "287.4703", + "name": "line_ln5740282-1", + "phases": "C", + "to": "l3030126" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047386", + "length": "311.9531", + "name": "line_ln5774493-1", + "phases": "B", + "to": "m1047379" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026690", + "length": "316.1602", + "name": "line_ln6290217-1", + "phases": "ABC", + "to": "l2879078" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026940", + "length": "215.9256", + "name": "line_ln5562925-1", + "phases": "B", + "to": "m1026939" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209811", + "length": "402.2531", + "name": "line_ln5714974-1", + "phases": "ABC", + "to": "m1209807" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000708", + "length": "158.2410", + "name": "line_ln2000709-1", + "phases": "B", + "to": "m2000709" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2879076", + "length": "79.5424", + "name": "line_ln5532751-1", + "phases": "ABC", + "to": "m1089122" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2897789", + "length": "200.7350", + "name": "line_ln6350554-1", + "phases": "B", + "to": "m1069662" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008758", + "length": "135.1998", + "name": "line_ln5895769-1", + "phases": "B", + "to": "l2673300" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3254227", + "length": "155.6895", + "name": "line_ln6108164-1", + "phases": "B", + "to": "m1069550" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1089097", + "length": "272.7182", + "name": "line_ln6077773-1", + "phases": "B", + "to": "m1108270" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_wpal_ln6259996-1", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047521", + "length": "137.7603", + "name": "line_ln6259996-1", + "phases": "ABC", + "to": "m1047526" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047733", + "length": "340.4257", + "name": "line_ln6411363-1", + "phases": "A", + "to": "l3066804" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2822868", + "length": "193.0130", + "name": "line_ln5472365-1", + "phases": "A", + "to": "l2766723" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2766738", + "length": "181.9596", + "name": "line_ln5623418-1", + "phases": "ABC", + "to": "m1069513" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3122825", + "length": "199.6957", + "name": "line_ln6199526-1", + "phases": "A", + "to": "l2991920" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069517", + "length": "80.5247", + "name": "line_ln6229819-1", + "phases": "ABC", + "to": "m1069518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s2s3_1", + "length": "14764.0500", + "name": "line_hvmv69s2s3-1", + "phases": "ABC", + "to": "hvmv69s2s3_2" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1108269", + "length": "237.9535", + "name": "line_ln5956458-1", + "phases": "B", + "to": "l2729405" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3141396", + "length": "526.2010", + "name": "line_ln6017288-1", + "phases": "C", + "to": "l3066808" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027005", + "length": "127.3668", + "name": "line_ln5653453-1", + "phases": "B", + "to": "l3160100" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p827500", + "length": "322.1750", + "name": "line_ln6110365-1", + "phases": "A", + "to": "l2822861" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069567", + "length": "501.8314", + "name": "line_ln5774480-1", + "phases": "B", + "to": "m1069582" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1089144", + "length": "8.5032", + "name": "line_ln6352700-1", + "phases": "A", + "to": "p827522" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "d5623395-1_int", + "length": "355.5259", + "name": "line_ln5623395-1", + "phases": "B", + "to": "l2879068" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001002", + "length": "158.2410", + "name": "line_ln2001003-1", + "phases": "B", + "to": "m2001003" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027101", + "length": "537.7595", + "name": "line_ln6259983-1", + "phases": "B", + "to": "l2860480" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001211", + "length": "158.2410", + "name": "line_ln2001212-1", + "phases": "C", + "to": "m2001212" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166407", + "length": "1228.6233", + "name": "line_ln6318771-1", + "phases": "C", + "to": "l3064514" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047688", + "length": "224.7529", + "name": "line_ln5472352-1", + "phases": "ABC", + "to": "m1047699" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166398", + "length": "230.3702", + "name": "line_ln6048526-1", + "phases": "C", + "to": "l3142050" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069217", + "length": "13.3476", + "name": "line_ln6411376-1", + "phases": "ABC", + "to": "l2841626" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001309", + "length": "158.2410", + "name": "line_ln2001310-1", + "phases": "A", + "to": "m2001310" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026378", + "length": "294.3448", + "name": "line_ln6506312-2", + "phases": "A", + "to": "l2897778" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142869", + "length": "97.9344", + "name": "line_ln5715002-1", + "phases": "ABC", + "to": "m1142871" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026660", + "length": "326.0010", + "name": "line_ln5623405-1", + "phases": "A", + "to": "m1026657" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026954", + "length": "691.4207", + "name": "line_ln5683818-1", + "phases": "ABC", + "to": "l2804256" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047478", + "length": "139.4839", + "name": "line_ln6199513-1", + "phases": "C", + "to": "l2766716" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv_sub1_48332", + "length": "63.7677", + "name": "line_ln5710794-3", + "phases": "ABC", + "to": "d5710794-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5683000-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2691949", + "length": "506.5772", + "name": "line_ln5683000-1", + "phases": "A", + "to": "l2692000" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108499", + "length": "204.0042", + "name": "line_ln6417942-1", + "phases": "A", + "to": "m1108507" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr1/0_tpx_ln6229827-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1125974", + "length": "2.1608", + "name": "line_ln5927299-1", + "phases": "C", + "to": "l3104796" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069556", + "length": "296.9730", + "name": "line_ln5894212-2", + "phases": "ABC", + "to": "m1069564" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069384", + "length": "131.6878", + "name": "line_ln6350532-1", + "phases": "A", + "to": "l3066805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069549", + "length": "194.1860", + "name": "line_ln5894212-1", + "phases": "ABC", + "to": "m1069556" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026333", + "length": "151.3179", + "name": "line_ln6198013-2", + "phases": "ABC", + "to": "m1026331" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026331", + "length": "186.2376", + "name": "line_ln6198013-1", + "phases": "ABC", + "to": "m1026330" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027087", + "length": "297.0056", + "name": "line_ln6015811-1", + "phases": "A", + "to": "l2726983" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3047058", + "length": "495.1494", + "name": "line_ln6153058-1", + "phases": "ABC", + "to": "l3047059" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069565", + "length": "267.2218", + "name": "line_ln5472387-1", + "phases": "B", + "to": "m1069572" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108352", + "length": "302.5623", + "name": "line_ln6230805-1", + "phases": "C", + "to": "m1108356" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1140832", + "length": "85.7128", + "name": "line_ln5683827-3", + "phases": "C", + "to": "l2841631" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026662", + "length": "29.1319", + "name": "line_ln5683827-2", + "phases": "C", + "to": "n1140832" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2692660", + "length": "487.6220", + "name": "line_ln5473438-1", + "phases": "A", + "to": "l2955076" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108260", + "length": "116.9895", + "name": "line_ln6078744-1", + "phases": "B", + "to": "m1108259" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3065665", + "length": "356.1396", + "name": "line_ln5775433-3", + "phases": "A", + "to": "l3235946" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069135", + "length": "232.9120", + "name": "line_ln6138614-1", + "phases": "ABC", + "to": "r18242" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089213", + "length": "264.2418", + "name": "line_ln5799408-1", + "phases": "ABC", + "to": "l3118855" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3254869", + "length": "235.9340", + "name": "line_ln5644788-1", + "phases": "B", + "to": "l2798067" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026657", + "length": "19.7197", + "name": "line_ln5655683-1", + "phases": "A", + "to": "m1026656" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069563", + "length": "127.3132", + "name": "line_ln5924705-2", + "phases": "A", + "to": "n1136360" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047615", + "length": "6.5025", + "name": "line_ln6298585-2", + "phases": "ABC", + "to": "l3216123" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047593", + "length": "428.3438", + "name": "line_ln6298585-1", + "phases": "ABC", + "to": "m1047615" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1136360", + "length": "146.7649", + "name": "line_ln5924705-3", + "phases": "A", + "to": "l2729424" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "p904452", + "length": "20.8251", + "name": "line_ln81048100-6", + "phases": "B", + "to": "221-282818" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "n1230123", + "length": "183.0850", + "name": "line_ln81048100-5", + "phases": "B", + "to": "l2708744" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "221-282818", + "length": "21.2885", + "name": "line_ln81048100-7", + "phases": "B", + "to": "n1230123" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2804957", + "length": "195.6771", + "name": "line_ln5957460-1", + "phases": "C", + "to": "l3048937" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047568", + "length": "297.1200", + "name": "line_ln5804800-1", + "phases": "ABC", + "to": "m1047558" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026774", + "length": "391.3514", + "name": "line_ln6077782-1", + "phases": "ABC", + "to": "m1026769" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069619", + "length": "8.7990", + "name": "line_ln6290226-1", + "phases": "B", + "to": "m1069620" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047293", + "length": "65.9271", + "name": "line_ln6047605-1", + "phases": "ABC", + "to": "m1047292" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2898515", + "length": "195.5609", + "name": "line_ln6018326-1", + "phases": "C", + "to": "m1166387" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2804261", + "length": "319.0876", + "name": "line_ln6047582-1", + "phases": "C", + "to": "l3178980" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2673323", + "length": "234.7193", + "name": "line_ln6199535-1", + "phases": "C", + "to": "m1009809" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108361", + "length": "107.7480", + "name": "line_ln5986961-1", + "phases": "C", + "to": "l3048228" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p829963", + "length": "21.9038", + "name": "line_ln5535142-1", + "phases": "B", + "to": "m1125916" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3027156", + "length": "373.4011", + "name": "line_ln5773136-1", + "phases": "C", + "to": "l2860481" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l2708744", + "length": "312.6881", + "name": "line_ln81048100-2", + "phases": "B", + "to": "l2690187" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e183473", + "length": "21.1392", + "name": "line_ln5576174-3", + "phases": "ABC", + "to": "r20703" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1209800", + "length": "179.7432", + "name": "line_ln6198133-1", + "phases": "C", + "to": "l2839332" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2859403", + "length": "124.5352", + "name": "line_ln5576174-2", + "phases": "ABC", + "to": "l2973791" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l2690187", + "length": "293.8756", + "name": "line_ln81048100-3", + "phases": "B", + "to": "m1108412" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2820556", + "length": "129.5606", + "name": "line_ln6017297-1", + "phases": "A", + "to": "m1047410" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026323", + "length": "386.3647", + "name": "line_ln5714053-1", + "phases": "B", + "to": "m1026320" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3029506", + "length": "290.2700", + "name": "line_ln6350545-1", + "phases": "B", + "to": "m1047518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000400", + "length": "503.9039", + "name": "line_ln2000500-1", + "phases": "ABC", + "to": "m2000500" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "r20703", + "length": "140.3072", + "name": "line_ln5576174-4", + "phases": "ABC", + "to": "l2859403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069515", + "length": "150.2016", + "name": "line_ln5835160-1", + "phases": "ABC", + "to": "m1069514" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "d2000401_int", + "length": "158.2410", + "name": "line_ln2000402-1", + "phases": "A", + "to": "m2000402" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026767", + "length": "144.6904", + "name": "line_ln5500957-1", + "phases": "ABC", + "to": "l3216346" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2822862", + "length": "212.0375", + "name": "line_ln5744329-1", + "phases": "C", + "to": "l3066806" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2954346", + "length": "575.1075", + "name": "line_ln6320336-1", + "phases": "B", + "to": "m1047831" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069533", + "length": "389.6021", + "name": "line_ln6047595-2", + "phases": "ABC", + "to": "n1136356" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2767341", + "length": "96.2114", + "name": "line_ln6260929-1", + "phases": "ABC", + "to": "m1125968" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026953", + "length": "100.0017", + "name": "line_ln5651966-1", + "phases": "B", + "to": "l2764399" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3235241", + "length": "505.8867", + "name": "line_ln5683805-1", + "phases": "C", + "to": "l2691941" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027109", + "length": "219.7710", + "name": "line_ln6379372-1", + "phases": "A", + "to": "l3101788" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047409", + "length": "418.5052", + "name": "line_ln6138636-1", + "phases": "A", + "to": "l2841648" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1009828", + "length": "135.7239", + "name": "line_ln6138591-1", + "phases": "B", + "to": "l3254206" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1136356", + "length": "84.6757", + "name": "line_ln6047595-3", + "phases": "ABC", + "to": "m1069549" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2876814", + "length": "262.0035", + "name": "line_ln6001653-2", + "phases": "ABC", + "to": "m1026834" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2897800", + "length": "86.9164", + "name": "line_ln5532782-1", + "phases": "B", + "to": "m1047809" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3019248", + "length": "300.0047", + "name": "line_ln6495088-1", + "phases": "B", + "to": "m3021569" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026844", + "length": "9.7451", + "name": "line_ln6001653-3", + "phases": "ABC", + "to": "l2876814" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047572", + "length": "114.8231", + "name": "line_ln5631690-1", + "phases": "ABC", + "to": "m1047580" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026854", + "length": "19.4381", + "name": "line_ln5682327-1", + "phases": "A", + "to": "p901894" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026834", + "length": "177.1774", + "name": "line_ln6001653-1", + "phases": "ABC", + "to": "m1026829" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m3036170", + "length": "169.5754", + "name": "line_ln6505951-1", + "phases": "C", + "to": "l3197642" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026354", + "length": "235.6942", + "name": "line_ln5865271-1", + "phases": "ABC", + "to": "l3235275" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2879767", + "length": "230.3435", + "name": "line_ln6109148-1", + "phases": "B", + "to": "l2767407" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2766499", + "length": "27.1201", + "name": "line_ln8961800-3", + "phases": "C", + "to": "m1047633" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2786204", + "length": "236.3677", + "name": "line_ln5589094-1", + "phases": "C", + "to": "m1209819" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2673308", + "length": "369.4611", + "name": "line_ln6199557-1", + "phases": "ABC", + "to": "l2991939" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p828359", + "length": "582.3832", + "name": "line_ln8961800-1", + "phases": "C", + "to": "l2878848" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069465", + "length": "249.4238", + "name": "line_ln6047560-1", + "phases": "A", + "to": "l3010561" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2878848", + "length": "474.0897", + "name": "line_ln8961800-2", + "phases": "C", + "to": "l2766499" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p895111", + "length": "229.1884", + "name": "line_ln5591834-1", + "phases": "C", + "to": "l2895496" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026648", + "length": "317.8836", + "name": "line_ln5653462-1", + "phases": "A", + "to": "l2973159" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2804282", + "length": "267.0674", + "name": "line_ln5714075-1", + "phases": "ABC", + "to": "l3104154" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1209782", + "length": "127.1427", + "name": "line_ln6048633-1", + "phases": "A", + "to": "l3217057" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069202", + "length": "398.8616", + "name": "line_ln5956467-1", + "phases": "ABC", + "to": "l2879073" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2710513", + "length": "620.8363", + "name": "line_ln5625550-1", + "phases": "B", + "to": "p827553" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1142098", + "length": "170.0580", + "name": "line_ln5805676-3", + "phases": "A", + "to": "l2936212" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108483", + "length": "22.0668", + "name": "line_ln5805676-2", + "phases": "A", + "to": "n1142098" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2804254", + "length": "43.6450", + "name": "line_ln6138601-1", + "phases": "A", + "to": "m1047752" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026343", + "length": "30.8791", + "name": "line_ln6411389-1", + "phases": "A", + "to": "m1026344" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3160871", + "length": "293.5490", + "name": "line_ln5957495-1", + "phases": "C", + "to": "l3030203" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009838", + "length": "155.0907", + "name": "line_ln5472343-1", + "phases": "B", + "to": "l2801896" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2897765", + "length": "374.7476", + "name": "line_ln5835129-1", + "phases": "B", + "to": "m1047819" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e192201", + "length": "182.6875", + "name": "line_ln6321409-1", + "phases": "ABC", + "to": "m1209800" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069363", + "length": "303.8986", + "name": "line_ln6290239-1", + "phases": "C", + "to": "m1069364" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m4118754", + "length": "444.3416", + "name": "line_ln6380821-3", + "phases": "B", + "to": "m1026312" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3030126", + "length": "157.4371", + "name": "line_ln6260928-1", + "phases": "C", + "to": "l3254870" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001203", + "length": "158.2410", + "name": "line_ln2001204-1", + "phases": "C", + "to": "m2001204" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2954338", + "length": "292.4574", + "name": "line_ln5774447-1", + "phases": "B", + "to": "m1009828" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069565", + "length": "337.8583", + "name": "line_ln5501089-1", + "phases": "B", + "to": "l2989596" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p901933", + "length": "27.0696", + "name": "line_ln6288699-1", + "phases": "A", + "to": "m1069563" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027109", + "length": "205.3406", + "name": "line_ln6379373-1", + "phases": "A", + "to": "m1027114" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026798", + "length": "80.5122", + "name": "line_ln5803299-1", + "phases": "A", + "to": "l2952014" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000908", + "length": "158.2410", + "name": "line_ln2000909-1", + "phases": "C", + "to": "m2000909" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047480", + "length": "41.3043", + "name": "line_ln5504712-1", + "phases": "A", + "to": "p827504" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047410", + "length": "306.8821", + "name": "line_ln5623402-1", + "phases": "A", + "to": "m1047409" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3066810", + "length": "425.3299", + "name": "line_ln5623392-1", + "phases": "C", + "to": "l2897769" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2860504", + "length": "683.6780", + "name": "line_ln6108172-1", + "phases": "A", + "to": "l2860493" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2991906", + "length": "211.0595", + "name": "line_ln6138598-1", + "phases": "A", + "to": "l2879054" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1149236", + "length": "14.0558", + "name": "line_ln6232159-1", + "phases": "A", + "to": "p829974" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089170", + "length": "256.8766", + "name": "line_ln5926293-1", + "phases": "C", + "to": "l3085392" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "n1139252", + "length": "20.4746", + "name": "line_ln5621837-3", + "phases": "B", + "to": "l3122812" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001007", + "length": "158.2410", + "name": "line_ln2001008-1", + "phases": "B", + "to": "m2001008" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000414", + "length": "158.2410", + "name": "line_ln2000415-1", + "phases": "A", + "to": "m2000415" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal1/0_tpx_ln6411371-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047649", + "length": "79.0988", + "name": "line_ln6411371-1", + "phases": "ABC", + "to": "l2973153" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027100", + "length": "230.0033", + "name": "line_ln6122719-1", + "phases": "A", + "to": "l3140238" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166391", + "length": "348.3486", + "name": "line_ln6048523-1", + "phases": "C", + "to": "l3254873" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2822867", + "length": "12.3685", + "name": "line_ln5472357-1", + "phases": "B", + "to": "m1069412" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx2_wpal_ln5496577-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1125913", + "length": "130.2665", + "name": "line_ln5496577-1", + "phases": "B", + "to": "l3068944" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026393", + "length": "87.4717", + "name": "line_ln5653467-1", + "phases": "A", + "to": "l2804252" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "221-240988", + "length": "134.7833", + "name": "line_ln8939784-1", + "phases": "C", + "to": "l3141411" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027101", + "length": "11.8846", + "name": "line_ln6229788-1", + "phases": "B", + "to": "l2710508" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p901910", + "length": "22.2091", + "name": "line_ln5621837-2", + "phases": "B", + "to": "n1139252" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2785523", + "length": "327.0639", + "name": "line_ln5926303-1", + "phases": "C", + "to": "l3141388" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125905", + "length": "280.6810", + "name": "line_ln5836177-1", + "phases": "B", + "to": "l2748839" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137985", + "length": "811.9476", + "name": "line_ln5803264-3", + "phases": "A", + "to": "l3176656" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047722", + "length": "31.5900", + "name": "line_ln5803264-2", + "phases": "A", + "to": "n1137985" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1027043", + "length": "144.9420", + "name": "line_ln5956466-1", + "phases": "ABC", + "to": "m1027055" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047520", + "length": "170.7452", + "name": "line_ln5562932-1", + "phases": "ABC", + "to": "m1047521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069590", + "length": "443.9912", + "name": "line_ln5591702-1", + "phases": "B", + "to": "m1069595" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx1/0_tpx_ln6138596-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089148", + "length": "158.8126", + "name": "line_ln6259992-1", + "phases": "A", + "to": "l2766721" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069483", + "length": "27.3055", + "name": "line_ln5898056-1", + "phases": "C", + "to": "p827503" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2673316", + "length": "175.2520", + "name": "line_ln6077777-1", + "phases": "A", + "to": "m1089138" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047441", + "length": "138.2952", + "name": "line_ln5865241-1", + "phases": "B", + "to": "m1047442" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2858163", + "length": "529.3530", + "name": "line_ln5833611-1", + "phases": "ABC", + "to": "l2766747" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026852", + "length": "26.5136", + "name": "line_ln5774469-1", + "phases": "C", + "to": "l2785529" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1125944", + "length": "28.7529", + "name": "line_ln5651987-1", + "phases": "A", + "to": "p901941" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108354", + "length": "256.3826", + "name": "line_ln6379351-1", + "phases": "C", + "to": "m1108350" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089143", + "length": "450.6571", + "name": "line_ln5502533-1", + "phases": "ABC", + "to": "m1089141" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108299", + "length": "22.3000", + "name": "line_ln5686247-1", + "phases": "B", + "to": "m1108300" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2766732", + "length": "45.0568", + "name": "line_ln5926316-1", + "phases": "B", + "to": "m1026485" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3029502", + "length": "280.5724", + "name": "line_ln6138608-3", + "phases": "ABC", + "to": "d6138608-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "q14404", + "length": "15.0825", + "name": "line_ln6138608-2", + "phases": "ABC", + "to": "regxfmr_190-7361" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069738", + "length": "323.7062", + "name": "line_ln6212942-1", + "phases": "B", + "to": "l2690941" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2727795", + "length": "105.1811", + "name": "line_ln5895778-1", + "phases": "C", + "to": "l2972704" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026700", + "length": "72.5901", + "name": "line_ln6286966-3", + "phases": "B", + "to": "n1140820" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1140820", + "length": "135.6932", + "name": "line_ln6286966-2", + "phases": "B", + "to": "l3189189" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3142079", + "length": "8.2370", + "name": "line_ln6505938-4", + "phases": "B", + "to": "m3036162" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2823611", + "length": "273.9221", + "name": "line_ln5473440-1", + "phases": "ABC", + "to": "l3030204" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069411", + "length": "184.8453", + "name": "line_ln6290202-1", + "phases": "A", + "to": "l2991905" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3064514", + "length": "204.5090", + "name": "line_ln5591715-1", + "phases": "C", + "to": "l3048888" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108356", + "length": "204.5873", + "name": "line_ln5503584-1", + "phases": "C", + "to": "l2674052" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108258", + "length": "141.9665", + "name": "line_ln5894220-1", + "phases": "B", + "to": "m1108257" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3214069", + "length": "166.0080", + "name": "line_ln6137009-1", + "phases": "ABC", + "to": "m1125960" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125952", + "length": "41.8941", + "name": "line_ln6137009-2", + "phases": "ABC", + "to": "l3214069" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108259", + "length": "151.6689", + "name": "line_ln5894220-2", + "phases": "B", + "to": "m1108258" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m3036164", + "length": "156.6683", + "name": "line_ln5835135-2", + "phases": "B", + "to": "l2935553" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2691954", + "length": "210.6566", + "name": "line_ln6320368-1", + "phases": "ABC", + "to": "l3122849" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3048200", + "length": "220.1713", + "name": "line_ln5986920-1", + "phases": "B", + "to": "m1008733" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089131", + "length": "165.6798", + "name": "line_ln6409869-1", + "phases": "A", + "to": "l3270854" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1026661", + "length": "16.6485", + "name": "line_ln8945012-1", + "phases": "A", + "to": "p827530" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2989600", + "length": "326.1278", + "name": "line_ln5591813-1", + "phases": "A", + "to": "m1166362" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2804252", + "length": "205.3937", + "name": "line_ln5683814-1", + "phases": "A", + "to": "l3195310" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142819", + "length": "246.0175", + "name": "line_ln5745348-1", + "phases": "ABC", + "to": "m1142818" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "221-306687", + "length": "436.3361", + "name": "line_ln8968082-2", + "phases": "B", + "to": "l2916625" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "p841985", + "length": "5.6227", + "name": "line_ln8968082-1", + "phases": "B", + "to": "221-306687" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2001300", + "length": "436.0147", + "name": "line_ln2001400-1", + "phases": "ABC", + "to": "m2001400" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx2_wpal_ln5561444-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "m1125988", + "length": "154.7496", + "name": "line_ln5561444-1", + "phases": "A", + "to": "l2898457" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1142815", + "length": "79.3864", + "name": "line_ln6291288-3", + "phases": "A", + "to": "n1141477" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2876846", + "length": "954.6735", + "name": "line_ln5531325-1", + "phases": "B", + "to": "l3048203" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln5775367-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "l2785531", + "length": "299.9966", + "name": "line_ln5956488-1", + "phases": "A", + "to": "l3216358" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1141477", + "length": "92.9340", + "name": "line_ln6291288-2", + "phases": "A", + "to": "l2879794" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047577", + "length": "337.9528", + "name": "line_ln5619489-1", + "phases": "ABC", + "to": "m1047592" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108315", + "length": "236.8903", + "name": "line_ln6291253-1", + "phases": "ABC", + "to": "m1108311" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069607", + "length": "107.6591", + "name": "line_ln5744350-1", + "phases": "B", + "to": "m1069619" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "d2001301_int", + "length": "158.2410", + "name": "line_ln2001302-1", + "phases": "A", + "to": "m2001302" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108286", + "length": "260.1509", + "name": "line_ln5955063-1", + "phases": "ABC", + "to": "l2933164" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2936216", + "length": "307.2778", + "name": "line_ln5473351-1", + "phases": "C", + "to": "226-23745" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108387", + "length": "100.0023", + "name": "line_ln5728479-1", + "phases": "ABC", + "to": "m1108398" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047773", + "length": "221.5968", + "name": "line_ln6320333-1", + "phases": "B", + "to": "l2973152" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069201", + "length": "473.8729", + "name": "line_ln6199520-1", + "phases": "C", + "to": "l3010565" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166364", + "length": "244.8713", + "name": "line_ln5805804-1", + "phases": "C", + "to": "m1166358" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026905", + "length": "18.1097", + "name": "line_ln6383058-1", + "phases": "A", + "to": "p827515" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "e182744", + "length": "200.0024", + "name": "line_ln5803255-1", + "phases": "B", + "to": "l2801895" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069398", + "length": "339.5089", + "name": "line_ln5653454-1", + "phases": "A", + "to": "l3010559" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108401", + "length": "434.6856", + "name": "line_ln6422012-1", + "phases": "ABC", + "to": "m1108402" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001212", + "length": "158.2410", + "name": "line_ln2001213-1", + "phases": "C", + "to": "m2001213" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001310", + "length": "158.2410", + "name": "line_ln2001311-1", + "phases": "A", + "to": "m2001311" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1134471", + "length": "243.6609", + "name": "line_ln6137084-2", + "phases": "A", + "to": "l2839331" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027080", + "length": "73.1798", + "name": "line_ln6137084-3", + "phases": "A", + "to": "n1134471" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108347", + "length": "300.4408", + "name": "line_ln5684869-1", + "phases": "C", + "to": "m1108355" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1108393", + "length": "5.8962", + "name": "line_ln81048093-1", + "phases": "A", + "to": "193-51796" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx6_wpal6_wpal_ln6108128-2", + "continuous_rating_C": "115.00", + "emergency_rating_C": "115.00", + "from": "m1047649", + "length": "20.0686", + "name": "line_ln6108128-2", + "phases": "C", + "to": "n1136997" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026857", + "length": "28.0191", + "name": "line_ln6228278-1", + "phases": "A", + "to": "m1026859" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2766746", + "length": "362.4724", + "name": "line_ln6077809-1", + "phases": "C", + "to": "m1027073" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr1/0_tpx_ln6229827-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1125917", + "length": "27.0317", + "name": "line_ln7064337-2", + "phases": "C", + "to": "p1197121" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069627", + "length": "162.9702", + "name": "line_ln6380834-1", + "phases": "B", + "to": "l3254228" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1108527", + "length": "12.6758", + "name": "line_ln5804787-1", + "phases": "B", + "to": "l3141394" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx6_wpal6_wpal_ln6108128-2", + "continuous_rating_C": "115.00", + "emergency_rating_C": "115.00", + "from": "n1136997", + "length": "82.9698", + "name": "line_ln6108128-3", + "phases": "C", + "to": "l3104123" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009720", + "length": "93.7140", + "name": "line_ln5714057-1", + "phases": "ABC", + "to": "m1009715" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089173", + "length": "97.0033", + "name": "line_ln5562923-1", + "phases": "ABC", + "to": "m1089174" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2785517", + "length": "328.2041", + "name": "line_ln6506309-1", + "phases": "C", + "to": "l3066809" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2766722", + "length": "172.7271", + "name": "line_ln6290211-1", + "phases": "B", + "to": "l2879071" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000405", + "length": "158.2410", + "name": "line_ln2000406-1", + "phases": "A", + "to": "m2000406" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2933164", + "length": "221.4315", + "name": "line_ln6440069-1", + "phases": "ABC", + "to": "l3029498" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026824", + "length": "623.8009", + "name": "line_ln5985378-1", + "phases": "ABC", + "to": "m1009807" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009698", + "length": "264.9198", + "name": "line_ln6258429-1", + "phases": "ABC", + "to": "m1026767" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3160104", + "length": "366.0734", + "name": "line_ln6411384-1", + "phases": "B", + "to": "m1047471" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089162", + "length": "846.4583", + "name": "line_ln5472348-1", + "phases": "C", + "to": "m1089165" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3254238", + "length": "325.8384", + "name": "line_ln6380847-1", + "phases": "ABC", + "to": "m1047303" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "e182727", + "length": "20.0649", + "name": "line_ln6439975-1", + "phases": "C", + "to": "m1027042" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3179646", + "length": "253.8262", + "name": "line_ln5805728-1", + "phases": "ABC", + "to": "l2674027" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3160872", + "length": "190.3842", + "name": "line_ln6321420-1", + "phases": "ABC", + "to": "m1142860" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3160115", + "length": "263.7232", + "name": "line_ln6320355-1", + "phases": "B", + "to": "l2935567" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000600", + "length": "372.3195", + "name": "line_ln2000700-1", + "phases": "ABC", + "to": "m2000700" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2820590", + "length": "181.8532", + "name": "line_ln5531334-1", + "phases": "C", + "to": "m1108328" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209749", + "length": "666.6177", + "name": "line_ln5896826-1", + "phases": "B", + "to": "l2748840" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069133", + "length": "59.6454", + "name": "line_ln5742808-1", + "phases": "A", + "to": "l2710521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l3027670", + "length": "472.6016", + "name": "line_ln81048103-2", + "phases": "B", + "to": "m1108459" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx2_wpal_ln5496577-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "l3068944", + "length": "7.2844", + "name": "line_ln5708136-1", + "phases": "B", + "to": "m1125911" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3160107", + "length": "353.7725", + "name": "line_ln6350541-1", + "phases": "ABC", + "to": "l3104125" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166361", + "length": "226.6353", + "name": "line_ln6198041-1", + "phases": "A", + "to": "l2692661" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2936270", + "length": "198.8178", + "name": "line_ln6351517-1", + "phases": "A", + "to": "l3086078" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2935559", + "length": "124.2461", + "name": "line_ln6411397-1", + "phases": "A", + "to": "l3048214" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047303", + "length": "926.0705", + "name": "line_ln5986964-1", + "phases": "C", + "to": "l3048230" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026851", + "length": "98.5634", + "name": "line_ln5502542-1", + "phases": "ABC", + "to": "l3235257" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047756", + "length": "18.3625", + "name": "line_ln6380812-1", + "phases": "A", + "to": "m1047755" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047322", + "length": "243.9325", + "name": "line_ln5835148-1", + "phases": "A", + "to": "l3048211" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3119793", + "length": "141.3367", + "name": "line_ln6102834-2", + "phases": "B", + "to": "m1047371" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p901909", + "length": "67.7260", + "name": "line_ln6379342-1", + "phases": "B", + "to": "m1026472" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047379", + "length": "170.6705", + "name": "line_ln6102834-1", + "phases": "B", + "to": "l3119793" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2860506", + "length": "821.2929", + "name": "line_ln5653489-1", + "phases": "B", + "to": "m1027019" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3216368", + "length": "90.8705", + "name": "line_ln5683858-2", + "phases": "ABC", + "to": "n1140827" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209775", + "length": "531.7372", + "name": "line_ln6078775-1", + "phases": "ABC", + "to": "m1209774" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1140827", + "length": "56.6578", + "name": "line_ln5683858-3", + "phases": "ABC", + "to": "m1026726" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026701", + "length": "200.6530", + "name": "line_ln6411407-1", + "phases": "ABC", + "to": "m1026697" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125955", + "length": "370.2835", + "name": "line_ln5625527-1", + "phases": "C", + "to": "l3236004" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1108412", + "length": "196.3789", + "name": "line_ln81048103-1", + "phases": "B", + "to": "l3027670" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p895117", + "length": "16.9988", + "name": "line_ln6409780-1", + "phases": "B", + "to": "m1069532" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3949154", + "length": "12.4232", + "name": "line_ln6991381-2", + "phases": "A", + "to": "l3728038" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069467", + "length": "51.6401", + "name": "line_ln5714044-1", + "phases": "A", + "to": "m1069466" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3728038", + "length": "259.5481", + "name": "line_ln6991381-4", + "phases": "A", + "to": "l3728039" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2991943", + "length": "254.2262", + "name": "line_ln5532790-1", + "phases": "C", + "to": "m1047319" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1108499", + "length": "118.9089", + "name": "line_ln5833633-4", + "phases": "A", + "to": "l3065665" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026329", + "length": "112.1006", + "name": "line_ln5895787-1", + "phases": "ABC", + "to": "m1026328" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3768670", + "length": "14.6642", + "name": "line_ln6900590-2", + "phases": "A", + "to": "p1123251" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089119", + "length": "258.8105", + "name": "line_ln5683823-1", + "phases": "ABC", + "to": "m1089118" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108331", + "length": "6.6652", + "name": "line_ln5712492-1", + "phases": "C", + "to": "l3045895" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3048889", + "length": "286.9842", + "name": "line_ln6137018-1", + "phases": "C", + "to": "m1166407" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3728039", + "length": "197.9947", + "name": "line_ln6991381-6", + "phases": "A", + "to": "l3728040" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3045895", + "length": "293.9352", + "name": "line_ln5712492-2", + "phases": "C", + "to": "m1108329" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3728040", + "length": "124.9708", + "name": "line_ln6991381-8", + "phases": "A", + "to": "l3728041" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069544", + "length": "10.4789", + "name": "line_ln5623415-1", + "phases": "B", + "to": "m1069543" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047724", + "length": "139.0198", + "name": "line_ln5773040-1", + "phases": "ABC", + "to": "m1047722" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069532", + "length": "192.1921", + "name": "line_ln6046046-1", + "phases": "B", + "to": "l2785534" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047722", + "length": "353.9146", + "name": "line_ln5773040-2", + "phases": "ABC", + "to": "l2841621" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026857", + "length": "273.7478", + "name": "line_ln5651961-1", + "phases": "A", + "to": "l2973165" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001207", + "length": "158.2410", + "name": "line_ln2001208-1", + "phases": "C", + "to": "m2001208" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_tpx_ln5742835-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1009770", + "length": "182.7057", + "name": "line_ln5742835-1", + "phases": "ABC", + "to": "l2689691" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3037538", + "length": "237.2042", + "name": "line_ln5501001-2", + "phases": "A", + "to": "l2857591" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2689726", + "length": "446.4996", + "name": "line_ln5647724-1", + "phases": "A", + "to": "m1047400" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026701", + "length": "16.9469", + "name": "line_ln5837358-1", + "phases": "A", + "to": "p827560" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3216351", + "length": "103.9972", + "name": "line_ln5986937-1", + "phases": "A", + "to": "l2879081" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3141399", + "length": "252.2131", + "name": "line_ln5593235-1", + "phases": "C", + "to": "m1069210" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142871", + "length": "19.4873", + "name": "line_ln5989326-1", + "phases": "C", + "to": "p829956" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2897780", + "length": "142.9557", + "name": "line_ln5744341-1", + "phases": "ABC", + "to": "l3235255" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047794", + "length": "289.2200", + "name": "line_ln5502559-1", + "phases": "B", + "to": "m1047792" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009715", + "length": "263.6772", + "name": "line_ln6380825-1", + "phases": "ABC", + "to": "m1009705" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047623", + "length": "207.5544", + "name": "line_ln5956497-1", + "phases": "A", + "to": "l2748157" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2841639", + "length": "145.4343", + "name": "line_ln5804806-1", + "phases": "A", + "to": "m1026877" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2973152", + "length": "56.7964", + "name": "line_ln5804796-1", + "phases": "B", + "to": "m1047777" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "p829965", + "length": "91.6028", + "name": "line_ln5928744-1", + "phases": "ABC", + "to": "l2936271" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069558", + "length": "126.8116", + "name": "line_ln6017312-1", + "phases": "B", + "to": "l3254229" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx4_tpx_ln6169266-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "200.00", + "from": "m1069597", + "length": "111.5259", + "name": "line_ln6169266-1", + "phases": "B", + "to": "l2785535" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047342", + "length": "241.7960", + "name": "line_ln5683832-1", + "phases": "A", + "to": "l3197645" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069156", + "length": "68.8442", + "name": "line_ln5926297-1", + "phases": "C", + "to": "l2710510" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209790", + "length": "193.9527", + "name": "line_ln5594242-1", + "phases": "ABC", + "to": "m1209788" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3142078", + "length": "442.0662", + "name": "line_ln6230759-1", + "phases": "B", + "to": "l2879752" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108505", + "length": "179.0108", + "name": "line_ln5624342-1", + "phases": "ABC", + "to": "l2955047" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142860", + "length": "165.9490", + "name": "line_ln6139646-1", + "phases": "ABC", + "to": "m1142863" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186067", + "length": "164.5070", + "name": "line_ln6504019-5", + "phases": "ABC", + "to": "m3032980" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2989566", + "length": "283.4433", + "name": "line_ln6318768-1", + "phases": "ABC", + "to": "m1108378" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089148", + "length": "516.6439", + "name": "line_ln5865245-1", + "phases": "A", + "to": "l2991906" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3197646", + "length": "323.8257", + "name": "line_ln6320342-1", + "phases": "ABC", + "to": "m1026851" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2691942", + "length": "245.7300", + "name": "line_ln5502524-1", + "phases": "B", + "to": "m1047374" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5683000-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2841000", + "length": "196.2431", + "name": "line_ln6128000-1", + "phases": "A", + "to": "l2841648" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6504019-6_int", + "length": "526.2888", + "name": "line_ln6504019-6", + "phases": "ABC", + "to": "m1186065" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027036", + "length": "263.4374", + "name": "line_ln5714070-1", + "phases": "B", + "to": "l2785543" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069218", + "length": "296.1269", + "name": "line_ln6047569-1", + "phases": "C", + "to": "l2954351" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009824", + "length": "217.2348", + "name": "line_ln6350528-1", + "phases": "B", + "to": "l2691939" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3159037", + "length": "162.1607", + "name": "line_ln5727681-1", + "phases": "B", + "to": "m1069738" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2925506", + "length": "102.5334", + "name": "line_ln5472402-1", + "phases": "ABC", + "to": "m1069438" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3235266", + "length": "260.5323", + "name": "line_ln6046144-1", + "phases": "ABC", + "to": "l2801950" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026655", + "length": "206.9876", + "name": "line_ln6260020-1", + "phases": "ABC", + "to": "m1009651" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal1/0_tpx_ln5956462-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1108344", + "length": "129.3703", + "name": "line_ln5956462-1", + "phases": "C", + "to": "l2804250" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p895106", + "length": "131.7651", + "name": "line_ln5952393-1", + "phases": "B", + "to": "l3048887" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108520", + "length": "320.0062", + "name": "line_ln5524067-1", + "phases": "C", + "to": "m1108514" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2935549", + "length": "315.0401", + "name": "line_ln5835131-1", + "phases": "ABC", + "to": "m1069420" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069174", + "length": "191.1474", + "name": "line_ln5742813-1", + "phases": "C", + "to": "l2841629" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e192860", + "length": "64.2838", + "name": "line_ln5815900-1", + "phases": "ABC", + "to": "m1209817" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1186061", + "length": "119.6571", + "name": "line_ln6230800-1", + "phases": "B", + "to": "l2861223" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3066816", + "length": "398.5059", + "name": "line_ln5774465-1", + "phases": "A", + "to": "m1026667" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2688692", + "length": "16.7218", + "name": "line_ln5527400-1", + "phases": "ABC", + "to": "m1108286" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2879077", + "length": "392.6984", + "name": "line_ln5502537-1", + "phases": "B", + "to": "m1026693" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p893163", + "length": "12.8811", + "name": "line_ln5741249-1", + "phases": "A", + "to": "m1047314" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089122", + "length": "249.6089", + "name": "line_ln6108137-1", + "phases": "ABC", + "to": "m1089132" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026931", + "length": "161.3756", + "name": "line_ln5714039-1", + "phases": "A", + "to": "l3216336" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047836", + "length": "460.9746", + "name": "line_ln6380803-1", + "phases": "B", + "to": "l3048199" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p827495", + "length": "54.9337", + "name": "line_ln5534964-1", + "phases": "B", + "to": "m1026466" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "d5863704-2_int", + "length": "291.5372", + "name": "line_ln5863704-2", + "phases": "ABC", + "to": "n1136667" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1136667", + "length": "115.3746", + "name": "line_ln5863704-3", + "phases": "ABC", + "to": "196-29519" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089200", + "length": "88.0937", + "name": "line_ln6169244-1", + "phases": "A", + "to": "l2916602" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125962", + "length": "19.0038", + "name": "line_ln6289479-1", + "phases": "C", + "to": "p903490" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1209795", + "length": "205.1450", + "name": "line_ln6381845-1", + "phases": "C", + "to": "l2936268" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027087", + "length": "76.0154", + "name": "line_ln5924721-1", + "phases": "A", + "to": "m1027091" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069419", + "length": "159.0963", + "name": "line_ln5683810-1", + "phases": "ABC", + "to": "m1069418" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026797", + "length": "8.3707", + "name": "line_ln5649275-1", + "phases": "ABC", + "to": "m1026796" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2879068", + "length": "317.5882", + "name": "line_ln5895774-1", + "phases": "B", + "to": "m1047773" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal1/0_tpx_ln6411371-1", + "continuous_rating_A": "150.00", + "continuous_rating_B": "150.00", + "continuous_rating_C": "150.00", + "emergency_rating_A": "150.00", + "emergency_rating_B": "150.00", + "emergency_rating_C": "150.00", + "from": "l2822866", + "length": "106.9274", + "name": "line_ln5532746-1", + "phases": "ABC", + "to": "m1047688" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3029518", + "length": "302.9119", + "name": "line_ln6320364-1", + "phases": "B", + "to": "l2897807" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047794", + "length": "435.2159", + "name": "line_ln5593248-1", + "phases": "B", + "to": "m1047796" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3236011", + "length": "372.8707", + "name": "line_ln5866274-1", + "phases": "B", + "to": "l3198358" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000712", + "length": "158.2410", + "name": "line_ln2000713-1", + "phases": "B", + "to": "m2000713" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047721", + "length": "312.8258", + "name": "line_ln5986924-1", + "phases": "A", + "to": "m1047723" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069548", + "length": "67.5882", + "name": "line_ln5561440-2", + "phases": "C", + "to": "n1136358" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1136358", + "length": "62.3537", + "name": "line_ln5561440-3", + "phases": "C", + "to": "l2729423" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p829797", + "length": "19.1487", + "name": "line_ln6262430-1", + "phases": "A", + "to": "m1108483" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4_acsr_ln5589097-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "m1142865", + "length": "28.6417", + "name": "line_ln5800724-1", + "phases": "A", + "to": "p895112" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001305", + "length": "158.2410", + "name": "line_ln2001306-1", + "phases": "A", + "to": "m2001306" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3036162", + "length": "141.2820", + "name": "line_ln6048598-2", + "phases": "B", + "to": "l2955055" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1186063", + "length": "12.8483", + "name": "line_ln6322801-1", + "phases": "B", + "to": "p829979" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2973791", + "length": "211.9722", + "name": "line_ln5684838-1", + "phases": "ABC", + "to": "l3179650" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026709", + "length": "192.2996", + "name": "line_ln6290233-1", + "phases": "ABC", + "to": "m1026701" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069225", + "length": "211.3997", + "name": "line_ln5591696-1", + "phases": "C", + "to": "l3122819" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2989564", + "length": "348.9603", + "name": "line_ln6076245-1", + "phases": "B", + "to": "l2897789" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "d5504876-1_int", + "length": "221.3737", + "name": "line_ln5504876-1", + "phases": "ABC", + "to": "p829965" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166356", + "length": "266.7362", + "name": "line_ln5715051-1", + "phases": "A", + "to": "l3104856" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069147", + "length": "119.4157", + "name": "line_ln6138589-1", + "phases": "C", + "to": "l3066801" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069408", + "length": "122.0109", + "name": "line_ln5653458-1", + "phases": "B", + "to": "l2897774" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2785520", + "length": "440.7741", + "name": "line_ln5865232-1", + "phases": "B", + "to": "m1047386" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026341", + "length": "30.6334", + "name": "line_ln6140777-1", + "phases": "A", + "to": "p827531" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108403", + "length": "1062.6748", + "name": "line_ln6422016-1", + "phases": "ABC", + "to": "m1108406" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047435", + "length": "151.1265", + "name": "line_ln5863824-1", + "phases": "A", + "to": "l2970841" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p827512", + "length": "52.7486", + "name": "line_ln6201696-2", + "phases": "C", + "to": "n1136994" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1136994", + "length": "128.0371", + "name": "line_ln6201696-3", + "phases": "C", + "to": "l2785521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089183", + "length": "170.8637", + "name": "line_ln8979256-1", + "phases": "ABC", + "to": "l2990826" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1089195", + "length": "369.8689", + "name": "line_ln6047556-1", + "phases": "C", + "to": "l3141393" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089201", + "length": "13.1635", + "name": "line_ln5679696-1", + "phases": "ABC", + "to": "m1089202" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125968", + "length": "131.1778", + "name": "line_ln5624288-1", + "phases": "ABC", + "to": "m1125976" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e206211", + "length": "490.9484", + "name": "line_ln5833624-2", + "phases": "ABC", + "to": "n1134480" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001314", + "length": "158.2410", + "name": "line_ln2001315-1", + "phases": "A", + "to": "m2001315" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1134480", + "length": "62.4864", + "name": "line_ln5833624-3", + "phases": "ABC", + "to": "m1069519" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2692635", + "length": "27.6868", + "name": "line_ln5587295-1", + "phases": "ABC", + "to": "regxfmr_190-8581" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047339", + "length": "271.9139", + "name": "line_ln5472370-1", + "phases": "ABC", + "to": "l2860491" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069224", + "length": "763.6116", + "name": "line_ln6137088-1", + "phases": "ABC", + "to": "m1069230" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "221-311359", + "length": "158.0755", + "name": "line_ln8978753-2", + "phases": "ABC", + "to": "l3234149" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "198-5320", + "length": "12.7694", + "name": "line_ln8978753-1", + "phases": "ABC", + "to": "221-311359" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2748144", + "length": "387.4917", + "name": "line_ln5532768-1", + "phases": "ABC", + "to": "m1069533" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089118", + "length": "282.9835", + "name": "line_ln6411380-1", + "phases": "C", + "to": "l2973158" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2766741", + "length": "200.5842", + "name": "line_ln6380838-1", + "phases": "ABC", + "to": "m1069382" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026987", + "length": "156.0356", + "name": "line_ln6108124-1", + "phases": "B", + "to": "m1026989" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2955081", + "length": "310.6516", + "name": "line_ln6018341-1", + "phases": "ABC", + "to": "m1108315" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2935555", + "length": "164.8891", + "name": "line_ln5593226-1", + "phases": "A", + "to": "l2897773" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069535", + "length": "289.0546", + "name": "line_ln5986946-1", + "phases": "B", + "to": "m1069530" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2916606", + "length": "202.4265", + "name": "line_ln5744332-1", + "phases": "C", + "to": "l2822864" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3101788", + "length": "179.9972", + "name": "line_ln6198050-1", + "phases": "A", + "to": "l3101787" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069565", + "length": "607.0019", + "name": "line_ln5804819-1", + "phases": "B", + "to": "l2785536" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m3036169", + "length": "8.5240", + "name": "line_ln6505947-4", + "phases": "A", + "to": "l2673317" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026960", + "length": "35.8715", + "name": "line_ln5776666-1", + "phases": "A", + "to": "m1026961" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047409", + "length": "216.9710", + "name": "line_ln5682375-1", + "phases": "A", + "to": "l3082992" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p829976", + "length": "179.7979", + "name": "line_ln6413711-1", + "phases": "A", + "to": "l2955078" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010016", + "length": "267.0042", + "name": "line_ln6076267-1", + "phases": "A", + "to": "m1010015" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047401", + "length": "145.0000", + "name": "line_ln5691535-1", + "phases": "A", + "to": "m1047403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142839", + "length": "239.4803", + "name": "line_ln5503575-1", + "phases": "ABC", + "to": "m1142832" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108540", + "length": "280.5950", + "name": "line_ln6018243-1", + "phases": "C", + "to": "l3235945" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3086079", + "length": "239.8512", + "name": "line_ln6506305-2", + "phases": "B", + "to": "l2936276" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047711", + "length": "285.4342", + "name": "line_ln5683841-1", + "phases": "A", + "to": "m1047718" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3179674", + "length": "393.3931", + "name": "line_ln6381854-1", + "phases": "B", + "to": "m1209758" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p893610", + "length": "289.0828", + "name": "line_ln6103662-1", + "phases": "B", + "to": "m1108302" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010014", + "length": "191.7798", + "name": "line_ln6440003-1", + "phases": "A", + "to": "m1010011" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2876798", + "length": "332.7755", + "name": "line_ln5803273-1", + "phases": "ABC", + "to": "d5803273-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3215549", + "length": "471.1514", + "name": "line_ln5744367-1", + "phases": "B", + "to": "l2897800" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000703", + "length": "158.2410", + "name": "line_ln2000704-1", + "phases": "B", + "to": "m2000704" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l3252336", + "length": "556.8756", + "name": "line_ln81048107-3", + "phases": "B", + "to": "l3233413" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l2802480", + "length": "263.7840", + "name": "line_ln81048107-2", + "phases": "B", + "to": "l3252336" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "d5956471-2_int", + "length": "349.2394", + "name": "line_ln5956471-2", + "phases": "ABC", + "to": "m1047572" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166370", + "length": "155.8812", + "name": "line_ln5927421-1", + "phases": "C", + "to": "m1166364" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047548", + "length": "59.7610", + "name": "line_ln5956471-3", + "phases": "ABC", + "to": "n1136670" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l3233413", + "length": "151.9734", + "name": "line_ln81048107-4", + "phases": "B", + "to": "m1108464" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069524", + "length": "3.8768", + "name": "line_ln5985347-2", + "phases": "A", + "to": "l3254230" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m3037540", + "length": "10.9673", + "name": "line_ln6506318-4", + "phases": "C", + "to": "l2710509" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1108459", + "length": "271.0491", + "name": "line_ln81048107-1", + "phases": "B", + "to": "l2802480" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026679", + "length": "29.1651", + "name": "line_ln5958703-1", + "phases": "A", + "to": "p827537" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125997", + "length": "10.9611", + "name": "line_ln5535139-1", + "phases": "ABC", + "to": "d5535139-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069521", + "length": "322.0303", + "name": "line_ln5985347-1", + "phases": "A", + "to": "m1069524" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026906", + "length": "320.9672", + "name": "line_ln6411393-1", + "phases": "A", + "to": "l3048212" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069533", + "length": "61.0455", + "name": "line_ln5898408-1", + "phases": "B", + "to": "196-29521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "e182725", + "length": "408.1498", + "name": "line_ln6292464-1", + "phases": "B", + "to": "m1026948" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1126020", + "length": "94.2659", + "name": "line_ln5712496-1", + "phases": "A", + "to": "m1126023" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026989", + "length": "635.9273", + "name": "line_ln5865267-1", + "phases": "B", + "to": "l2673343" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "196-35541", + "length": "245.8358", + "name": "line_ln6141147-1", + "phases": "C", + "to": "d6141147-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1126020", + "length": "248.3334", + "name": "line_ln5742826-1", + "phases": "A", + "to": "l3101782" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026767", + "length": "485.1328", + "name": "line_ln6318742-1", + "phases": "A", + "to": "l3029500" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1027041", + "length": "231.1510", + "name": "line_ln5774456-1", + "phases": "C", + "to": "l3010564" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3197643", + "length": "133.6002", + "name": "line_ln6108146-1", + "phases": "B", + "to": "m1026339" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047453", + "length": "228.3596", + "name": "line_ln6380816-1", + "phases": "B", + "to": "l2691948" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2673315", + "length": "408.3626", + "name": "line_ln5714048-1", + "phases": "A", + "to": "m1089148" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069130", + "length": "63.5437", + "name": "line_ln5651970-1", + "phases": "A", + "to": "m1069133" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000800", + "length": "624.7632", + "name": "line_ln2000900-1", + "phases": "ABC", + "to": "m2000900" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2955005", + "length": "105.1826", + "name": "line_ln5533708-1", + "phases": "B", + "to": "m1108372" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2766723", + "length": "187.5302", + "name": "line_ln6169253-1", + "phases": "A", + "to": "l3122822" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186063", + "length": "200.3766", + "name": "line_ln6412356-1", + "phases": "ABC", + "to": "m1209776" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3235256", + "length": "114.4827", + "name": "line_ln5593239-1", + "phases": "ABC", + "to": "m1069136" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3160102", + "length": "201.0333", + "name": "line_ln6231993-1", + "phases": "ABC", + "to": "p827514" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx1/0_tpx_ln5562952-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1069730", + "length": "151.6210", + "name": "line_ln5532733-1", + "phases": "B", + "to": "l2748124" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026309", + "length": "1283.6066", + "name": "line_ln5895783-1", + "phases": "B", + "to": "l2860488" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3141388", + "length": "128.6931", + "name": "line_ln5926284-2", + "phases": "C", + "to": "l3626914" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3626914", + "length": "141.7808", + "name": "line_ln5926284-3", + "phases": "C", + "to": "m1089102" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3066815", + "length": "145.6514", + "name": "line_ln5835144-1", + "phases": "ABC", + "to": "m1047548" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1089141", + "length": "22.6459", + "name": "line_ln5679773-1", + "phases": "A", + "to": "p895105" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1136666", + "length": "97.6834", + "name": "line_ln6422809-4", + "phases": "ABC", + "to": "m1047528" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3216370", + "length": "330.9793", + "name": "line_ln6199560-1", + "phases": "ABC", + "to": "m1047312" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2861157", + "length": "398.1333", + "name": "line_ln5594152-1", + "phases": "C", + "to": "p901951" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047419", + "length": "157.4636", + "name": "line_ln6316403-1", + "phases": "A", + "to": "l2973157" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047528", + "length": "15.8574", + "name": "line_ln6422809-2", + "phases": "ABC", + "to": "l2858166" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069456", + "length": "206.9267", + "name": "line_ln6138635-1", + "phases": "C", + "to": "l2897806" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008742", + "length": "338.9402", + "name": "line_ln6138590-1", + "phases": "B", + "to": "l2804247" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047526", + "length": "36.6684", + "name": "line_ln6422809-3", + "phases": "ABC", + "to": "n1136666" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069408", + "length": "262.6878", + "name": "line_ln5593231-1", + "phases": "B", + "to": "l2822867" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000900", + "length": "540.7229", + "name": "line_ln2001000-1", + "phases": "ABC", + "to": "m2001000" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047558", + "length": "179.9001", + "name": "line_ln5956470-1", + "phases": "ABC", + "to": "m1047550" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2764412", + "length": "472.2169", + "name": "line_ln6409797-4", + "phases": "A", + "to": "n1134470" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069210", + "length": "266.2462", + "name": "line_ln6411379-1", + "phases": "C", + "to": "l3085400" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1134470", + "length": "295.4234", + "name": "line_ln6409797-3", + "phases": "A", + "to": "l3251808" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3066814", + "length": "46.8129", + "name": "line_ln5534969-3", + "phases": "ABC", + "to": "n1134477" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3251808", + "length": "195.1262", + "name": "line_ln6409797-1", + "phases": "A", + "to": "m1027100" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1134477", + "length": "74.1846", + "name": "line_ln5534969-2", + "phases": "ABC", + "to": "d5534969-2_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m3036172", + "length": "8.8691", + "name": "line_ln6505952-4", + "phases": "B", + "to": "l3086079" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3048205", + "length": "642.8405", + "name": "line_ln5835174-1", + "phases": "C", + "to": "m1108361" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069148", + "length": "351.8243", + "name": "line_ln6259988-1", + "phases": "C", + "to": "l2673309" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3048230", + "length": "226.8067", + "name": "line_ln5532789-1", + "phases": "C", + "to": "l2991943" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m4362177", + "length": "214.9136", + "name": "line_ln7167521-1", + "phases": "ABC", + "to": "m1186052" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026486", + "length": "42.3433", + "name": "line_ln5895792-1", + "phases": "B", + "to": "m1026487" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026927", + "length": "16.8667", + "name": "line_ln6292826-1", + "phases": "ABC", + "to": "196-29518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1142108", + "length": "241.7322", + "name": "line_ln5715016-3", + "phases": "A", + "to": "l2674051" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1125904", + "length": "48.1063", + "name": "line_ln5715016-2", + "phases": "A", + "to": "n1142108" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027092", + "length": "247.6040", + "name": "line_ln5894313-1", + "phases": "A", + "to": "l2689727" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026734", + "length": "220.1143", + "name": "line_ln6061814-1", + "phases": "A", + "to": "l3065696" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2745848", + "length": "188.8305", + "name": "line_ln5833717-1", + "phases": "ABC", + "to": "l2673308" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026830", + "length": "172.1664", + "name": "line_ln5502528-1", + "phases": "ABC", + "to": "l2879070" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026331", + "length": "200.0018", + "name": "line_ln6409762-1", + "phases": "C", + "to": "l3214055" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6108145-1_int", + "length": "195.5195", + "name": "line_ln6108145-1", + "phases": "ABC", + "to": "m1026681" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1009855", + "length": "214.9730", + "name": "line_ln5774474-1", + "phases": "B", + "to": "l2748139" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069582", + "length": "86.0431", + "name": "line_ln5895802-1", + "phases": "B", + "to": "l2973171" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026920", + "length": "308.1463", + "name": "line_ln6047565-1", + "phases": "ABC", + "to": "m1026926" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125969", + "length": "85.6153", + "name": "line_ln5927296-1", + "phases": "ABC", + "to": "l2767341" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069135", + "length": "36.4706", + "name": "line_ln5716231-1", + "phases": "B", + "to": "p827533" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047769", + "length": "345.2016", + "name": "line_ln6379347-1", + "phases": "B", + "to": "l2710514" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3104130", + "length": "251.1250", + "name": "line_ln6288856-1", + "phases": "B", + "to": "l2763072" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827531", + "length": "20.3624", + "name": "line_ln5746547-1", + "phases": "A", + "to": "m1026343" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1125903", + "length": "50.9875", + "name": "line_ln5894215-1", + "phases": "A", + "to": "l2989565" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089176", + "length": "227.4522", + "name": "line_ln6138600-1", + "phases": "ABC", + "to": "m1089179" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1145954", + "length": "18.8584", + "name": "line_ln6262266-13", + "phases": "ABC", + "to": "p827580" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3197647", + "length": "5.3175", + "name": "line_ln6017304-1", + "phases": "A", + "to": "m1026778" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047303", + "length": "13.7086", + "name": "line_ln6262266-12", + "phases": "ABC", + "to": "n1145954" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069564", + "length": "70.3833", + "name": "line_ln5472384-2", + "phases": "A", + "to": "n1136361" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047300", + "length": "206.2116", + "name": "line_ln5804836-1", + "phases": "ABC", + "to": "m1047299" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1136361", + "length": "163.6986", + "name": "line_ln5472384-3", + "phases": "A", + "to": "l3160114" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010014", + "length": "42.1143", + "name": "line_ln5803301-1", + "phases": "A", + "to": "m1010013" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069483", + "length": "167.1729", + "name": "line_ln6229793-1", + "phases": "ABC", + "to": "m1069481" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125976", + "length": "25.9574", + "name": "line_ln6255845-1", + "phases": "B", + "to": "p895106" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047724", + "length": "11.2337", + "name": "line_ln5981120-1", + "phases": "B", + "to": "m1047725" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827504", + "length": "30.2505", + "name": "line_ln6201695-2", + "phases": "A", + "to": "n1137957" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3160117", + "length": "319.6407", + "name": "line_ln5895815-1", + "phases": "B", + "to": "l3215549" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137957", + "length": "144.4707", + "name": "line_ln6201695-3", + "phases": "A", + "to": "l3104119" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2822863", + "length": "1096.7424", + "name": "line_ln6380807-1", + "phases": "ABC", + "to": "m1089187" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p850083", + "length": "19.3513", + "name": "line_ln8979257-1", + "phases": "ABC", + "to": "221-312488" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3160105", + "length": "274.9825", + "name": "line_ln5774461-1", + "phases": "C", + "to": "l3235251" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "221-312488", + "length": "44.3473", + "name": "line_ln8979257-2", + "phases": "ABC", + "to": "m1089183" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2897784", + "length": "149.6087", + "name": "line_ln5653472-1", + "phases": "B", + "to": "m1026496" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2841635", + "length": "195.1053", + "name": "line_ln6047578-1", + "phases": "ABC", + "to": "l2822869" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "196-35813", + "length": "24.4942", + "name": "line_ln5621841-2", + "phases": "ABC", + "to": "n1140519" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2763072", + "length": "239.0775", + "name": "line_ln6288856-3", + "phases": "B", + "to": "m4118754" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1142814", + "length": "207.6185", + "name": "line_ln5957500-1", + "phases": "ABC", + "to": "m1142813" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000912", + "length": "158.2410", + "name": "line_ln2000913-1", + "phases": "C", + "to": "m2000913" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047763", + "length": "59.5179", + "name": "line_ln6409775-3", + "phases": "A", + "to": "n1136027" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108331", + "length": "542.9286", + "name": "line_ln5896843-1", + "phases": "C", + "to": "m1108335" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069206", + "length": "498.9809", + "name": "line_ln5986929-1", + "phases": "C", + "to": "l2841625" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "d6409775-4_int", + "length": "213.5405", + "name": "line_ln6409775-4", + "phases": "A", + "to": "l2876796" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047345", + "length": "285.6182", + "name": "line_ln5472371-1", + "phases": "A", + "to": "m1047340" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2876796", + "length": "167.5199", + "name": "line_ln6409775-2", + "phases": "A", + "to": "m1047756" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125911", + "length": "345.9364", + "name": "line_ln5563934-1", + "phases": "B", + "to": "l2711224" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2970842", + "length": "235.8230", + "name": "line_ln6409873-1", + "phases": "B", + "to": "m1089113" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2710519", + "length": "162.9367", + "name": "line_ln5804801-1", + "phases": "A", + "to": "m1047344" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047316", + "length": "112.8883", + "name": "line_ln5956502-1", + "phases": "C", + "to": "l2766728" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026808", + "length": "15.4422", + "name": "line_ln6229803-2", + "phases": "C", + "to": "n1140520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1140520", + "length": "74.5650", + "name": "line_ln6229803-3", + "phases": "C", + "to": "l2729410" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3197652", + "length": "100.1550", + "name": "line_ln6138622-1", + "phases": "A", + "to": "l2748143" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3235275", + "length": "282.0675", + "name": "line_ln5774496-1", + "phases": "ABC", + "to": "m1026347" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2804270", + "length": "291.6937", + "name": "line_ln5593244-1", + "phases": "B", + "to": "l3104145" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1047613", + "length": "14.8443", + "name": "line_ln8961758-1", + "phases": "C", + "to": "p828359" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "e182723", + "length": "161.5864", + "name": "line_ln5806917-1", + "phases": "ABC", + "to": "m1089177" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026783", + "length": "58.7817", + "name": "line_ln5532754-1", + "phases": "ABC", + "to": "m1026780" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr1/0_tpx_ln6229827-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047346", + "length": "134.2872", + "name": "line_ln6199529-1", + "phases": "C", + "to": "l3254219" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3254229", + "length": "145.8430", + "name": "line_ln6229816-1", + "phases": "B", + "to": "m1069565" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108378", + "length": "34.7728", + "name": "line_ln6077443-1", + "phases": "ABC", + "to": "m1108379" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047729", + "length": "240.2577", + "name": "line_ln5835130-1", + "phases": "A", + "to": "l2973150" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047453", + "length": "273.0045", + "name": "line_ln6013613-1", + "phases": "B", + "to": "l2913406" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026905", + "length": "413.9801", + "name": "line_ln6350537-1", + "phases": "ABC", + "to": "m1026907" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2748140", + "length": "256.7748", + "name": "line_ln5774487-1", + "phases": "A", + "to": "l3141412" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "r18245", + "length": "105.1615", + "name": "line_ln6231998-1", + "phases": "ABC", + "to": "e182746" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089102", + "length": "556.2197", + "name": "line_ln5744324-1", + "phases": "C", + "to": "m1089096" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3157167", + "length": "411.4424", + "name": "line_ln5499793-1", + "phases": "A", + "to": "l2785511" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "221-311583", + "length": "13.1530", + "name": "line_ln8979346-4", + "phases": "A", + "to": "n1139250" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l2821770", + "length": "246.4873", + "name": "line_ln8979346-3", + "phases": "A", + "to": "m1069247" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027073", + "length": "268.0152", + "name": "line_ln5804827-1", + "phases": "C", + "to": "l3104118" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "p850401", + "length": "13.7122", + "name": "line_ln8979346-1", + "phases": "A", + "to": "221-311583" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089173", + "length": "199.6679", + "name": "line_ln5532741-1", + "phases": "ABC", + "to": "l2935551" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2991902", + "length": "295.0820", + "name": "line_ln5562919-1", + "phases": "B", + "to": "m1008758" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069398", + "length": "219.0848", + "name": "line_ln6169245-1", + "phases": "A", + "to": "l2785513" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069412", + "length": "270.0381", + "name": "line_ln6108132-1", + "phases": "B", + "to": "l2879061" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2897778", + "length": "6.5121", + "name": "line_ln6506313-4", + "phases": "A", + "to": "m3037452" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069155", + "length": "180.6856", + "name": "line_ln6290207-1", + "phases": "A", + "to": "l3085395" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "n1139250", + "length": "431.9356", + "name": "line_ln8979346-5", + "phases": "A", + "to": "l2821770" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142800", + "length": "306.1174", + "name": "line_ln6321415-1", + "phases": "B", + "to": "m1142799" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026808", + "length": "16.5013", + "name": "line_ln5558792-1", + "phases": "ABC", + "to": "m1026807" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1027011", + "length": "331.7214", + "name": "line_ln5683819-1", + "phases": "ABC", + "to": "m1027013" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026466", + "length": "20.4441", + "name": "line_ln5865224-1", + "phases": "B", + "to": "d5865224-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p1164481", + "length": "174.1196", + "name": "line_ln6991377-9", + "phases": "A", + "to": "l3729297" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "221-306686", + "length": "112.9041", + "name": "line_ln81018877-1", + "phases": "C", + "to": "l2970258" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p873800", + "length": "15.7148", + "name": "line_ln81018877-2", + "phases": "C", + "to": "221-306686" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3122837", + "length": "494.6887", + "name": "line_ln5744359-1", + "phases": "C", + "to": "l3048222" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1027043", + "length": "30.0091", + "name": "line_ln6019477-1", + "phases": "C", + "to": "d6019477-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3010556", + "length": "348.4126", + "name": "line_ln5593222-1", + "phases": "ABC", + "to": "l2766718" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001306", + "length": "158.2410", + "name": "line_ln2001307-1", + "phases": "A", + "to": "m2001307" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108267", + "length": "626.7124", + "name": "line_ln5472340-1", + "phases": "B", + "to": "m1108266" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3029501", + "length": "6.1213", + "name": "line_ln6505943-3", + "phases": "ABC", + "to": "m3036165" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p901951", + "length": "575.6255", + "name": "line_ln6078691-1", + "phases": "C", + "to": "m1186078" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001208", + "length": "158.2410", + "name": "line_ln2001209-1", + "phases": "C", + "to": "m2001209" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e182748", + "length": "209.8457", + "name": "line_ln6171508-1", + "phases": "ABC", + "to": "l2673346" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1027023", + "length": "246.8617", + "name": "line_ln5865237-1", + "phases": "B", + "to": "l3122815" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026690", + "length": "38.5869", + "name": "line_ln5986938-2", + "phases": "A", + "to": "n1140830" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1125929", + "length": "528.5113", + "name": "line_ln6018332-1", + "phases": "A", + "to": "l2842379" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000903", + "length": "158.2410", + "name": "line_ln2000904-1", + "phases": "C", + "to": "m2000904" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1141478", + "length": "408.7369", + "name": "line_ln5928743-3", + "phases": "B", + "to": "m1142826" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3101787", + "length": "127.6188", + "name": "line_ln5621885-1", + "phases": "A", + "to": "l3027132" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108329", + "length": "500.6712", + "name": "line_ln6262235-1", + "phases": "C", + "to": "l2935552" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p829960", + "length": "58.0122", + "name": "line_ln5928743-2", + "phases": "B", + "to": "n1141478" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069169", + "length": "240.6732", + "name": "line_ln5804791-1", + "phases": "ABC", + "to": "l3010556" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p827564", + "length": "201.7098", + "name": "line_ln6049823-1", + "phases": "C", + "to": "m1069348" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1138598", + "length": "48.6280", + "name": "line_ln6229829-3", + "phases": "ABC", + "to": "m1069376" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026948", + "length": "160.4114", + "name": "line_ln6199516-1", + "phases": "B", + "to": "m1026947" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125905", + "length": "83.7142", + "name": "line_ln6139645-1", + "phases": "B", + "to": "l3142098" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3120502", + "length": "414.6791", + "name": "line_ln6198049-1", + "phases": "A", + "to": "m1026792" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "n1140526", + "length": "1596.4495", + "name": "line_ln81354562-7", + "phases": "C", + "to": "m3763620" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "221-559681", + "length": "43.5393", + "name": "line_ln81354562-6", + "phases": "C", + "to": "n1140526" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p1121282", + "length": "10.1560", + "name": "line_ln81354562-4", + "phases": "C", + "to": "221-559681" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108340", + "length": "43.5069", + "name": "line_ln5774452-1", + "phases": "C", + "to": "l2916605" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108298", + "length": "33.3915", + "name": "line_ln6195132-1", + "phases": "B", + "to": "p893610" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2673320", + "length": "215.4453", + "name": "line_ln5744337-1", + "phases": "B", + "to": "l3048209" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "m1108398", + "length": "10.0952", + "name": "line_ln8979248-1", + "phases": "ABC", + "to": "p850072" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047792", + "length": "313.4788", + "name": "line_ln5653481-1", + "phases": "B", + "to": "l2860500" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009705", + "length": "155.0932", + "name": "line_ln5894192-1", + "phases": "ABC", + "to": "m1009698" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2748131", + "length": "183.2116", + "name": "line_ln6077800-1", + "phases": "B", + "to": "l2729427" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2767409", + "length": "305.9715", + "name": "line_ln6412352-1", + "phases": "B", + "to": "m1142800" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1089122", + "length": "102.8458", + "name": "line_ln5544392-1", + "phases": "C", + "to": "p860892" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000707", + "length": "158.2410", + "name": "line_ln2000708-1", + "phases": "B", + "to": "m2000708" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047432", + "length": "341.2809", + "name": "line_ln5472362-1", + "phases": "A", + "to": "p903360" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1009807", + "length": "328.8821", + "name": "line_ln5894237-1", + "phases": "C", + "to": "l2673323" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1140830", + "length": "28.6739", + "name": "line_ln5986938-3", + "phases": "A", + "to": "l3216351" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069356", + "length": "219.3073", + "name": "line_ln6260025-1", + "phases": "C", + "to": "m1069363" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1027000", + "length": "219.3180", + "name": "line_ln6017294-1", + "phases": "ABC", + "to": "l2916608" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1108413", + "length": "479.3237", + "name": "line_ln81048089-1", + "phases": "A", + "to": "m1108460" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2785538", + "length": "214.6845", + "name": "line_ln6047596-1", + "phases": "A", + "to": "l2897793" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2001100", + "length": "568.5095", + "name": "line_ln2001200-1", + "phases": "ABC", + "to": "m2001200" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1166366", + "length": "135.0687", + "name": "line_ln5957526-1", + "phases": "ABC", + "to": "m1166368" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047828", + "length": "320.4601", + "name": "line_ln5623396-1", + "phases": "B", + "to": "l2710513" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047311", + "length": "34.5038", + "name": "line_ln6138639-1", + "phases": "A", + "to": "l2748158" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026896", + "length": "102.5659", + "name": "line_ln5695520-1", + "phases": "A", + "to": "p860847" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069468", + "length": "239.9076", + "name": "line_ln5532785-1", + "phases": "ABC", + "to": "m1069464" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001003", + "length": "158.2410", + "name": "line_ln2001004-1", + "phases": "B", + "to": "m2001004" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047550", + "length": "327.2450", + "name": "line_ln6350542-1", + "phases": "ABC", + "to": "m1047534" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3160098", + "length": "349.0125", + "name": "line_ln6259984-1", + "phases": "ABC", + "to": "m1089213" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047441", + "length": "190.6424", + "name": "line_ln6411375-1", + "phases": "B", + "to": "l2804258" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089170", + "length": "557.8373", + "name": "line_ln6320328-1", + "phases": "C", + "to": "d6320328-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047831", + "length": "337.7912", + "name": "line_ln5472353-1", + "phases": "B", + "to": "l2710505" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026682", + "length": "301.5649", + "name": "line_ln5623406-1", + "phases": "A", + "to": "l3066816" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1009827", + "length": "500.0079", + "name": "line_ln6495087-1", + "phases": "B", + "to": "m3019248" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047303", + "length": "236.9001", + "name": "line_ln5865272-1", + "phases": "ABC", + "to": "l3027116" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069154", + "length": "583.0401", + "name": "line_ln6047561-1", + "phases": "ABC", + "to": "l3197630" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125966", + "length": "223.3894", + "name": "line_ln5896728-1", + "phases": "B", + "to": "l2955005" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l3645812", + "length": "974.0217", + "name": "line_ln81353934-4", + "phases": "C", + "to": "228-1353934-4_int" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m3763620", + "length": "146.3669", + "name": "line_ln81353934-3", + "phases": "C", + "to": "l3645812" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2822877", + "length": "76.3558", + "name": "line_ln6229829-2", + "phases": "ABC", + "to": "n1138598" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3123509", + "length": "299.0885", + "name": "line_ln6078776-1", + "phases": "ABC", + "to": "m1209772" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_2ph_h-2_acsrx2_acsr2_acsr_ln5637597-1", + "continuous_rating_A": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_C": "175.00", + "from": "m1069285", + "length": "5.6415", + "name": "line_ln5698090-2", + "phases": "AC", + "to": "m4113348" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026695", + "length": "62.0946", + "name": "line_ln5774470-3", + "phases": "A", + "to": "n1138594" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_2ph_h-2_acsrx2_acsr2_acsr_ln5637597-1", + "continuous_rating_A": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_C": "175.00", + "from": "m4113348", + "length": "4.7729", + "name": "line_ln5698090-3", + "phases": "AC", + "to": "m1069284" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "d5774470-2_int", + "length": "460.3564", + "name": "line_ln5774470-2", + "phases": "A", + "to": "m1026679" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047518", + "length": "283.9288", + "name": "line_ln5653463-1", + "phases": "B", + "to": "l2973160" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027071", + "length": "48.3415", + "name": "line_ln5714043-1", + "phases": "C", + "to": "l3235241" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2673346", + "length": "423.8287", + "name": "line_ln6350577-1", + "phases": "ABC", + "to": "l3254238" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026907", + "length": "184.0064", + "name": "line_ln6138604-1", + "phases": "ABC", + "to": "l3085398" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047521", + "length": "66.6276", + "name": "line_ln6108141-1", + "phases": "ABC", + "to": "d6108141-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p827561", + "length": "22.1628", + "name": "line_ln6198014-1", + "phases": "C", + "to": "m1026705" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166362", + "length": "226.2235", + "name": "line_ln5563943-1", + "phases": "A", + "to": "l2898522" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089185", + "length": "23.6823", + "name": "line_ln81098881-1", + "phases": "ABC", + "to": "p850083" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069549", + "length": "18.2765", + "name": "line_ln5894211-1", + "phases": "C", + "to": "p901931" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3085410", + "length": "257.0620", + "name": "line_ln5472388-1", + "phases": "B", + "to": "l2860499" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2841625", + "length": "285.7621", + "name": "line_ln5835139-1", + "phases": "C", + "to": "l3010566" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2973154", + "length": "210.2717", + "name": "line_ln6229797-1", + "phases": "A", + "to": "l2879069" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089187", + "length": "635.8534", + "name": "line_ln6301089-1", + "phases": "ABC", + "to": "m1089188" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1166368", + "length": "162.0941", + "name": "line_ln5988007-1", + "phases": "A", + "to": "l3086098" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1136661", + "length": "89.2180", + "name": "line_ln6047574-3", + "phases": "C", + "to": "l3029505" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047534", + "length": "25.9386", + "name": "line_ln6047574-2", + "phases": "C", + "to": "n1136661" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "f739845", + "length": "100.0018", + "name": "line_293471", + "phases": "ABC", + "to": "293471" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2897793", + "length": "83.9460", + "name": "line_ln6290229-1", + "phases": "A", + "to": "m1069521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000409", + "length": "158.2410", + "name": "line_ln2000410-1", + "phases": "A", + "to": "m2000410" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3139121", + "length": "246.1040", + "name": "line_ln6379462-2", + "phases": "ABC", + "to": "l2763153" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2763153", + "length": "158.6225", + "name": "line_ln6379462-3", + "phases": "ABC", + "to": "m1047293" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026954", + "length": "15.0056", + "name": "line_ln5655682-1", + "phases": "B", + "to": "d5655682-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026722", + "length": "233.5633", + "name": "line_ln6206281-1", + "phases": "B", + "to": "m1026736" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1145956", + "length": "128.7068", + "name": "line_ln5562937-3", + "phases": "A", + "to": "l2729412" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047299", + "length": "147.6069", + "name": "line_ln6379462-1", + "phases": "ABC", + "to": "l3139121" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026347", + "length": "33.2447", + "name": "line_ln5562937-2", + "phases": "A", + "to": "n1145956" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069519", + "length": "27.0304", + "name": "line_ln6348946-1", + "phases": "B", + "to": "p901927" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026724", + "length": "21.6056", + "name": "line_ln5472375-1", + "phases": "ABC", + "to": "r18243" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m3036172", + "length": "402.0169", + "name": "line_ln6321419-2", + "phases": "B", + "to": "m1209763" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p829956", + "length": "201.5506", + "name": "line_ln5807086-1", + "phases": "C", + "to": "l3160861" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2841648", + "length": "300.6816", + "name": "line_ln5623428-1", + "phases": "A", + "to": "l2710544" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026877", + "length": "748.7596", + "name": "line_ln5593240-1", + "phases": "A", + "to": "m1026906" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3037538", + "length": "8.2782", + "name": "line_ln6167751-6", + "phases": "A", + "to": "l3027133" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3037453", + "length": "22.4670", + "name": "line_ln5679261-2", + "phases": "A", + "to": "m1026812" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3197630", + "length": "392.7392", + "name": "line_ln6229807-1", + "phases": "ABC", + "to": "l3235256" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3141403", + "length": "195.7625", + "name": "line_ln6167751-3", + "phases": "A", + "to": "m3037538" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069557", + "length": "178.0887", + "name": "line_ln6260016-1", + "phases": "B", + "to": "m1069554" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1139541", + "length": "49.1045", + "name": "line_ln6413567-3", + "phases": "ABC", + "to": "d6413567-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3125349", + "length": "197.8395", + "name": "line_ln5517002-3", + "phases": "ABC", + "to": "n1138604" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069175", + "length": "143.0018", + "name": "line_ln6413567-2", + "phases": "ABC", + "to": "n1139541" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1138604", + "length": "256.3241", + "name": "line_ln5517002-9", + "phases": "ABC", + "to": "l3143999" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m4122657", + "length": "724.3682", + "name": "line_ln6258460-3", + "phases": "C", + "to": "l3027124" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069662", + "length": "200.7129", + "name": "line_ln6350555-1", + "phases": "B", + "to": "l2935547" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3143999", + "length": "9.6810", + "name": "line_ln5517002-2", + "phases": "ABC", + "to": "m1069350" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3254213", + "length": "209.5233", + "name": "line_ln5532750-1", + "phases": "ABC", + "to": "m1027039" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069560", + "length": "289.0890", + "name": "line_ln6198036-1", + "phases": "B", + "to": "l3176660" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008746", + "length": "254.2879", + "name": "line_ln6077772-1", + "phases": "B", + "to": "m1008743" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209807", + "length": "144.8844", + "name": "line_ln5896798-1", + "phases": "ABC", + "to": "m1209805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m3037452", + "length": "234.4262", + "name": "line_ln6199525-2", + "phases": "A", + "to": "l2973164" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026916", + "length": "35.4412", + "name": "line_ln6320337-1", + "phases": "B", + "to": "l3197634" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047821", + "length": "64.8430", + "name": "line_ln5744328-1", + "phases": "B", + "to": "l2684420" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3030199", + "length": "96.1132", + "name": "line_ln6078767-1", + "phases": "ABC", + "to": "m1125934" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx2_wpal_ln5561444-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "m1047339", + "length": "25.3933", + "name": "line_ln6073648-1", + "phases": "A", + "to": "p895104" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m4277837", + "length": "226.2786", + "name": "line_ln6350533-5", + "phases": "ABC", + "to": "m1069419" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1138597", + "length": "157.0905", + "name": "line_ln5956457-3", + "phases": "ABC", + "to": "m1069411" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069420", + "length": "559.3470", + "name": "line_ln6350533-4", + "phases": "ABC", + "to": "m4277837" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069417", + "length": "104.2464", + "name": "line_ln5956457-2", + "phases": "ABC", + "to": "n1138597" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069147", + "length": "195.9004", + "name": "line_ln5653450-1", + "phases": "C", + "to": "l2879055" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047821", + "length": "676.5618", + "name": "line_ln6017285-1", + "phases": "B", + "to": "l2785512" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3235267", + "length": "209.6927", + "name": "line_ln6380842-1", + "phases": "C", + "to": "m1027068" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069424", + "length": "290.6756", + "name": "line_ln6290203-1", + "phases": "ABC", + "to": "l2935549" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047432", + "length": "158.6823", + "name": "line_ln5895779-1", + "phases": "A", + "to": "l2879075" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026891", + "length": "30.9479", + "name": "line_ln6169249-2", + "phases": "C", + "to": "n1147863" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1147863", + "length": "14.4211", + "name": "line_ln6169249-3", + "phases": "C", + "to": "l3122817" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026713", + "length": "179.2929", + "name": "line_ln5804823-1", + "phases": "A", + "to": "l2785530" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p895075", + "length": "17.7677", + "name": "line_ln5589095-1", + "phases": "C", + "to": "m1108524" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142833", + "length": "171.2522", + "name": "line_ln6109147-1", + "phases": "C", + "to": "l2767408" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047720", + "length": "299.1131", + "name": "line_ln5496764-1", + "phases": "C", + "to": "l2954345" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089177", + "length": "451.9110", + "name": "line_ln6199512-1", + "phases": "C", + "to": "l2729406" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr4_acsr4_acsr_ln5655838-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "p829977", + "length": "245.2924", + "name": "line_ln5655838-1", + "phases": "ABC", + "to": "m1186061" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m4118755", + "length": "144.7901", + "name": "line_ln6015889-4", + "phases": "A", + "to": "m1209782" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125919", + "length": "131.2256", + "name": "line_ln5745347-1", + "phases": "ABC", + "to": "m1125917" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069533", + "length": "28.1267", + "name": "line_ln6407207-1", + "phases": "B", + "to": "p895117" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "d5746703-1_int", + "length": "541.1783", + "name": "line_ln5746703-1", + "phases": "C", + "to": "l3160863" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3104121", + "length": "108.0030", + "name": "line_ln5683815-1", + "phases": "A", + "to": "l3104113" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069489", + "length": "242.2667", + "name": "line_ln5865228-1", + "phases": "C", + "to": "l2933120" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026785", + "length": "97.5799", + "name": "line_ln6255773-1", + "phases": "ABC", + "to": "m1026783" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6048634-1_int", + "length": "138.3681", + "name": "line_ln6048634-1", + "phases": "ABC", + "to": "m1186067" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069620", + "length": "65.3170", + "name": "line_ln6074369-1", + "phases": "B", + "to": "m1069610" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069610", + "length": "150.3030", + "name": "line_ln6074369-2", + "phases": "B", + "to": "l2991929" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069590", + "length": "355.1877", + "name": "line_ln5926320-1", + "phases": "B", + "to": "l3122835" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "m1026361", + "length": "60.5912", + "name": "line_ln6411388-1", + "phases": "A", + "to": "l3122825" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009832", + "length": "154.8788", + "name": "line_ln5472344-1", + "phases": "B", + "to": "m1009834" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr4_acsr_ln5898194-1", + "continuous_rating_A": "300.00", + "continuous_rating_B": "300.00", + "continuous_rating_C": "300.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1186065", + "length": "302.9034", + "name": "line_ln5898194-1", + "phases": "ABC", + "to": "p829977" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2766747", + "length": "116.4604", + "name": "line_ln6153057-1", + "phases": "ABC", + "to": "m1026732" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089162", + "length": "373.4239", + "name": "line_ln6326286-1", + "phases": "C", + "to": "l2991640" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3082981", + "length": "523.0107", + "name": "line_ln5985351-2", + "phases": "C", + "to": "m1108368" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026732", + "length": "266.3715", + "name": "line_ln6153057-2", + "phases": "ABC", + "to": "l3047058" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3216343", + "length": "244.2886", + "name": "line_ln5985351-1", + "phases": "C", + "to": "l3082981" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089160", + "length": "275.0041", + "name": "line_ln6326286-3", + "phases": "C", + "to": "m1089163" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1142814", + "length": "987.2954", + "name": "line_ln5957494-1", + "phases": "ABC", + "to": "m1142810" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2991640", + "length": "336.7260", + "name": "line_ln6326286-2", + "phases": "C", + "to": "m1089160" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108263", + "length": "387.3653", + "name": "line_ln5686078-2", + "phases": "B", + "to": "n1142112" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026327", + "length": "343.6043", + "name": "line_ln5683828-1", + "phases": "B", + "to": "l2841636" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026866", + "length": "36.8067", + "name": "line_ln6341781-2", + "phases": "A", + "to": "n1147862" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1147862", + "length": "293.2014", + "name": "line_ln6341781-3", + "phases": "A", + "to": "l2685805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1142112", + "length": "40.7090", + "name": "line_ln5686078-3", + "phases": "B", + "to": "p827496" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009843", + "length": "271.4795", + "name": "line_ln5502550-1", + "phases": "B", + "to": "m1009855" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026327", + "length": "125.7915", + "name": "line_ln6380820-1", + "phases": "B", + "to": "l3122823" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1142843", + "length": "260.4014", + "name": "line_ln5473439-1", + "phases": "A", + "to": "l2692660" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000907", + "length": "158.2410", + "name": "line_ln2000908-1", + "phases": "C", + "to": "m2000908" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047507", + "length": "167.4297", + "name": "line_ln5682339-1", + "phases": "ABC", + "to": "196-35813" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047326", + "length": "127.8272", + "name": "line_ln6138613-1", + "phases": "A", + "to": "m1047322" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047486", + "length": "327.1962", + "name": "line_ln6012046-1", + "phases": "ABC", + "to": "m1047484" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p827542", + "length": "15.2903", + "name": "line_ln6171504-1", + "phases": "B", + "to": "m1026486" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047486", + "length": "33.5178", + "name": "line_ln5928543-1", + "phases": "A", + "to": "p827502" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1149236", + "length": "136.3513", + "name": "line_ln6018336-1", + "phases": "ABC", + "to": "m1149235" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047316", + "length": "48.2174", + "name": "line_ln5593253-1", + "phases": "ABC", + "to": "l3216370" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142871", + "length": "125.1752", + "name": "line_ln6139641-1", + "phases": "ABC", + "to": "m1142874" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1140818", + "length": "35.0696", + "name": "line_ln6108150-2", + "phases": "ABC", + "to": "l2973167" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026695", + "length": "207.3948", + "name": "line_ln6108150-3", + "phases": "ABC", + "to": "n1140818" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3086078", + "length": "242.0088", + "name": "line_ln6015889-3", + "phases": "A", + "to": "m4118755" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047534", + "length": "376.4362", + "name": "line_ln6077781-2", + "phases": "ABC", + "to": "n1136663" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1136663", + "length": "155.2182", + "name": "line_ln6077781-3", + "phases": "ABC", + "to": "d6077791-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2991922", + "length": "236.9070", + "name": "line_ln6047583-1", + "phases": "ABC", + "to": "m1047339" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3120376", + "length": "293.0912", + "name": "line_ln5772710-2", + "phases": "A", + "to": "m1026925" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3178997", + "length": "108.0885", + "name": "line_ln6047606-1", + "phases": "C", + "to": "m1026363" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069495", + "length": "36.8097", + "name": "line_ln6320324-1", + "phases": "ABC", + "to": "m1069498" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026906", + "length": "350.5044", + "name": "line_ln5772710-1", + "phases": "A", + "to": "l3120376" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026713", + "length": "43.6251", + "name": "line_ln5653485-1", + "phases": "A", + "to": "l2860504" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2841627", + "length": "350.7424", + "name": "line_ln6017298-1", + "phases": "A", + "to": "l3254216" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166399", + "length": "274.1201", + "name": "line_ln6200441-1", + "phases": "C", + "to": "l3048890" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047325", + "length": "30.1309", + "name": "line_ln6350546-1", + "phases": "ABC", + "to": "m1047324" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047558", + "length": "53.4098", + "name": "line_ln5714052-2", + "phases": "A", + "to": "n1136659" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1136659", + "length": "304.7456", + "name": "line_ln5714052-3", + "phases": "A", + "to": "l3104129" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_wpal_ln6291244-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3160865", + "length": "428.4897", + "name": "line_ln6291244-1", + "phases": "ABC", + "to": "m1142828" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026769", + "length": "28.0548", + "name": "line_ln6290216-1", + "phases": "ABC", + "to": "l2841633" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001012", + "length": "158.2410", + "name": "line_ln2001013-1", + "phases": "B", + "to": "m2001013" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1136354", + "length": "36.5522", + "name": "line_ln5561439-2", + "phases": "ABC", + "to": "l2748144" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047444", + "length": "498.2064", + "name": "line_ln5562928-1", + "phases": "B", + "to": "m1047447" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069519", + "length": "496.2673", + "name": "line_ln5561439-3", + "phases": "ABC", + "to": "n1136354" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026308", + "length": "310.7426", + "name": "line_ln5472366-1", + "phases": "B", + "to": "l2991902" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2991915", + "length": "195.5944", + "name": "line_ln6259997-1", + "phases": "B", + "to": "l2673320" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108490", + "length": "30.1600", + "name": "line_ln6292600-1", + "phases": "A", + "to": "p829798" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3048196", + "length": "903.5727", + "name": "line_ln6411366-1", + "phases": "B", + "to": "m1089097" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166366", + "length": "29.2998", + "name": "line_ln6140925-1", + "phases": "C", + "to": "p830058" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000400", + "length": "158.2410", + "name": "line_ln2000401-1", + "phases": "A", + "to": "m2000401" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026773", + "length": "386.7284", + "name": "line_ln6199040-1", + "phases": "A", + "to": "l3195751" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "190-7361", + "length": "19.0963", + "name": "line_ln5502532-1", + "phases": "ABC", + "to": "d5472350-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026486", + "length": "35.4441", + "name": "line_ln5926315-1", + "phases": "B", + "to": "m1026488" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026732", + "length": "221.3443", + "name": "line_ln5758684-1", + "phases": "A", + "to": "m1026734" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026880", + "length": "113.4014", + "name": "line_ln5623425-1", + "phases": "A", + "to": "l2766748" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3048199", + "length": "278.1731", + "name": "line_ln6259980-1", + "phases": "B", + "to": "m1047837" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026886", + "length": "5.9634", + "name": "line_ln5526906-2", + "phases": "ABC", + "to": "l3120484" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "n1230122", + "length": "416.6274", + "name": "line_ln81048102-4", + "phases": "A", + "to": "l3233412" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1027027", + "length": "551.2840", + "name": "line_ln6290201-1", + "phases": "C", + "to": "m1027014" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "221-282819", + "length": "18.4093", + "name": "line_ln81048102-6", + "phases": "A", + "to": "n1230122" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "p904451", + "length": "18.0483", + "name": "line_ln81048102-5", + "phases": "A", + "to": "221-282819" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3120484", + "length": "339.5452", + "name": "line_ln5526906-1", + "phases": "ABC", + "to": "m1026896" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1140518", + "length": "131.8899", + "name": "line_ln5651977-4", + "phases": "A", + "to": "l2764403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827549", + "length": "72.3947", + "name": "line_ln5651977-3", + "phases": "A", + "to": "n1140518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "221-242079", + "length": "186.1698", + "name": "line_ln8940663-1", + "phases": "ABC", + "to": "l3011293" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137988", + "length": "134.1927", + "name": "line_ln5835136-3", + "phases": "A", + "to": "l2991908" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047737", + "length": "64.6390", + "name": "line_ln5835136-2", + "phases": "A", + "to": "n1137988" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2710537", + "length": "269.4023", + "name": "line_ln6047602-1", + "phases": "B", + "to": "m1008752" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026805", + "length": "276.1868", + "name": "line_ln5683859-1", + "phases": "A", + "to": "l3010585" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026764", + "length": "300.2543", + "name": "line_ln5774459-1", + "phases": "A", + "to": "l3178976" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2764403", + "length": "193.1160", + "name": "line_ln5651977-2", + "phases": "A", + "to": "m1047623" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089155", + "length": "261.9149", + "name": "line_ln6199510-1", + "phases": "C", + "to": "l2935550" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l3233412", + "length": "56.6354", + "name": "line_ln81048102-2", + "phases": "A", + "to": "m1108413" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108328", + "length": "69.7754", + "name": "line_ln5803287-1", + "phases": "C", + "to": "l2875754" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3235246", + "length": "253.2929", + "name": "line_ln5714047-1", + "phases": "B", + "to": "l2710512" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx1/0_3w_cs_ln5775368-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "l3048887", + "length": "99.2950", + "name": "line_ln5775368-1", + "phases": "B", + "to": "m1125966" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026852", + "length": "338.7025", + "name": "line_ln5895788-1", + "phases": "ABC", + "to": "l3197646" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1209822", + "length": "338.1902", + "name": "line_ln5866186-1", + "phases": "C", + "to": "l2992556" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p827522", + "length": "34.3223", + "name": "line_ln5504713-2", + "phases": "A", + "to": "n1142111" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1142111", + "length": "171.5333", + "name": "line_ln5504713-3", + "phases": "A", + "to": "l2991912" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027019", + "length": "673.6083", + "name": "line_ln5924800-1", + "phases": "B", + "to": "l2801949" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069731", + "length": "564.9736", + "name": "line_ln5774446-1", + "phases": "B", + "to": "m1069730" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089118", + "length": "148.6150", + "name": "line_ln6047570-1", + "phases": "A", + "to": "l3048208" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047777", + "length": "357.8566", + "name": "line_ln6320334-1", + "phases": "B", + "to": "l2748131" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p901931", + "length": "15.9284", + "name": "line_ln5621849-1", + "phases": "C", + "to": "m1069548" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027100", + "length": "558.6365", + "name": "line_ln6379374-1", + "phases": "A", + "to": "m1027109" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069199", + "length": "235.4997", + "name": "line_ln5986932-1", + "phases": "C", + "to": "l2785525" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2689678", + "length": "1302.0980", + "name": "line_ln5561432-2", + "phases": "B", + "to": "m1026463" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047374", + "length": "292.0769", + "name": "line_ln5561432-1", + "phases": "B", + "to": "l2689678" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026726", + "length": "239.1172", + "name": "line_ln5833721-1", + "phases": "B", + "to": "l2876847" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1089103", + "length": "210.0753", + "name": "line_ln6138597-1", + "phases": "B", + "to": "l3048196" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx2_wpal_ln5561444-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "n1139537", + "length": "343.4614", + "name": "line_ln5528572-3", + "phases": "A", + "to": "l3122826" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108278", + "length": "217.6177", + "name": "line_ln5594245-1", + "phases": "B", + "to": "l2805036" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3254873", + "length": "111.2904", + "name": "line_ln6381766-1", + "phases": "C", + "to": "m1166393" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p827555", + "length": "26.0707", + "name": "line_ln5806921-1", + "phases": "B", + "to": "m1047794" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx2_wpal_ln5561444-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "p895104", + "length": "46.6909", + "name": "line_ln5528572-2", + "phases": "A", + "to": "n1139537" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p901894", + "length": "24.5778", + "name": "line_ln5682325-1", + "phases": "A", + "to": "m1026857" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026984", + "length": "236.2430", + "name": "line_ln5593229-1", + "phases": "ABC", + "to": "m1026986" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026665", + "length": "477.4944", + "name": "line_ln6137085-1", + "phases": "A", + "to": "l3232933" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069532", + "length": "225.5954", + "name": "line_ln5924702-1", + "phases": "B", + "to": "l2691965" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000413", + "length": "158.2410", + "name": "line_ln2000414-1", + "phases": "A", + "to": "m2000414" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108266", + "length": "452.2941", + "name": "line_ln5835123-1", + "phases": "B", + "to": "m1108265" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2879071", + "length": "262.0320", + "name": "line_ln5865242-1", + "phases": "B", + "to": "l3029504" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047323", + "length": "131.6142", + "name": "line_ln5653468-1", + "phases": "A", + "to": "l3010569" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069398", + "length": "303.6869", + "name": "line_ln6229789-1", + "phases": "A", + "to": "l3160101" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr1/0_tpx_ln6229827-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p1197121", + "length": "158.0221", + "name": "line_ln7064338-3", + "phases": "C", + "to": "l2805031" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2841622", + "length": "881.6004", + "name": "line_ln5956465-1", + "phases": "A", + "to": "l2804254" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3048207", + "length": "9.5849", + "name": "line_ln6505939-4", + "phases": "B", + "to": "m3036164" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2785524", + "length": "68.5595", + "name": "line_ln6138607-1", + "phases": "C", + "to": "m1069201" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009838", + "length": "281.6071", + "name": "line_ln6350551-1", + "phases": "B", + "to": "m1009843" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026783", + "length": "26.7439", + "name": "line_ln6290214-1", + "phases": "C", + "to": "m1026784" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1139255", + "length": "12.3008", + "name": "line_ln5898055-3", + "phases": "A", + "to": "p827500" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2804269", + "length": "203.6538", + "name": "line_ln5591703-1", + "phases": "B", + "to": "l2989564" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069424", + "length": "34.9978", + "name": "line_ln5898055-2", + "phases": "A", + "to": "n1139255" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p827525", + "length": "413.3030", + "name": "line_ln5000chp-1", + "phases": "ABC", + "to": "m1026chp-1" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3029495", + "length": "169.1238", + "name": "line_ln5565090-1", + "phases": "B", + "to": "d5565090-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3235254", + "length": "332.1325", + "name": "line_ln6411383-1", + "phases": "ABC", + "to": "m1026855" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069218", + "length": "11.5079", + "name": "line_ln6077776-1", + "phases": "C", + "to": "l2860486" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3179682", + "length": "90.9761", + "name": "line_ln5654484-1", + "phases": "C", + "to": "l2786274" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3216361", + "length": "306.7540", + "name": "line_ln5683846-1", + "phases": "B", + "to": "l2729434" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx1/0_3w_cs_ln5686244-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "p903354", + "length": "147.2523", + "name": "line_ln5686246-1", + "phases": "A", + "to": "l2936270" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1108492", + "length": "23.9950", + "name": "line_ln5503478-2", + "phases": "A", + "to": "n1142102" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1142102", + "length": "172.3501", + "name": "line_ln5503478-3", + "phases": "A", + "to": "l2804956" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069572", + "length": "280.4824", + "name": "line_ln5653477-1", + "phases": "B", + "to": "l3066826" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089165", + "length": "415.8852", + "name": "line_ln5562922-1", + "phases": "C", + "to": "l3197627" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1009763", + "length": "271.2882", + "name": "line_ln6019480-1", + "phases": "ABC", + "to": "e182733" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2989432", + "length": "268.7882", + "name": "line_ln6318427-2", + "phases": "B", + "to": "l3066830" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125916", + "length": "227.5536", + "name": "line_ln5896827-1", + "phases": "B", + "to": "l2879767" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027071", + "length": "218.1588", + "name": "line_ln5562957-1", + "phases": "C", + "to": "l3235267" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2710515", + "length": "454.8499", + "name": "line_ln5895775-1", + "phases": "C", + "to": "m1027027" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3048888", + "length": "362.7542", + "name": "line_ln5591716-1", + "phases": "C", + "to": "m1149249" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209753", + "length": "507.6715", + "name": "line_ln6351518-1", + "phases": "B", + "to": "m1209752" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1125902", + "length": "31.2139", + "name": "line_ln5595583-1", + "phases": "A", + "to": "p829986" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2785516", + "length": "495.9001", + "name": "line_ln5683811-1", + "phases": "B", + "to": "m1108274" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln5775367-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "l2876813", + "length": "262.1408", + "name": "line_ln6015809-1", + "phases": "A", + "to": "l2785531" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1136032", + "length": "305.5072", + "name": "line_ln5958700-3", + "phases": "A", + "to": "m1089204" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827498", + "length": "105.3406", + "name": "line_ln5958700-2", + "phases": "A", + "to": "n1136032" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047809", + "length": "240.7480", + "name": "line_ln6318427-1", + "phases": "B", + "to": "l2989432" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026393", + "length": "212.3226", + "name": "line_ln5865251-1", + "phases": "A", + "to": "l2935559" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166370", + "length": "806.9682", + "name": "line_ln6261048-1", + "phases": "C", + "to": "l3067506" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1125904", + "length": "62.5302", + "name": "line_ln6439987-1", + "phases": "A", + "to": "m1125903" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026329", + "length": "299.2196", + "name": "line_ln5502541-1", + "phases": "A", + "to": "l3104135" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2710512", + "length": "476.4420", + "name": "line_ln6380811-1", + "phases": "B", + "to": "m1047828" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026330", + "length": "118.3063", + "name": "line_ln5835149-1", + "phases": "ABC", + "to": "m1026329" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108317", + "length": "219.0708", + "name": "line_ln5591814-1", + "phases": "C", + "to": "l2820590" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p827528", + "length": "20.9635", + "name": "line_ln8945011-1", + "phases": "C", + "to": "221-240988" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026820", + "length": "294.5337", + "name": "line_ln6411406-1", + "phases": "A", + "to": "m1026823" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p895087", + "length": "27.1528", + "name": "line_ln5621858-1", + "phases": "A", + "to": "m1089205" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027068", + "length": "430.8116", + "name": "line_ln6138629-1", + "phases": "C", + "to": "m1027066" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069411", + "length": "285.9535", + "name": "line_ln5956487-1", + "phases": "ABC", + "to": "l2766741" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047825", + "length": "230.0028", + "name": "line_ln6076240-1", + "phases": "B", + "to": "l2726975" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "226-23751", + "length": "137.5995", + "name": "line_ln6291252-2", + "phases": "ABC", + "to": "l2955081" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3728042", + "length": "216.9287", + "name": "line_ln6991380-4", + "phases": "A", + "to": "l3728043" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125902", + "length": "248.9179", + "name": "line_ln6291252-1", + "phases": "ABC", + "to": "226-23751" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2729428", + "length": "241.8592", + "name": "line_ln5926324-1", + "phases": "A", + "to": "m1026648" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3949154", + "length": "240.1755", + "name": "line_ln6991380-2", + "phases": "A", + "to": "l3728042" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069509", + "length": "222.2132", + "name": "line_ln6077798-1", + "phases": "ABC", + "to": "l2766738" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_tpx_ln5531226-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1027042", + "length": "226.7509", + "name": "line_ln5531226-1", + "phases": "C", + "to": "l3235248" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069500", + "length": "688.9489", + "name": "line_ln5623416-1", + "phases": "ABC", + "to": "m1047574" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3226771", + "length": "531.1050", + "name": "line_ln6196270-2", + "phases": "A", + "to": "l3189190" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069595", + "length": "461.5865", + "name": "line_ln6046049-1", + "phases": "B", + "to": "m1069607" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3029503", + "length": "206.7880", + "name": "line_ln5683824-1", + "phases": "ABC", + "to": "m1069202" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001200", + "length": "158.2410", + "name": "line_ln2001201-1", + "phases": "C", + "to": "m2001201" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3195356", + "length": "237.1611", + "name": "line_ln5501088-1", + "phases": "ABC", + "to": "m1069189" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108340", + "length": "282.1743", + "name": "line_ln5653455-1", + "phases": "C", + "to": "l2822865" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3037441", + "length": "106.4244", + "name": "line_ln6196270-4", + "phases": "A", + "to": "n1140824" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108400", + "length": "753.7647", + "name": "line_ln6422011-1", + "phases": "ABC", + "to": "m1108401" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1140824", + "length": "653.6099", + "name": "line_ln6196270-5", + "phases": "A", + "to": "l3226771" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026308", + "length": "347.1076", + "name": "line_ln5562935-1", + "phases": "B", + "to": "l2897764" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2822872", + "length": "304.5460", + "name": "line_ln6169261-1", + "phases": "ABC", + "to": "m1047490" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3086002", + "length": "282.2095", + "name": "line_ln6048520-1", + "phases": "C", + "to": "m1126031" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069154", + "length": "128.8071", + "name": "line_ln5623393-1", + "phases": "A", + "to": "l2804251" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3029498", + "length": "287.7789", + "name": "line_ln5623403-1", + "phases": "ABC", + "to": "m1089143" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026361", + "length": "229.5460", + "name": "line_ln5744340-1", + "phases": "A", + "to": "m1026366" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108508", + "length": "300.0048", + "name": "line_ln5675121-1", + "phases": "C", + "to": "l3097861" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1108274", + "length": "201.0800", + "name": "line_ln5926292-1", + "phases": "B", + "to": "m1108269" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2860493", + "length": "287.4383", + "name": "line_ln6077785-1", + "phases": "A", + "to": "l3085403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001213", + "length": "158.2410", + "name": "line_ln2001214-1", + "phases": "C", + "to": "m2001214" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001311", + "length": "158.2410", + "name": "line_ln2001312-1", + "phases": "A", + "to": "m2001312" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2710516", + "length": "280.5897", + "name": "line_ln6411374-1", + "phases": "A", + "to": "l2691944" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001004", + "length": "158.2410", + "name": "line_ln2001005-1", + "phases": "B", + "to": "m2001005" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2895496", + "length": "165.8865", + "name": "line_ln6440079-1", + "phases": "C", + "to": "m1142873" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069205", + "length": "119.1019", + "name": "line_ln5472358-1", + "phases": "ABC", + "to": "m1069208" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2711226", + "length": "256.4616", + "name": "line_ln5654471-1", + "phases": "ABC", + "to": "m1142819" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx1/0_tpx_ln6138596-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069187", + "length": "177.3997", + "name": "line_ln6108127-1", + "phases": "A", + "to": "l2785519" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026926", + "length": "19.0513", + "name": "line_ln5532749-2", + "phases": "A", + "to": "n1138000" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1138000", + "length": "164.0093", + "name": "line_ln5532749-3", + "phases": "A", + "to": "l2766720" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142826", + "length": "299.8309", + "name": "line_ln6018329-1", + "phases": "B", + "to": "l3160864" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108532", + "length": "305.0721", + "name": "line_ln5563853-1", + "phases": "ABC", + "to": "m1108535" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2804262", + "length": "245.0088", + "name": "line_ln6320343-1", + "phases": "A", + "to": "l2841639" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "221-240991", + "length": "660.4036", + "name": "line_ln8939783-1", + "phases": "A", + "to": "l3066817" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142875", + "length": "860.4419", + "name": "line_ln6318761-1", + "phases": "ABC", + "to": "m1125944" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027073", + "length": "314.3963", + "name": "line_ln6077808-1", + "phases": "C", + "to": "m1027071" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069365", + "length": "268.5044", + "name": "line_ln5804788-1", + "phases": "C", + "to": "l3235243" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1139551", + "length": "74.1130", + "name": "line_ln5714056-2", + "phases": "ABC", + "to": "m1026695" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026702", + "length": "422.3655", + "name": "line_ln5714056-3", + "phases": "ABC", + "to": "n1139551" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2898495", + "length": "454.3365", + "name": "line_ln6411010-1", + "phases": "ABC", + "to": "m1108400" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069213", + "length": "316.7960", + "name": "line_ln6259993-1", + "phases": "ABC", + "to": "m1069217" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1027023", + "length": "145.5884", + "name": "line_ln5926302-1", + "phases": "ABC", + "to": "l3254213" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e193509", + "length": "204.7552", + "name": "line_ln5594236-1", + "phases": "ABC", + "to": "m1142839" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000404", + "length": "158.2410", + "name": "line_ln2000405-1", + "phases": "A", + "to": "m2000405" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1149225", + "length": "223.2982", + "name": "line_ln6381851-1", + "phases": "B", + "to": "l2767409" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069488", + "length": "240.6134", + "name": "line_ln6380802-1", + "phases": "C", + "to": "m1069489" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1126016", + "length": "116.5996", + "name": "line_ln5531333-1", + "phases": "A", + "to": "l3120534" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047593", + "length": "32.2083", + "name": "line_ln5661951-2", + "phases": "A", + "to": "n1136993" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1089188", + "length": "248.4643", + "name": "line_ln5835132-1", + "phases": "C", + "to": "l2673306" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1136993", + "length": "70.5981", + "name": "line_ln5661951-3", + "phases": "A", + "to": "l2972930" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108298", + "length": "35.2950", + "name": "line_ln5807090-1", + "phases": "B", + "to": "m1108299" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p901972", + "length": "295.5541", + "name": "line_ln5954983-1", + "phases": "ABC", + "to": "m1009726" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1141475", + "length": "26.1406", + "name": "line_ln5502536-3", + "phases": "C", + "to": "m1009655" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026655", + "length": "33.9183", + "name": "line_ln5502536-2", + "phases": "C", + "to": "n1141475" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026736", + "length": "350.6050", + "name": "line_ln6418150-1", + "phases": "B", + "to": "m1026745" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026779", + "length": "299.8037", + "name": "line_ln5956474-1", + "phases": "A", + "to": "l2973169" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008758", + "length": "392.6234", + "name": "line_ln5804829-1", + "phases": "B", + "to": "l2710537" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l2990098", + "length": "161.7613", + "name": "line_ln81048106-3", + "phases": "A", + "to": "m1108462" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1139254", + "length": "90.5858", + "name": "line_ln5534965-3", + "phases": "A", + "to": "l3122811" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827499", + "length": "20.9192", + "name": "line_ln5534965-2", + "phases": "A", + "to": "n1139254" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2729429", + "length": "388.5204", + "name": "line_ln5895807-1", + "phases": "A", + "to": "l3197647" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047834", + "length": "181.4337", + "name": "line_ln6169243-1", + "phases": "B", + "to": "m1047835" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l2821087", + "length": "322.2590", + "name": "line_ln81048106-2", + "phases": "A", + "to": "l2990098" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2710509", + "length": "338.4353", + "name": "line_ln6506319-2", + "phases": "C", + "to": "m1108364" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1108460", + "length": "138.2623", + "name": "line_ln81048106-1", + "phases": "A", + "to": "l2821087" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2820583", + "length": "505.6262", + "name": "line_ln5561521-1", + "phases": "C", + "to": "m1108354" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1108505", + "length": "12.0760", + "name": "line_ln5500985-1", + "phases": "A", + "to": "p901946" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m3037455", + "length": "287.9643", + "name": "line_ln5624376-2", + "phases": "C", + "to": "l3086074" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166395", + "length": "265.2874", + "name": "line_ln5960126-1", + "phases": "C", + "to": "m1166400" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1139260", + "length": "335.3253", + "name": "line_ln5865268-3", + "phases": "ABC", + "to": "l2925506" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047672", + "length": "52.5823", + "name": "line_ln5774455-2", + "phases": "A", + "to": "n1136999" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069457", + "length": "22.4348", + "name": "line_ln5865268-2", + "phases": "ABC", + "to": "n1139260" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1136999", + "length": "28.9233", + "name": "line_ln5774455-3", + "phases": "A", + "to": "m1047671" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069588", + "length": "362.3388", + "name": "line_ln5803283-1", + "phases": "B", + "to": "m1069590" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3216344", + "length": "101.9791", + "name": "line_ln5593247-1", + "phases": "B", + "to": "l2860501" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047795", + "length": "180.4559", + "name": "line_ln5744353-1", + "phases": "B", + "to": "l3160117" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3122826", + "length": "340.1437", + "name": "line_ln6108149-1", + "phases": "A", + "to": "m1047358" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000711", + "length": "158.2410", + "name": "line_ln2000712-1", + "phases": "B", + "to": "m2000712" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047401", + "length": "183.9149", + "name": "line_ln6388581-2", + "phases": "A", + "to": "l2748132" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3254216", + "length": "109.9892", + "name": "line_ln6388581-1", + "phases": "A", + "to": "m1047401" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069189", + "length": "285.3961", + "name": "line_ln6017300-1", + "phases": "C", + "to": "l2860487" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069208", + "length": "76.8791", + "name": "line_ln5683820-1", + "phases": "C", + "to": "l2691945" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx1/0_tpx_ln5895784-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "l3010569", + "length": "173.0754", + "name": "line_ln5895784-1", + "phases": "A", + "to": "m1047335" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3160878", + "length": "638.4759", + "name": "line_ln5745360-1", + "phases": "C", + "to": "l2917336" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108315", + "length": "29.8852", + "name": "line_ln6351523-3", + "phases": "C", + "to": "n1230121" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1230121", + "length": "49.4354", + "name": "line_ln6351523-2", + "phases": "C", + "to": "m1108316" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108344", + "length": "408.0595", + "name": "line_ln5472349-1", + "phases": "C", + "to": "m1108353" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009807", + "length": "202.2703", + "name": "line_ln5742836-1", + "phases": "ABC", + "to": "m1009805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209800", + "length": "247.3955", + "name": "line_ln5654466-1", + "phases": "ABC", + "to": "m1209797" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026343", + "length": "174.1182", + "name": "line_ln5986936-1", + "phases": "A", + "to": "l2748135" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009839", + "length": "213.0025", + "name": "line_ln5647725-1", + "phases": "B", + "to": "l2673326" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1009691", + "length": "98.4307", + "name": "line_ln5562940-1", + "phases": "A", + "to": "l2748140" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047699", + "length": "23.4362", + "name": "line_ln6392124-1", + "phases": "A", + "to": "p859135" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069187", + "length": "283.7318", + "name": "line_ln6320330-1", + "phases": "A", + "to": "l2748129" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2842383", + "length": "173.7518", + "name": "line_ln6023352-1", + "phases": "ABC", + "to": "d6023352-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047786", + "length": "207.1688", + "name": "line_ln5804797-1", + "phases": "B", + "to": "m1026969" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108300", + "length": "233.2969", + "name": "line_ln6412366-1", + "phases": "B", + "to": "l2711234" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069131", + "length": "28.7303", + "name": "line_ln5625548-1", + "phases": "A", + "to": "p827534" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3178981", + "length": "711.2911", + "name": "line_ln5683833-1", + "phases": "B", + "to": "m1047368" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr1/0_tpx_ln6229827-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1125959", + "length": "212.6543", + "name": "line_ln5651995-1", + "phases": "C", + "to": "m1125974" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166369", + "length": "195.4804", + "name": "line_ln6046058-1", + "phases": "A", + "to": "l2839305" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142821", + "length": "5.3591", + "name": "line_ln6351510-1", + "phases": "ABC", + "to": "l2711226" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026655", + "length": "16.3978", + "name": "line_ln5865246-2", + "phases": "A", + "to": "n1141474" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1141474", + "length": "77.7474", + "name": "line_ln5865246-3", + "phases": "A", + "to": "l2710518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2860483", + "length": "249.5147", + "name": "line_ln5593225-1", + "phases": "B", + "to": "l3141397" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089199", + "length": "266.5902", + "name": "line_ln6350529-1", + "phases": "ABC", + "to": "m1089197" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m3032977", + "length": "1009.2527", + "name": "line_ln6504018-1", + "phases": "ABC", + "to": "m1166366" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr4_dpx_ln5744331-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "200.00", + "from": "m1047478", + "length": "99.0730", + "name": "line_ln5744331-1", + "phases": "C", + "to": "l3254209" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1209819", + "length": "163.9654", + "name": "line_ln5952392-1", + "phases": "C", + "to": "l2936216" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "e182730", + "length": "78.8211", + "name": "line_ln5898059-3", + "phases": "A", + "to": "n1142109" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108340", + "length": "335.9646", + "name": "line_ln5956461-1", + "phases": "C", + "to": "l3085394" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1142109", + "length": "229.6181", + "name": "line_ln5898059-2", + "phases": "A", + "to": "l2729429" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026979", + "length": "232.0794", + "name": "line_ln6290210-1", + "phases": "ABC", + "to": "m1026984" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2673343", + "length": "355.0689", + "name": "line_ln5591805-1", + "phases": "B", + "to": "l2764436" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125934", + "length": "207.9313", + "name": "line_ln5503576-1", + "phases": "ABC", + "to": "l2730163" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3082992", + "length": "195.5302", + "name": "line_ln6167748-1", + "phases": "A", + "to": "m1047406" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142801", + "length": "329.6709", + "name": "line_ln6139658-1", + "phases": "B", + "to": "l3217064" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "q14413", + "length": "342.0607", + "name": "line_ln5532758-3", + "phases": "ABC", + "to": "m1026886" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047768", + "length": "13.5738", + "name": "line_ln5565094-1", + "phases": "B", + "to": "p827554" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1147861", + "length": "200.8036", + "name": "line_ln6440004-3", + "phases": "C", + "to": "l3122818" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010017", + "length": "593.2086", + "name": "line_ln5768778-1", + "phases": "A", + "to": "m1010016" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010016", + "length": "463.6533", + "name": "line_ln5768778-2", + "phases": "A", + "to": "l3251807" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3016088", + "length": "153.0030", + "name": "line_ln6492184-2", + "phases": "A", + "to": "l3312692" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026844", + "length": "24.9064", + "name": "line_ln6440004-2", + "phases": "C", + "to": "n1147861" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026496", + "length": "151.0463", + "name": "line_ln6229812-1", + "phases": "B", + "to": "l2691959" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2955006", + "length": "196.5505", + "name": "line_ln5714915-1", + "phases": "C", + "to": "l2692600" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069136", + "length": "159.2714", + "name": "line_ln5774468-1", + "phases": "C", + "to": "l2841638" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2822870", + "length": "209.0981", + "name": "line_ln6047579-1", + "phases": "C", + "to": "l2766725" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069189", + "length": "84.7412", + "name": "line_ln6108136-1", + "phases": "ABC", + "to": "m1069184" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "196-29518", + "length": "296.7192", + "name": "line_ln5959087-1", + "phases": "ABC", + "to": "l3122816" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108264", + "length": "328.0713", + "name": "line_ln5714038-1", + "phases": "B", + "to": "m1108263" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069348", + "length": "317.9136", + "name": "line_ln5744366-1", + "phases": "C", + "to": "m1069356" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000702", + "length": "158.2410", + "name": "line_ln2000703-1", + "phases": "B", + "to": "m2000703" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2729427", + "length": "148.5862", + "name": "line_ln5472393-1", + "phases": "B", + "to": "m1047786" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047720", + "length": "6.2971", + "name": "line_ln5894206-1", + "phases": "ABC", + "to": "l2895449" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1137005", + "length": "45.3777", + "name": "line_ln5894206-4", + "phases": "ABC", + "to": "m1047724" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2895449", + "length": "292.3316", + "name": "line_ln5894206-3", + "phases": "ABC", + "to": "n1137005" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047787", + "length": "242.8262", + "name": "line_ln5985348-1", + "phases": "B", + "to": "l3157710" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3157710", + "length": "167.7780", + "name": "line_ln5985348-2", + "phases": "B", + "to": "m1047793" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2970811", + "length": "197.2162", + "name": "line_ln5924720-2", + "phases": "A", + "to": "m1027121" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026969", + "length": "126.1677", + "name": "line_ln5532745-1", + "phases": "B", + "to": "m1026972" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027121", + "length": "102.1184", + "name": "line_ln5924720-1", + "phases": "A", + "to": "m1027123" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1139264", + "length": "153.2908", + "name": "line_ln5895771-3", + "phases": "A", + "to": "m1069465" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069466", + "length": "84.2959", + "name": "line_ln5895771-2", + "phases": "A", + "to": "n1139264" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047368", + "length": "406.5866", + "name": "line_ln6411392-1", + "phases": "B", + "to": "l2841620" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827496", + "length": "14.9984", + "name": "line_ln6292463-1", + "phases": "B", + "to": "m1108262" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026880", + "length": "241.0583", + "name": "line_ln6290241-1", + "phases": "A", + "to": "m1026874" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3103822", + "length": "384.1182", + "name": "line_ln6163390-1", + "phases": "ABC", + "to": "m1047577" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr2_acsr_ln5741170-3", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1026700", + "length": "36.5836", + "name": "line_ln5741170-3", + "phases": "C", + "to": "n1140821" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr2_acsr_ln5741170-3", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "n1140821", + "length": "52.0181", + "name": "line_ln5741170-2", + "phases": "C", + "to": "l3189188" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3066813", + "length": "282.6343", + "name": "line_ln6380815-1", + "phases": "B", + "to": "l2991910" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1027004", + "length": "478.6944", + "name": "line_ln5986923-1", + "phases": "B", + "to": "l2897765" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069226", + "length": "34.3092", + "name": "line_ln6231994-1", + "phases": "C", + "to": "m1069227" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1009651", + "length": "29.6272", + "name": "line_ln5800693-1", + "phases": "ABC", + "to": "m1009650" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047548", + "length": "63.5153", + "name": "line_ln6169252-1", + "phases": "ABC", + "to": "m1047552" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069543", + "length": "221.6787", + "name": "line_ln5956483-1", + "phases": "B", + "to": "m1069535" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001302", + "length": "158.2410", + "name": "line_ln2001303-1", + "phases": "A", + "to": "m2001303" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1140825", + "length": "66.9433", + "name": "line_ln5895816-3", + "phases": "ABC", + "to": "l3216368" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026706", + "length": "49.6124", + "name": "line_ln5895816-2", + "phases": "ABC", + "to": "n1140825" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "e206210", + "length": "15.1003", + "name": "line_ln5591697-1", + "phases": "C", + "to": "m1069225" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1166368", + "length": "344.7840", + "name": "line_ln5715052-1", + "phases": "ABC", + "to": "l2973833" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr1/0_acsr_ln5852082-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1026824", + "length": "22.1404", + "name": "line_ln5852082-1", + "phases": "C", + "to": "p859694" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026704", + "length": "537.8741", + "name": "line_ln5835145-1", + "phases": "B", + "to": "l2841634" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089112", + "length": "128.9098", + "name": "line_ln5863823-1", + "phases": "ABC", + "to": "l3195356" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3067448", + "length": "835.0189", + "name": "line_ln6073916-1", + "phases": "C", + "to": "l2763407" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1089138", + "length": "323.3276", + "name": "line_ln5653459-1", + "phases": "A", + "to": "l2841628" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047744", + "length": "2.7631", + "name": "line_ln5865233-1", + "phases": "A", + "to": "l3178971" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2767414", + "length": "478.0333", + "name": "line_ln6015795-1", + "phases": "C", + "to": "m1108331" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108402", + "length": "423.1532", + "name": "line_ln6422015-1", + "phases": "ABC", + "to": "m1108405" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001204", + "length": "158.2410", + "name": "line_ln2001205-1", + "phases": "C", + "to": "m2001205" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000408", + "length": "158.2410", + "name": "line_ln2000409-1", + "phases": "A", + "to": "m2000409" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026792", + "length": "179.6202", + "name": "line_ln5501000-1", + "phases": "A", + "to": "l2895461" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069496", + "length": "195.3702", + "name": "line_ln6047557-2", + "phases": "ABC", + "to": "n1134475" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026896", + "length": "47.3286", + "name": "line_ln6201697-1", + "phases": "ABC", + "to": "p827525" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2897554", + "length": "393.6723", + "name": "line_ln8961797-2", + "phases": "C", + "to": "193-46661" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026344", + "length": "423.7478", + "name": "line_ln5593238-1", + "phases": "A", + "to": "l2991919" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1134475", + "length": "109.3369", + "name": "line_ln6047557-3", + "phases": "ABC", + "to": "m1069497" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1140828", + "length": "39.9361", + "name": "line_ln5472403-2", + "phases": "ABC", + "to": "m1026708" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1047633", + "length": "590.0197", + "name": "line_ln8961797-1", + "phases": "C", + "to": "l2897554" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009724", + "length": "149.4058", + "name": "line_ln5744344-1", + "phases": "ABC", + "to": "m1009720" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026706", + "length": "391.3784", + "name": "line_ln5472403-3", + "phases": "ABC", + "to": "n1140828" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026700", + "length": "121.4203", + "name": "line_ln6438273-2", + "phases": "ABC", + "to": "n1140823" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1140823", + "length": "198.3506", + "name": "line_ln6438273-3", + "phases": "ABC", + "to": "l2851933" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089202", + "length": "206.7366", + "name": "line_ln5679695-1", + "phases": "ABC", + "to": "m1089203" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125990", + "length": "208.9033", + "name": "line_ln06534433_sw", + "phases": "ABC", + "to": "l3067478" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln5775367-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "l3216358", + "length": "150.1921", + "name": "line_ln6350560-1", + "phases": "A", + "to": "m1026826" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2876812", + "length": "233.9695", + "name": "line_ln6106582-1", + "phases": "A", + "to": "l2970811" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108265", + "length": "3179.6100", + "name": "line_ln5926296-1", + "phases": "B", + "to": "m1108264" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3160868", + "length": "87.5608", + "name": "line_ln6139649-1", + "phases": "B", + "to": "l3082988" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2710510", + "length": "198.8558", + "name": "line_ln6411370-1", + "phases": "C", + "to": "l3197628" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125962", + "length": "404.8248", + "name": "line_ln6381820-1", + "phases": "ABC", + "to": "l3123452" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001008", + "length": "158.2410", + "name": "line_ln2001009-1", + "phases": "B", + "to": "m2001009" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108398", + "length": "223.1859", + "name": "line_ln6061815-1", + "phases": "ABC", + "to": "m1108395" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089163", + "length": "297.7048", + "name": "line_ln5502523-1", + "phases": "C", + "to": "l3066807" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142835", + "length": "35.5488", + "name": "line_ln6321412-1", + "phases": "C", + "to": "m1142833" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3048221", + "length": "223.3782", + "name": "line_ln5835167-6", + "phases": "ABC", + "to": "d5835167-6_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047813", + "length": "220.2691", + "name": "line_ln6108123-1", + "phases": "B", + "to": "l2973149" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3104128", + "length": "382.1161", + "name": "line_ln5926306-1", + "phases": "A", + "to": "l2673315" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047522", + "length": "167.4322", + "name": "line_ln5562931-1", + "phases": "ABC", + "to": "m1047520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069629", + "length": "321.6165", + "name": "line_ln5986945-1", + "phases": "B", + "to": "m1069632" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1137996", + "length": "23.9047", + "name": "line_ln5562931-3", + "phases": "C", + "to": "l3178979" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047558", + "length": "19.9404", + "name": "line_ln5562931-2", + "phases": "C", + "to": "n1137996" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2989596", + "length": "290.7380", + "name": "line_ln6046143-1", + "phases": "B", + "to": "l2822873" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047767", + "length": "358.2630", + "name": "line_ln6017290-1", + "phases": "B", + "to": "l2860484" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2673317", + "length": "327.0942", + "name": "line_ln6505948-2", + "phases": "A", + "to": "l2710517" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027123", + "length": "81.7044", + "name": "line_ln6076266-1", + "phases": "A", + "to": "l3008248" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1209788", + "length": "247.1380", + "name": "line_ln6381855-1", + "phases": "C", + "to": "m1209795" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2897791", + "length": "9.4782", + "name": "line_ln5683842-1", + "phases": "B", + "to": "m1069613" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "l2851933", + "length": "77.4959", + "name": "line_ln6506306-2", + "phases": "ABC", + "to": "l3207907" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026354", + "length": "504.8353", + "name": "line_ln2000000-1", + "phases": "ABC", + "to": "m2000100" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089112", + "length": "15.1956", + "name": "line_ln5776667-1", + "phases": "C", + "to": "p827520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125978", + "length": "338.3690", + "name": "line_ln6134418-1", + "phases": "B", + "to": "l3254869" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2689691", + "length": "272.9134", + "name": "line_ln5712507-1", + "phases": "ABC", + "to": "m1009763" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "e183472", + "length": "512.2774", + "name": "line_ln5985361-1", + "phases": "ABC", + "to": "l2989566" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m4350438", + "length": "310.6864", + "name": "line_ln6409872-3", + "phases": "B", + "to": "l2935568" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3010564", + "length": "405.4846", + "name": "line_ln5865238-1", + "phases": "C", + "to": "l2710515" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047318", + "length": "1266.0161", + "name": "line_ln6138612-1", + "phases": "C", + "to": "l3254205" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p827503", + "length": "101.2834", + "name": "line_ln5928544-2", + "phases": "C", + "to": "n1137994" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3235244", + "length": "206.3550", + "name": "line_ln6380806-1", + "phases": "A", + "to": "m1069398" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1137994", + "length": "184.9474", + "name": "line_ln5928544-3", + "phases": "C", + "to": "m1069484" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2990826", + "length": "521.4782", + "name": "line_ln8979258-1", + "phases": "ABC", + "to": "l2990827" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000911", + "length": "158.2410", + "name": "line_ln2000912-1", + "phases": "C", + "to": "m2000912" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2748132", + "length": "840.8392", + "name": "line_ln6440070-1", + "phases": "A", + "to": "l2689726" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026849", + "length": "3.8781", + "name": "line_ln6077780-1", + "phases": "A", + "to": "m1026848" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2785519", + "length": "107.0875", + "name": "line_ln5804792-1", + "phases": "A", + "to": "l3104122" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047326", + "length": "335.7259", + "name": "line_ln5472372-1", + "phases": "A", + "to": "m1047338" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026709", + "length": "18.8615", + "name": "line_ln5655685-1", + "phases": "C", + "to": "p827561" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108311", + "length": "80.9532", + "name": "line_ln5896844-1", + "phases": "C", + "to": "l2898526" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047447", + "length": "323.1408", + "name": "line_ln6199519-1", + "phases": "B", + "to": "l2766722" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108379", + "length": "131.7279", + "name": "line_ln6411005-1", + "phases": "ABC", + "to": "m1108380" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108380", + "length": "280.5348", + "name": "line_ln6411005-2", + "phases": "ABC", + "to": "l2898495" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "d2000100_int", + "length": "175.8137", + "name": "line_ln2000200-1", + "phases": "ABC", + "to": "m2000200" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069136", + "length": "246.6474", + "name": "line_ln5804802-1", + "phases": "ABC", + "to": "m1069135" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3046854", + "length": "172.3300", + "name": "line_ln6407748-2", + "phases": "B", + "to": "m1047453" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3029504", + "length": "193.6594", + "name": "line_ln6407748-1", + "phases": "B", + "to": "l3046854" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "d6017295-1_int", + "length": "381.6401", + "name": "line_ln6017295-1", + "phases": "ABC", + "to": "m1069393" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3197636", + "length": "296.2762", + "name": "line_ln5714051-1", + "phases": "ABC", + "to": "m1047424" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3254219", + "length": "210.5329", + "name": "line_ln6350547-1", + "phases": "C", + "to": "l3254220" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3066809", + "length": "208.7501", + "name": "line_ln5774451-1", + "phases": "C", + "to": "m1069487" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2691936", + "length": "240.0639", + "name": "line_ln5623388-1", + "phases": "A", + "to": "m1026941" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026488", + "length": "17.9226", + "name": "line_ln6047588-1", + "phases": "B", + "to": "d6047588-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1108378", + "length": "22.9774", + "name": "line_ln81048088-1", + "phases": "A", + "to": "p904451" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "196-36167", + "length": "267.5649", + "name": "line_ln6106511-1", + "phases": "ABC", + "to": "l3011298" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5895780-3_int", + "length": "184.0328", + "name": "line_ln5895780-3", + "phases": "ABC", + "to": "l2991914" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142828", + "length": "1.0000", + "name": "line_ln5473436-1", + "phases": "ABC", + "to": "l2674047" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2674047", + "length": "199.6458", + "name": "line_ln5473436-2", + "phases": "ABC", + "to": "l2692655" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "r20185", + "length": "69.8190", + "name": "line_ln5513564-1", + "phases": "ABC", + "to": "d5513564-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026769", + "length": "22.6752", + "name": "line_ln6140776-1", + "phases": "A", + "to": "d6140776-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027038", + "length": "195.1298", + "name": "line_ln5829253-1", + "phases": "B", + "to": "l2731712" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108483", + "length": "104.2096", + "name": "line_ln5594151-1", + "phases": "A", + "to": "m1108486" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "f739844", + "length": "100.0018", + "name": "line_ln247171", + "phases": "B", + "to": "l0247171" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142865", + "length": "201.9400", + "name": "line_ln5533786-1", + "phases": "ABC", + "to": "l3030197" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089094", + "length": "200.7624", + "name": "line_ln5744323-1", + "phases": "C", + "to": "m1069147" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026708", + "length": "2.4013", + "name": "line_ln5472394-1", + "phases": "ABC", + "to": "m1026709" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1209782", + "length": "241.7269", + "name": "line_ln5927382-1", + "phases": "A", + "to": "l3217056" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108262", + "length": "14.9991", + "name": "line_ln5562918-1", + "phases": "B", + "to": "m1108261" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009770", + "length": "28.1833", + "name": "line_ln5863746-1", + "phases": "B", + "to": "m1009771" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1140822", + "length": "147.2685", + "name": "line_ln5532788-3", + "phases": "C", + "to": "l2935560" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "e182726", + "length": "245.6107", + "name": "line_ln5958705-1", + "phases": "B", + "to": "l2766744" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3104136", + "length": "467.6506", + "name": "line_ln5895793-1", + "phases": "ABC", + "to": "l2822872" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2879070", + "length": "292.9872", + "name": "line_ln6169248-1", + "phases": "ABC", + "to": "l3216345" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1125994", + "length": "72.7056", + "name": "line_ln5503546-1", + "phases": "ABC", + "to": "l2730149" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069524", + "length": "200.0026", + "name": "line_ln6198028-1", + "phases": "A", + "to": "l2820533" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026706", + "length": "36.5058", + "name": "line_ln5532788-2", + "phases": "C", + "to": "n1140822" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026700", + "length": "280.5179", + "name": "line_ln5650219-1", + "phases": "ABC", + "to": "m1026706" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108350", + "length": "227.4784", + "name": "line_ln5715017-1", + "phases": "C", + "to": "l3198356" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2936279", + "length": "333.6892", + "name": "line_ln5473449-1", + "phases": "ABC", + "to": "l3179678" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209748", + "length": "263.3483", + "name": "line_ln6230793-1", + "phases": "B", + "to": "l3142099" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069550", + "length": "305.0513", + "name": "line_ln5895803-1", + "phases": "B", + "to": "m1069544" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026795", + "length": "242.0151", + "name": "line_ln6108144-1", + "phases": "ABC", + "to": "m1026786" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2991910", + "length": "148.4604", + "name": "line_ln5986928-1", + "phases": "B", + "to": "l2879072" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026703", + "length": "239.6044", + "name": "line_ln5744358-1", + "phases": "C", + "to": "l2973166" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069484", + "length": "408.6008", + "name": "line_ln5593221-1", + "phases": "C", + "to": "l2785517" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010008", + "length": "7.4661", + "name": "line_ln6344714-1", + "phases": "A", + "to": "m1010007" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "f739841", + "length": "100.0018", + "name": "line_ln247160", + "phases": "B", + "to": "l0247160" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m3768670", + "length": "243.8397", + "name": "line_ln5653460-6", + "phases": "ABC", + "to": "l3235254" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3216345", + "length": "248.7078", + "name": "line_ln5653460-5", + "phases": "ABC", + "to": "m3768670" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2/0_acsrxx2_acsr_ln6129680-2", + "continuous_rating_A": "300.00", + "emergency_rating_A": "300.00", + "from": "m1047521", + "length": "36.8297", + "name": "line_ln6129680-2", + "phases": "A", + "to": "n1136665" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2673313", + "length": "214.8971", + "name": "line_ln6047566-1", + "phases": "ABC", + "to": "m1027011" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142808", + "length": "301.2189", + "name": "line_ln5798823-1", + "phases": "B", + "to": "l3160868" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "f739842", + "length": "100.0018", + "name": "line_ln247162", + "phases": "B", + "to": "l0247162" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2/0_acsrxx2_acsr_ln6129680-2", + "continuous_rating_A": "300.00", + "emergency_rating_A": "300.00", + "from": "n1136665", + "length": "98.1724", + "name": "line_ln6129680-3", + "phases": "A", + "to": "l2685809" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069464", + "length": "20.4582", + "name": "line_ln5859996-1", + "phases": "B", + "to": "p873787" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142799", + "length": "330.6454", + "name": "line_ln5896831-1", + "phases": "B", + "to": "m1142798" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108486", + "length": "46.3110", + "name": "line_ln6230695-1", + "phases": "A", + "to": "l3067447" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "221-703009", + "length": "111.5377", + "name": "line_ln8976560-3", + "phases": "C", + "to": "l3150961" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1125943", + "length": "17.0737", + "name": "line_ln8976560-2", + "phases": "C", + "to": "221-703009" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3021569", + "length": "520.0065", + "name": "line_ln6496337-2", + "phases": "B", + "to": "l3315860" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209814", + "length": "350.8879", + "name": "line_ln5473414-1", + "phases": "ABC", + "to": "m1209811" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069417", + "length": "14.1568", + "name": "line_ln5712475-1", + "phases": "B", + "to": "p901910" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069311", + "length": "86.8484", + "name": "line_ln5970852-1", + "phases": "C", + "to": "m1069312" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2673310", + "length": "258.0828", + "name": "line_ln6229794-1", + "phases": "A", + "to": "l3104121" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3198356", + "length": "199.7032", + "name": "line_ln5805767-1", + "phases": "C", + "to": "m1108345" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166356", + "length": "201.1941", + "name": "line_ln6258530-1", + "phases": "A", + "to": "l2727019" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1139544", + "length": "87.2802", + "name": "line_ln5803270-3", + "phases": "C", + "to": "l2897776" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069382", + "length": "127.0749", + "name": "line_ln5895812-1", + "phases": "ABC", + "to": "l2822877" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2673322", + "length": "162.0054", + "name": "line_ln5818176-1", + "phases": "B", + "to": "l2859391" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1069225", + "length": "40.0911", + "name": "line_ln5803270-2", + "phases": "C", + "to": "n1139544" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047566", + "length": "19.9976", + "name": "line_ln6047575-2", + "phases": "A", + "to": "n1137995" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000902", + "length": "158.2410", + "name": "line_ln2000903-1", + "phases": "C", + "to": "m2000903" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209751", + "length": "12.6317", + "name": "line_ln6018333-1", + "phases": "B", + "to": "m1209750" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137995", + "length": "83.9911", + "name": "line_ln6047575-3", + "phases": "A", + "to": "l3141401" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1166376", + "length": "17.2148", + "name": "line_ln5508630-1", + "phases": "ABC", + "to": "l2842384" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2711224", + "length": "223.6254", + "name": "line_ln6170291-1", + "phases": "B", + "to": "m1125905" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3067506", + "length": "174.8935", + "name": "line_ln5866266-1", + "phases": "C", + "to": "m1166386" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1069312", + "length": "23.1129", + "name": "line_ln81018876-1", + "phases": "C", + "to": "p873801" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047299", + "length": "180.6118", + "name": "line_ln5956501-1", + "phases": "C", + "to": "l3104157" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089203", + "length": "20.8941", + "name": "line_ln6103924-1", + "phases": "A", + "to": "p895087" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2860488", + "length": "175.7216", + "name": "line_ln6229804-1", + "phases": "B", + "to": "m1026308" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125960", + "length": "41.2730", + "name": "line_ln6286109-1", + "phases": "ABC", + "to": "m1125962" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026704", + "length": "180.3061", + "name": "line_ln5865247-1", + "phases": "B", + "to": "l2991915" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1147866", + "length": "103.1210", + "name": "line_ln6201702-2", + "phases": "A", + "to": "m1026713" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m3763624", + "length": "32.6912", + "name": "line_ln81354563-2", + "phases": "C", + "to": "p1121283" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047471", + "length": "313.2593", + "name": "line_ln6380819-1", + "phases": "B", + "to": "l2879077" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1027013", + "length": "323.5768", + "name": "line_ln5744336-1", + "phases": "ABC", + "to": "m1027023" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069500", + "length": "15.0020", + "name": "line_ln6413568-1", + "phases": "A", + "to": "p827549" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047490", + "length": "119.4688", + "name": "line_ln6987572-4", + "phases": "A", + "to": "p1164481" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069481", + "length": "88.1582", + "name": "line_ln6106657-1", + "phases": "ABC", + "to": "l2745848" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008753", + "length": "969.2685", + "name": "line_ln6163394-1", + "phases": "B", + "to": "m1026307" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "221-311609", + "length": "136.5795", + "name": "line_ln8979249-2", + "phases": "ABC", + "to": "l2915542" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009763", + "length": "105.5650", + "name": "line_ln5502549-1", + "phases": "B", + "to": "l2673322" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069438", + "length": "32.9881", + "name": "line_ln6352702-1", + "phases": "C", + "to": "p827575" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "p850072", + "length": "13.3277", + "name": "line_ln8979249-1", + "phases": "ABC", + "to": "221-311609" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000706", + "length": "158.2410", + "name": "line_ln2000707-1", + "phases": "B", + "to": "m2000707" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2748143", + "length": "220.0043", + "name": "line_ln5531956-1", + "phases": "A", + "to": "l3251854" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001009", + "length": "158.2410", + "name": "line_ln2001010-1", + "phases": "B", + "to": "m2001010" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069595", + "length": "164.2862", + "name": "line_ln6228304-1", + "phases": "B", + "to": "l2916619" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2785518", + "length": "250.5038", + "name": "line_ln6411369-1", + "phases": "C", + "to": "l2766717" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047433", + "length": "300.1040", + "name": "line_ln5472363-1", + "phases": "A", + "to": "m1047434" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3122821", + "length": "452.4772", + "name": "line_ln5532753-1", + "phases": "ABC", + "to": "m1047486" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069498", + "length": "322.3332", + "name": "line_ln5761784-1", + "phases": "ABC", + "to": "m1069499" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166358", + "length": "201.8194", + "name": "line_ln6170336-1", + "phases": "C", + "to": "l3030205" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069640", + "length": "331.8467", + "name": "line_ln6106559-1", + "phases": "B", + "to": "l2804269" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047358", + "length": "67.3661", + "name": "line_ln6199528-1", + "phases": "A", + "to": "l3197644" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026387", + "length": "232.5075", + "name": "line_ln6290219-1", + "phases": "A", + "to": "l3104132" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026960", + "length": "85.0017", + "name": "line_ln6879074-1", + "phases": "A", + "to": "m3729981" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069544", + "length": "51.7375", + "name": "line_ln6229817-1", + "phases": "B", + "to": "l2804272" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026820", + "length": "194.3361", + "name": "line_ln5774486-1", + "phases": "A", + "to": "l3141403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142868", + "length": "177.0420", + "name": "line_ln6048626-1", + "phases": "ABC", + "to": "m1142869" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089115", + "length": "300.2142", + "name": "line_ln5593234-1", + "phases": "ABC", + "to": "m1089112" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026950", + "length": "345.7996", + "name": "line_ln6350538-1", + "phases": "ABC", + "to": "m1026954" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125968", + "length": "27.7286", + "name": "line_ln5861084-1", + "phases": "C", + "to": "p895107" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx2_acsr_ln5472350-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1069154", + "length": "210.7461", + "name": "line_ln5472350-1", + "phases": "B", + "to": "l3104120" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1089170", + "length": "155.3889", + "name": "line_ln5532740-1", + "phases": "C", + "to": "l3029497" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009840", + "length": "305.4884", + "name": "line_ln6017282-1", + "phases": "B", + "to": "l3216338" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2916608", + "length": "284.0114", + "name": "line_ln6108131-1", + "phases": "ABC", + "to": "m1027002" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2767408", + "length": "148.7899", + "name": "line_ln6506314-2", + "phases": "C", + "to": "l3217053" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3048206", + "length": "196.5037", + "name": "line_ln6320329-1", + "phases": "ABC", + "to": "m1069156" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "l3160863", + "length": "1019.5735", + "name": "line_ln6201670-1", + "phases": "C", + "to": "l2730108" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "r18241", + "length": "226.5448", + "name": "line_ln6259989-1", + "phases": "ABC", + "to": "m1047763" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047453", + "length": "252.7827", + "name": "line_ln5835175-1", + "phases": "B", + "to": "l2785547" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2879075", + "length": "195.0680", + "name": "line_ln5894312-1", + "phases": "A", + "to": "l3251830" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1009824", + "length": "175.9867", + "name": "line_ln5865225-1", + "phases": "B", + "to": "l2822857" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047796", + "length": "400.9465", + "name": "line_ln5502527-1", + "phases": "B", + "to": "l3010562" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "e182731", + "length": "141.6508", + "name": "line_ln5716232-1", + "phases": "B", + "to": "m1026327" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001307", + "length": "158.2410", + "name": "line_ln2001308-1", + "phases": "A", + "to": "m2001308" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e182732", + "length": "30.1199", + "name": "line_ln5746548-1", + "phases": "ABC", + "to": "m1026760" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827534", + "length": "16.2540", + "name": "line_ln5985339-1", + "phases": "A", + "to": "m1069130" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026810", + "length": "444.6374", + "name": "line_ln6260002-1", + "phases": "A", + "to": "l2914324" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1138595", + "length": "386.8466", + "name": "line_ln6505944-3", + "phases": "ABC", + "to": "m3036167" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p827563", + "length": "22.0368", + "name": "line_ln6505944-2", + "phases": "ABC", + "to": "n1138595" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069130", + "length": "258.4895", + "name": "line_ln5985339-2", + "phases": "A", + "to": "l3085396" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026861", + "length": "534.6030", + "name": "line_ln6169257-1", + "phases": "ABC", + "to": "m1026858" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1142815", + "length": "483.6996", + "name": "line_ln5684911-1", + "phases": "ABC", + "to": "m1142814" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2879073", + "length": "205.1479", + "name": "line_ln5835140-1", + "phases": "ABC", + "to": "m1069205" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069567", + "length": "269.1875", + "name": "line_ln5472385-1", + "phases": "B", + "to": "l2691966" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026492", + "length": "175.8624", + "name": "line_ln5804837-1", + "phases": "B", + "to": "l3048231" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1209822", + "length": "186.9556", + "name": "line_ln6078692-1", + "phases": "C", + "to": "m1209823" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010003", + "length": "195.0036", + "name": "line_ln5803302-1", + "phases": "A", + "to": "l2989571" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026394", + "length": "141.9823", + "name": "line_ln5683829-1", + "phases": "A", + "to": "m1026393" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p873787", + "length": "48.4688", + "name": "line_ln6163946-1", + "phases": "B", + "to": "m1069463" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009763", + "length": "81.6764", + "name": "line_ln6138616-1", + "phases": "B", + "to": "l2766730" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069174", + "length": "306.0839", + "name": "line_ln5924697-1", + "phases": "C", + "to": "l2841630" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069514", + "length": "40.1736", + "name": "line_ln6290228-2", + "phases": "ABC", + "to": "n1136657" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069600", + "length": "190.0039", + "name": "line_ln5831676-1", + "phases": "B", + "to": "l3102793" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026705", + "length": "114.9691", + "name": "line_ln5803257-1", + "phases": "C", + "to": "l2710532" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3037453", + "length": "11.2276", + "name": "line_ln6436903-4", + "phases": "A", + "to": "l2785546" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "r42246", + "length": "139.2694", + "name": "line_ln6290228-5", + "phases": "ABC", + "to": "l2691967" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026377", + "length": "190.5080", + "name": "line_ln5562936-1", + "phases": "A", + "to": "m1026378" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1136657", + "length": "174.6546", + "name": "line_ln6290228-6", + "phases": "ABC", + "to": "d6290228-6_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "q16642_cap", + "length": "14.8985", + "name": "line_ln6290228-7", + "phases": "ABC", + "to": "r42246" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2898495", + "length": "461.4983", + "name": "line_ln6409778-1", + "phases": "ABC", + "to": "l2952003" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p827574", + "length": "199.9054", + "name": "line_ln5776672-1", + "phases": "A", + "to": "l3160123" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3178976", + "length": "297.1415", + "name": "line_ln6108153-1", + "phases": "A", + "to": "m1026779" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2879081", + "length": "184.4766", + "name": "line_ln5472376-1", + "phases": "A", + "to": "m1026682" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069461", + "length": "28.5011", + "name": "line_ln6049824-1", + "phases": "A", + "to": "p827574" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047828", + "length": "66.9516", + "name": "line_ln6199515-1", + "phases": "B", + "to": "l2954346" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166407", + "length": "493.7614", + "name": "line_ln5985365-1", + "phases": "C", + "to": "l2952007" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2822871", + "length": "197.3280", + "name": "line_ln6077784-1", + "phases": "ABC", + "to": "m1026872" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2785547", + "length": "129.0990", + "name": "line_ln6047607-1", + "phases": "B", + "to": "m1047457" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047345", + "length": "179.2266", + "name": "line_ln6047584-1", + "phases": "ABC", + "to": "l2991922" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "q1301", + "length": "46.3517", + "name": "line_ln5861005-3", + "phases": "ABC", + "to": "l3160872" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166391", + "length": "283.3152", + "name": "line_ln6200442-1", + "phases": "C", + "to": "m1166394" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "196-31070", + "length": "20.1477", + "name": "line_ln5861005-2", + "phases": "ABC", + "to": "d5861005-2_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1147867", + "length": "19.4115", + "name": "line_ln5837361-8", + "phases": "ABC", + "to": "d5837361-8_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2991933", + "length": "273.2112", + "name": "line_ln5653486-1", + "phases": "C", + "to": "l3122837" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027027", + "length": "384.5248", + "name": "line_ln6077807-1", + "phases": "C", + "to": "l2766746" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047344", + "length": "232.9739", + "name": "line_ln5714055-1", + "phases": "A", + "to": "l2897772" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069184", + "length": "209.5725", + "name": "line_ln6017299-1", + "phases": "ABC", + "to": "m1069175" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3081380", + "length": "302.2386", + "name": "line_ln5799561-2", + "phases": "ABC", + "to": "d5799561-2_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142843", + "length": "362.8315", + "name": "line_ln5799561-1", + "phases": "ABC", + "to": "l3081380" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069456", + "length": "74.3786", + "name": "line_ln5837361-7", + "phases": "ABC", + "to": "n1147867" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e184626", + "length": "33.8515", + "name": "line_ln6326450-1", + "phases": "ABC", + "to": "m1166377" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p895089", + "length": "198.5175", + "name": "line_ln6134414-1", + "phases": "C", + "to": "l3235242" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1142826", + "length": "940.4781", + "name": "line_ln5654470-1", + "phases": "B", + "to": "m1125940" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000300", + "length": "473.3359", + "name": "line_ln2000400-1", + "phases": "ABC", + "to": "m2000400" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2786266", + "length": "113.4030", + "name": "line_ln5745355-1", + "phases": "ABC", + "to": "m1166375" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047718", + "length": "178.6688", + "name": "line_ln5683807-1", + "phases": "A", + "to": "m1047721" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047834", + "length": "308.9164", + "name": "line_ln5744327-1", + "phases": "B", + "to": "l3197624" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026920", + "length": "79.5177", + "name": "line_ln6320338-1", + "phases": "B", + "to": "l2729408" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047420", + "length": "41.3841", + "name": "line_ln6195664-1", + "phases": "A", + "to": "m1047419" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "q16483_cap", + "length": "17.2559", + "name": "line_ln5563942-5", + "phases": "ABC", + "to": "r42247" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047580", + "length": "34.7416", + "name": "line_ln6025724-2", + "phases": "C", + "to": "n1136672" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p895102", + "length": "32.5577", + "name": "line_ln6376708-1", + "phases": "B", + "to": "m1125978" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047314", + "length": "73.2233", + "name": "line_ln5756001-1", + "phases": "A", + "to": "m1047311" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108368", + "length": "230.9207", + "name": "line_ln6290206-1", + "phases": "C", + "to": "l2897770" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2748125", + "length": "176.9752", + "name": "line_ln6138593-1", + "phases": "C", + "to": "l2673303" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026662", + "length": "468.6889", + "name": "line_ln6350543-1", + "phases": "ABC", + "to": "l2673319" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2804249", + "length": "232.9687", + "name": "line_ln6256144-4", + "phases": "ABC", + "to": "n1139547" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2673319", + "length": "109.2111", + "name": "line_ln5591284-1", + "phases": "ABC", + "to": "m1026658" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125976", + "length": "567.3490", + "name": "line_ln5745257-1", + "phases": "ABC", + "to": "m1125987" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026658", + "length": "234.2701", + "name": "line_ln5591284-2", + "phases": "ABC", + "to": "m1026655" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1139547", + "length": "278.9613", + "name": "line_ln6256144-3", + "phases": "ABC", + "to": "l2688693" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2688693", + "length": "128.5419", + "name": "line_ln6256144-1", + "phases": "ABC", + "to": "l2688692" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p827560", + "length": "45.3790", + "name": "line_ln6201702-3", + "phases": "A", + "to": "n1147866" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166355", + "length": "214.1172", + "name": "line_ln5624381-1", + "phases": "A", + "to": "l2805035" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1166375", + "length": "32.0267", + "name": "line_ln5589096-1", + "phases": "A", + "to": "p895080" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142832", + "length": "15.0480", + "name": "line_ln6292614-1", + "phases": "C", + "to": "p829962" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047777", + "length": "300.3185", + "name": "line_ln6047562-1", + "phases": "B", + "to": "m1047780" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008733", + "length": "272.3542", + "name": "line_ln6229785-1", + "phases": "B", + "to": "l3216339" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3082988", + "length": "226.8622", + "name": "line_ln6230797-1", + "phases": "B", + "to": "m1149225" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026324", + "length": "182.4111", + "name": "line_ln5502540-1", + "phases": "B", + "to": "m1026323" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1140517", + "length": "332.1891", + "name": "line_ln5621857-3", + "phases": "A", + "to": "l3157718" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3067478", + "length": "343.4079", + "name": "line_ln6170256-1", + "phases": "ABC", + "to": "m1125994" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1209763", + "length": "344.8887", + "name": "line_ln6048635-1", + "phases": "B", + "to": "l2936275" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2972704", + "length": "174.5431", + "name": "line_ln5956469-1", + "phases": "C", + "to": "l3263051" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p901934", + "length": "46.9385", + "name": "line_ln5621857-2", + "phases": "A", + "to": "n1140517" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026308", + "length": "61.5756", + "name": "line_ln5653464-1", + "phases": "B", + "to": "l2991918" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026812", + "length": "284.7762", + "name": "line_ln6255312-1", + "phases": "A", + "to": "l3122847" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1147865", + "length": "395.5891", + "name": "line_ln6379450-3", + "phases": "A", + "to": "l2895489" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209750", + "length": "378.4480", + "name": "line_ln5987956-1", + "phases": "B", + "to": "l3086075" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026946", + "length": "421.8248", + "name": "line_ln6138603-1", + "phases": "B", + "to": "m1026940" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047824", + "length": "256.2427", + "name": "line_ln5714042-1", + "phases": "B", + "to": "l3122810" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026662", + "length": "45.6950", + "name": "line_ln6108140-2", + "phases": "A", + "to": "n1141473" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027055", + "length": "55.0375", + "name": "line_ln6379450-2", + "phases": "A", + "to": "n1147865" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1141473", + "length": "135.3309", + "name": "line_ln6108140-3", + "phases": "A", + "to": "l3216350" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047521", + "length": "38.9741", + "name": "line_ln6411387-1", + "phases": "A", + "to": "l2954353" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "r42247", + "length": "130.4106", + "name": "line_ln5563942-3", + "phases": "ABC", + "to": "m1149233" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1149235", + "length": "102.1454", + "name": "line_ln5563942-4", + "phases": "ABC", + "to": "d5563942-4_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026472", + "length": "20.6874", + "name": "line_ln5472341-1", + "phases": "B", + "to": "d5472341-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1027001", + "length": "301.3991", + "name": "line_ln5835127-1", + "phases": "B", + "to": "m1027004" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125917", + "length": "298.4077", + "name": "line_ln5957493-1", + "phases": "ABC", + "to": "m1125914" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108350", + "length": "780.1513", + "name": "line_ln5833631-1", + "phases": "C", + "to": "m1108360" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2691950", + "length": "232.8578", + "name": "line_ln6047571-1", + "phases": "C", + "to": "l2916609" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026330", + "length": "356.1950", + "name": "line_ln6199524-1", + "phases": "B", + "to": "l2785526" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047777", + "length": "1797.7018", + "name": "line_ln6229798-1", + "phases": "B", + "to": "l3178975" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000906", + "length": "158.2410", + "name": "line_ln2000907-1", + "phases": "C", + "to": "m2000907" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069517", + "length": "94.1440", + "name": "line_ln6350556-2", + "phases": "ABC", + "to": "n1136367" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1136367", + "length": "126.3092", + "name": "line_ln6350556-3", + "phases": "ABC", + "to": "m1069515" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1108395", + "length": "606.4178", + "name": "line_ln6061820-1", + "phases": "B", + "to": "m1108410" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3122820", + "length": "194.9141", + "name": "line_ln5774460-1", + "phases": "A", + "to": "l3141398" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047457", + "length": "219.9450", + "name": "line_ln5926332-1", + "phases": "B", + "to": "l3139086" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000412", + "length": "158.2410", + "name": "line_ln2000413-1", + "phases": "A", + "to": "m2000413" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209787", + "length": "407.9919", + "name": "line_ln6261021-1", + "phases": "ABC", + "to": "l2823611" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026335", + "length": "229.2872", + "name": "line_ln6229808-1", + "phases": "A", + "to": "l2804259" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047723", + "length": "303.1931", + "name": "line_ln6320325-1", + "phases": "A", + "to": "m1047729" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2841626", + "length": "306.9210", + "name": "line_ln6260019-1", + "phases": "ABC", + "to": "l3235266" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2991939", + "length": "307.6024", + "name": "line_ln5774495-1", + "phases": "ABC", + "to": "l3216367" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3141389", + "length": "248.9239", + "name": "line_ln5895767-1", + "phases": "A", + "to": "l2860477" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026780", + "length": "351.2972", + "name": "line_ln6290215-1", + "phases": "ABC", + "to": "m1026774" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001013", + "length": "158.2410", + "name": "line_ln2001014-1", + "phases": "B", + "to": "m2001014" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047442", + "length": "225.8227", + "name": "line_ln5562927-1", + "phases": "B", + "to": "m1047444" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108257", + "length": "1436.0981", + "name": "line_ln5866235-1", + "phases": "B", + "to": "l3142078" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1149249", + "length": "761.7876", + "name": "line_ln6258463-1", + "phases": "C", + "to": "m1142880" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3029510", + "length": "354.8149", + "name": "line_ln5804811-1", + "phases": "B", + "to": "l2729409" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1136672", + "length": "39.9043", + "name": "line_ln6025724-5", + "phases": "C", + "to": "l3253995" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx1/0_tpx_ln6077771-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1009824", + "length": "100.7729", + "name": "line_ln6077771-1", + "phases": "B", + "to": "l2954338" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026795", + "length": "44.4808", + "name": "line_ln6259998-2", + "phases": "C", + "to": "n1140522" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2822861", + "length": "676.6898", + "name": "line_ln6411365-1", + "phases": "A", + "to": "l2841616" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1140522", + "length": "51.6835", + "name": "line_ln6259998-3", + "phases": "C", + "to": "l2822870" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047318", + "length": "240.2973", + "name": "line_ln5472367-1", + "phases": "C", + "to": "l2841637" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069393", + "length": "229.0135", + "name": "line_ln5593230-1", + "phases": "B", + "to": "m1069408" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2821010", + "length": "357.6030", + "name": "line_ln6349988-1", + "phases": "A", + "to": "m1026773" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069530", + "length": "87.7749", + "name": "line_ln6199546-1", + "phases": "B", + "to": "m1069526" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2785512", + "length": "386.9712", + "name": "line_ln6017286-1", + "phases": "B", + "to": "m1047813" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047374", + "length": "392.8853", + "name": "line_ln6350534-1", + "phases": "B", + "to": "l2879065" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047755", + "length": "240.3686", + "name": "line_ln5623397-1", + "phases": "A", + "to": "m1047751" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026990", + "length": "836.1773", + "name": "line_ln5956456-1", + "phases": "B", + "to": "m1027001" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "m1209774", + "length": "14.2225", + "name": "line_ln8940662-1", + "phases": "ABC", + "to": "221-242079" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001209", + "length": "158.2410", + "name": "line_ln2001210-1", + "phases": "C", + "to": "m2001210" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2916619", + "length": "314.2821", + "name": "line_ln6228396-1", + "phases": "B", + "to": "l2727008" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "n1140817", + "length": "51.8068", + "name": "line_ln5926310-3", + "phases": "ABC", + "to": "l3235258" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2897776", + "length": "476.7861", + "name": "line_ln6411378-1", + "phases": "C", + "to": "l3254215" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4_acsr_ln5589097-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "m1047486", + "length": "59.9998", + "name": "line_ln6437757-1", + "phases": "A", + "to": "l3177665" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001000", + "length": "158.2410", + "name": "line_ln2001001-1", + "phases": "B", + "to": "m2001001" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026744", + "length": "96.9061", + "name": "line_ln5926310-2", + "phases": "ABC", + "to": "n1140817" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2841619", + "length": "382.1333", + "name": "line_ln6259985-1", + "phases": "C", + "to": "l2785515" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1027039", + "length": "88.7435", + "name": "line_ln5472354-1", + "phases": "ABC", + "to": "m1027043" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2896685", + "length": "78.8412", + "name": "line_ln6274208-2", + "phases": "ABC", + "to": "m1089185" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2767343", + "length": "221.4492", + "name": "line_ln6048524-1", + "phases": "C", + "to": "l2804957" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108395", + "length": "310.8436", + "name": "line_ln6274208-1", + "phases": "ABC", + "to": "l2896685" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026339", + "length": "289.7657", + "name": "line_ln5623407-1", + "phases": "B", + "to": "l3029507" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1125988", + "length": "236.9386", + "name": "line_ln6506310-2", + "phases": "ABC", + "to": "l2767340" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2897767", + "length": "426.8360", + "name": "line_ln6199511-1", + "phases": "C", + "to": "l3254208" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1186061", + "length": "461.4731", + "name": "line_ln5622467-1", + "phases": "ABC", + "to": "l3139366" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p895113", + "length": "225.9410", + "name": "line_ln6407206-1", + "phases": "C", + "to": "l2711225" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047699", + "length": "263.1670", + "name": "line_ln5683816-1", + "phases": "ABC", + "to": "l2935554" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026987", + "length": "187.1885", + "name": "line_ln5865229-1", + "phases": "B", + "to": "m1026990" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108298", + "length": "128.8320", + "name": "line_ln5531195-1", + "phases": "ABC", + "to": "196-36167" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2842330", + "length": "187.4795", + "name": "line_ln5927297-1", + "phases": "C", + "to": "l3086002" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "l3139366", + "length": "379.2921", + "name": "line_ln5622467-4", + "phases": "ABC", + "to": "m4362177" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047809", + "length": "267.2634", + "name": "line_ln6350569-1", + "phases": "B", + "to": "m1047812" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p829978", + "length": "181.9170", + "name": "line_ln5989332-1", + "phases": "A", + "to": "l2992656" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047312", + "length": "13.5982", + "name": "line_ln6014135-1", + "phases": "A", + "to": "p893163" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026890", + "length": "168.5549", + "name": "line_ln5744371-1", + "phases": "A", + "to": "l2954357" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2954339", + "length": "205.8740", + "name": "line_ln5986919-1", + "phases": "B", + "to": "l3048200" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026773", + "length": "101.2405", + "name": "line_ln5652983-1", + "phases": "A", + "to": "m1026777" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3254230", + "length": "310.5554", + "name": "line_ln5472389-1", + "phases": "A", + "to": "m1047711" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125914", + "length": "137.8006", + "name": "line_ln6078768-1", + "phases": "ABC", + "to": "l2917328" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2841633", + "length": "349.6192", + "name": "line_ln5534970-1", + "phases": "ABC", + "to": "d5534970-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047786", + "length": "228.0485", + "name": "line_ln6505940-2", + "phases": "B", + "to": "l3048207" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166393", + "length": "215.3888", + "name": "line_ln5717630-1", + "phases": "C", + "to": "m1166395" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085398b", + "length": "50.0009", + "name": "tpx_tpx355777b0", + "phases": "BS", + "to": "sx3085398b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3179646b", + "length": "50.0009", + "name": "tpx_tpx328365b0", + "phases": "BS", + "to": "sx3179646b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766716c", + "length": "50.0009", + "name": "tpx_tpx337713c0", + "phases": "CS", + "to": "sx2766716c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122835b", + "length": "50.0009", + "name": "tpx_tpx339008b0", + "phases": "BS", + "to": "sx3122835b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235253a", + "length": "50.0009", + "name": "tpx_tpx138573a0", + "phases": "AS", + "to": "sx3235253a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048210a", + "length": "50.0009", + "name": "tpx_tpx302412a0", + "phases": "AS", + "to": "sx3048210a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104115b", + "length": "50.0009", + "name": "tpx_tpx391738b0", + "phases": "BS", + "to": "sx3104115b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2925506c", + "length": "50.0009", + "name": "tpx_tpx225533703c0", + "phases": "CS", + "to": "sx2925506c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3784018a", + "length": "50.0009", + "name": "tpx_tpx2224500658a0", + "phases": "AS", + "to": "sx3784018a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048231b", + "length": "50.0009", + "name": "tpx_tpx21400215b0", + "phases": "BS", + "to": "sx3048231b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2935550c", + "length": "50.0009", + "name": "tpx_tpx274999c0", + "phases": "CS", + "to": "sx2935550c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748144a", + "length": "50.0009", + "name": "tpx_tpx338984a0", + "phases": "AS", + "to": "sx2748144a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3233413b", + "length": "50.0009", + "name": "tpx_tpx226308727b0", + "phases": "BS", + "to": "sx3233413b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2748125c", + "length": "50.0009", + "name": "tpx_tpx338962c0", + "phases": "CS", + "to": "sx2748125c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160114a", + "length": "50.0009", + "name": "tpx_tpx339019a0", + "phases": "AS", + "to": "sx3160114a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3448661b", + "length": "50.0009", + "name": "tpx_tpx2223878647b0", + "phases": "BS", + "to": "sx3448661b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2729207c", + "length": "50.0009", + "name": "tpx_tpx2212168874c0", + "phases": "CS", + "to": "sx2729207c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2767341c", + "length": "50.0009", + "name": "tpx_tpx260577c0", + "phases": "CS", + "to": "sx2767341c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122827a", + "length": "50.0009", + "name": "tpx_tpx293673a0", + "phases": "AS", + "to": "sx3122827a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216351a", + "length": "50.0009", + "name": "tpx_tpx21398815a0", + "phases": "AS", + "to": "sx3216351a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2860487c", + "length": "50.0009", + "name": "tpx_tpx138586c0", + "phases": "CS", + "to": "sx2860487c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3159645a", + "length": "50.0009", + "name": "tpx_tpx228446184a0", + "phases": "AS", + "to": "sx3159645a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2730108c", + "length": "50.0009", + "name": "tpx_tpx223661c0", + "phases": "CS", + "to": "sx2730108c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973154a", + "length": "50.0009", + "name": "tpx_tpx338897a0", + "phases": "AS", + "to": "sx2973154a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2673310a", + "length": "50.0009", + "name": "tpx_tpx138562a0", + "phases": "AS", + "to": "sx2673310a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000711b", + "length": "50.0009", + "name": "tpx_tpx2000711b0", + "phases": "BS", + "to": "sx2000711b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710519a", + "length": "50.0009", + "name": "tpx_tpx302676a0", + "phases": "AS", + "to": "sx2710519a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3120502a", + "length": "50.0009", + "name": "tpx_tpx294812a0", + "phases": "AS", + "to": "sx3120502a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254217c", + "length": "50.0009", + "name": "tpx_tpx21399112c0", + "phases": "CS", + "to": "sx3254217c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691943b", + "length": "50.0009", + "name": "tpx_tpx323400b0", + "phases": "BS", + "to": "sx2691943b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897807b", + "length": "50.0009", + "name": "tpx_tpx21386771b0", + "phases": "BS", + "to": "sx2897807b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197618a", + "length": "50.0009", + "name": "tpx_tpx356008a0", + "phases": "AS", + "to": "sx3197618a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3179673c", + "length": "50.0009", + "name": "tpx_tpx260640c0", + "phases": "CS", + "to": "sx3179673c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2690187b", + "length": "50.0009", + "name": "tpx_tpx226308716b0", + "phases": "BS", + "to": "sx2690187b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000406a", + "length": "50.0009", + "name": "tpx_tpx2000406a0", + "phases": "AS", + "to": "sx2000406a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2955055b", + "length": "50.0009", + "name": "tpx_tpx21249647b0", + "phases": "BS", + "to": "sx2955055b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001208c", + "length": "50.0009", + "name": "tpx_tpx2001208c0", + "phases": "CS", + "to": "sx2001208c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766722b", + "length": "50.0009", + "name": "tpx_tpx337700b0", + "phases": "BS", + "to": "sx2766722b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2858166a", + "length": "50.0009", + "name": "tpx_tpx226192994a0", + "phases": "AS", + "to": "sx2858166a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748143a", + "length": "50.0009", + "name": "tpx_tpx28121368a0", + "phases": "AS", + "to": "sx2748143a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254873c", + "length": "50.0009", + "name": "tpx_tpx251862c0", + "phases": "CS", + "to": "sx3254873c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104134c", + "length": "50.0009", + "name": "tpx_tpx138718c0", + "phases": "CS", + "to": "sx3104134c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3195327a", + "length": "50.0009", + "name": "tpx_tpx225901711a0", + "phases": "AS", + "to": "sx3195327a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3011293c", + "length": "50.0009", + "name": "tpx_tpx28129466c0", + "phases": "CS", + "to": "sx3011293c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2842330c", + "length": "50.0009", + "name": "tpx_tpx356795c0", + "phases": "CS", + "to": "sx2842330c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691938b", + "length": "50.0009", + "name": "tpx_tpx355600b0", + "phases": "BS", + "to": "sx2691938b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2711234b", + "length": "50.0009", + "name": "tpx_tpx207287b0", + "phases": "BS", + "to": "sx2711234b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2973144c", + "length": "50.0009", + "name": "tpx_tpx138466c0", + "phases": "CS", + "to": "sx2973144c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2955074a", + "length": "50.0009", + "name": "tpx_tpx260479a0", + "phases": "AS", + "to": "sx2955074a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860499b", + "length": "50.0009", + "name": "tpx_tpx338997b0", + "phases": "BS", + "to": "sx2860499b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001315a", + "length": "50.0009", + "name": "tpx_tpx2001315a0", + "phases": "AS", + "to": "sx2001315a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897770c", + "length": "50.0009", + "name": "tpx_tpx337628c0", + "phases": "CS", + "to": "sx2897770c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728042a", + "length": "50.0009", + "name": "tpx_tpx2224387113a0", + "phases": "AS", + "to": "sx3728042a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766744b", + "length": "50.0009", + "name": "tpx_tpx28127319b0", + "phases": "BS", + "to": "sx2766744b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2955076a", + "length": "50.0009", + "name": "tpx_tpx21243817a0", + "phases": "AS", + "to": "sx2955076a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3179637c", + "length": "50.0009", + "name": "tpx_tpx21386442c0", + "phases": "CS", + "to": "sx3179637c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3178980c", + "length": "50.0009", + "name": "tpx_tpx302510c0", + "phases": "CS", + "to": "sx3178980c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3123509c", + "length": "50.0009", + "name": "tpx_tpx28129923c0", + "phases": "CS", + "to": "sx3123509c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879061b", + "length": "50.0009", + "name": "tpx_tpx337692b0", + "phases": "BS", + "to": "sx2879061b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254915b", + "length": "50.0009", + "name": "tpx_tpx260520b0", + "phases": "BS", + "to": "sx3254915b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3045895c", + "length": "50.0009", + "name": "tpx_tpx351020c0", + "phases": "CS", + "to": "sx3045895c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3214071c", + "length": "50.0009", + "name": "tpx_tpx226194419c0", + "phases": "CS", + "to": "sx3214071c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197639a", + "length": "50.0009", + "name": "tpx_tpx310569a0", + "phases": "AS", + "to": "sx3197639a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122817c", + "length": "50.0009", + "name": "tpx_tpx355779c0", + "phases": "CS", + "to": "sx3122817c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973157a", + "length": "50.0009", + "name": "tpx_tpx337722a0", + "phases": "AS", + "to": "sx2973157a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048199b", + "length": "50.0009", + "name": "tpx_tpx323237b0", + "phases": "BS", + "to": "sx3048199b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804259a", + "length": "50.0009", + "name": "tpx_tpx28127372a0", + "phases": "AS", + "to": "sx2804259a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122814c", + "length": "50.0009", + "name": "tpx_tpx338899c0", + "phases": "CS", + "to": "sx3122814c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2876797a", + "length": "50.0009", + "name": "tpx_tpx226193345a0", + "phases": "AS", + "to": "sx2876797a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991918b", + "length": "50.0009", + "name": "tpx_tpx391749b0", + "phases": "BS", + "to": "sx2991918b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3011293b", + "length": "50.0009", + "name": "tpx_tpx28129466b0", + "phases": "BS", + "to": "sx3011293b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104132a", + "length": "50.0009", + "name": "tpx_tpx302469a0", + "phases": "AS", + "to": "sx3104132a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2691951c", + "length": "50.0009", + "name": "tpx_tpx138379c0", + "phases": "CS", + "to": "sx2691951c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x1108404c", + "length": "50.0009", + "name": "tpx_tpx2221108404c0", + "phases": "CS", + "to": "sx1108404c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3085394c", + "length": "50.0009", + "name": "tpx_tpx274988c0", + "phases": "CS", + "to": "sx3085394c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748157a", + "length": "50.0009", + "name": "tpx_tpx338973a0", + "phases": "AS", + "to": "sx2748157a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001304a", + "length": "50.0009", + "name": "tpx_tpx2001304a0", + "phases": "AS", + "to": "sx2001304a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3085396a", + "length": "50.0009", + "name": "tpx_tpx138684a0", + "phases": "AS", + "to": "sx3085396a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785515c", + "length": "50.0009", + "name": "tpx_tpx293609c0", + "phases": "CS", + "to": "sx2785515c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3195321a", + "length": "50.0009", + "name": "tpx_tpx356805a0", + "phases": "AS", + "to": "sx3195321a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2933135a", + "length": "50.0009", + "name": "tpx_tpx226197070a0", + "phases": "AS", + "to": "sx2933135a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2955078a", + "length": "50.0009", + "name": "tpx_tpx260542a0", + "phases": "AS", + "to": "sx2955078a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897775c", + "length": "50.0009", + "name": "tpx_tpx138342c0", + "phases": "CS", + "to": "sx2897775c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2936213b", + "length": "50.0009", + "name": "tpx_tpx328363b0", + "phases": "BS", + "to": "sx2936213b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029183b", + "length": "50.0009", + "name": "tpx_tpx228580047b0", + "phases": "BS", + "to": "sx3029183b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916610b", + "length": "50.0009", + "name": "tpx_tpx293660b0", + "phases": "BS", + "to": "sx2916610b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991913a", + "length": "50.0009", + "name": "tpx_tpx138571a0", + "phases": "AS", + "to": "sx2991913a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860485b", + "length": "50.0009", + "name": "tpx_tpx321855b0", + "phases": "BS", + "to": "sx2860485b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235268c", + "length": "50.0009", + "name": "tpx_tpx28099529c0", + "phases": "CS", + "to": "sx3235268c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2972704c", + "length": "50.0009", + "name": "tpx_tpx228445756c0", + "phases": "CS", + "to": "sx2972704c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3011293a", + "length": "50.0009", + "name": "tpx_tpx28129466a0", + "phases": "AS", + "to": "sx3011293a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104131a", + "length": "50.0009", + "name": "tpx_tpx302410a0", + "phases": "AS", + "to": "sx3104131a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000702b", + "length": "50.0009", + "name": "tpx_tpx2000702b0", + "phases": "BS", + "to": "sx2000702b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048228c", + "length": "50.0009", + "name": "tpx_tpx274997c0", + "phases": "CS", + "to": "sx3048228c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991920a", + "length": "50.0009", + "name": "tpx_tpx28118822a0", + "phases": "AS", + "to": "sx2991920a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2876813a", + "length": "50.0009", + "name": "tpx_tpx355842a0", + "phases": "AS", + "to": "sx2876813a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2802480b", + "length": "50.0009", + "name": "tpx_tpx226308725b0", + "phases": "BS", + "to": "sx2802480b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897767c", + "length": "50.0009", + "name": "tpx_tpx338960c0", + "phases": "CS", + "to": "sx2897767c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048887b", + "length": "50.0009", + "name": "tpx_tpx260586b0", + "phases": "BS", + "to": "sx3048887b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104113a", + "length": "50.0009", + "name": "tpx_tpx138560a0", + "phases": "AS", + "to": "sx3104113a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000408a", + "length": "50.0009", + "name": "tpx_tpx2000408a0", + "phases": "AS", + "to": "sx2000408a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710530b", + "length": "50.0009", + "name": "tpx_tpx21381118b0", + "phases": "BS", + "to": "sx2710530b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2936216c", + "length": "50.0009", + "name": "tpx_tpx223663c0", + "phases": "CS", + "to": "sx2936216c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2673321a", + "length": "50.0009", + "name": "tpx_tpx302674a0", + "phases": "AS", + "to": "sx2673321a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3217057a", + "length": "50.0009", + "name": "tpx_tpx218475a0", + "phases": "AS", + "to": "sx3217057a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000713b", + "length": "50.0009", + "name": "tpx_tpx2000713b0", + "phases": "BS", + "to": "sx2000713b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860478b", + "length": "50.0009", + "name": "tpx_tpx355590b0", + "phases": "BS", + "to": "sx2860478b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2730187a", + "length": "50.0009", + "name": "tpx_tpx260464a0", + "phases": "AS", + "to": "sx2730187a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216367b", + "length": "50.0009", + "name": "tpx_tpx337648b0", + "phases": "BS", + "to": "sx3216367b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785534b", + "length": "50.0009", + "name": "tpx_tpx338982b0", + "phases": "BS", + "to": "sx2785534b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001206c", + "length": "50.0009", + "name": "tpx_tpx2001206c0", + "phases": "CS", + "to": "sx2001206c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3251799a", + "length": "50.0009", + "name": "tpx_tpx260562a0", + "phases": "AS", + "to": "sx3251799a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729408b", + "length": "50.0009", + "name": "tpx_tpx355768b0", + "phases": "BS", + "to": "sx2729408b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691954b", + "length": "50.0009", + "name": "tpx_tpx21399361b0", + "phases": "BS", + "to": "sx2691954b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029504b", + "length": "50.0009", + "name": "tpx_tpx337702b0", + "phases": "BS", + "to": "sx3029504b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3108449a", + "length": "50.0009", + "name": "tpx_tpx228622562a0", + "phases": "AS", + "to": "sx3108449a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2955006c", + "length": "50.0009", + "name": "tpx_tpx356797c0", + "phases": "CS", + "to": "sx2955006c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841626c", + "length": "50.0009", + "name": "tpx_tpx302808c0", + "phases": "CS", + "to": "sx2841626c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000911c", + "length": "50.0009", + "name": "tpx_tpx2000911c0", + "phases": "CS", + "to": "sx2000911c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3251806b", + "length": "50.0009", + "name": "tpx_tpx355602b0", + "phases": "BS", + "to": "sx3251806b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254219c", + "length": "50.0009", + "name": "tpx_tpx138716c0", + "phases": "CS", + "to": "sx3254219c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879067a", + "length": "50.0009", + "name": "tpx_tpx21380616a0", + "phases": "AS", + "to": "sx2879067a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3102793b", + "length": "50.0009", + "name": "tpx_tpx227734175b0", + "phases": "BS", + "to": "sx3102793b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066801c", + "length": "50.0009", + "name": "tpx_tpx138464c0", + "phases": "CS", + "to": "sx3066801c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001313a", + "length": "50.0009", + "name": "tpx_tpx2001313a0", + "phases": "AS", + "to": "sx2001313a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3216343c", + "length": "50.0009", + "name": "tpx_tpx337626c0", + "phases": "CS", + "to": "sx3216343c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2748133c", + "length": "50.0009", + "name": "tpx_tpx302861c0", + "phases": "CS", + "to": "sx2748133c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254227b", + "length": "50.0009", + "name": "tpx_tpx338995b0", + "phases": "BS", + "to": "sx3254227b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2861219b", + "length": "50.0009", + "name": "tpx_tpx21389761b0", + "phases": "BS", + "to": "sx2861219b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3215549b", + "length": "50.0009", + "name": "tpx_tpx228219458b0", + "phases": "BS", + "to": "sx3215549b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2711225c", + "length": "50.0009", + "name": "tpx_tpx260553c0", + "phases": "CS", + "to": "sx2711225c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104127b", + "length": "50.0009", + "name": "tpx_tpx337690b0", + "phases": "BS", + "to": "sx3104127b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2862616c", + "length": "50.0009", + "name": "tpx_tpx227447984c0", + "phases": "CS", + "to": "sx2862616c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879075a", + "length": "50.0009", + "name": "tpx_tpx337724a0", + "phases": "AS", + "to": "sx2879075a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254216a", + "length": "50.0009", + "name": "tpx_tpx21398563a0", + "phases": "AS", + "to": "sx3254216a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897773a", + "length": "50.0009", + "name": "tpx_tpx338918a0", + "phases": "AS", + "to": "sx2897773a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2822865c", + "length": "50.0009", + "name": "tpx_tpx274986c0", + "phases": "CS", + "to": "sx2822865c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2842379a", + "length": "50.0009", + "name": "tpx_tpx260488a0", + "phases": "AS", + "to": "sx2842379a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001302a", + "length": "50.0009", + "name": "tpx_tpx2001302a0", + "phases": "AS", + "to": "sx2001302a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860493a", + "length": "50.0009", + "name": "tpx_tpx21397645a0", + "phases": "AS", + "to": "sx2860493a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001008b", + "length": "50.0009", + "name": "tpx_tpx2001008b0", + "phases": "BS", + "to": "sx2001008b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2823545a", + "length": "50.0009", + "name": "tpx_tpx356807a0", + "phases": "AS", + "to": "sx2823545a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197643b", + "length": "50.0009", + "name": "tpx_tpx302369b0", + "phases": "BS", + "to": "sx3197643b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254869b", + "length": "50.0009", + "name": "tpx_tpx260575b0", + "phases": "BS", + "to": "sx3254869b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785527a", + "length": "50.0009", + "name": "tpx_tpx293522a0", + "phases": "AS", + "to": "sx2785527a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2972930a", + "length": "50.0009", + "name": "tpx_tpx338927a0", + "phases": "AS", + "to": "sx2972930a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3232902a", + "length": "50.0009", + "name": "tpx_tpx226194826a0", + "phases": "AS", + "to": "sx3232902a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2916599a", + "length": "50.0009", + "name": "tpx_tpx356015a0", + "phases": "AS", + "to": "sx2916599a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673320b", + "length": "50.0009", + "name": "tpx_tpx392037b0", + "phases": "BS", + "to": "sx2673320b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001215c", + "length": "50.0009", + "name": "tpx_tpx2001215c0", + "phases": "CS", + "to": "sx2001215c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2711224b", + "length": "50.0009", + "name": "tpx_tpx260500b0", + "phases": "BS", + "to": "sx2711224b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897554c", + "length": "50.0009", + "name": "tpx_tpx2212168870c0", + "phases": "CS", + "to": "sx2897554c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3067507c", + "length": "50.0009", + "name": "tpx_tpx260535c0", + "phases": "CS", + "to": "sx3067507c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3082981c", + "length": "50.0009", + "name": "tpx_tpx226193737c0", + "phases": "CS", + "to": "sx3082981c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3252336b", + "length": "50.0009", + "name": "tpx_tpx226308723b0", + "phases": "BS", + "to": "sx3252336b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766730b", + "length": "50.0009", + "name": "tpx_tpx355359b0", + "phases": "BS", + "to": "sx2766730b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2729414c", + "length": "50.0009", + "name": "tpx_tpx293655c0", + "phases": "CS", + "to": "sx2729414c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2730106c", + "length": "50.0009", + "name": "tpx_tpx356814c0", + "phases": "CS", + "to": "sx2730106c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973164a", + "length": "50.0009", + "name": "tpx_tpx302514a0", + "phases": "AS", + "to": "sx2973164a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3270814a", + "length": "50.0009", + "name": "tpx_tpx226191850a0", + "phases": "AS", + "to": "sx3270814a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2805036b", + "length": "50.0009", + "name": "tpx_tpx275248b0", + "phases": "BS", + "to": "sx2805036b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235243c", + "length": "50.0009", + "name": "tpx_tpx275008c0", + "phases": "CS", + "to": "sx3235243c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2691953a", + "length": "50.0009", + "name": "tpx_tpx302732a0", + "phases": "AS", + "to": "sx2691953a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197636b", + "length": "50.0009", + "name": "tpx_tpx28148580b0", + "phases": "BS", + "to": "sx3197636b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991909a", + "length": "50.0009", + "name": "tpx_tpx355773a0", + "phases": "AS", + "to": "sx2991909a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2688693c", + "length": "50.0009", + "name": "tpx_tpx225918936c0", + "phases": "CS", + "to": "sx2688693c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3086078a", + "length": "50.0009", + "name": "tpx_tpx218473a0", + "phases": "AS", + "to": "sx3086078a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197633a", + "length": "50.0009", + "name": "tpx_tpx338893a0", + "phases": "AS", + "to": "sx3197633a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860489a", + "length": "50.0009", + "name": "tpx_tpx302405a0", + "phases": "AS", + "to": "sx2860489a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3178981b", + "length": "50.0009", + "name": "tpx_tpx21396331b0", + "phases": "BS", + "to": "sx3178981b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2822863c", + "length": "50.0009", + "name": "tpx_tpx337635c0", + "phases": "CS", + "to": "sx2822863c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3178973a", + "length": "50.0009", + "name": "tpx_tpx21149420a0", + "phases": "AS", + "to": "sx3178973a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879063b", + "length": "50.0009", + "name": "tpx_tpx337646b0", + "phases": "BS", + "to": "sx2879063b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001204c", + "length": "50.0009", + "name": "tpx_tpx2001204c0", + "phases": "CS", + "to": "sx2001204c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729414b", + "length": "50.0009", + "name": "tpx_tpx293655b0", + "phases": "BS", + "to": "sx2729414b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3178976a", + "length": "50.0009", + "name": "tpx_tpx21397721a0", + "phases": "AS", + "to": "sx3178976a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000402a", + "length": "50.0009", + "name": "tpx_tpx2000402a0", + "phases": "AS", + "to": "sx2000402a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048206a", + "length": "50.0009", + "name": "tpx_tpx138649a0", + "phases": "AS", + "to": "sx3048206a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2935559a", + "length": "50.0009", + "name": "tpx_tpx21400185a0", + "phases": "AS", + "to": "sx2935559a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3181545c", + "length": "50.0009", + "name": "tpx_tpx226193702c0", + "phases": "CS", + "to": "sx3181545c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216358a", + "length": "50.0009", + "name": "tpx_tpx21399826a0", + "phases": "AS", + "to": "sx3216358a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235267c", + "length": "50.0009", + "name": "tpx_tpx321892c0", + "phases": "CS", + "to": "sx3235267c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2767343c", + "length": "50.0009", + "name": "tpx_tpx356791c0", + "phases": "CS", + "to": "sx2767343c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216346a", + "length": "50.0009", + "name": "tpx_tpx391991a0", + "phases": "AS", + "to": "sx3216346a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2876796a", + "length": "50.0009", + "name": "tpx_tpx226193338a0", + "phases": "AS", + "to": "sx2876796a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748781a", + "length": "50.0009", + "name": "tpx_tpx21382813a0", + "phases": "AS", + "to": "sx2748781a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3157718a", + "length": "50.0009", + "name": "tpx_tpx226194093a0", + "phases": "AS", + "to": "sx3157718a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001400c", + "length": "50.0009", + "name": "tpx_tpx2001400c0", + "phases": "CS", + "to": "sx2001400c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3067447a", + "length": "50.0009", + "name": "tpx_tpx21386157a0", + "phases": "AS", + "to": "sx3067447a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3178982a", + "length": "50.0009", + "name": "tpx_tpx294843a0", + "phases": "AS", + "to": "sx3178982a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3066811b", + "length": "50.0009", + "name": "tpx_tpx28126875b0", + "phases": "BS", + "to": "sx3066811b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2991921c", + "length": "50.0009", + "name": "tpx_tpx28129399c0", + "phases": "CS", + "to": "sx2991921c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066807c", + "length": "50.0009", + "name": "tpx_tpx337624c0", + "phases": "CS", + "to": "sx3066807c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104125b", + "length": "50.0009", + "name": "tpx_tpx138264b0", + "phases": "BS", + "to": "sx3104125b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2917359a", + "length": "50.0009", + "name": "tpx_tpx21482431a0", + "phases": "AS", + "to": "sx2917359a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2915542c", + "length": "50.0009", + "name": "tpx_tpx227921427c0", + "phases": "CS", + "to": "sx2915542c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2917336c", + "length": "50.0009", + "name": "tpx_tpx260513c0", + "phases": "CS", + "to": "sx2917336c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804272b", + "length": "50.0009", + "name": "tpx_tpx338993b0", + "phases": "BS", + "to": "sx2804272b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001311a", + "length": "50.0009", + "name": "tpx_tpx2001311a0", + "phases": "AS", + "to": "sx2001311a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x0247160b", + "length": "50.0009", + "name": "tpx_tpx247160b0", + "phases": "BS", + "to": "sx0247160b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000413a", + "length": "50.0009", + "name": "tpx_tpx2000413a0", + "phases": "AS", + "to": "sx2000413a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766750c", + "length": "50.0009", + "name": "tpx_tpx293424c0", + "phases": "CS", + "to": "sx2766750c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2992556c", + "length": "50.0009", + "name": "tpx_tpx346639c0", + "phases": "CS", + "to": "sx2992556c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2858175a", + "length": "50.0009", + "name": "tpx_tpx225668688a0", + "phases": "AS", + "to": "sx2858175a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3081380a", + "length": "50.0009", + "name": "tpx_tpx225700953a0", + "phases": "AS", + "to": "sx3081380a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254203b", + "length": "50.0009", + "name": "tpx_tpx323233b0", + "phases": "BS", + "to": "sx3254203b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3235246b", + "length": "50.0009", + "name": "tpx_tpx323279b0", + "phases": "BS", + "to": "sx3235246b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710516a", + "length": "50.0009", + "name": "tpx_tpx321839a0", + "phases": "AS", + "to": "sx2710516a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2955047a", + "length": "50.0009", + "name": "tpx_tpx21469911a0", + "phases": "AS", + "to": "sx2955047a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3312692a", + "length": "50.0009", + "name": "tpx_tpx2223661373a0", + "phases": "AS", + "to": "sx3312692a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000909c", + "length": "50.0009", + "name": "tpx_tpx2000909c0", + "phases": "CS", + "to": "sx2000909c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2726973a", + "length": "50.0009", + "name": "tpx_tpx226192926a0", + "phases": "AS", + "to": "sx2726973a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3198347c", + "length": "50.0009", + "name": "tpx_tpx260622c0", + "phases": "CS", + "to": "sx3198347c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3118855c", + "length": "50.0009", + "name": "tpx_tpx339052c0", + "phases": "CS", + "to": "sx3118855c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2915542b", + "length": "50.0009", + "name": "tpx_tpx227921427b0", + "phases": "BS", + "to": "sx2915542b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066810c", + "length": "50.0009", + "name": "tpx_tpx337659c0", + "phases": "CS", + "to": "sx3066810c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710521a", + "length": "50.0009", + "name": "tpx_tpx138680a0", + "phases": "AS", + "to": "sx2710521a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3253570c", + "length": "50.0009", + "name": "tpx_tpx228314460c0", + "phases": "CS", + "to": "sx3253570c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3189190a", + "length": "50.0009", + "name": "tpx_tpx227100753a0", + "phases": "AS", + "to": "sx3189190a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2673316a", + "length": "50.0009", + "name": "tpx_tpx28120855a0", + "phases": "AS", + "to": "sx2673316a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001006b", + "length": "50.0009", + "name": "tpx_tpx2001006b0", + "phases": "BS", + "to": "sx2001006b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897801a", + "length": "50.0009", + "name": "tpx_tpx21470405a0", + "phases": "AS", + "to": "sx2897801a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2936279c", + "length": "50.0009", + "name": "tpx_tpx247184c0", + "phases": "CS", + "to": "sx2936279c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2710532c", + "length": "50.0009", + "name": "tpx_tpx293666c0", + "phases": "CS", + "to": "sx2710532c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3011229a", + "length": "50.0009", + "name": "tpx_tpx356801a0", + "phases": "AS", + "to": "sx3011229a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649300a", + "length": "50.0009", + "name": "tpx_tpx2224237546a0", + "phases": "AS", + "to": "sx3649300a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254213b", + "length": "50.0009", + "name": "tpx_tpx321859b0", + "phases": "BS", + "to": "sx3254213b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860488b", + "length": "50.0009", + "name": "tpx_tpx391751b0", + "phases": "BS", + "to": "sx2860488b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2933120c", + "length": "50.0009", + "name": "tpx_tpx226192890c0", + "phases": "CS", + "to": "sx2933120c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048207b", + "length": "50.0009", + "name": "tpx_tpx323248b0", + "phases": "BS", + "to": "sx3048207b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729430b", + "length": "50.0009", + "name": "tpx_tpx21248901b0", + "phases": "BS", + "to": "sx2729430b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2685805a", + "length": "50.0009", + "name": "tpx_tpx225533531a0", + "phases": "AS", + "to": "sx2685805a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254211b", + "length": "50.0009", + "name": "tpx_tpx247084b0", + "phases": "BS", + "to": "sx3254211b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710511a", + "length": "50.0009", + "name": "tpx_tpx21357515a0", + "phases": "AS", + "to": "sx2710511a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2954348a", + "length": "50.0009", + "name": "tpx_tpx356013a0", + "phases": "AS", + "to": "sx2954348a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104135a", + "length": "50.0009", + "name": "tpx_tpx21399508a0", + "phases": "AS", + "to": "sx3104135a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973153a", + "length": "50.0009", + "name": "tpx_tpx338925a0", + "phases": "AS", + "to": "sx2973153a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001213c", + "length": "50.0009", + "name": "tpx_tpx2001213c0", + "phases": "CS", + "to": "sx2001213c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748139b", + "length": "50.0009", + "name": "tpx_tpx21400108b0", + "phases": "BS", + "to": "sx2748139b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048962a", + "length": "50.0009", + "name": "tpx_tpx260555a0", + "phases": "AS", + "to": "sx3048962a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3207907b", + "length": "50.0009", + "name": "tpx_tpx293664b0", + "phases": "BS", + "to": "sx3207907b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048200b", + "length": "50.0009", + "name": "tpx_tpx391740b0", + "phases": "BS", + "to": "sx3048200b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085390b", + "length": "50.0009", + "name": "tpx_tpx321848b0", + "phases": "BS", + "to": "sx3085390b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2691952a", + "length": "50.0009", + "name": "tpx_tpx391980a0", + "phases": "AS", + "to": "sx2691952a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010585a", + "length": "50.0009", + "name": "tpx_tpx294810a0", + "phases": "AS", + "to": "sx3010585a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649302a", + "length": "50.0009", + "name": "tpx_tpx2224237653a0", + "phases": "AS", + "to": "sx3649302a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3029499a", + "length": "50.0009", + "name": "tpx_tpx302678a0", + "phases": "AS", + "to": "sx3029499a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104118c", + "length": "50.0009", + "name": "tpx_tpx321890c0", + "phases": "CS", + "to": "sx3104118c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2820528c", + "length": "50.0009", + "name": "tpx_tpx226191778c0", + "phases": "CS", + "to": "sx2820528c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2729406c", + "length": "50.0009", + "name": "tpx_tpx337633c0", + "phases": "CS", + "to": "sx2729406c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3086079b", + "length": "50.0009", + "name": "tpx_tpx260457b0", + "phases": "BS", + "to": "sx3086079b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2763811c", + "length": "50.0009", + "name": "tpx_tpx21459629c0", + "phases": "CS", + "to": "sx2763811c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2935568b", + "length": "50.0009", + "name": "tpx_tpx28119958b0", + "phases": "BS", + "to": "sx2935568b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001202c", + "length": "50.0009", + "name": "tpx_tpx2001202c0", + "phases": "CS", + "to": "sx2001202c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000404a", + "length": "50.0009", + "name": "tpx_tpx2000404a0", + "phases": "AS", + "to": "sx2000404a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2990098a", + "length": "50.0009", + "name": "tpx_tpx226308721a0", + "phases": "AS", + "to": "sx2990098a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2915534a", + "length": "50.0009", + "name": "tpx_tpx227917122a0", + "phases": "AS", + "to": "sx2915534a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2991943c", + "length": "50.0009", + "name": "tpx_tpx21399619c0", + "phases": "CS", + "to": "sx2991943c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x0247171b", + "length": "50.0009", + "name": "tpx_tpx247171b0", + "phases": "BS", + "to": "sx0247171b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3225319b", + "length": "50.0009", + "name": "tpx_tpx225533675b0", + "phases": "BS", + "to": "sx3225319b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2708744b", + "length": "50.0009", + "name": "tpx_tpx226308710b0", + "phases": "BS", + "to": "sx2708744b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3207907a", + "length": "50.0009", + "name": "tpx_tpx293664a0", + "phases": "AS", + "to": "sx3207907a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3179608c", + "length": "50.0009", + "name": "tpx_tpx356793c0", + "phases": "CS", + "to": "sx3179608c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3156034a", + "length": "50.0009", + "name": "tpx_tpx391993a0", + "phases": "AS", + "to": "sx3156034a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649306a", + "length": "50.0009", + "name": "tpx_tpx2224238167a0", + "phases": "AS", + "to": "sx3649306a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2786266a", + "length": "50.0009", + "name": "tpx_tpx260631a0", + "phases": "AS", + "to": "sx2786266a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2798067b", + "length": "50.0009", + "name": "tpx_tpx225533237b0", + "phases": "BS", + "to": "sx2798067b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010563a", + "length": "50.0009", + "name": "tpx_tpx294845a0", + "phases": "AS", + "to": "sx3010563a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2710525c", + "length": "50.0009", + "name": "tpx_tpx355437c0", + "phases": "CS", + "to": "sx2710525c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2804277c", + "length": "50.0009", + "name": "tpx_tpx339043c0", + "phases": "CS", + "to": "sx2804277c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066816a", + "length": "50.0009", + "name": "tpx_tpx21398676a0", + "phases": "AS", + "to": "sx3066816a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048211a", + "length": "50.0009", + "name": "tpx_tpx21396015a0", + "phases": "AS", + "to": "sx3048211a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2914324a", + "length": "50.0009", + "name": "tpx_tpx226196642a0", + "phases": "AS", + "to": "sx2914324a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691942b", + "length": "50.0009", + "name": "tpx_tpx247105b0", + "phases": "BS", + "to": "sx2691942b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710544a", + "length": "50.0009", + "name": "tpx_tpx21482279a0", + "phases": "AS", + "to": "sx2710544a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785522b", + "length": "50.0009", + "name": "tpx_tpx28127681b0", + "phases": "BS", + "to": "sx2785522b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2876814a", + "length": "50.0009", + "name": "tpx_tpx225806974a0", + "phases": "AS", + "to": "sx2876814a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3214069c", + "length": "50.0009", + "name": "tpx_tpx226194421c0", + "phases": "CS", + "to": "sx3214069c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000415a", + "length": "50.0009", + "name": "tpx_tpx2000415a0", + "phases": "AS", + "to": "sx2000415a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3047073c", + "length": "50.0009", + "name": "tpx_tpx227917133c0", + "phases": "CS", + "to": "sx3047073c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160878c", + "length": "50.0009", + "name": "tpx_tpx260511c0", + "phases": "CS", + "to": "sx3160878c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3178997c", + "length": "50.0009", + "name": "tpx_tpx293422c0", + "phases": "CS", + "to": "sx3178997c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841648a", + "length": "50.0009", + "name": "tpx_tpx337720a0", + "phases": "AS", + "to": "sx2841648a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2673312a", + "length": "50.0009", + "name": "tpx_tpx321837a0", + "phases": "AS", + "to": "sx2673312a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197624b", + "length": "50.0009", + "name": "tpx_tpx323235b0", + "phases": "BS", + "to": "sx3197624b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104830c", + "length": "50.0009", + "name": "tpx_tpx328367c0", + "phases": "CS", + "to": "sx3104830c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3029503c", + "length": "50.0009", + "name": "tpx_tpx138373c0", + "phases": "CS", + "to": "sx3029503c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3097861c", + "length": "50.0009", + "name": "tpx_tpx225533215c0", + "phases": "CS", + "to": "sx3097861c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3251854a", + "length": "50.0009", + "name": "tpx_tpx226881700a0", + "phases": "AS", + "to": "sx3251854a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3067506c", + "length": "50.0009", + "name": "tpx_tpx260620c0", + "phases": "CS", + "to": "sx3067506c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104136b", + "length": "50.0009", + "name": "tpx_tpx338949b0", + "phases": "BS", + "to": "sx3104136b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991906a", + "length": "50.0009", + "name": "tpx_tpx247060a0", + "phases": "AS", + "to": "sx2991906a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3141397b", + "length": "50.0009", + "name": "tpx_tpx21396796b0", + "phases": "BS", + "to": "sx3141397b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822871b", + "length": "50.0009", + "name": "tpx_tpx355840b0", + "phases": "BS", + "to": "sx2822871b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010559a", + "length": "50.0009", + "name": "tpx_tpx337679a0", + "phases": "AS", + "to": "sx3010559a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729411a", + "length": "50.0009", + "name": "tpx_tpx138769a0", + "phases": "AS", + "to": "sx2729411a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3029502a", + "length": "50.0009", + "name": "tpx_tpx138262a0", + "phases": "AS", + "to": "sx3029502a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001004b", + "length": "50.0009", + "name": "tpx_tpx2001004b0", + "phases": "BS", + "to": "sx2001004b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2935549b", + "length": "50.0009", + "name": "tpx_tpx337668b0", + "phases": "BS", + "to": "sx2935549b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3101194c", + "length": "50.0009", + "name": "tpx_tpx21459660c0", + "phases": "CS", + "to": "sx3101194c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2842329c", + "length": "50.0009", + "name": "tpx_tpx260568c0", + "phases": "CS", + "to": "sx2842329c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3067448c", + "length": "50.0009", + "name": "tpx_tpx262075c0", + "phases": "CS", + "to": "sx3067448c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3207907c", + "length": "50.0009", + "name": "tpx_tpx293664c0", + "phases": "CS", + "to": "sx3207907c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748780a", + "length": "50.0009", + "name": "tpx_tpx356803a0", + "phases": "AS", + "to": "sx2748780a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3645810c", + "length": "50.0009", + "name": "tpx_tpx2224230651c0", + "phases": "CS", + "to": "sx3645810c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3142049c", + "length": "50.0009", + "name": "tpx_tpx356810c0", + "phases": "CS", + "to": "sx3142049c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_750_triplex_12", + "continuous_rating_B": "580.00", + "emergency_rating_B": "725.00", + "from": "x2691959b", + "length": "50.0009", + "name": "tpx_tpx21400253b0", + "phases": "BS", + "to": "sx2691959b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729412a", + "length": "50.0009", + "name": "tpx_tpx28150189a0", + "phases": "AS", + "to": "sx2729412a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973163b", + "length": "50.0009", + "name": "tpx_tpx391753b0", + "phases": "BS", + "to": "sx2973163b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3626914c", + "length": "50.0009", + "name": "tpx_tpx2224179616c0", + "phases": "CS", + "to": "sx3626914c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2842384c", + "length": "50.0009", + "name": "tpx_tpx260637c0", + "phases": "CS", + "to": "sx2842384c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122810b", + "length": "50.0009", + "name": "tpx_tpx323242b0", + "phases": "BS", + "to": "sx3122810b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2911069b", + "length": "50.0009", + "name": "tpx_tpx225571871b0", + "phases": "BS", + "to": "sx2911069b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2989566b", + "length": "50.0009", + "name": "tpx_tpx260602b0", + "phases": "BS", + "to": "sx2989566b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3632979a", + "length": "50.0009", + "name": "tpx_tpx2224192013a0", + "phases": "AS", + "to": "sx3632979a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2726983a", + "length": "50.0009", + "name": "tpx_tpx226109079a0", + "phases": "AS", + "to": "sx2726983a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000708b", + "length": "50.0009", + "name": "tpx_tpx2000708b0", + "phases": "BS", + "to": "sx2000708b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001015b", + "length": "50.0009", + "name": "tpx_tpx2001015b0", + "phases": "BS", + "to": "sx2001015b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001211c", + "length": "50.0009", + "name": "tpx_tpx2001211c0", + "phases": "CS", + "to": "sx2001211c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160865a", + "length": "50.0009", + "name": "tpx_tpx260515a0", + "phases": "AS", + "to": "sx3160865a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991908a", + "length": "50.0009", + "name": "tpx_tpx338900a0", + "phases": "AS", + "to": "sx2991908a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104123c", + "length": "50.0009", + "name": "tpx_tpx338924c0", + "phases": "CS", + "to": "sx3104123c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879753b", + "length": "50.0009", + "name": "tpx_tpx21249674b0", + "phases": "BS", + "to": "sx2879753b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_750_triplex_12", + "continuous_rating_A": "580.00", + "emergency_rating_A": "725.00", + "from": "x3234149a", + "length": "50.0009", + "name": "tpx_tpx227944551a0", + "phases": "AS", + "to": "sx3234149a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2954349b", + "length": "50.0009", + "name": "tpx_tpx337699b0", + "phases": "BS", + "to": "sx2954349b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973160b", + "length": "50.0009", + "name": "tpx_tpx338935b0", + "phases": "BS", + "to": "sx2973160b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3150961c", + "length": "50.0009", + "name": "tpx_tpx223400157c0", + "phases": "CS", + "to": "sx3150961c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2935560c", + "length": "50.0009", + "name": "tpx_tpx293659c0", + "phases": "CS", + "to": "sx2935560c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104154c", + "length": "50.0009", + "name": "tpx_tpx337642c0", + "phases": "CS", + "to": "sx3104154c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216337a", + "length": "50.0009", + "name": "tpx_tpx356011a0", + "phases": "AS", + "to": "sx3216337a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841630c", + "length": "50.0009", + "name": "tpx_tpx138404c0", + "phases": "CS", + "to": "sx2841630c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673308b", + "length": "50.0009", + "name": "tpx_tpx337653b0", + "phases": "BS", + "to": "sx2673308b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879077b", + "length": "50.0009", + "name": "tpx_tpx337709b0", + "phases": "BS", + "to": "sx2879077b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766742b", + "length": "50.0009", + "name": "tpx_tpx355585b0", + "phases": "BS", + "to": "sx2766742b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710518a", + "length": "50.0009", + "name": "tpx_tpx21209868a0", + "phases": "AS", + "to": "sx2710518a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710520a", + "length": "50.0009", + "name": "tpx_tpx138679a0", + "phases": "AS", + "to": "sx2710520a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2710515c", + "length": "50.0009", + "name": "tpx_tpx321884c0", + "phases": "CS", + "to": "sx2710515c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3139086b", + "length": "50.0009", + "name": "tpx_tpx226192846b0", + "phases": "BS", + "to": "sx3139086b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000410a", + "length": "50.0009", + "name": "tpx_tpx2000410a0", + "phases": "AS", + "to": "sx2000410a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3177881c", + "length": "50.0009", + "name": "tpx_tpx227896008c0", + "phases": "CS", + "to": "sx3177881c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897779c", + "length": "50.0009", + "name": "tpx_tpx302508c0", + "phases": "CS", + "to": "sx2897779c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2764403a", + "length": "50.0009", + "name": "tpx_tpx226193078a0", + "phases": "AS", + "to": "sx2764403a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2731712b", + "length": "50.0009", + "name": "tpx_tpx21426205b0", + "phases": "BS", + "to": "sx2731712b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048201b", + "length": "50.0009", + "name": "tpx_tpx391742b0", + "phases": "BS", + "to": "sx3048201b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3179682c", + "length": "50.0009", + "name": "tpx_tpx207292c0", + "phases": "CS", + "to": "sx3179682c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2879092c", + "length": "50.0009", + "name": "tpx_tpx21399326c0", + "phases": "CS", + "to": "sx2879092c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879087a", + "length": "50.0009", + "name": "tpx_tpx21399762a0", + "phases": "AS", + "to": "sx2879087a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973152b", + "length": "50.0009", + "name": "tpx_tpx323253b0", + "phases": "BS", + "to": "sx2973152b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000904c", + "length": "50.0009", + "name": "tpx_tpx2000904c0", + "phases": "CS", + "to": "sx2000904c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3198356c", + "length": "50.0009", + "name": "tpx_tpx350993c0", + "phases": "CS", + "to": "sx3198356c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254218a", + "length": "50.0009", + "name": "tpx_tpx138720a0", + "phases": "AS", + "to": "sx3254218a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785520b", + "length": "50.0009", + "name": "tpx_tpx138755b0", + "phases": "BS", + "to": "sx2785520b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029501b", + "length": "50.0009", + "name": "tpx_tpx337688b0", + "phases": "BS", + "to": "sx3029501b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3178969b", + "length": "50.0009", + "name": "tpx_tpx355596b0", + "phases": "BS", + "to": "sx3178969b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2954346b", + "length": "50.0009", + "name": "tpx_tpx323397b0", + "phases": "BS", + "to": "sx2954346b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3029497c", + "length": "50.0009", + "name": "tpx_tpx337631c0", + "phases": "CS", + "to": "sx3029497c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728039a", + "length": "50.0009", + "name": "tpx_tpx2224387053a0", + "phases": "AS", + "to": "sx3728039a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3120503a", + "length": "50.0009", + "name": "tpx_tpx225869139a0", + "phases": "AS", + "to": "sx3120503a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673319c", + "length": "50.0009", + "name": "tpx_tpx391973c0", + "phases": "CS", + "to": "sx2673319c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2860492c", + "length": "50.0009", + "name": "tpx_tpx21395720c0", + "phases": "CS", + "to": "sx2860492c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748140a", + "length": "50.0009", + "name": "tpx_tpx391995a0", + "phases": "AS", + "to": "sx2748140a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197647a", + "length": "50.0009", + "name": "tpx_tpx294787a0", + "phases": "AS", + "to": "sx3197647a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197638a", + "length": "50.0009", + "name": "tpx_tpx21396959a0", + "phases": "AS", + "to": "sx3197638a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2814529c", + "length": "50.0009", + "name": "tpx_tpx28120126c0", + "phases": "CS", + "to": "sx2814529c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2820556a", + "length": "50.0009", + "name": "tpx_tpx226196648a0", + "phases": "AS", + "to": "sx2820556a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2804250c", + "length": "50.0009", + "name": "tpx_tpx274992c0", + "phases": "CS", + "to": "sx2804250c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048890c", + "length": "50.0009", + "name": "tpx_tpx28128517c0", + "phases": "CS", + "to": "sx3048890c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216344b", + "length": "50.0009", + "name": "tpx_tpx323264b0", + "phases": "BS", + "to": "sx3216344b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2767408c", + "length": "50.0009", + "name": "tpx_tpx260517c0", + "phases": "CS", + "to": "sx2767408c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804255b", + "length": "50.0009", + "name": "tpx_tpx338913b0", + "phases": "BS", + "to": "sx2804255b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3727709a", + "length": "50.0009", + "name": "tpx_tpx2224386842a0", + "phases": "AS", + "to": "sx3727709a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2916598a", + "length": "50.0009", + "name": "tpx_tpx355933a0", + "phases": "AS", + "to": "sx2916598a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3157710b", + "length": "50.0009", + "name": "tpx_tpx226193361b0", + "phases": "BS", + "to": "sx3157710b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160862c", + "length": "50.0009", + "name": "tpx_tpx21386143c0", + "phases": "CS", + "to": "sx3160862c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2898522a", + "length": "50.0009", + "name": "tpx_tpx260648a0", + "phases": "AS", + "to": "sx2898522a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804251a", + "length": "50.0009", + "name": "tpx_tpx138646a0", + "phases": "AS", + "to": "sx2804251a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254870c", + "length": "50.0009", + "name": "tpx_tpx260581c0", + "phases": "CS", + "to": "sx3254870c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2929261a", + "length": "50.0009", + "name": "tpx_tpx225533337a0", + "phases": "AS", + "to": "sx2929261a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879773a", + "length": "50.0009", + "name": "tpx_tpx207290a0", + "phases": "AS", + "to": "sx2879773a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3068944b", + "length": "50.0009", + "name": "tpx_tpx260494b0", + "phases": "BS", + "to": "sx3068944b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254215c", + "length": "50.0009", + "name": "tpx_tpx302859c0", + "phases": "CS", + "to": "sx3254215c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197660b", + "length": "50.0009", + "name": "tpx_tpx323275b0", + "phases": "BS", + "to": "sx3197660b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673343b", + "length": "50.0009", + "name": "tpx_tpx21470122b0", + "phases": "BS", + "to": "sx2673343b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691966b", + "length": "50.0009", + "name": "tpx_tpx339010b0", + "phases": "BS", + "to": "sx2691966b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3010580b", + "length": "50.0009", + "name": "tpx_tpx21451973b0", + "phases": "BS", + "to": "sx3010580b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2861158c", + "length": "50.0009", + "name": "tpx_tpx251858c0", + "phases": "CS", + "to": "sx2861158c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197652a", + "length": "50.0009", + "name": "tpx_tpx339021a0", + "phases": "AS", + "to": "sx3197652a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3010567c", + "length": "50.0009", + "name": "tpx_tpx302813c0", + "phases": "CS", + "to": "sx3010567c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2801909c", + "length": "50.0009", + "name": "tpx_tpx226195333c0", + "phases": "CS", + "to": "sx2801909c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3217052c", + "length": "50.0009", + "name": "tpx_tpx260528c0", + "phases": "CS", + "to": "sx3217052c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141396c", + "length": "50.0009", + "name": "tpx_tpx337655c0", + "phases": "CS", + "to": "sx3141396c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029518b", + "length": "50.0009", + "name": "tpx_tpx337666b0", + "phases": "BS", + "to": "sx3029518b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3729297a", + "length": "50.0009", + "name": "tpx_tpx2224386592a0", + "phases": "AS", + "to": "sx3729297a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2954344c", + "length": "50.0009", + "name": "tpx_tpx338959c0", + "phases": "CS", + "to": "sx2954344c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001002b", + "length": "50.0009", + "name": "tpx_tpx2001002b0", + "phases": "BS", + "to": "sx2001002b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804254a", + "length": "50.0009", + "name": "tpx_tpx323418a0", + "phases": "AS", + "to": "sx2804254a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785513a", + "length": "50.0009", + "name": "tpx_tpx337677a0", + "phases": "AS", + "to": "sx2785513a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841637c", + "length": "50.0009", + "name": "tpx_tpx293492c0", + "phases": "CS", + "to": "sx2841637c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3251807a", + "length": "50.0009", + "name": "tpx_tpx225673440a0", + "phases": "AS", + "to": "sx3251807a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804248b", + "length": "50.0009", + "name": "tpx_tpx323244b0", + "phases": "BS", + "to": "sx2804248b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104130b", + "length": "50.0009", + "name": "tpx_tpx391755b0", + "phases": "BS", + "to": "sx3104130b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2820533a", + "length": "50.0009", + "name": "tpx_tpx226193298a0", + "phases": "AS", + "to": "sx2820533a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122837c", + "length": "50.0009", + "name": "tpx_tpx355432c0", + "phases": "CS", + "to": "sx3122837c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2935566c", + "length": "50.0009", + "name": "tpx_tpx441854c0", + "phases": "CS", + "to": "sx2935566c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3178979c", + "length": "50.0009", + "name": "tpx_tpx338968c0", + "phases": "CS", + "to": "sx3178979c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001013b", + "length": "50.0009", + "name": "tpx_tpx2001013b0", + "phases": "BS", + "to": "sx2001013b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2915542a", + "length": "50.0009", + "name": "tpx_tpx227921427a0", + "phases": "AS", + "to": "sx2915542a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216345b", + "length": "50.0009", + "name": "tpx_tpx338933b0", + "phases": "BS", + "to": "sx3216345b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3066814b", + "length": "50.0009", + "name": "tpx_tpx338979b0", + "phases": "BS", + "to": "sx3066814b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2861157c", + "length": "50.0009", + "name": "tpx_tpx251867c0", + "phases": "CS", + "to": "sx2861157c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3234185b", + "length": "50.0009", + "name": "tpx_tpx323388b0", + "phases": "BS", + "to": "sx3234185b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3253995c", + "length": "50.0009", + "name": "tpx_tpx21396815c0", + "phases": "CS", + "to": "sx3253995c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804258b", + "length": "50.0009", + "name": "tpx_tpx337697b0", + "phases": "BS", + "to": "sx2804258b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104114b", + "length": "50.0009", + "name": "tpx_tpx355587b0", + "phases": "BS", + "to": "sx3104114b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197646b", + "length": "50.0009", + "name": "tpx_tpx355944b0", + "phases": "BS", + "to": "sx3197646b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000412a", + "length": "50.0009", + "name": "tpx_tpx2000412a0", + "phases": "AS", + "to": "sx2000412a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785526b", + "length": "50.0009", + "name": "tpx_tpx302374b0", + "phases": "BS", + "to": "sx2785526b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748839b", + "length": "50.0009", + "name": "tpx_tpx260502b0", + "phases": "BS", + "to": "sx2748839b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2916607c", + "length": "50.0009", + "name": "tpx_tpx321882c0", + "phases": "CS", + "to": "sx2916607c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860484b", + "length": "50.0009", + "name": "tpx_tpx323255b0", + "phases": "BS", + "to": "sx2860484b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710537b", + "length": "50.0009", + "name": "tpx_tpx391744b0", + "phases": "BS", + "to": "sx2710537b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2674051a", + "length": "50.0009", + "name": "tpx_tpx21389831a0", + "phases": "AS", + "to": "sx2674051a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000906c", + "length": "50.0009", + "name": "tpx_tpx2000906c0", + "phases": "CS", + "to": "sx2000906c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2674027b", + "length": "50.0009", + "name": "tpx_tpx21380325b0", + "phases": "BS", + "to": "sx2674027b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3065696a", + "length": "50.0009", + "name": "tpx_tpx227921416a0", + "phases": "AS", + "to": "sx3065696a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2859403a", + "length": "50.0009", + "name": "tpx_tpx228001810a0", + "phases": "AS", + "to": "sx2859403a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3178974b", + "length": "50.0009", + "name": "tpx_tpx323399b0", + "phases": "BS", + "to": "sx3178974b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748130b", + "length": "50.0009", + "name": "tpx_tpx138753b0", + "phases": "BS", + "to": "sx2748130b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973148a", + "length": "50.0009", + "name": "tpx_tpx339047a0", + "phases": "AS", + "to": "sx2973148a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3179699b", + "length": "50.0009", + "name": "tpx_tpx21393454b0", + "phases": "BS", + "to": "sx3179699b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3216347c", + "length": "50.0009", + "name": "tpx_tpx138413c0", + "phases": "CS", + "to": "sx3216347c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066806c", + "length": "50.0009", + "name": "tpx_tpx275002c0", + "phases": "CS", + "to": "sx3066806c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804245b", + "length": "50.0009", + "name": "tpx_tpx355598b0", + "phases": "BS", + "to": "sx2804245b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785516b", + "length": "50.0009", + "name": "tpx_tpx138294b0", + "phases": "BS", + "to": "sx2785516b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3085403a", + "length": "50.0009", + "name": "tpx_tpx293668a0", + "phases": "AS", + "to": "sx3085403a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3189189b", + "length": "50.0009", + "name": "tpx_tpx293657b0", + "phases": "BS", + "to": "sx3189189b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2991940c", + "length": "50.0009", + "name": "tpx_tpx28148060c0", + "phases": "CS", + "to": "sx2991940c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2992657a", + "length": "50.0009", + "name": "tpx_tpx21475841a0", + "phases": "AS", + "to": "sx2992657a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197632b", + "length": "50.0009", + "name": "tpx_tpx323266b0", + "phases": "BS", + "to": "sx3197632b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010556a", + "length": "50.0009", + "name": "tpx_tpx138655a0", + "phases": "AS", + "to": "sx3010556a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2857591a", + "length": "50.0009", + "name": "tpx_tpx226101460a0", + "phases": "AS", + "to": "sx2857591a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2895461a", + "length": "50.0009", + "name": "tpx_tpx294789a0", + "phases": "AS", + "to": "sx2895461a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3141403a", + "length": "50.0009", + "name": "tpx_tpx21399707a0", + "phases": "AS", + "to": "sx3141403a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3178988b", + "length": "50.0009", + "name": "tpx_tpx339001b0", + "phases": "BS", + "to": "sx3178988b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_750_triplex_12", + "continuous_rating_C": "580.00", + "emergency_rating_C": "725.00", + "from": "x3234149c", + "length": "50.0009", + "name": "tpx_tpx227944551c0", + "phases": "CS", + "to": "sx3234149c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2841634b", + "length": "50.0009", + "name": "tpx_tpx392038b0", + "phases": "BS", + "to": "sx2841634b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729414a", + "length": "50.0009", + "name": "tpx_tpx293655a0", + "phases": "AS", + "to": "sx2729414a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3195318b", + "length": "50.0009", + "name": "tpx_tpx226194280b0", + "phases": "BS", + "to": "sx3195318b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973159a", + "length": "50.0009", + "name": "tpx_tpx21398536a0", + "phases": "AS", + "to": "sx2973159a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3179678b", + "length": "50.0009", + "name": "tpx_tpx247185b0", + "phases": "BS", + "to": "sx3179678b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3179674b", + "length": "50.0009", + "name": "tpx_tpx157716b0", + "phases": "BS", + "to": "sx3179674b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991923a", + "length": "50.0009", + "name": "tpx_tpx302735a0", + "phases": "AS", + "to": "sx2991923a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3315860b", + "length": "50.0009", + "name": "tpx_tpx2223664050b0", + "phases": "BS", + "to": "sx3315860b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897800b", + "length": "50.0009", + "name": "tpx_tpx323277b0", + "phases": "BS", + "to": "sx2897800b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197630a", + "length": "50.0009", + "name": "tpx_tpx138644a0", + "phases": "AS", + "to": "sx3197630a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216988b", + "length": "50.0009", + "name": "tpx_tpx260590b0", + "phases": "BS", + "to": "sx3216988b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973165a", + "length": "50.0009", + "name": "tpx_tpx355942a0", + "phases": "AS", + "to": "sx2973165a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2767414c", + "length": "50.0009", + "name": "tpx_tpx351019c0", + "phases": "CS", + "to": "sx2767414c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728040a", + "length": "50.0009", + "name": "tpx_tpx2224387062a0", + "phases": "AS", + "to": "sx3728040a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2730163c", + "length": "50.0009", + "name": "tpx_tpx260481c0", + "phases": "CS", + "to": "sx2730163c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973171b", + "length": "50.0009", + "name": "tpx_tpx339012b0", + "phases": "BS", + "to": "sx2973171b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048946c", + "length": "50.0009", + "name": "tpx_tpx260624c0", + "phases": "CS", + "to": "sx3048946c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748132a", + "length": "50.0009", + "name": "tpx_tpx302637a0", + "phases": "AS", + "to": "sx2748132a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160105c", + "length": "50.0009", + "name": "tpx_tpx302811c0", + "phases": "CS", + "to": "sx3160105c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822866b", + "length": "50.0009", + "name": "tpx_tpx338922b0", + "phases": "BS", + "to": "sx2822866b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235254c", + "length": "50.0009", + "name": "tpx_tpx441331c0", + "phases": "CS", + "to": "sx3235254c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048888c", + "length": "50.0009", + "name": "tpx_tpx251856c0", + "phases": "CS", + "to": "sx3048888c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_750_triplex_12", + "continuous_rating_B": "580.00", + "emergency_rating_B": "725.00", + "from": "x3234149b", + "length": "50.0009", + "name": "tpx_tpx227944551b0", + "phases": "BS", + "to": "sx3234149b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785514a", + "length": "50.0009", + "name": "tpx_tpx337675a0", + "phases": "AS", + "to": "sx2785514a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785517c", + "length": "50.0009", + "name": "tpx_tpx338957c0", + "phases": "CS", + "to": "sx2785517c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729429a", + "length": "50.0009", + "name": "tpx_tpx293644a0", + "phases": "AS", + "to": "sx2729429a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649305a", + "length": "50.0009", + "name": "tpx_tpx2224237718a0", + "phases": "AS", + "to": "sx3649305a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048230c", + "length": "50.0009", + "name": "tpx_tpx293490c0", + "phases": "CS", + "to": "sx3048230c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2913406b", + "length": "50.0009", + "name": "tpx_tpx225940756b0", + "phases": "BS", + "to": "sx2913406b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785543b", + "length": "50.0009", + "name": "tpx_tpx321860b0", + "phases": "BS", + "to": "sx2785543b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2673311a", + "length": "50.0009", + "name": "tpx_tpx21397029a0", + "phases": "AS", + "to": "sx2673311a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785525c", + "length": "50.0009", + "name": "tpx_tpx21396606c0", + "phases": "CS", + "to": "sx2785525c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3235255b", + "length": "50.0009", + "name": "tpx_tpx293519b0", + "phases": "BS", + "to": "sx3235255b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785547b", + "length": "50.0009", + "name": "tpx_tpx337705b0", + "phases": "BS", + "to": "sx2785547b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160113b", + "length": "50.0009", + "name": "tpx_tpx323284b0", + "phases": "BS", + "to": "sx3160113b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991917b", + "length": "50.0009", + "name": "tpx_tpx391757b0", + "phases": "BS", + "to": "sx2991917b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000704b", + "length": "50.0009", + "name": "tpx_tpx2000704b0", + "phases": "BS", + "to": "sx2000704b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3086075b", + "length": "50.0009", + "name": "tpx_tpx260463b0", + "phases": "BS", + "to": "sx3086075b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2917330a", + "length": "50.0009", + "name": "tpx_tpx260474a0", + "phases": "AS", + "to": "sx2917330a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2822869a", + "length": "50.0009", + "name": "tpx_tpx338942a0", + "phases": "AS", + "to": "sx2822869a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254231a", + "length": "50.0009", + "name": "tpx_tpx338988a0", + "phases": "AS", + "to": "sx3254231a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3142050c", + "length": "50.0009", + "name": "tpx_tpx251865c0", + "phases": "CS", + "to": "sx3142050c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3029505c", + "length": "50.0009", + "name": "tpx_tpx338966c0", + "phases": "CS", + "to": "sx3029505c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001011b", + "length": "50.0009", + "name": "tpx_tpx2001011b0", + "phases": "BS", + "to": "sx2001011b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916620b", + "length": "50.0009", + "name": "tpx_tpx338977b0", + "phases": "BS", + "to": "sx2916620b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841627a", + "length": "50.0009", + "name": "tpx_tpx337716a0", + "phases": "AS", + "to": "sx2841627a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235241c", + "length": "50.0009", + "name": "tpx_tpx321888c0", + "phases": "CS", + "to": "sx3235241c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673313b", + "length": "50.0009", + "name": "tpx_tpx321853b0", + "phases": "BS", + "to": "sx2673313b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879072b", + "length": "50.0009", + "name": "tpx_tpx337695b0", + "phases": "BS", + "to": "sx2879072b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2767409b", + "length": "50.0009", + "name": "tpx_tpx21391242b0", + "phases": "BS", + "to": "sx2767409b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2804249c", + "length": "50.0009", + "name": "tpx_tpx21389962c0", + "phases": "CS", + "to": "sx2804249c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x1108406b", + "length": "50.0009", + "name": "tpx_tpx2221108406b0", + "phases": "BS", + "to": "sx1108406b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3195751a", + "length": "50.0009", + "name": "tpx_tpx293681a0", + "phases": "AS", + "to": "sx3195751a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3778577c", + "length": "50.0009", + "name": "tpx_tpx2224490448c0", + "phases": "CS", + "to": "sx3778577c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104850c", + "length": "50.0009", + "name": "tpx_tpx260561c0", + "phases": "CS", + "to": "sx3104850c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2935556b", + "length": "50.0009", + "name": "tpx_tpx356064b0", + "phases": "BS", + "to": "sx2935556b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2917328b", + "length": "50.0009", + "name": "tpx_tpx21389092b0", + "phases": "BS", + "to": "sx2917328b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766723a", + "length": "50.0009", + "name": "tpx_tpx391986a0", + "phases": "AS", + "to": "sx2766723a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085388b", + "length": "50.0009", + "name": "tpx_tpx391746b0", + "phases": "BS", + "to": "sx3085388b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785519a", + "length": "50.0009", + "name": "tpx_tpx138566a0", + "phases": "AS", + "to": "sx2785519a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3065665a", + "length": "50.0009", + "name": "tpx_tpx227895952a0", + "phases": "AS", + "to": "sx3065665a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000715b", + "length": "50.0009", + "name": "tpx_tpx2000715b0", + "phases": "BS", + "to": "sx2000715b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001309a", + "length": "50.0009", + "name": "tpx_tpx2001309a0", + "phases": "AS", + "to": "sx2001309a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2674052c", + "length": "50.0009", + "name": "tpx_tpx21393570c0", + "phases": "CS", + "to": "sx2674052c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048937c", + "length": "50.0009", + "name": "tpx_tpx356789c0", + "phases": "CS", + "to": "sx3048937c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2879062c", + "length": "50.0009", + "name": "tpx_tpx21385192c0", + "phases": "CS", + "to": "sx2879062c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3177665a", + "length": "50.0009", + "name": "tpx_tpx227731863a0", + "phases": "AS", + "to": "sx3177665a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785521c", + "length": "50.0009", + "name": "tpx_tpx338931c0", + "phases": "CS", + "to": "sx2785521c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3198358b", + "length": "50.0009", + "name": "tpx_tpx138797b0", + "phases": "BS", + "to": "sx3198358b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2822861a", + "length": "50.0009", + "name": "tpx_tpx21015829a0", + "phases": "AS", + "to": "sx2822861a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2916620c", + "length": "50.0009", + "name": "tpx_tpx338977c0", + "phases": "CS", + "to": "sx2916620c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2916602a", + "length": "50.0009", + "name": "tpx_tpx339049a0", + "phases": "AS", + "to": "sx2916602a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254206b", + "length": "50.0009", + "name": "tpx_tpx355592b0", + "phases": "BS", + "to": "sx3254206b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3066818b", + "length": "50.0009", + "name": "tpx_tpx138751b0", + "phases": "BS", + "to": "sx3066818b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2710509c", + "length": "50.0009", + "name": "tpx_tpx275000c0", + "phases": "CS", + "to": "sx2710509c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x1108406a", + "length": "50.0009", + "name": "tpx_tpx2221108406a0", + "phases": "AS", + "to": "sx1108406a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2729206c", + "length": "50.0009", + "name": "tpx_tpx2212168866c0", + "phases": "CS", + "to": "sx2729206c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3123452c", + "length": "50.0009", + "name": "tpx_tpx260574c0", + "phases": "CS", + "to": "sx3123452c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2673315a", + "length": "50.0009", + "name": "tpx_tpx247058a0", + "phases": "AS", + "to": "sx2673315a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3027122a", + "length": "50.0009", + "name": "tpx_tpx226194865a0", + "phases": "AS", + "to": "sx3027122a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3029498c", + "length": "50.0009", + "name": "tpx_tpx247036c0", + "phases": "CS", + "to": "sx3029498c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3066826b", + "length": "50.0009", + "name": "tpx_tpx339003b0", + "phases": "BS", + "to": "sx3066826b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2841624b", + "length": "50.0009", + "name": "tpx_tpx355604b0", + "phases": "BS", + "to": "sx2841624b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000913c", + "length": "50.0009", + "name": "tpx_tpx2000913c0", + "phases": "CS", + "to": "sx2000913c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197631a", + "length": "50.0009", + "name": "tpx_tpx338920a0", + "phases": "AS", + "to": "sx3197631a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3010560b", + "length": "50.0009", + "name": "tpx_tpx338955b0", + "phases": "BS", + "to": "sx3010560b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197640c", + "length": "50.0009", + "name": "tpx_tpx338944c0", + "phases": "CS", + "to": "sx3197640c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3159448a", + "length": "50.0009", + "name": "tpx_tpx337684a0", + "phases": "AS", + "to": "sx3159448a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2954361b", + "length": "50.0009", + "name": "tpx_tpx21383494b0", + "phases": "BS", + "to": "sx2954361b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3215385c", + "length": "50.0009", + "name": "tpx_tpx21384099c0", + "phases": "CS", + "to": "sx3215385c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841639a", + "length": "50.0009", + "name": "tpx_tpx355937a0", + "phases": "AS", + "to": "sx2841639a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3120504a", + "length": "50.0009", + "name": "tpx_tpx225897846a0", + "phases": "AS", + "to": "sx3120504a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3027124c", + "length": "50.0009", + "name": "tpx_tpx226195194c0", + "phases": "CS", + "to": "sx3027124c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748135a", + "length": "50.0009", + "name": "tpx_tpx28150172a0", + "phases": "AS", + "to": "sx2748135a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235256a", + "length": "50.0009", + "name": "tpx_tpx138642a0", + "phases": "AS", + "to": "sx3235256a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3101787a", + "length": "50.0009", + "name": "tpx_tpx321877a0", + "phases": "AS", + "to": "sx3101787a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3141400a", + "length": "50.0009", + "name": "tpx_tpx138313a0", + "phases": "AS", + "to": "sx3141400a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916603b", + "length": "50.0009", + "name": "tpx_tpx323403b0", + "phases": "BS", + "to": "sx2916603b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141395c", + "length": "50.0009", + "name": "tpx_tpx28149184c0", + "phases": "CS", + "to": "sx3141395c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122818c", + "length": "50.0009", + "name": "tpx_tpx28120183c0", + "phases": "CS", + "to": "sx3122818c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2916620a", + "length": "50.0009", + "name": "tpx_tpx338977a0", + "phases": "AS", + "to": "sx2916620a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3030205c", + "length": "50.0009", + "name": "tpx_tpx21390038c0", + "phases": "CS", + "to": "sx3030205c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254228b", + "length": "50.0009", + "name": "tpx_tpx325474b0", + "phases": "BS", + "to": "sx3254228b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2895449c", + "length": "50.0009", + "name": "tpx_tpx226193134c0", + "phases": "CS", + "to": "sx2895449c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2955081a", + "length": "50.0009", + "name": "tpx_tpx260508a0", + "phases": "AS", + "to": "sx2955081a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2859391b", + "length": "50.0009", + "name": "tpx_tpx227989724b0", + "phases": "BS", + "to": "sx2859391b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3215385b", + "length": "50.0009", + "name": "tpx_tpx21384099b0", + "phases": "BS", + "to": "sx3215385b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3008232b", + "length": "50.0009", + "name": "tpx_tpx226192492b0", + "phases": "BS", + "to": "sx3008232b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841618a", + "length": "50.0009", + "name": "tpx_tpx337673a0", + "phases": "AS", + "to": "sx2841618a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766727b", + "length": "50.0009", + "name": "tpx_tpx302367b0", + "phases": "BS", + "to": "sx2766727b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3030203c", + "length": "50.0009", + "name": "tpx_tpx260639c0", + "phases": "CS", + "to": "sx3030203c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2861197c", + "length": "50.0009", + "name": "tpx_tpx21474711c0", + "phases": "CS", + "to": "sx2861197c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2814529a", + "length": "50.0009", + "name": "tpx_tpx28120126a0", + "phases": "AS", + "to": "sx2814529a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216350a", + "length": "50.0009", + "name": "tpx_tpx391977a0", + "phases": "AS", + "to": "sx3216350a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197628c", + "length": "50.0009", + "name": "tpx_tpx138651c0", + "phases": "CS", + "to": "sx3197628c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2989564b", + "length": "50.0009", + "name": "tpx_tpx323286b0", + "phases": "BS", + "to": "sx2989564b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3195310a", + "length": "50.0009", + "name": "tpx_tpx226192185a0", + "phases": "AS", + "to": "sx3195310a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2916609c", + "length": "50.0009", + "name": "tpx_tpx138346c0", + "phases": "CS", + "to": "sx2916609c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973161a", + "length": "50.0009", + "name": "tpx_tpx293592a0", + "phases": "AS", + "to": "sx2973161a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841616a", + "length": "50.0009", + "name": "tpx_tpx21031684a0", + "phases": "AS", + "to": "sx2841616a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2936268c", + "length": "50.0009", + "name": "tpx_tpx223655c0", + "phases": "CS", + "to": "sx2936268c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2861223b", + "length": "50.0009", + "name": "tpx_tpx260461b0", + "phases": "BS", + "to": "sx2861223b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000706b", + "length": "50.0009", + "name": "tpx_tpx2000706b0", + "phases": "BS", + "to": "sx2000706b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3125349c", + "length": "50.0009", + "name": "tpx_tpx226193698c0", + "phases": "CS", + "to": "sx3125349c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2839305a", + "length": "50.0009", + "name": "tpx_tpx28150292a0", + "phases": "AS", + "to": "sx2839305a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3102286b", + "length": "50.0009", + "name": "tpx_tpx226308729b0", + "phases": "BS", + "to": "sx3102286b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2748128c", + "length": "50.0009", + "name": "tpx_tpx337629c0", + "phases": "CS", + "to": "sx2748128c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104117c", + "length": "50.0009", + "name": "tpx_tpx338964c0", + "phases": "CS", + "to": "sx3104117c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2745811c", + "length": "50.0009", + "name": "tpx_tpx251863c0", + "phases": "CS", + "to": "sx2745811c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785538a", + "length": "50.0009", + "name": "tpx_tpx338986a0", + "phases": "AS", + "to": "sx2785538a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197644a", + "length": "50.0009", + "name": "tpx_tpx138771a0", + "phases": "AS", + "to": "sx3197644a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729434b", + "length": "50.0009", + "name": "tpx_tpx321851b0", + "phases": "BS", + "to": "sx2729434b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160104b", + "length": "50.0009", + "name": "tpx_tpx337707b0", + "phases": "BS", + "to": "sx3160104b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2691947a", + "length": "50.0009", + "name": "tpx_tpx337718a0", + "phases": "AS", + "to": "sx2691947a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766746c", + "length": "50.0009", + "name": "tpx_tpx321886c0", + "phases": "CS", + "to": "sx2766746c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104133a", + "length": "50.0009", + "name": "tpx_tpx293483a0", + "phases": "AS", + "to": "sx3104133a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x1108404b", + "length": "50.0009", + "name": "tpx_tpx2221108404b0", + "phases": "BS", + "to": "sx1108404b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2684420b", + "length": "50.0009", + "name": "tpx_tpx225498968b0", + "phases": "BS", + "to": "sx2684420b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3066813b", + "length": "50.0009", + "name": "tpx_tpx337693b0", + "phases": "BS", + "to": "sx3066813b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2917255c", + "length": "50.0009", + "name": "tpx_tpx21386065c0", + "phases": "CS", + "to": "sx2917255c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2914323b", + "length": "50.0009", + "name": "tpx_tpx355376b0", + "phases": "BS", + "to": "sx2914323b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3177894a", + "length": "50.0009", + "name": "tpx_tpx227903012a0", + "phases": "AS", + "to": "sx3177894a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841628a", + "length": "50.0009", + "name": "tpx_tpx28120786a0", + "phases": "AS", + "to": "sx2841628a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122816b", + "length": "50.0009", + "name": "tpx_tpx356062b0", + "phases": "BS", + "to": "sx3122816b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991902b", + "length": "50.0009", + "name": "tpx_tpx391748b0", + "phases": "BS", + "to": "sx2991902b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804283a", + "length": "50.0009", + "name": "tpx_tpx138564a0", + "phases": "AS", + "to": "sx2804283a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2814529b", + "length": "50.0009", + "name": "tpx_tpx28120126b0", + "phases": "BS", + "to": "sx2814529b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001307a", + "length": "50.0009", + "name": "tpx_tpx2001307a0", + "phases": "AS", + "to": "sx2001307a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000902c", + "length": "50.0009", + "name": "tpx_tpx2000902c0", + "phases": "CS", + "to": "sx2000902c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785531a", + "length": "50.0009", + "name": "tpx_tpx21399809a0", + "phases": "AS", + "to": "sx2785531a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879074a", + "length": "50.0009", + "name": "tpx_tpx310560a0", + "phases": "AS", + "to": "sx2879074a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804256b", + "length": "50.0009", + "name": "tpx_tpx321840b0", + "phases": "BS", + "to": "sx2804256b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2823611a", + "length": "50.0009", + "name": "tpx_tpx21386877a0", + "phases": "AS", + "to": "sx2823611a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2728247a", + "length": "50.0009", + "name": "tpx_tpx337729a0", + "phases": "AS", + "to": "sx2728247a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x1108404a", + "length": "50.0009", + "name": "tpx_tpx2221108404a0", + "phases": "AS", + "to": "sx1108404a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048196b", + "length": "50.0009", + "name": "tpx_tpx138237b0", + "phases": "BS", + "to": "sx3048196b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2898457a", + "length": "50.0009", + "name": "tpx_tpx260594a0", + "phases": "AS", + "to": "sx2898457a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048214a", + "length": "50.0009", + "name": "tpx_tpx302474a0", + "phases": "AS", + "to": "sx3048214a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3236004c", + "length": "50.0009", + "name": "tpx_tpx260572c0", + "phases": "CS", + "to": "sx3236004c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728043a", + "length": "50.0009", + "name": "tpx_tpx2224387138a0", + "phases": "AS", + "to": "sx3728043a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785535b", + "length": "50.0009", + "name": "tpx_tpx339005b0", + "phases": "BS", + "to": "sx2785535b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197642c", + "length": "50.0009", + "name": "tpx_tpx391979c0", + "phases": "CS", + "to": "sx3197642c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991912a", + "length": "50.0009", + "name": "tpx_tpx247056a0", + "phases": "AS", + "to": "sx2991912a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991901b", + "length": "50.0009", + "name": "tpx_tpx354851b0", + "phases": "BS", + "to": "sx2991901b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141399c", + "length": "50.0009", + "name": "tpx_tpx302804c0", + "phases": "CS", + "to": "sx3141399c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000915c", + "length": "50.0009", + "name": "tpx_tpx2000915c0", + "phases": "CS", + "to": "sx2000915c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029510b", + "length": "50.0009", + "name": "tpx_tpx355606b0", + "phases": "BS", + "to": "sx3029510b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048205c", + "length": "50.0009", + "name": "tpx_tpx274994c0", + "phases": "CS", + "to": "sx3048205c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3143999a", + "length": "50.0009", + "name": "tpx_tpx226193696a0", + "phases": "AS", + "to": "sx3143999a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160793c", + "length": "50.0009", + "name": "tpx_tpx28147899c0", + "phases": "CS", + "to": "sx3160793c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3027133a", + "length": "50.0009", + "name": "tpx_tpx226101449a0", + "phases": "AS", + "to": "sx3027133a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122821b", + "length": "50.0009", + "name": "tpx_tpx338953b0", + "phases": "BS", + "to": "sx3122821b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822873b", + "length": "50.0009", + "name": "tpx_tpx338999b0", + "phases": "BS", + "to": "sx2822873b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2728247b", + "length": "50.0009", + "name": "tpx_tpx337729b0", + "phases": "BS", + "to": "sx2728247b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2691973a", + "length": "50.0009", + "name": "tpx_tpx355935a0", + "phases": "AS", + "to": "sx2691973a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2973158c", + "length": "50.0009", + "name": "tpx_tpx138259c0", + "phases": "CS", + "to": "sx2973158c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2935557a", + "length": "50.0009", + "name": "tpx_tpx21397005a0", + "phases": "AS", + "to": "sx2935557a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897769c", + "length": "50.0009", + "name": "tpx_tpx337660c0", + "phases": "CS", + "to": "sx2897769c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254205c", + "length": "50.0009", + "name": "tpx_tpx302672c0", + "phases": "CS", + "to": "sx3254205c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879752b", + "length": "50.0009", + "name": "tpx_tpx330122b0", + "phases": "BS", + "to": "sx2879752b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2983432a", + "length": "50.0009", + "name": "tpx_tpx225534325a0", + "phases": "AS", + "to": "sx2983432a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2691936a", + "length": "50.0009", + "name": "tpx_tpx356009a0", + "phases": "AS", + "to": "sx2691936a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879767b", + "length": "50.0009", + "name": "tpx_tpx260496b0", + "phases": "BS", + "to": "sx2879767b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048203b", + "length": "50.0009", + "name": "tpx_tpx323273b0", + "phases": "BS", + "to": "sx3048203b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973149b", + "length": "50.0009", + "name": "tpx_tpx325472b0", + "phases": "BS", + "to": "sx2973149b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3176660b", + "length": "50.0009", + "name": "tpx_tpx226193892b0", + "phases": "BS", + "to": "sx3176660b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2860486c", + "length": "50.0009", + "name": "tpx_tpx28127390c0", + "phases": "CS", + "to": "sx2860486c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2745806c", + "length": "50.0009", + "name": "tpx_tpx226194262c0", + "phases": "CS", + "to": "sx2745806c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785537a", + "length": "50.0009", + "name": "tpx_tpx338975a0", + "phases": "AS", + "to": "sx2785537a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3235273b", + "length": "50.0009", + "name": "tpx_tpx339016b0", + "phases": "BS", + "to": "sx3235273b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254207a", + "length": "50.0009", + "name": "tpx_tpx337671a0", + "phases": "AS", + "to": "sx3254207a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2728247c", + "length": "50.0009", + "name": "tpx_tpx337729c0", + "phases": "CS", + "to": "sx2728247c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001209c", + "length": "50.0009", + "name": "tpx_tpx2001209c0", + "phases": "CS", + "to": "sx2001209c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2764411c", + "length": "50.0009", + "name": "tpx_tpx226010605c0", + "phases": "CS", + "to": "sx2764411c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879071b", + "length": "50.0009", + "name": "tpx_tpx337701b0", + "phases": "BS", + "to": "sx2879071b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254220c", + "length": "50.0009", + "name": "tpx_tpx138717c0", + "phases": "CS", + "to": "sx3254220c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766748a", + "length": "50.0009", + "name": "tpx_tpx21470326a0", + "phases": "AS", + "to": "sx2766748a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710512b", + "length": "50.0009", + "name": "tpx_tpx323280b0", + "phases": "BS", + "to": "sx2710512b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673323c", + "length": "50.0009", + "name": "tpx_tpx355438c0", + "phases": "CS", + "to": "sx2673323c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235945c", + "length": "50.0009", + "name": "tpx_tpx356796c0", + "phases": "CS", + "to": "sx3235945c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2954350c", + "length": "50.0009", + "name": "tpx_tpx302809c0", + "phases": "CS", + "to": "sx2954350c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3198355b", + "length": "50.0009", + "name": "tpx_tpx207288b0", + "phases": "BS", + "to": "sx3198355b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822867b", + "length": "50.0009", + "name": "tpx_tpx21386552b0", + "phases": "BS", + "to": "sx2822867b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2879055c", + "length": "50.0009", + "name": "tpx_tpx138465c0", + "phases": "CS", + "to": "sx2879055c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3085399c", + "length": "50.0009", + "name": "tpx_tpx302862c0", + "phases": "CS", + "to": "sx3085399c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3085393c", + "length": "50.0009", + "name": "tpx_tpx337627c0", + "phases": "CS", + "to": "sx3085393c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160117b", + "length": "50.0009", + "name": "tpx_tpx21357901b0", + "phases": "BS", + "to": "sx3160117b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122847a", + "length": "50.0009", + "name": "tpx_tpx21483138a0", + "phases": "AS", + "to": "sx3122847a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822872b", + "length": "50.0009", + "name": "tpx_tpx338950b0", + "phases": "BS", + "to": "sx2822872b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2991911c", + "length": "50.0009", + "name": "tpx_tpx138258c0", + "phases": "CS", + "to": "sx2991911c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3030200c", + "length": "50.0009", + "name": "tpx_tpx260554c0", + "phases": "CS", + "to": "sx3030200c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897774b", + "length": "50.0009", + "name": "tpx_tpx337691b0", + "phases": "BS", + "to": "sx2897774b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2692664c", + "length": "50.0009", + "name": "tpx_tpx351021c0", + "phases": "CS", + "to": "sx2692664c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673314c", + "length": "50.0009", + "name": "tpx_tpx355778c0", + "phases": "CS", + "to": "sx2673314c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3178978a", + "length": "50.0009", + "name": "tpx_tpx337723a0", + "phases": "AS", + "to": "sx3178978a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748127a", + "length": "50.0009", + "name": "tpx_tpx338919a0", + "phases": "AS", + "to": "sx2748127a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001305a", + "length": "50.0009", + "name": "tpx_tpx2001305a0", + "phases": "AS", + "to": "sx2001305a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2842390c", + "length": "50.0009", + "name": "tpx_tpx21325725c0", + "phases": "CS", + "to": "sx2842390c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x1108403c", + "length": "50.0009", + "name": "tpx_tpx2221108403c0", + "phases": "CS", + "to": "sx1108403c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2916605c", + "length": "50.0009", + "name": "tpx_tpx274987c0", + "phases": "CS", + "to": "sx2916605c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2948732b", + "length": "50.0009", + "name": "tpx_tpx225571845b0", + "phases": "BS", + "to": "sx2948732b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2801895b", + "length": "50.0009", + "name": "tpx_tpx226191951b0", + "phases": "BS", + "to": "sx2801895b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2879089c", + "length": "50.0009", + "name": "tpx_tpx21455388c0", + "phases": "CS", + "to": "sx2879089c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860477a", + "length": "50.0009", + "name": "tpx_tpx28121587a0", + "phases": "AS", + "to": "sx2860477a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216361b", + "length": "50.0009", + "name": "tpx_tpx21452406b0", + "phases": "BS", + "to": "sx3216361b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3216368c", + "length": "50.0009", + "name": "tpx_tpx293663c0", + "phases": "CS", + "to": "sx3216368c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3008237c", + "length": "50.0009", + "name": "tpx_tpx226193838c0", + "phases": "CS", + "to": "sx3008237c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235245c", + "length": "50.0009", + "name": "tpx_tpx337712c0", + "phases": "CS", + "to": "sx3235245c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991907a", + "length": "50.0009", + "name": "tpx_tpx138574a0", + "phases": "AS", + "to": "sx2991907a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122815b", + "length": "50.0009", + "name": "tpx_tpx321858b0", + "phases": "BS", + "to": "sx3122815b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729427b", + "length": "50.0009", + "name": "tpx_tpx323249b0", + "phases": "BS", + "to": "sx2729427b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916617b", + "length": "50.0009", + "name": "tpx_tpx339007b0", + "phases": "BS", + "to": "sx2916617b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804247b", + "length": "50.0009", + "name": "tpx_tpx391737b0", + "phases": "BS", + "to": "sx2804247b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3214112b", + "length": "50.0009", + "name": "tpx_tpx226881057b0", + "phases": "BS", + "to": "sx3214112b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048965b", + "length": "50.0009", + "name": "tpx_tpx260641b0", + "phases": "BS", + "to": "sx3048965b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2710510c", + "length": "50.0009", + "name": "tpx_tpx138650c0", + "phases": "CS", + "to": "sx2710510c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649298a", + "length": "50.0009", + "name": "tpx_tpx2224237384a0", + "phases": "AS", + "to": "sx3649298a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x1108403b", + "length": "50.0009", + "name": "tpx_tpx2221108403b0", + "phases": "BS", + "to": "sx1108403b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879065b", + "length": "50.0009", + "name": "tpx_tpx247126b0", + "phases": "BS", + "to": "sx2879065b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897792a", + "length": "50.0009", + "name": "tpx_tpx338985a0", + "phases": "AS", + "to": "sx2897792a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2822868a", + "length": "50.0009", + "name": "tpx_tpx21397544a0", + "phases": "AS", + "to": "sx2822868a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3727707a", + "length": "50.0009", + "name": "tpx_tpx2224386750a0", + "phases": "AS", + "to": "sx3727707a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066817a", + "length": "50.0009", + "name": "tpx_tpx21373784a0", + "phases": "AS", + "to": "sx3066817a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729424a", + "length": "50.0009", + "name": "tpx_tpx339018a0", + "phases": "AS", + "to": "sx2729424a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897781a", + "length": "50.0009", + "name": "tpx_tpx138770a0", + "phases": "AS", + "to": "sx2897781a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2955005b", + "length": "50.0009", + "name": "tpx_tpx260589b0", + "phases": "BS", + "to": "sx2955005b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673303c", + "length": "50.0009", + "name": "tpx_tpx338963c0", + "phases": "CS", + "to": "sx2673303c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3086074c", + "length": "50.0009", + "name": "tpx_tpx260532c0", + "phases": "CS", + "to": "sx3086074c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2989565a", + "length": "50.0009", + "name": "tpx_tpx21389237a0", + "phases": "AS", + "to": "sx2989565a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2954355a", + "length": "50.0009", + "name": "tpx_tpx293672a0", + "phases": "AS", + "to": "sx2954355a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_cap_3a_PUZ_A", + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "q16642", + "length": "0.0033", + "name": "line_cap_3a", + "phases": "A", + "to": "q16642_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197634b", + "length": "50.0009", + "name": "tpx_tpx355767b0", + "phases": "BS", + "to": "sx3197634b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973155a", + "length": "50.0009", + "name": "tpx_tpx338898a0", + "phases": "AS", + "to": "sx2973155a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_cap_3c_PUZ_C", + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "q16642", + "length": "0.0033", + "name": "line_cap_3c", + "phases": "C", + "to": "q16642_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2916627a", + "length": "50.0009", + "name": "tpx_tpx138563a0", + "phases": "AS", + "to": "sx2916627a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2806553c", + "length": "50.0009", + "name": "tpx_tpx227411655c0", + "phases": "CS", + "to": "sx2806553c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160100b", + "length": "50.0009", + "name": "tpx_tpx321847b0", + "phases": "BS", + "to": "sx3160100b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_cap_3b_PUZ_B", + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "q16642", + "length": "0.0033", + "name": "line_cap_3b", + "phases": "B", + "to": "q16642_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3263051c", + "length": "50.0009", + "name": "tpx_tpx2212371533c0", + "phases": "CS", + "to": "sx3263051c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991919a", + "length": "50.0009", + "name": "tpx_tpx302400a0", + "phases": "AS", + "to": "sx2991919a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2786204c", + "length": "50.0009", + "name": "tpx_tpx223662c0", + "phases": "CS", + "to": "sx2786204c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000712b", + "length": "50.0009", + "name": "tpx_tpx2000712b0", + "phases": "BS", + "to": "sx2000712b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3215340a", + "length": "50.0009", + "name": "tpx_tpx228057846a0", + "phases": "AS", + "to": "sx3215340a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066819a", + "length": "50.0009", + "name": "tpx_tpx302677a0", + "phases": "AS", + "to": "sx3066819a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2745799c", + "length": "50.0009", + "name": "tpx_tpx226191779c0", + "phases": "CS", + "to": "sx2745799c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2801902b", + "length": "50.0009", + "name": "tpx_tpx226194002b0", + "phases": "BS", + "to": "sx2801902b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3141389a", + "length": "50.0009", + "name": "tpx_tpx356007a0", + "phases": "AS", + "to": "sx3141389a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104856a", + "length": "50.0009", + "name": "tpx_tpx260467a0", + "phases": "AS", + "to": "sx3104856a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3091052a", + "length": "50.0009", + "name": "tpx_tpx228532641a0", + "phases": "AS", + "to": "sx3091052a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000405a", + "length": "50.0009", + "name": "tpx_tpx2000405a0", + "phases": "AS", + "to": "sx2000405a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973150a", + "length": "50.0009", + "name": "tpx_tpx21380528a0", + "phases": "AS", + "to": "sx2973150a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001207c", + "length": "50.0009", + "name": "tpx_tpx2001207c0", + "phases": "CS", + "to": "sx2001207c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2955077c", + "length": "50.0009", + "name": "tpx_tpx260543c0", + "phases": "CS", + "to": "sx2955077c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x1108403a", + "length": "50.0009", + "name": "tpx_tpx2221108403a0", + "phases": "AS", + "to": "sx1108403a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3727708a", + "length": "50.0009", + "name": "tpx_tpx2224386815a0", + "phases": "AS", + "to": "sx3727708a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3120376a", + "length": "50.0009", + "name": "tpx_tpx226163467a0", + "phases": "AS", + "to": "sx3120376a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691948b", + "length": "50.0009", + "name": "tpx_tpx337703b0", + "phases": "BS", + "to": "sx2691948b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3251808a", + "length": "50.0009", + "name": "tpx_tpx226029836a0", + "phases": "AS", + "to": "sx3251808a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235266c", + "length": "50.0009", + "name": "tpx_tpx302807c0", + "phases": "CS", + "to": "sx3235266c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085410b", + "length": "50.0009", + "name": "tpx_tpx339097b0", + "phases": "BS", + "to": "sx3085410b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897791b", + "length": "50.0009", + "name": "tpx_tpx323282b0", + "phases": "BS", + "to": "sx2897791b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2692600c", + "length": "50.0009", + "name": "tpx_tpx356798c0", + "phases": "CS", + "to": "sx2692600c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197627c", + "length": "50.0009", + "name": "tpx_tpx337625c0", + "phases": "CS", + "to": "sx3197627c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048227a", + "length": "50.0009", + "name": "tpx_tpx337647a0", + "phases": "AS", + "to": "sx3048227a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2936271a", + "length": "50.0009", + "name": "tpx_tpx260476a0", + "phases": "AS", + "to": "sx2936271a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673326b", + "length": "50.0009", + "name": "tpx_tpx355601b0", + "phases": "BS", + "to": "sx2673326b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001314a", + "length": "50.0009", + "name": "tpx_tpx2001314a0", + "phases": "AS", + "to": "sx2001314a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000910c", + "length": "50.0009", + "name": "tpx_tpx2000910c0", + "phases": "CS", + "to": "sx2000910c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122819c", + "length": "50.0009", + "name": "tpx_tpx302860c0", + "phases": "CS", + "to": "sx3122819c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2989571a", + "length": "50.0009", + "name": "tpx_tpx225991691a0", + "phases": "AS", + "to": "sx2989571a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3215385a", + "length": "50.0009", + "name": "tpx_tpx21384099a0", + "phases": "AS", + "to": "sx3215385a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160115b", + "length": "50.0009", + "name": "tpx_tpx338994b0", + "phases": "BS", + "to": "sx3160115b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2688692b", + "length": "50.0009", + "name": "tpx_tpx225918926b0", + "phases": "BS", + "to": "sx2688692b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2692633c", + "length": "50.0009", + "name": "tpx_tpx328364c0", + "phases": "CS", + "to": "sx2692633c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3142079b", + "length": "50.0009", + "name": "tpx_tpx21249626b0", + "phases": "BS", + "to": "sx3142079b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254238b", + "length": "50.0009", + "name": "tpx_tpx293487b0", + "phases": "BS", + "to": "sx3254238b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3101788a", + "length": "50.0009", + "name": "tpx_tpx321878a0", + "phases": "AS", + "to": "sx3101788a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2935555a", + "length": "50.0009", + "name": "tpx_tpx338917a0", + "phases": "AS", + "to": "sx2935555a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2970804c", + "length": "50.0009", + "name": "tpx_tpx356787c0", + "phases": "CS", + "to": "sx2970804c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897778a", + "length": "50.0009", + "name": "tpx_tpx302468a0", + "phases": "AS", + "to": "sx2897778a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048209b", + "length": "50.0009", + "name": "tpx_tpx28120195b0", + "phases": "BS", + "to": "sx3048209b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3231255c", + "length": "50.0009", + "name": "tpx_tpx339051c0", + "phases": "CS", + "to": "sx3231255c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3066830b", + "length": "50.0009", + "name": "tpx_tpx21469960b0", + "phases": "BS", + "to": "sx3066830b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673306c", + "length": "50.0009", + "name": "tpx_tpx293608c0", + "phases": "CS", + "to": "sx2673306c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2822864c", + "length": "50.0009", + "name": "tpx_tpx274985c0", + "phases": "CS", + "to": "sx2822864c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3176656a", + "length": "50.0009", + "name": "tpx_tpx226193170a0", + "phases": "AS", + "to": "sx3176656a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2726975b", + "length": "50.0009", + "name": "tpx_tpx226193422b0", + "phases": "BS", + "to": "sx2726975b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2692654a", + "length": "50.0009", + "name": "tpx_tpx260487a0", + "phases": "AS", + "to": "sx2692654a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001303a", + "length": "50.0009", + "name": "tpx_tpx2001303a0", + "phases": "AS", + "to": "sx2001303a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3231269b", + "length": "50.0009", + "name": "tpx_tpx225684682b0", + "phases": "BS", + "to": "sx3231269b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2690868c", + "length": "50.0009", + "name": "tpx_tpx227917127c0", + "phases": "CS", + "to": "sx2690868c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3141401a", + "length": "50.0009", + "name": "tpx_tpx338970a0", + "phases": "AS", + "to": "sx3141401a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3101782a", + "length": "50.0009", + "name": "tpx_tpx356808a0", + "phases": "AS", + "to": "sx3101782a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3159037b", + "length": "50.0009", + "name": "tpx_tpx323391b0", + "phases": "BS", + "to": "sx3159037b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001009b", + "length": "50.0009", + "name": "tpx_tpx2001009b0", + "phases": "BS", + "to": "sx2001009b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3179650b", + "length": "50.0009", + "name": "tpx_tpx251828b0", + "phases": "BS", + "to": "sx3179650b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3010565c", + "length": "50.0009", + "name": "tpx_tpx138343c0", + "phases": "CS", + "to": "sx3010565c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728037a", + "length": "50.0009", + "name": "tpx_tpx2224386946a0", + "phases": "AS", + "to": "sx3728037a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3067478a", + "length": "50.0009", + "name": "tpx_tpx260598a0", + "phases": "AS", + "to": "sx3067478a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860506b", + "length": "50.0009", + "name": "tpx_tpx321856b0", + "phases": "BS", + "to": "sx2860506b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254209c", + "length": "50.0009", + "name": "tpx_tpx337714c0", + "phases": "CS", + "to": "sx3254209c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2860481c", + "length": "50.0009", + "name": "tpx_tpx338908c0", + "phases": "CS", + "to": "sx2860481c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2692661a", + "length": "50.0009", + "name": "tpx_tpx260650a0", + "phases": "AS", + "to": "sx2692661a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2954339b", + "length": "50.0009", + "name": "tpx_tpx391739b0", + "phases": "BS", + "to": "sx2954339b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000703b", + "length": "50.0009", + "name": "tpx_tpx2000703b0", + "phases": "BS", + "to": "sx2000703b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2952013a", + "length": "50.0009", + "name": "tpx_tpx355843a0", + "phases": "AS", + "to": "sx2952013a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2952003b", + "length": "50.0009", + "name": "tpx_tpx337614b0", + "phases": "BS", + "to": "sx2952003b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254208c", + "length": "50.0009", + "name": "tpx_tpx338961c0", + "phases": "CS", + "to": "sx3254208c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2841632b", + "length": "50.0009", + "name": "tpx_tpx338972b0", + "phases": "BS", + "to": "sx2841632b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3030126c", + "length": "50.0009", + "name": "tpx_tpx260576c0", + "phases": "CS", + "to": "sx3030126c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3198348a", + "length": "50.0009", + "name": "tpx_tpx260552a0", + "phases": "AS", + "to": "sx3198348a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104121a", + "length": "50.0009", + "name": "tpx_tpx138561a0", + "phases": "AS", + "to": "sx3104121a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3178975b", + "length": "50.0009", + "name": "tpx_tpx321845b0", + "phases": "BS", + "to": "sx3178975b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3030204a", + "length": "50.0009", + "name": "tpx_tpx52107636a0", + "phases": "AS", + "to": "sx3030204a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197637c", + "length": "50.0009", + "name": "tpx_tpx138585c0", + "phases": "CS", + "to": "sx3197637c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000407a", + "length": "50.0009", + "name": "tpx_tpx2000407a0", + "phases": "AS", + "to": "sx2000407a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3178971a", + "length": "50.0009", + "name": "tpx_tpx338896a0", + "phases": "AS", + "to": "sx3178971a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2689678b", + "length": "50.0009", + "name": "tpx_tpx226192762b0", + "phases": "BS", + "to": "sx2689678b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2954354a", + "length": "50.0009", + "name": "tpx_tpx302675a0", + "phases": "AS", + "to": "sx2954354a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973169a", + "length": "50.0009", + "name": "tpx_tpx21397304a0", + "phases": "AS", + "to": "sx2973169a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000714b", + "length": "50.0009", + "name": "tpx_tpx2000714b0", + "phases": "BS", + "to": "sx2000714b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804253a", + "length": "50.0009", + "name": "tpx_tpx21396254a0", + "phases": "AS", + "to": "sx2804253a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710513b", + "length": "50.0009", + "name": "tpx_tpx325245b0", + "phases": "BS", + "to": "sx2710513b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822858b", + "length": "50.0009", + "name": "tpx_tpx355591b0", + "phases": "BS", + "to": "sx2822858b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001205c", + "length": "50.0009", + "name": "tpx_tpx2001205c0", + "phases": "CS", + "to": "sx2001205c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2841641b", + "length": "50.0009", + "name": "tpx_tpx21380156b0", + "phases": "BS", + "to": "sx2841641b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691965b", + "length": "50.0009", + "name": "tpx_tpx338983b0", + "phases": "BS", + "to": "sx2691965b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3086098a", + "length": "50.0009", + "name": "tpx_tpx21474556a0", + "phases": "AS", + "to": "sx3086098a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2858163a", + "length": "50.0009", + "name": "tpx_tpx391990a0", + "phases": "AS", + "to": "sx2858163a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860491b", + "length": "50.0009", + "name": "tpx_tpx302733b0", + "phases": "BS", + "to": "sx2860491b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3101789a", + "length": "50.0009", + "name": "tpx_tpx294842a0", + "phases": "AS", + "to": "sx3101789a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2917333a", + "length": "50.0009", + "name": "tpx_tpx260632a0", + "phases": "AS", + "to": "sx2917333a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3729298a", + "length": "50.0009", + "name": "tpx_tpx2224386617a0", + "phases": "AS", + "to": "sx3729298a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197626c", + "length": "50.0009", + "name": "tpx_tpx337623c0", + "phases": "CS", + "to": "sx3197626c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001312a", + "length": "50.0009", + "name": "tpx_tpx2001312a0", + "phases": "AS", + "to": "sx2001312a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729413a", + "length": "50.0009", + "name": "tpx_tpx21397067a0", + "phases": "AS", + "to": "sx2729413a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2935567b", + "length": "50.0009", + "name": "tpx_tpx338992b0", + "phases": "BS", + "to": "sx2935567b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000414a", + "length": "50.0009", + "name": "tpx_tpx2000414a0", + "phases": "AS", + "to": "sx2000414a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160861c", + "length": "50.0009", + "name": "tpx_tpx260558c0", + "phases": "CS", + "to": "sx3160861c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3027116a", + "length": "50.0009", + "name": "tpx_tpx226192684a0", + "phases": "AS", + "to": "sx3027116a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691939b", + "length": "50.0009", + "name": "tpx_tpx355589b0", + "phases": "BS", + "to": "sx2691939b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860480b", + "length": "50.0009", + "name": "tpx_tpx323234b0", + "phases": "BS", + "to": "sx2860480b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879064a", + "length": "50.0009", + "name": "tpx_tpx138581a0", + "phases": "AS", + "to": "sx2879064a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2803199c", + "length": "50.0009", + "name": "tpx_tpx227760021c0", + "phases": "CS", + "to": "sx2803199c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2691944a", + "length": "50.0009", + "name": "tpx_tpx321838a0", + "phases": "AS", + "to": "sx2691944a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2691950c", + "length": "50.0009", + "name": "tpx_tpx138374c0", + "phases": "CS", + "to": "sx2691950c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2898515c", + "length": "50.0009", + "name": "tpx_tpx260621c0", + "phases": "CS", + "to": "sx2898515c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000908c", + "length": "50.0009", + "name": "tpx_tpx2000908c0", + "phases": "CS", + "to": "sx2000908c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2692660a", + "length": "50.0009", + "name": "tpx_tpx260643a0", + "phases": "AS", + "to": "sx2692660a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160107a", + "length": "50.0009", + "name": "tpx_tpx138265a0", + "phases": "AS", + "to": "sx3160107a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673309c", + "length": "50.0009", + "name": "tpx_tpx138472c0", + "phases": "CS", + "to": "sx2673309c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001007b", + "length": "50.0009", + "name": "tpx_tpx2001007b0", + "phases": "BS", + "to": "sx2001007b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104796c", + "length": "50.0009", + "name": "tpx_tpx260569c0", + "phases": "CS", + "to": "sx3104796c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3645811c", + "length": "50.0009", + "name": "tpx_tpx2224230689c0", + "phases": "CS", + "to": "sx3645811c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2767342a", + "length": "50.0009", + "name": "tpx_tpx356802a0", + "phases": "AS", + "to": "sx2767342a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748146a", + "length": "50.0009", + "name": "tpx_tpx138570a0", + "phases": "AS", + "to": "sx2748146a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2803199b", + "length": "50.0009", + "name": "tpx_tpx227760021b0", + "phases": "BS", + "to": "sx2803199b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785512b", + "length": "50.0009", + "name": "tpx_tpx323245b0", + "phases": "BS", + "to": "sx2785512b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2954352c", + "length": "50.0009", + "name": "tpx_tpx28127090c0", + "phases": "CS", + "to": "sx2954352c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2805031c", + "length": "50.0009", + "name": "tpx_tpx260491c0", + "phases": "CS", + "to": "sx2805031c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3217064b", + "length": "50.0009", + "name": "tpx_tpx21391390b0", + "phases": "BS", + "to": "sx3217064b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3645812c", + "length": "50.0009", + "name": "tpx_tpx2224230754c0", + "phases": "CS", + "to": "sx3645812c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216370a", + "length": "50.0009", + "name": "tpx_tpx293521a0", + "phases": "AS", + "to": "sx3216370a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729428a", + "length": "50.0009", + "name": "tpx_tpx21398402a0", + "phases": "AS", + "to": "sx2729428a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3065750b", + "length": "50.0009", + "name": "tpx_tpx323389b0", + "phases": "BS", + "to": "sx3065750b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122811a", + "length": "50.0009", + "name": "tpx_tpx337669a0", + "phases": "AS", + "to": "sx3122811a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141393c", + "length": "50.0009", + "name": "tpx_tpx442373c0", + "phases": "CS", + "to": "sx3141393c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649297a", + "length": "50.0009", + "name": "tpx_tpx2224237380a0", + "phases": "AS", + "to": "sx3649297a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991915b", + "length": "50.0009", + "name": "tpx_tpx392036b0", + "phases": "BS", + "to": "sx2991915b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001214c", + "length": "50.0009", + "name": "tpx_tpx2001214c0", + "phases": "CS", + "to": "sx2001214c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235249a", + "length": "50.0009", + "name": "tpx_tpx356014a0", + "phases": "AS", + "to": "sx3235249a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122825a", + "length": "50.0009", + "name": "tpx_tpx28118808a0", + "phases": "AS", + "to": "sx3122825a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673322b", + "length": "50.0009", + "name": "tpx_tpx355358b0", + "phases": "BS", + "to": "sx2673322b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3008248a", + "length": "50.0009", + "name": "tpx_tpx321159a0", + "phases": "AS", + "to": "sx3008248a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3142098b", + "length": "50.0009", + "name": "tpx_tpx260501b0", + "phases": "BS", + "to": "sx3142098b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160864b", + "length": "50.0009", + "name": "tpx_tpx28127146b0", + "phases": "BS", + "to": "sx3160864b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2876812a", + "length": "50.0009", + "name": "tpx_tpx321880a0", + "phases": "AS", + "to": "sx2876812a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860491a", + "length": "50.0009", + "name": "tpx_tpx302733a0", + "phases": "AS", + "to": "sx2860491a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3142099b", + "length": "50.0009", + "name": "tpx_tpx157718b0", + "phases": "BS", + "to": "sx3142099b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879069a", + "length": "50.0009", + "name": "tpx_tpx338894a0", + "phases": "AS", + "to": "sx2879069a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3217056a", + "length": "50.0009", + "name": "tpx_tpx218474a0", + "phases": "AS", + "to": "sx3217056a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2803199a", + "length": "50.0009", + "name": "tpx_tpx227760021a0", + "phases": "AS", + "to": "sx2803199a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216370b", + "length": "50.0009", + "name": "tpx_tpx293521b0", + "phases": "BS", + "to": "sx3216370b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841619c", + "length": "50.0009", + "name": "tpx_tpx337636c0", + "phases": "CS", + "to": "sx2841619c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649299a", + "length": "50.0009", + "name": "tpx_tpx2224237391a0", + "phases": "AS", + "to": "sx3649299a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766499c", + "length": "50.0009", + "name": "tpx_tpx2212168880c0", + "phases": "CS", + "to": "sx2766499c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001203c", + "length": "50.0009", + "name": "tpx_tpx2001203c0", + "phases": "CS", + "to": "sx2001203c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197645a", + "length": "50.0009", + "name": "tpx_tpx21395962a0", + "phases": "AS", + "to": "sx3197645a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029520b", + "length": "50.0009", + "name": "tpx_tpx21486213b0", + "phases": "BS", + "to": "sx3029520b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897766c", + "length": "50.0009", + "name": "tpx_tpx28128007c0", + "phases": "CS", + "to": "sx2897766c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2820535b", + "length": "50.0009", + "name": "tpx_tpx338981b0", + "phases": "BS", + "to": "sx2820535b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122849b", + "length": "50.0009", + "name": "tpx_tpx293423b0", + "phases": "BS", + "to": "sx3122849b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2786273b", + "length": "50.0009", + "name": "tpx_tpx275247b0", + "phases": "BS", + "to": "sx2786273b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841645c", + "length": "50.0009", + "name": "tpx_tpx321893c0", + "phases": "CS", + "to": "sx2841645c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2746587c", + "length": "50.0009", + "name": "tpx_tpx227653310c0", + "phases": "CS", + "to": "sx2746587c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897784b", + "length": "50.0009", + "name": "tpx_tpx247170b0", + "phases": "BS", + "to": "sx2897784b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3086002c", + "length": "50.0009", + "name": "tpx_tpx356794c0", + "phases": "CS", + "to": "sx3086002c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3029500a", + "length": "50.0009", + "name": "tpx_tpx391992a0", + "phases": "AS", + "to": "sx3029500a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2851933c", + "length": "50.0009", + "name": "tpx_tpx21393643c0", + "phases": "CS", + "to": "sx2851933c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841623a", + "length": "50.0009", + "name": "tpx_tpx294844a0", + "phases": "AS", + "to": "sx2841623a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3119793b", + "length": "50.0009", + "name": "tpx_tpx226024307b0", + "phases": "BS", + "to": "sx3119793b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3216370c", + "length": "50.0009", + "name": "tpx_tpx293521c0", + "phases": "CS", + "to": "sx3216370c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001310a", + "length": "50.0009", + "name": "tpx_tpx2001310a0", + "phases": "AS", + "to": "sx2001310a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122823b", + "length": "50.0009", + "name": "tpx_tpx302370b0", + "phases": "BS", + "to": "sx3122823b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860483b", + "length": "50.0009", + "name": "tpx_tpx21396699b0", + "phases": "BS", + "to": "sx2860483b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897805a", + "length": "50.0009", + "name": "tpx_tpx21471907a0", + "phases": "AS", + "to": "sx2897805a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2891575c", + "length": "50.0009", + "name": "tpx_tpx225533423c0", + "phases": "CS", + "to": "sx2891575c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2936212a", + "length": "50.0009", + "name": "tpx_tpx356815a0", + "phases": "AS", + "to": "sx2936212a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048963b", + "length": "50.0009", + "name": "tpx_tpx260521b0", + "phases": "BS", + "to": "sx3048963b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235258a", + "length": "50.0009", + "name": "tpx_tpx293652a0", + "phases": "AS", + "to": "sx3235258a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673331b", + "length": "50.0009", + "name": "tpx_tpx338990b0", + "phases": "BS", + "to": "sx2673331b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710517a", + "length": "50.0009", + "name": "tpx_tpx310568a0", + "phases": "AS", + "to": "sx2710517a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235247a", + "length": "50.0009", + "name": "tpx_tpx321836a0", + "phases": "AS", + "to": "sx3235247a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991916b", + "length": "50.0009", + "name": "tpx_tpx337710b0", + "phases": "BS", + "to": "sx2991916b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822860b", + "length": "50.0009", + "name": "tpx_tpx323236b0", + "phases": "BS", + "to": "sx2822860b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104126c", + "length": "50.0009", + "name": "tpx_tpx138372c0", + "phases": "CS", + "to": "sx3104126c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2851933b", + "length": "50.0009", + "name": "tpx_tpx21393643b0", + "phases": "BS", + "to": "sx2851933b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766719a", + "length": "50.0009", + "name": "tpx_tpx21357865a0", + "phases": "AS", + "to": "sx2766719a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729405b", + "length": "50.0009", + "name": "tpx_tpx21393412b0", + "phases": "BS", + "to": "sx2729405b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122848c", + "length": "50.0009", + "name": "tpx_tpx21397121c0", + "phases": "CS", + "to": "sx3122848c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973833b", + "length": "50.0009", + "name": "tpx_tpx260630b0", + "phases": "BS", + "to": "sx2973833b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897771b", + "length": "50.0009", + "name": "tpx_tpx21148701b0", + "phases": "BS", + "to": "sx2897771b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879054a", + "length": "50.0009", + "name": "tpx_tpx247061a0", + "phases": "AS", + "to": "sx2879054a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2952007c", + "length": "50.0009", + "name": "tpx_tpx251859c0", + "phases": "CS", + "to": "sx2952007c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104144a", + "length": "50.0009", + "name": "tpx_tpx339020a0", + "phases": "AS", + "to": "sx3104144a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197625c", + "length": "50.0009", + "name": "tpx_tpx339044c0", + "phases": "CS", + "to": "sx3197625c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3085395a", + "length": "50.0009", + "name": "tpx_tpx21391094a0", + "phases": "AS", + "to": "sx3085395a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766717c", + "length": "50.0009", + "name": "tpx_tpx138470c0", + "phases": "CS", + "to": "sx2766717c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649301a", + "length": "50.0009", + "name": "tpx_tpx2224237643a0", + "phases": "AS", + "to": "sx3649301a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897777c", + "length": "50.0009", + "name": "tpx_tpx338937c0", + "phases": "CS", + "to": "sx2897777c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2801896b", + "length": "50.0009", + "name": "tpx_tpx226191995b0", + "phases": "BS", + "to": "sx2801896b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160101a", + "length": "50.0009", + "name": "tpx_tpx337678a0", + "phases": "AS", + "to": "sx3160101a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001005b", + "length": "50.0009", + "name": "tpx_tpx2001005b0", + "phases": "BS", + "to": "sx2001005b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010570a", + "length": "50.0009", + "name": "tpx_tpx302392a0", + "phases": "AS", + "to": "sx3010570a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2936211c", + "length": "50.0009", + "name": "tpx_tpx260567c0", + "phases": "CS", + "to": "sx2936211c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2823544a", + "length": "50.0009", + "name": "tpx_tpx356804a0", + "phases": "AS", + "to": "sx2823544a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3139366a", + "length": "50.0009", + "name": "tpx_tpx226264795a0", + "phases": "AS", + "to": "sx3139366a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2973166c", + "length": "50.0009", + "name": "tpx_tpx293665c0", + "phases": "CS", + "to": "sx2973166c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2935553b", + "length": "50.0009", + "name": "tpx_tpx323247b0", + "phases": "BS", + "to": "sx2935553b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916625b", + "length": "50.0009", + "name": "tpx_tpx21467859b0", + "phases": "BS", + "to": "sx2916625b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897764b", + "length": "50.0009", + "name": "tpx_tpx391750b0", + "phases": "BS", + "to": "sx2897764b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2851933a", + "length": "50.0009", + "name": "tpx_tpx21393643a0", + "phases": "AS", + "to": "sx2851933a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3082988b", + "length": "50.0009", + "name": "tpx_tpx226195153b0", + "phases": "BS", + "to": "sx3082988b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216123a", + "length": "50.0009", + "name": "tpx_tpx338926a0", + "phases": "AS", + "to": "sx3216123a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766725c", + "length": "50.0009", + "name": "tpx_tpx21399220c0", + "phases": "CS", + "to": "sx2766725c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001212c", + "length": "50.0009", + "name": "tpx_tpx2001212c0", + "phases": "CS", + "to": "sx2001212c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841615a", + "length": "50.0009", + "name": "tpx_tpx356012a0", + "phases": "AS", + "to": "sx2841615a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2876798b", + "length": "50.0009", + "name": "tpx_tpx226193745b0", + "phases": "BS", + "to": "sx2876798b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104155c", + "length": "50.0009", + "name": "tpx_tpx21474587c0", + "phases": "CS", + "to": "sx3104155c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3214549a", + "length": "50.0009", + "name": "tpx_tpx226308731a0", + "phases": "AS", + "to": "sx3214549a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235258c", + "length": "50.0009", + "name": "tpx_tpx293652c0", + "phases": "CS", + "to": "sx3235258c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748152b", + "length": "50.0009", + "name": "tpx_tpx321849b0", + "phases": "BS", + "to": "sx2748152b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879081a", + "length": "50.0009", + "name": "tpx_tpx391981a0", + "phases": "AS", + "to": "sx2879081a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2916606c", + "length": "50.0009", + "name": "tpx_tpx275007c0", + "phases": "CS", + "to": "sx2916606c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160863c", + "length": "50.0009", + "name": "tpx_tpx223660c0", + "phases": "CS", + "to": "sx3160863c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122826a", + "length": "50.0009", + "name": "tpx_tpx302731a0", + "phases": "AS", + "to": "sx3122826a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000710b", + "length": "50.0009", + "name": "tpx_tpx2000710b0", + "phases": "BS", + "to": "sx2000710b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141411c", + "length": "50.0009", + "name": "tpx_tpx21197413c0", + "phases": "CS", + "to": "sx3141411c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2936270a", + "length": "50.0009", + "name": "tpx_tpx218472a0", + "phases": "AS", + "to": "sx2936270a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3085401a", + "length": "50.0009", + "name": "tpx_tpx28127253a0", + "phases": "AS", + "to": "sx3085401a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991905a", + "length": "50.0009", + "name": "tpx_tpx28148633a0", + "phases": "AS", + "to": "sx2991905a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897772a", + "length": "50.0009", + "name": "tpx_tpx302679a0", + "phases": "AS", + "to": "sx2897772a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2820531b", + "length": "50.0009", + "name": "tpx_tpx226192936b0", + "phases": "BS", + "to": "sx2820531b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3141394b", + "length": "50.0009", + "name": "tpx_tpx339042b0", + "phases": "BS", + "to": "sx3141394b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122824a", + "length": "50.0009", + "name": "tpx_tpx302402a0", + "phases": "AS", + "to": "sx3122824a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160868b", + "length": "50.0009", + "name": "tpx_tpx52107693b0", + "phases": "BS", + "to": "sx3160868b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2748126c", + "length": "50.0009", + "name": "tpx_tpx321891c0", + "phases": "CS", + "to": "sx2748126c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897768c", + "length": "50.0009", + "name": "tpx_tpx337634c0", + "phases": "CS", + "to": "sx2897768c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2936276b", + "length": "50.0009", + "name": "tpx_tpx260458b0", + "phases": "BS", + "to": "sx2936276b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216342b", + "length": "50.0009", + "name": "tpx_tpx337645b0", + "phases": "BS", + "to": "sx3216342b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2954345c", + "length": "50.0009", + "name": "tpx_tpx338915c0", + "phases": "CS", + "to": "sx2954345c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766720a", + "length": "50.0009", + "name": "tpx_tpx441311a0", + "phases": "AS", + "to": "sx2766720a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000403a", + "length": "50.0009", + "name": "tpx_tpx2000403a0", + "phases": "AS", + "to": "sx2000403a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2821087a", + "length": "50.0009", + "name": "tpx_tpx226308720a0", + "phases": "AS", + "to": "sx2821087a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3235258b", + "length": "50.0009", + "name": "tpx_tpx293652b0", + "phases": "BS", + "to": "sx3235258b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3140238a", + "length": "50.0009", + "name": "tpx_tpx227905262a0", + "phases": "AS", + "to": "sx3140238a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804252a", + "length": "50.0009", + "name": "tpx_tpx302473a0", + "phases": "AS", + "to": "sx2804252a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3235275b", + "length": "50.0009", + "name": "tpx_tpx302507b0", + "phases": "BS", + "to": "sx3235275b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085391b", + "length": "50.0009", + "name": "tpx_tpx21236413b0", + "phases": "BS", + "to": "sx3085391b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104120b", + "length": "50.0009", + "name": "tpx_tpx138645b0", + "phases": "BS", + "to": "sx3104120b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066821a", + "length": "50.0009", + "name": "tpx_tpx391994a0", + "phases": "AS", + "to": "sx3066821a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991927b", + "length": "50.0009", + "name": "tpx_tpx355607b0", + "phases": "BS", + "to": "sx2991927b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860501b", + "length": "50.0009", + "name": "tpx_tpx323265b0", + "phases": "BS", + "to": "sx2860501b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3215203b", + "length": "50.0009", + "name": "tpx_tpx227760024b0", + "phases": "BS", + "to": "sx3215203b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104129a", + "length": "50.0009", + "name": "tpx_tpx338969a0", + "phases": "AS", + "to": "sx3104129a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2711226b", + "length": "50.0009", + "name": "tpx_tpx260527b0", + "phases": "BS", + "to": "sx2711226b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3139103a", + "length": "50.0009", + "name": "tpx_tpx225767272a0", + "phases": "AS", + "to": "sx3139103a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066804a", + "length": "50.0009", + "name": "tpx_tpx21380599a0", + "phases": "AS", + "to": "sx3066804a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3047289a", + "length": "50.0009", + "name": "tpx_tpx228091193a0", + "phases": "AS", + "to": "sx3047289a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048212a", + "length": "50.0009", + "name": "tpx_tpx355934a0", + "phases": "AS", + "to": "sx3048212a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3727712a", + "length": "50.0009", + "name": "tpx_tpx2224386889a0", + "phases": "AS", + "to": "sx3727712a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2802481a", + "length": "50.0009", + "name": "tpx_tpx226308730a0", + "phases": "AS", + "to": "sx2802481a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235248c", + "length": "50.0009", + "name": "tpx_tpx321861c0", + "phases": "CS", + "to": "sx3235248c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2936275b", + "length": "50.0009", + "name": "tpx_tpx157715b0", + "phases": "BS", + "to": "sx2936275b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2805034a", + "length": "50.0009", + "name": "tpx_tpx260647a0", + "phases": "AS", + "to": "sx2805034a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3179607b", + "length": "50.0009", + "name": "tpx_tpx260591b0", + "phases": "BS", + "to": "sx3179607b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085389b", + "length": "50.0009", + "name": "tpx_tpx391765b0", + "phases": "BS", + "to": "sx3085389b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2954338b", + "length": "50.0009", + "name": "tpx_tpx355618b0", + "phases": "BS", + "to": "sx2954338b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3082983b", + "length": "50.0009", + "name": "tpx_tpx226193899b0", + "phases": "BS", + "to": "sx3082983b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048966c", + "length": "50.0009", + "name": "tpx_tpx260625c0", + "phases": "CS", + "to": "sx3048966c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3552667c", + "length": "50.0009", + "name": "tpx_tpx2224061203c0", + "phases": "CS", + "to": "sx3552667c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104145b", + "length": "50.0009", + "name": "tpx_tpx339011b0", + "phases": "BS", + "to": "sx3104145b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3215203a", + "length": "50.0009", + "name": "tpx_tpx227760024a0", + "phases": "AS", + "to": "sx3215203a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2691945c", + "length": "50.0009", + "name": "tpx_tpx302812c0", + "phases": "CS", + "to": "sx2691945c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2951995c", + "length": "50.0009", + "name": "tpx_tpx226192801c0", + "phases": "CS", + "to": "sx2951995c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3064514c", + "length": "50.0009", + "name": "tpx_tpx251857c0", + "phases": "CS", + "to": "sx3064514c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897776c", + "length": "50.0009", + "name": "tpx_tpx302858c0", + "phases": "CS", + "to": "sx2897776c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785546a", + "length": "50.0009", + "name": "tpx_tpx21399752a0", + "phases": "AS", + "to": "sx2785546a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235244a", + "length": "50.0009", + "name": "tpx_tpx337676a0", + "phases": "AS", + "to": "sx3235244a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001003b", + "length": "50.0009", + "name": "tpx_tpx2001003b0", + "phases": "BS", + "to": "sx2001003b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3120484c", + "length": "50.0009", + "name": "tpx_tpx226191772c0", + "phases": "CS", + "to": "sx3120484c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973178b", + "length": "50.0009", + "name": "tpx_tpx337665b0", + "phases": "BS", + "to": "sx2973178b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066809c", + "length": "50.0009", + "name": "tpx_tpx338958c0", + "phases": "CS", + "to": "sx3066809c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973146b", + "length": "50.0009", + "name": "tpx_tpx28118903b0", + "phases": "BS", + "to": "sx2973146b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066808c", + "length": "50.0009", + "name": "tpx_tpx337654c0", + "phases": "CS", + "to": "sx3066808c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804260b", + "length": "50.0009", + "name": "tpx_tpx391752b0", + "phases": "BS", + "to": "sx2804260b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160871c", + "length": "50.0009", + "name": "tpx_tpx260638c0", + "phases": "CS", + "to": "sx3160871c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2952014a", + "length": "50.0009", + "name": "tpx_tpx294809a0", + "phases": "AS", + "to": "sx2952014a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879078a", + "length": "50.0009", + "name": "tpx_tpx21399229a0", + "phases": "AS", + "to": "sx2879078a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3226771a", + "length": "50.0009", + "name": "tpx_tpx227100746a0", + "phases": "AS", + "to": "sx3226771a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048222c", + "length": "50.0009", + "name": "tpx_tpx355431c0", + "phases": "CS", + "to": "sx3048222c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2935552c", + "length": "50.0009", + "name": "tpx_tpx274903c0", + "phases": "CS", + "to": "sx2935552c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897789b", + "length": "50.0009", + "name": "tpx_tpx323287b0", + "phases": "BS", + "to": "sx2897789b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710508b", + "length": "50.0009", + "name": "tpx_tpx323241b0", + "phases": "BS", + "to": "sx2710508b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001014b", + "length": "50.0009", + "name": "tpx_tpx2001014b0", + "phases": "BS", + "to": "sx2001014b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001210c", + "length": "50.0009", + "name": "tpx_tpx2001210c0", + "phases": "CS", + "to": "sx2001210c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000709b", + "length": "50.0009", + "name": "tpx_tpx2000709b0", + "phases": "BS", + "to": "sx2000709b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766741a", + "length": "50.0009", + "name": "tpx_tpx21386754a0", + "phases": "AS", + "to": "sx2766741a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254234b", + "length": "50.0009", + "name": "tpx_tpx355586b0", + "phases": "BS", + "to": "sx3254234b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748158a", + "length": "50.0009", + "name": "tpx_tpx293480a0", + "phases": "AS", + "to": "sx2748158a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3232301c", + "length": "50.0009", + "name": "tpx_tpx21458756c0", + "phases": "CS", + "to": "sx3232301c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216349b", + "length": "50.0009", + "name": "tpx_tpx337708b0", + "phases": "BS", + "to": "sx3216349b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3189188c", + "length": "50.0009", + "name": "tpx_tpx293658c0", + "phases": "CS", + "to": "sx3189188c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897806c", + "length": "50.0009", + "name": "tpx_tpx337643c0", + "phases": "CS", + "to": "sx2897806c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216336a", + "length": "50.0009", + "name": "tpx_tpx356010a0", + "phases": "AS", + "to": "sx3216336a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841629c", + "length": "50.0009", + "name": "tpx_tpx138405c0", + "phases": "CS", + "to": "sx2841629c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973162b", + "length": "50.0009", + "name": "tpx_tpx302375b0", + "phases": "BS", + "to": "sx2973162b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766732b", + "length": "50.0009", + "name": "tpx_tpx247164b0", + "phases": "BS", + "to": "sx2766732b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216339b", + "length": "50.0009", + "name": "tpx_tpx391741b0", + "phases": "BS", + "to": "sx3216339b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254210c", + "length": "50.0009", + "name": "tpx_tpx138647c0", + "phases": "CS", + "to": "sx3254210c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2879073c", + "length": "50.0009", + "name": "tpx_tpx138371c0", + "phases": "CS", + "to": "sx2879073c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2786274c", + "length": "50.0009", + "name": "tpx_tpx207291c0", + "phases": "CS", + "to": "sx2786274c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000905c", + "length": "50.0009", + "name": "tpx_tpx2000905c0", + "phases": "CS", + "to": "sx2000905c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2916234a", + "length": "50.0009", + "name": "tpx_tpx228549643a0", + "phases": "AS", + "to": "sx2916234a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066812a", + "length": "50.0009", + "name": "tpx_tpx323263a0", + "phases": "AS", + "to": "sx3066812a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879066b", + "length": "50.0009", + "name": "tpx_tpx323252b0", + "phases": "BS", + "to": "sx2879066b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691949b", + "length": "50.0009", + "name": "tpx_tpx337689b0", + "phases": "BS", + "to": "sx2691949b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160109b", + "length": "50.0009", + "name": "tpx_tpx338947b0", + "phases": "BS", + "to": "sx3160109b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048208a", + "length": "50.0009", + "name": "tpx_tpx138260a0", + "phases": "AS", + "to": "sx3048208a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066815c", + "length": "50.0009", + "name": "tpx_tpx338936c0", + "phases": "CS", + "to": "sx3066815c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122820a", + "length": "50.0009", + "name": "tpx_tpx310561a0", + "phases": "AS", + "to": "sx3122820a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729401b", + "length": "50.0009", + "name": "tpx_tpx355597b0", + "phases": "BS", + "to": "sx2729401b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3233353a", + "length": "50.0009", + "name": "tpx_tpx21399630a0", + "phases": "AS", + "to": "sx3233353a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2726974b", + "length": "50.0009", + "name": "tpx_tpx226193395b0", + "phases": "BS", + "to": "sx2726974b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2861218c", + "length": "50.0009", + "name": "tpx_tpx260505c0", + "phases": "CS", + "to": "sx2861218c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2841620b", + "length": "50.0009", + "name": "tpx_tpx28147018b0", + "phases": "BS", + "to": "sx2841620b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673307c", + "length": "50.0009", + "name": "tpx_tpx337632c0", + "phases": "CS", + "to": "sx2673307c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141388c", + "length": "50.0009", + "name": "tpx_tpx138416c0", + "phases": "CS", + "to": "sx3141388c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3157708c", + "length": "50.0009", + "name": "tpx_tpx226192954c0", + "phases": "CS", + "to": "sx3157708c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804956a", + "length": "50.0009", + "name": "tpx_tpx356811a0", + "phases": "AS", + "to": "sx2804956a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3085402a", + "length": "50.0009", + "name": "tpx_tpx302471a0", + "phases": "AS", + "to": "sx3085402a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710514b", + "length": "50.0009", + "name": "tpx_tpx323267b0", + "phases": "BS", + "to": "sx2710514b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2763407c", + "length": "50.0009", + "name": "tpx_tpx225906836c0", + "phases": "CS", + "to": "sx2763407c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2821010a", + "length": "50.0009", + "name": "tpx_tpx294788a0", + "phases": "AS", + "to": "sx2821010a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160123a", + "length": "50.0009", + "name": "tpx_tpx21015706a0", + "phases": "AS", + "to": "sx3160123a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2804957c", + "length": "50.0009", + "name": "tpx_tpx356790c0", + "phases": "CS", + "to": "sx2804957c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3141412a", + "length": "50.0009", + "name": "tpx_tpx391996a0", + "phases": "AS", + "to": "sx3141412a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785536b", + "length": "50.0009", + "name": "tpx_tpx339002b0", + "phases": "BS", + "to": "sx2785536b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2842383a", + "length": "50.0009", + "name": "tpx_tpx260634a0", + "phases": "AS", + "to": "sx2842383a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2783231b", + "length": "50.0009", + "name": "tpx_tpx226193886b0", + "phases": "BS", + "to": "sx2783231b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2823592a", + "length": "50.0009", + "name": "tpx_tpx223658a0", + "phases": "AS", + "to": "sx2823592a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2803194c", + "length": "50.0009", + "name": "tpx_tpx227917130c0", + "phases": "CS", + "to": "sx2803194c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2935554a", + "length": "50.0009", + "name": "tpx_tpx338921a0", + "phases": "AS", + "to": "sx2935554a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2896685c", + "length": "50.0009", + "name": "tpx_tpx227187012c0", + "phases": "CS", + "to": "sx2896685c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3010566c", + "length": "50.0009", + "name": "tpx_tpx138776c0", + "phases": "CS", + "to": "sx3010566c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841635a", + "length": "50.0009", + "name": "tpx_tpx21399099a0", + "phases": "AS", + "to": "sx2841635a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2727795c", + "length": "50.0009", + "name": "tpx_tpx227678342c0", + "phases": "CS", + "to": "sx2727795c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2674047c", + "length": "50.0009", + "name": "tpx_tpx260514c0", + "phases": "CS", + "to": "sx2674047c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104157c", + "length": "50.0009", + "name": "tpx_tpx293427c0", + "phases": "CS", + "to": "sx3104157c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2763812c", + "length": "50.0009", + "name": "tpx_tpx21459651c0", + "phases": "CS", + "to": "sx2763812c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2970811a", + "length": "50.0009", + "name": "tpx_tpx321881a0", + "phases": "AS", + "to": "sx2970811a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991922a", + "length": "50.0009", + "name": "tpx_tpx302734a0", + "phases": "AS", + "to": "sx2991922a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235946a", + "length": "50.0009", + "name": "tpx_tpx356800a0", + "phases": "AS", + "to": "sx3235946a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748840b", + "length": "50.0009", + "name": "tpx_tpx157717b0", + "phases": "BS", + "to": "sx2748840b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3030199c", + "length": "50.0009", + "name": "tpx_tpx260480c0", + "phases": "CS", + "to": "sx3030199c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804270b", + "length": "50.0009", + "name": "tpx_tpx339013b0", + "phases": "BS", + "to": "sx2804270b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841621c", + "length": "50.0009", + "name": "tpx_tpx338910c0", + "phases": "CS", + "to": "sx2841621c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2685809a", + "length": "50.0009", + "name": "tpx_tpx225533162a0", + "phases": "AS", + "to": "sx2685809a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2730107c", + "length": "50.0009", + "name": "tpx_tpx251855c0", + "phases": "CS", + "to": "sx2730107c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3139598b", + "length": "50.0009", + "name": "tpx_tpx226311345b0", + "phases": "BS", + "to": "sx3139598b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3178977c", + "length": "50.0009", + "name": "tpx_tpx302810c0", + "phases": "CS", + "to": "sx3178977c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066805a", + "length": "50.0009", + "name": "tpx_tpx337674a0", + "phases": "AS", + "to": "sx3066805a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2970258c", + "length": "50.0009", + "name": "tpx_tpx21459640c0", + "phases": "CS", + "to": "sx2970258c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841633a", + "length": "50.0009", + "name": "tpx_tpx293645a0", + "phases": "AS", + "to": "sx2841633a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066829c", + "length": "50.0009", + "name": "tpx_tpx321894c0", + "phases": "CS", + "to": "sx3066829c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728041a", + "length": "50.0009", + "name": "tpx_tpx2224387074a0", + "phases": "AS", + "to": "sx3728041a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2991933c", + "length": "50.0009", + "name": "tpx_tpx355433c0", + "phases": "CS", + "to": "sx2991933c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235251c", + "length": "50.0009", + "name": "tpx_tpx21387206c0", + "phases": "CS", + "to": "sx3235251c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766729a", + "length": "50.0009", + "name": "tpx_tpx293523a0", + "phases": "AS", + "to": "sx2766729a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235242c", + "length": "50.0009", + "name": "tpx_tpx21380500c0", + "phases": "CS", + "to": "sx3235242c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897765b", + "length": "50.0009", + "name": "tpx_tpx323243b0", + "phases": "BS", + "to": "sx2897765b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001012b", + "length": "50.0009", + "name": "tpx_tpx2001012b0", + "phases": "BS", + "to": "sx2001012b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2896685a", + "length": "50.0009", + "name": "tpx_tpx227187012a0", + "phases": "AS", + "to": "sx2896685a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3178972c", + "length": "50.0009", + "name": "tpx_tpx338923c0", + "phases": "CS", + "to": "sx3178972c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2690941b", + "length": "50.0009", + "name": "tpx_tpx323387b0", + "phases": "BS", + "to": "sx2690941b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973180b", + "length": "50.0009", + "name": "tpx_tpx21398646b0", + "phases": "BS", + "to": "sx2973180b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3082993a", + "length": "50.0009", + "name": "tpx_tpx226159329a0", + "phases": "AS", + "to": "sx3082993a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3235250b", + "length": "50.0009", + "name": "tpx_tpx337698b0", + "phases": "BS", + "to": "sx3235250b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879070b", + "length": "50.0009", + "name": "tpx_tpx338934b0", + "phases": "BS", + "to": "sx2879070b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2954353a", + "length": "50.0009", + "name": "tpx_tpx338945a0", + "phases": "AS", + "to": "sx2954353a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3727710a", + "length": "50.0009", + "name": "tpx_tpx2224386863a0", + "phases": "AS", + "to": "sx3727710a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x0247162b", + "length": "50.0009", + "name": "tpx_tpx247162b0", + "phases": "BS", + "to": "sx0247162b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2763153a", + "length": "50.0009", + "name": "tpx_tpx293425a0", + "phases": "AS", + "to": "sx2763153a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2804282c", + "length": "50.0009", + "name": "tpx_tpx337641c0", + "phases": "CS", + "to": "sx2804282c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991939b", + "length": "50.0009", + "name": "tpx_tpx337652b0", + "phases": "BS", + "to": "sx2991939b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766726b", + "length": "50.0009", + "name": "tpx_tpx302373b0", + "phases": "BS", + "to": "sx2766726b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3010564c", + "length": "50.0009", + "name": "tpx_tpx321883c0", + "phases": "CS", + "to": "sx3010564c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2917310b", + "length": "50.0009", + "name": "tpx_tpx260503b0", + "phases": "BS", + "to": "sx2917310b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000411a", + "length": "50.0009", + "name": "tpx_tpx2000411a0", + "phases": "AS", + "to": "sx2000411a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822857b", + "length": "50.0009", + "name": "tpx_tpx355588b0", + "phases": "BS", + "to": "sx2822857b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3342743c", + "length": "50.0009", + "name": "tpx_tpx2223703238c0", + "phases": "CS", + "to": "sx3342743c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785530a", + "length": "50.0009", + "name": "tpx_tpx391985a0", + "phases": "AS", + "to": "sx2785530a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785529c", + "length": "50.0009", + "name": "tpx_tpx355943c0", + "phases": "CS", + "to": "sx2785529c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3141390b", + "length": "50.0009", + "name": "tpx_tpx391743b0", + "phases": "BS", + "to": "sx3141390b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2875754c", + "length": "50.0009", + "name": "tpx_tpx225897943c0", + "phases": "CS", + "to": "sx2875754c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2763072b", + "length": "50.0009", + "name": "tpx_tpx226924200b0", + "phases": "BS", + "to": "sx2763072b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991929b", + "length": "50.0009", + "name": "tpx_tpx28147708b0", + "phases": "BS", + "to": "sx2991929b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973151a", + "length": "50.0009", + "name": "tpx_tpx138569a0", + "phases": "AS", + "to": "sx2973151a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048968c", + "length": "50.0009", + "name": "tpx_tpx350994c0", + "phases": "CS", + "to": "sx3048968c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3215203c", + "length": "50.0009", + "name": "tpx_tpx227760024c0", + "phases": "CS", + "to": "sx3215203c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3047058a", + "length": "50.0009", + "name": "tpx_tpx227902981a0", + "phases": "AS", + "to": "sx3047058a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2730149c", + "length": "50.0009", + "name": "tpx_tpx260601c0", + "phases": "CS", + "to": "sx2730149c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879068b", + "length": "50.0009", + "name": "tpx_tpx323254b0", + "phases": "BS", + "to": "sx2879068b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000907c", + "length": "50.0009", + "name": "tpx_tpx2000907c0", + "phases": "CS", + "to": "sx2000907c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2935547b", + "length": "50.0009", + "name": "tpx_tpx21383553b0", + "phases": "BS", + "to": "sx2935547b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2692655c", + "length": "50.0009", + "name": "tpx_tpx21389307c0", + "phases": "CS", + "to": "sx2692655c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841625c", + "length": "50.0009", + "name": "tpx_tpx302834c0", + "phases": "CS", + "to": "sx2841625c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2896685b", + "length": "50.0009", + "name": "tpx_tpx227187012b0", + "phases": "BS", + "to": "sx2896685b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897790c", + "length": "50.0009", + "name": "tpx_tpx21357984c0", + "phases": "CS", + "to": "sx2897790c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710505b", + "length": "50.0009", + "name": "tpx_tpx323398b0", + "phases": "BS", + "to": "sx2710505b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785511a", + "length": "50.0009", + "name": "tpx_tpx339046a0", + "phases": "AS", + "to": "sx2785511a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973156b", + "length": "50.0009", + "name": "tpx_tpx337687b0", + "phases": "BS", + "to": "sx2973156b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104119a", + "length": "50.0009", + "name": "tpx_tpx338956a0", + "phases": "AS", + "to": "sx3104119a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254212b", + "length": "50.0009", + "name": "tpx_tpx138754b0", + "phases": "BS", + "to": "sx3254212b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2879076c", + "length": "50.0009", + "name": "tpx_tpx138380c0", + "phases": "CS", + "to": "sx2879076c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973167b", + "length": "50.0009", + "name": "tpx_tpx293656b0", + "phases": "BS", + "to": "sx2973167b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3727711a", + "length": "50.0009", + "name": "tpx_tpx2224386874a0", + "phases": "AS", + "to": "sx3727711a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860504a", + "length": "50.0009", + "name": "tpx_tpx293667a0", + "phases": "AS", + "to": "sx2860504a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3085392c", + "length": "50.0009", + "name": "tpx_tpx337630c0", + "phases": "CS", + "to": "sx3085392c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216338b", + "length": "50.0009", + "name": "tpx_tpx355599b0", + "phases": "BS", + "to": "sx3216338b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2767340a", + "length": "50.0009", + "name": "tpx_tpx260595a0", + "phases": "AS", + "to": "sx2767340a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160896c", + "length": "50.0009", + "name": "tpx_tpx260573c0", + "phases": "CS", + "to": "sx3160896c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841631c", + "length": "50.0009", + "name": "tpx_tpx391976c0", + "phases": "CS", + "to": "sx2841631c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766721a", + "length": "50.0009", + "name": "tpx_tpx247059a0", + "phases": "AS", + "to": "sx2766721a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3046854b", + "length": "50.0009", + "name": "tpx_tpx227732939b0", + "phases": "BS", + "to": "sx3046854b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085397b", + "length": "50.0009", + "name": "tpx_tpx323261b0", + "phases": "BS", + "to": "sx3085397b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2954351c", + "length": "50.0009", + "name": "tpx_tpx302805c0", + "phases": "CS", + "to": "sx2954351c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197653b", + "length": "50.0009", + "name": "tpx_tpx339004b0", + "phases": "BS", + "to": "sx3197653b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2990826b", + "length": "50.0009", + "name": "tpx_tpx337619b0", + "phases": "BS", + "to": "sx2990826b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160108b", + "length": "50.0009", + "name": "tpx_tpx355603b0", + "phases": "BS", + "to": "sx3160108b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122812b", + "length": "50.0009", + "name": "tpx_tpx21031694b0", + "phases": "BS", + "to": "sx3122812b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2729410c", + "length": "50.0009", + "name": "tpx_tpx338943c0", + "phases": "CS", + "to": "sx2729410c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000912c", + "length": "50.0009", + "name": "tpx_tpx2000912c0", + "phases": "CS", + "to": "sx2000912c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010568a", + "length": "50.0009", + "name": "tpx_tpx338965a0", + "phases": "AS", + "to": "sx3010568a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785518c", + "length": "50.0009", + "name": "tpx_tpx138469c0", + "phases": "CS", + "to": "sx2785518c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822877b", + "length": "50.0009", + "name": "tpx_tpx337672b0", + "phases": "BS", + "to": "sx2822877b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2673317a", + "length": "50.0009", + "name": "tpx_tpx21397771a0", + "phases": "AS", + "to": "sx2673317a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673346c", + "length": "50.0009", + "name": "tpx_tpx293486c0", + "phases": "CS", + "to": "sx2673346c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729407b", + "length": "50.0009", + "name": "tpx_tpx247100b0", + "phases": "BS", + "to": "sx2729407b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804262a", + "length": "50.0009", + "name": "tpx_tpx355938a0", + "phases": "AS", + "to": "sx2804262a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973791a", + "length": "50.0009", + "name": "tpx_tpx260605a0", + "phases": "AS", + "to": "sx2973791a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2724120c", + "length": "50.0009", + "name": "tpx_tpx225577437c0", + "phases": "CS", + "to": "sx2724120c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3027132a", + "length": "50.0009", + "name": "tpx_tpx321876a0", + "phases": "AS", + "to": "sx3027132a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2990826a", + "length": "50.0009", + "name": "tpx_tpx337619a0", + "phases": "AS", + "to": "sx2990826a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2937757c", + "length": "50.0009", + "name": "tpx_tpx227411650c0", + "phases": "CS", + "to": "sx2937757c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766749b", + "length": "50.0009", + "name": "tpx_tpx337661b0", + "phases": "BS", + "to": "sx2766749b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2764399b", + "length": "50.0009", + "name": "tpx_tpx226192493b0", + "phases": "BS", + "to": "sx2764399b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029507b", + "length": "50.0009", + "name": "tpx_tpx302368b0", + "phases": "BS", + "to": "sx3029507b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2767340b", + "length": "50.0009", + "name": "tpx_tpx260595b0", + "phases": "BS", + "to": "sx2767340b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160872c", + "length": "50.0009", + "name": "tpx_tpx260551c0", + "phases": "CS", + "to": "sx3160872c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029055b", + "length": "50.0009", + "name": "tpx_tpx260607b0", + "phases": "BS", + "to": "sx3029055b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879079b", + "length": "50.0009", + "name": "tpx_tpx391756b0", + "phases": "BS", + "to": "sx2879079b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710546b", + "length": "50.0009", + "name": "tpx_tpx337704b0", + "phases": "BS", + "to": "sx2710546b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897780b", + "length": "50.0009", + "name": "tpx_tpx293518b0", + "phases": "BS", + "to": "sx2897780b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254204a", + "length": "50.0009", + "name": "tpx_tpx337715a0", + "phases": "AS", + "to": "sx3254204a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916618b", + "length": "50.0009", + "name": "tpx_tpx323283b0", + "phases": "BS", + "to": "sx2916618b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879794a", + "length": "50.0009", + "name": "tpx_tpx260475a0", + "phases": "AS", + "to": "sx2879794a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254230a", + "length": "50.0009", + "name": "tpx_tpx338989a0", + "phases": "AS", + "to": "sx3254230a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000705b", + "length": "50.0009", + "name": "tpx_tpx2000705b0", + "phases": "BS", + "to": "sx2000705b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254237a", + "length": "50.0009", + "name": "tpx_tpx21482181a0", + "phases": "AS", + "to": "sx3254237a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001010b", + "length": "50.0009", + "name": "tpx_tpx2001010b0", + "phases": "BS", + "to": "sx2001010b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673318c", + "length": "50.0009", + "name": "tpx_tpx338967c0", + "phases": "CS", + "to": "sx2673318c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197635b", + "length": "50.0009", + "name": "tpx_tpx337696b0", + "phases": "BS", + "to": "sx3197635b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728038a", + "length": "50.0009", + "name": "tpx_tpx2224387019a0", + "phases": "AS", + "to": "sx3728038a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804257b", + "length": "50.0009", + "name": "tpx_tpx321854b0", + "phases": "BS", + "to": "sx2804257b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x1108407b", + "length": "50.0009", + "name": "tpx_tpx2221108407b0", + "phases": "BS", + "to": "sx1108407b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197629b", + "length": "50.0009", + "name": "tpx_tpx247122b0", + "phases": "BS", + "to": "sx3197629b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000409a", + "length": "50.0009", + "name": "tpx_tpx2000409a0", + "phases": "AS", + "to": "sx2000409a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104124b", + "length": "50.0009", + "name": "tpx_tpx356065b0", + "phases": "BS", + "to": "sx3104124b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673300b", + "length": "50.0009", + "name": "tpx_tpx391745b0", + "phases": "BS", + "to": "sx2673300b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122822a", + "length": "50.0009", + "name": "tpx_tpx391987a0", + "phases": "AS", + "to": "sx3122822a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3214055c", + "length": "50.0009", + "name": "tpx_tpx226192175c0", + "phases": "CS", + "to": "sx3214055c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748129a", + "length": "50.0009", + "name": "tpx_tpx138567a0", + "phases": "AS", + "to": "sx2748129a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197654a", + "length": "50.0009", + "name": "tpx_tpx21382992a0", + "phases": "AS", + "to": "sx3197654a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048221a", + "length": "50.0009", + "name": "tpx_tpx21399305a0", + "phases": "AS", + "to": "sx3048221a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010569a", + "length": "50.0009", + "name": "tpx_tpx302673a0", + "phases": "AS", + "to": "sx3010569a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2989432b", + "length": "50.0009", + "name": "tpx_tpx226163575b0", + "phases": "BS", + "to": "sx2989432b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x1108410b", + "length": "50.0009", + "name": "tpx_tpx2226061820b0", + "phases": "BS", + "to": "sx1108410b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3176661c", + "length": "50.0009", + "name": "tpx_tpx356788c0", + "phases": "CS", + "to": "sx3176661c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860482a", + "length": "50.0009", + "name": "tpx_tpx338954a0", + "phases": "AS", + "to": "sx2860482a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001308a", + "length": "50.0009", + "name": "tpx_tpx2001308a0", + "phases": "AS", + "to": "sx2001308a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3027670b", + "length": "50.0009", + "name": "tpx_tpx226308719b0", + "phases": "BS", + "to": "sx3027670b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197661c", + "length": "50.0009", + "name": "tpx_tpx338932c0", + "phases": "CS", + "to": "sx3197661c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785528b", + "length": "50.0009", + "name": "tpx_tpx138752b0", + "phases": "BS", + "to": "sx2785528b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104859b", + "length": "50.0009", + "name": "tpx_tpx138798b0", + "phases": "BS", + "to": "sx3104859b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766715b", + "length": "50.0009", + "name": "tpx_tpx355593b0", + "phases": "BS", + "to": "sx2766715b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2936214a", + "length": "50.0009", + "name": "tpx_tpx356809a0", + "phases": "AS", + "to": "sx2936214a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766738c", + "length": "50.0009", + "name": "tpx_tpx338978c0", + "phases": "CS", + "to": "sx2766738c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160098a", + "length": "50.0009", + "name": "tpx_tpx339048a0", + "phases": "AS", + "to": "sx3160098a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841622a", + "length": "50.0009", + "name": "tpx_tpx21384215a0", + "phases": "AS", + "to": "sx2841622a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748124b", + "length": "50.0009", + "name": "tpx_tpx323392b0", + "phases": "BS", + "to": "sx2748124b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785523c", + "length": "50.0009", + "name": "tpx_tpx138412c0", + "phases": "CS", + "to": "sx2785523c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2822862c", + "length": "50.0009", + "name": "tpx_tpx275001c0", + "phases": "CS", + "to": "sx2822862c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010561a", + "length": "50.0009", + "name": "tpx_tpx337650a0", + "phases": "AS", + "to": "sx3010561a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785524c", + "length": "50.0009", + "name": "tpx_tpx28044328c0", + "phases": "CS", + "to": "sx2785524c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160103c", + "length": "50.0009", + "name": "tpx_tpx356063c0", + "phases": "CS", + "to": "sx3160103c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_cap_2c_PUZ_C", + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "q16483", + "length": "0.0033", + "name": "line_cap_2c", + "phases": "C", + "to": "q16483_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104128a", + "length": "50.0009", + "name": "tpx_tpx247057a0", + "phases": "AS", + "to": "sx3104128a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_cap_2b_PUZ_B", + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "q16483", + "length": "0.0033", + "name": "line_cap_2b", + "phases": "B", + "to": "q16483_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_cap_2a_PUZ_A", + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "q16483", + "length": "0.0033", + "name": "line_cap_2a", + "phases": "A", + "to": "q16483_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916619b", + "length": "50.0009", + "name": "tpx_tpx339006b0", + "phases": "BS", + "to": "sx2916619b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141402c", + "length": "50.0009", + "name": "tpx_tpx391978c0", + "phases": "CS", + "to": "sx3141402c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029495b", + "length": "50.0009", + "name": "tpx_tpx391736b0", + "phases": "BS", + "to": "sx3029495b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3235252b", + "length": "50.0009", + "name": "tpx_tpx21388572b0", + "phases": "BS", + "to": "sx3235252b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729409b", + "length": "50.0009", + "name": "tpx_tpx355605b0", + "phases": "BS", + "to": "sx2729409b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000914c", + "length": "50.0009", + "name": "tpx_tpx2000914c0", + "phases": "CS", + "to": "sx2000914c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3085400c", + "length": "50.0009", + "name": "tpx_tpx302803c0", + "phases": "CS", + "to": "sx3085400c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3233412a", + "length": "50.0009", + "name": "tpx_tpx226308717a0", + "phases": "AS", + "to": "sx3233412a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104853c", + "length": "50.0009", + "name": "tpx_tpx260518c0", + "phases": "CS", + "to": "sx3104853c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254229b", + "length": "50.0009", + "name": "tpx_tpx338998b0", + "phases": "BS", + "to": "sx3254229b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3645809c", + "length": "50.0009", + "name": "tpx_tpx2224230615c0", + "phases": "CS", + "to": "sx3645809c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2991914c", + "length": "50.0009", + "name": "tpx_tpx338941c0", + "phases": "CS", + "to": "sx2991914c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2954357a", + "length": "50.0009", + "name": "tpx_tpx355936a0", + "phases": "AS", + "to": "sx2954357a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010557a", + "length": "50.0009", + "name": "tpx_tpx21380453a0", + "phases": "AS", + "to": "sx3010557a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691946b", + "length": "50.0009", + "name": "tpx_tpx28147974b0", + "phases": "BS", + "to": "sx2691946b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2821770a", + "length": "50.0009", + "name": "tpx_tpx227917119a0", + "phases": "AS", + "to": "sx2821770a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_cap_1c_PUZ_C", + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "l2823592", + "length": "0.0033", + "name": "line_cap_1c", + "phases": "C", + "to": "l2823592_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_cap_1b_PUZ_B", + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "l2823592", + "length": "0.0033", + "name": "line_cap_1b", + "phases": "B", + "to": "l2823592_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_cap_1a_PUZ_A", + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "l2823592", + "length": "0.0033", + "name": "line_cap_1a", + "phases": "A", + "to": "l2823592_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3142078b", + "length": "50.0009", + "name": "tpx_tpx330121b0", + "phases": "BS", + "to": "sx3142078b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2991640c", + "length": "50.0009", + "name": "tpx_tpx229106135c0", + "phases": "CS", + "to": "sx2991640c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2822870c", + "length": "50.0009", + "name": "tpx_tpx21399171c0", + "phases": "CS", + "to": "sx2822870c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2710543c", + "length": "50.0009", + "name": "tpx_tpx21474614c0", + "phases": "CS", + "to": "sx2710543c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860500b", + "length": "50.0009", + "name": "tpx_tpx323274b0", + "phases": "BS", + "to": "sx2860500b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2767407b", + "length": "50.0009", + "name": "tpx_tpx260495b0", + "phases": "BS", + "to": "sx2767407b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3195315a", + "length": "50.0009", + "name": "tpx_tpx226193662a0", + "phases": "AS", + "to": "sx3195315a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3217053c", + "length": "50.0009", + "name": "tpx_tpx260529c0", + "phases": "CS", + "to": "sx3217053c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3010562b", + "length": "50.0009", + "name": "tpx_tpx325473b0", + "phases": "BS", + "to": "sx3010562b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122813a", + "length": "50.0009", + "name": "tpx_tpx138685a0", + "phases": "AS", + "to": "sx3122813a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048889c", + "length": "50.0009", + "name": "tpx_tpx28128464c0", + "phases": "CS", + "to": "sx3048889c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2764412a", + "length": "50.0009", + "name": "tpx_tpx321874a0", + "phases": "AS", + "to": "sx2764412a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2916608c", + "length": "50.0009", + "name": "tpx_tpx321852c0", + "phases": "CS", + "to": "sx2916608c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3103822c", + "length": "50.0009", + "name": "tpx_tpx228665517c0", + "phases": "CS", + "to": "sx3103822c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649304a", + "length": "50.0009", + "name": "tpx_tpx2224237713a0", + "phases": "AS", + "to": "sx3649304a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x1108405c", + "length": "50.0009", + "name": "tpx_tpx2221108405c0", + "phases": "CS", + "to": "sx1108405c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2878848c", + "length": "50.0009", + "name": "tpx_tpx2212168887c0", + "phases": "CS", + "to": "sx2878848c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x_293471a", + "length": "50.0009", + "name": "tpx_tpx293471a0", + "phases": "AS", + "to": "sx_293471a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766724c", + "length": "50.0009", + "name": "tpx_tpx294786c0", + "phases": "CS", + "to": "sx2766724c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3157167a", + "length": "50.0009", + "name": "tpx_tpx226115278a0", + "phases": "AS", + "to": "sx3157167a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766718c", + "length": "50.0009", + "name": "tpx_tpx138652c0", + "phases": "CS", + "to": "sx2766718c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804269b", + "length": "50.0009", + "name": "tpx_tpx323285b0", + "phases": "BS", + "to": "sx2804269b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2841636b", + "length": "50.0009", + "name": "tpx_tpx391758b0", + "phases": "BS", + "to": "sx2841636b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197641a", + "length": "50.0009", + "name": "tpx_tpx293591a0", + "phases": "AS", + "to": "sx3197641a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860490a", + "length": "50.0009", + "name": "tpx_tpx138719a0", + "phases": "AS", + "to": "sx2860490a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2861222a", + "length": "50.0009", + "name": "tpx_tpx260473a0", + "phases": "AS", + "to": "sx2861222a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029506b", + "length": "50.0009", + "name": "tpx_tpx338930b0", + "phases": "BS", + "to": "sx3029506b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000707b", + "length": "50.0009", + "name": "tpx_tpx2000707b0", + "phases": "BS", + "to": "sx2000707b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3047289c", + "length": "50.0009", + "name": "tpx_tpx228091193c0", + "phases": "CS", + "to": "sx3047289c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160106a", + "length": "50.0009", + "name": "tpx_tpx310570a0", + "phases": "AS", + "to": "sx3160106a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691967b", + "length": "50.0009", + "name": "tpx_tpx338976b0", + "phases": "BS", + "to": "sx2691967b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897793a", + "length": "50.0009", + "name": "tpx_tpx338987a0", + "phases": "AS", + "to": "sx2897793a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2729423c", + "length": "50.0009", + "name": "tpx_tpx339017c0", + "phases": "CS", + "to": "sx2729423c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2691941c", + "length": "50.0009", + "name": "tpx_tpx321887c0", + "phases": "CS", + "to": "sx2691941c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254214b", + "length": "50.0009", + "name": "tpx_tpx337706b0", + "phases": "BS", + "to": "sx3254214b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216348a", + "length": "50.0009", + "name": "tpx_tpx337717a0", + "phases": "AS", + "to": "sx3216348a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991910b", + "length": "50.0009", + "name": "tpx_tpx337694b0", + "phases": "BS", + "to": "sx2991910b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710542b", + "length": "50.0009", + "name": "tpx_tpx355584b0", + "phases": "BS", + "to": "sx2710542b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x1108405b", + "length": "50.0009", + "name": "tpx_tpx2221108405b0", + "phases": "BS", + "to": "sx1108405b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2767340c", + "length": "50.0009", + "name": "tpx_tpx260595c0", + "phases": "CS", + "to": "sx2767340c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x_293471b", + "length": "50.0009", + "name": "tpx_tpx293471b0", + "phases": "BS", + "to": "sx_293471b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2992656a", + "length": "50.0009", + "name": "tpx_tpx260627a0", + "phases": "AS", + "to": "sx2992656a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2804261c", + "length": "50.0009", + "name": "tpx_tpx302509c0", + "phases": "CS", + "to": "sx2804261c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104122a", + "length": "50.0009", + "name": "tpx_tpx138565a0", + "phases": "AS", + "to": "sx3104122a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841638c", + "length": "50.0009", + "name": "tpx_tpx138641c0", + "phases": "CS", + "to": "sx2841638c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160102b", + "length": "50.0009", + "name": "tpx_tpx355780b0", + "phases": "BS", + "to": "sx3160102b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3141398a", + "length": "50.0009", + "name": "tpx_tpx21386976a0", + "phases": "AS", + "to": "sx3141398a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748131b", + "length": "50.0009", + "name": "tpx_tpx323250b0", + "phases": "BS", + "to": "sx2748131b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3172805a", + "length": "50.0009", + "name": "tpx_tpx226964880a0", + "phases": "AS", + "to": "sx3172805a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2990826c", + "length": "50.0009", + "name": "tpx_tpx337619c0", + "phases": "CS", + "to": "sx2990826c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766747a", + "length": "50.0009", + "name": "tpx_tpx391989a0", + "phases": "AS", + "to": "sx2766747a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822859b", + "length": "50.0009", + "name": "tpx_tpx391747b0", + "phases": "BS", + "to": "sx2822859b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2992624a", + "length": "50.0009", + "name": "tpx_tpx260484a0", + "phases": "AS", + "to": "sx2992624a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3011298c", + "length": "50.0009", + "name": "tpx_tpx207286c0", + "phases": "CS", + "to": "sx3011298c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000903c", + "length": "50.0009", + "name": "tpx_tpx2000903c0", + "phases": "CS", + "to": "sx2000903c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001306a", + "length": "50.0009", + "name": "tpx_tpx2001306a0", + "phases": "AS", + "to": "sx2001306a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2898526c", + "length": "50.0009", + "name": "tpx_tpx21393486c0", + "phases": "CS", + "to": "sx2898526c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3027671a", + "length": "50.0009", + "name": "tpx_tpx226308728a0", + "phases": "AS", + "to": "sx3027671a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3047289b", + "length": "50.0009", + "name": "tpx_tpx228091193b0", + "phases": "BS", + "to": "sx3047289b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3236011b", + "length": "50.0009", + "name": "tpx_tpx138796b0", + "phases": "BS", + "to": "sx3236011b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2954347b", + "length": "50.0009", + "name": "tpx_tpx321841b0", + "phases": "BS", + "to": "sx2954347b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3082992a", + "length": "50.0009", + "name": "tpx_tpx337728a0", + "phases": "AS", + "to": "sx3082992a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x_293471c", + "length": "50.0009", + "name": "tpx_tpx293471c0", + "phases": "CS", + "to": "sx_293471c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860479b", + "length": "50.0009", + "name": "tpx_tpx355595b0", + "phases": "BS", + "to": "sx2860479b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673305b", + "length": "50.0009", + "name": "tpx_tpx138236b0", + "phases": "BS", + "to": "sx2673305b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2935551c", + "length": "50.0009", + "name": "tpx_tpx21387929c0", + "phases": "CS", + "to": "sx2935551c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710536a", + "length": "50.0009", + "name": "tpx_tpx21396867a0", + "phases": "AS", + "to": "sx2710536a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710504b", + "length": "50.0009", + "name": "tpx_tpx323394b0", + "phases": "BS", + "to": "sx2710504b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x1108405a", + "length": "50.0009", + "name": "tpx_tpx2221108405a0", + "phases": "AS", + "to": "sx1108405a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2689691a", + "length": "50.0009", + "name": "tpx_tpx355375a0", + "phases": "AS", + "to": "sx2689691a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_hvmv_sub_connector_ABC", + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv11sub1_lsb", + "length": "3.2809", + "name": "line_hvmv_sub_connector", + "phases": "ABC", + "to": "hvmv_sub1_48332" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "c11": "0.0000", + "c12": "0.0000", + "c13": "0.0000", + "c21": "0.0000", + "c22": "0.0000", + "c23": "0.0000", + "c31": "0.0000", + "c32": "0.0000", + "c33": "0.0000", + "name": "lcon_hvmv_sub_connector_ABC", + "z11": "1.00000e-06+1.00000e-05j", + "z12": "0.00000+0.00000j", + "z13": "0.00000+0.00000j", + "z21": "0.00000+0.00000j", + "z22": "1.00000e-06+1.00000e-05j", + "z23": "0.00000+0.00000j", + "z31": "0.00000+0.00000j", + "z32": "0.00000+0.00000j", + "z33": "1.00000e-06+1.00000e-05j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "configuration": "lcon_hvmv_sub_hsb_ABC", + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "400.00", + "emergency_rating_B": "400.00", + "emergency_rating_C": "400.00", + "from": "sourcebus", + "length": "3.2809", + "name": "line_hvmv_sub_hsb", + "phases": "ABC", + "to": "hvmv115_hsb1" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "c11": "0.0000", + "c12": "0.0000", + "c13": "0.0000", + "c21": "0.0000", + "c22": "0.0000", + "c23": "0.0000", + "c31": "0.0000", + "c32": "0.0000", + "c33": "0.0000", + "name": "lcon_hvmv_sub_hsb_ABC", + "z11": "0.00000+14.7983j", + "z12": "0.00000+0.00000j", + "z13": "0.00000+0.00000j", + "z21": "0.00000+0.00000j", + "z22": "0.00000+14.7983j", + "z23": "0.00000+0.00000j", + "z31": "0.00000+0.00000j", + "z32": "0.00000+0.00000j", + "z33": "0.00000+14.7983j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "configuration": "lcon_ln5513564-2_ABC", + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2823592_cap", + "length": "3.2809", + "name": "line_ln5513564-2", + "phases": "ABC", + "to": "r20185" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "c11": "0.0000", + "c12": "0.0000", + "c13": "0.0000", + "c21": "0.0000", + "c22": "0.0000", + "c23": "0.0000", + "c31": "0.0000", + "c32": "0.0000", + "c33": "0.0000", + "name": "lcon_ln5513564-2_ABC", + "z11": "0.00100000+0.00100000j", + "z12": "0.00000+0.00000j", + "z13": "0.00000+0.00000j", + "z21": "0.00000+0.00000j", + "z22": "0.00100000+0.00100000j", + "z23": "0.00000+0.00000j", + "z31": "0.00000+0.00000j", + "z32": "0.00000+0.00000j", + "z33": "0.00100000+0.00100000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5803273-1_int", + "name": "swt_tsw803273_sw", + "phases": "ABC", + "status": "OPEN", + "to": "m1069457" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "228-1353934-4_int", + "name": "swt_wf856_48332_sw", + "phases": "C", + "status": "OPEN", + "to": "193-103041" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "n1139546", + "name": "swt_ln0955074_sw", + "phases": "B", + "status": "CLOSED", + "to": "d5955074-2_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6413567-3_int", + "name": "swt_x8223_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e182724" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69sub1_lsb2", + "name": "swt_hvmv69s1b3_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv69s1s2_1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "d6140776-1_int", + "name": "swt_v9109_48332_sw", + "phases": "A", + "status": "CLOSED", + "to": "e182730" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5742811-3_int", + "name": "swt_ln0742811_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "n1137992" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der-2", + "name": "swt_ln2001mt2_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m2001-mt2" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "d6019477-1_int", + "name": "swt_v9287_48332_sw", + "phases": "C", + "status": "CLOSED", + "to": "e182727" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6049825-1_int", + "name": "swt_l5523_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e182748" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "d6049822-1_int", + "name": "swt_l5397_48332_sw", + "phases": "A", + "status": "CLOSED", + "to": "e182722" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2000100", + "name": "swt_ln2000001_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d2000100_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "m1047767", + "name": "swt_ln0623395_sw", + "phases": "B", + "status": "CLOSED", + "to": "d5623395-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5860450-1_int", + "name": "swt_ln4651075_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1047575" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5837361-8_int", + "name": "swt_v7995_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e182745" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5860423-3_int", + "name": "swt_ln4641075_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q14733" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s2s3_2", + "name": "swt_hvmv69s3b1_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv69sub3_hsb" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1009805", + "name": "swt_ln0621886_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5621886-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6198039-1_int", + "name": "swt_a8869_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e206217" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5578300-1_int", + "name": "swt_ln5587300-1", + "phases": "ABC", + "status": "CLOSED", + "to": "l2692635" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "l2729430", + "name": "swt_ln0017316_sw", + "phases": "B", + "status": "CLOSED", + "to": "d6017316-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6023352-1_int", + "name": "swt_l9407_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e184626" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d6140778-1_int", + "name": "swt_l5565_48332_sw", + "phases": "B", + "status": "CLOSED", + "to": "e182731" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026chp-1", + "name": "swt_ln5001chp_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1026chp-2" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069der480-1", + "name": "swt_dg1069mt1_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1069-mt1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6138608-3_int", + "name": "swt_ln4586093_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q14404" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3085398", + "name": "swt_ln0653457_sw", + "phases": "ABC", + "status": "OPEN", + "to": "d5653457-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5534969-2_int", + "name": "swt_v7173_48332_sw", + "phases": "ABC", + "status": "OPEN", + "to": "e182729" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209der480-1", + "name": "swt_dg1209dies_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1209-dies1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69sub2_lnb", + "name": "swt_hvmv69s2b3_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv69s2s3_1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6290228-6_int", + "name": "swt_2002200004991174_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q16642" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089der480-2", + "name": "swt_dg1089dies_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1089-dies1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142818", + "name": "swt_ln0504876_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5504876-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d5472341-1_int", + "name": "swt_ln0247162_sw", + "phases": "B", + "status": "CLOSED", + "to": "f739842" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2858166", + "name": "swt_ln0863704_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5863704-2_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "n1139545", + "name": "swt_ln0712477_sw", + "phases": "C", + "status": "CLOSED", + "to": "d5712477-3_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "m2001201", + "name": "swt_ln2001201_sw", + "phases": "C", + "status": "CLOSED", + "to": "d2001201_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der-5", + "name": "swt_ln2001ess2_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m2001-ess2" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6108141-1_int", + "name": "swt_v9111_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e206209" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5926308-3_int", + "name": "swt_ln4625696_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q14412" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142der480-1", + "name": "swt_dg1142lng_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1142-lng1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "n1138594", + "name": "swt_ln0774470_sw", + "phases": "A", + "status": "CLOSED", + "to": "d5774470-2_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5799561-2_int", + "name": "swt_a8611_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e193509" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2879078", + "name": "swt_ln0108145_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d6108145-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1136670", + "name": "swt_ln0956471_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5956471-2_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026915", + "name": "swt_ln0774458_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5774457-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "l3066818", + "name": "swt_ln0653469_sw", + "phases": "B", + "status": "CLOSED", + "to": "d5653469-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "228-1048090-1_int", + "name": "swt_wd701_48332_sw", + "phases": "B", + "status": "OPEN", + "to": "193-51796" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5867591-1_int", + "name": "swt_v7041_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e183472" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5710794-3_int", + "name": "swt_hvmv69s1b2_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e192860" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089174", + "name": "swt_ln05534967_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5534967-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m3032981", + "name": "swt_ln0504019_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d6504019-6_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "d5712486-1_int", + "name": "swt_x8271_48332_sw", + "phases": "C", + "status": "CLOSED", + "to": "e206210" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d5806920-1_int", + "name": "swt_v7313_48332_sw", + "phases": "B", + "status": "CLOSED", + "to": "e182726" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "n1137999", + "name": "swt_ln0440002_sw", + "phases": "A", + "status": "CLOSED", + "to": "d6440002-2_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069230", + "name": "swt_tsw10691069_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1069300" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69sub2_lnb", + "name": "swt_hvmv69s2b1_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv69sub2_hsb" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv11sub3_lsb", + "name": "swt_hvmv69s3b2_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e203026" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5563942-4_int", + "name": "swt_2002200004868472_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q16483" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5502543-2_int", + "name": "swt_ln4625713_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q14413" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5587291-3_int", + "name": "swt_2002200004641085_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q14734" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5513564-1_int", + "name": "swt_xj171_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e192201" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5535139-1_int", + "name": "swt_l5437_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e183473" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "n1136027", + "name": "swt_ln0409774-4_int", + "phases": "A", + "status": "CLOSED", + "to": "d6409775-4_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1140519", + "name": "swt_ln0895780_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5895780-3_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5956499-2_int", + "name": "swt_ln4625680_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q14411" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "m2000701", + "name": "swt_ln2000701_sw", + "phases": "B", + "status": "CLOSED", + "to": "d2000701_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "228-979371-2_int", + "name": "swt_wf586_48332_sw", + "phases": "C", + "status": "OPEN", + "to": "193-48013" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "n1144667", + "name": "swt_ln0712587_sw", + "phases": "A", + "status": "CLOSED", + "to": "d5712587-2_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5682346-3_int", + "name": "swt_g9343_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e206211" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5534970-1_int", + "name": "swt_l9191_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e182732" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "l2692000", + "name": "swt_tsw568613_sw", + "phases": "A", + "status": "OPEN", + "to": "l2841000" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "228-961799-3_int", + "name": "swt_wg127_48332_sw", + "phases": "C", + "status": "OPEN", + "to": "193-46661" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv11sub2_lsb", + "name": "swt_hvmv69s2b2_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1047300" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d5565090-1_int", + "name": "swt_x8225_48332_sw", + "phases": "B", + "status": "CLOSED", + "to": "e182744" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3047059", + "name": "swt_tsw30473047_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "l3047060" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047pv-2", + "name": "swt_ln1047pvfrm_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1047pv-1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5861005-2_int", + "name": "swt_ln3693186_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q1301" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv115_hsb1", + "name": "swt_hvmv115b1_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv115_hsb2" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "regxfmr_hvmv69sub1_lsb1", + "name": "swt_hvmv69s1b4_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv69sub1_lsb2" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2990827", + "name": "swt_tsw10891089_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "l2990828" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der-4", + "name": "swt_ln2001ess1_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m2001-ess1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der-3", + "name": "swt_ln2001mt3_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m2001-mt3" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "n1136030", + "name": "swt_ln0804798_sw", + "phases": "B", + "status": "CLOSED", + "to": "d5804798-3_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5958866-1_int", + "name": "swt_a8645_48332_sw", + "phases": "ABC", + "status": "OPEN", + "to": "e183493" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "d6141147-1_int", + "name": "swt_ln0141147_sw", + "phases": "C", + "status": "CLOSED", + "to": "m1108317" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089der480-1", + "name": "swt_dg1089lng_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1089-lng1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089112", + "name": "swt_ln0138609_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d6138609-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "p829957", + "name": "swt_ln0746703_sw", + "phases": "C", + "status": "CLOSED", + "to": "d5746703-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d6231996-1_int", + "name": "swt_l5659_48332_sw", + "phases": "B", + "status": "CLOSED", + "to": "e206614" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "d6320328-1_int", + "name": "swt_tsw320328_sw", + "phases": "C", + "status": "OPEN", + "to": "l2879062" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69sub1_lsb2", + "name": "swt_hvmv69s1b1_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv69sub1_hsb" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "m2000901", + "name": "swt_ln2000901_sw", + "phases": "C", + "status": "CLOSED", + "to": "d2000901_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "m2000401", + "name": "swt_ln2000401_sw", + "phases": "A", + "status": "CLOSED", + "to": "d2000401_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6077791-3_int", + "name": "swt_ln0077781_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1047522" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d6047588-1_int", + "name": "swt_ln247171_sw", + "phases": "B", + "status": "CLOSED", + "to": "f739844" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5472350-1_int", + "name": "swt_ln5472335-1", + "phases": "ABC", + "status": "CLOSED", + "to": "m1089120" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "m2001301", + "name": "swt_ln2001301_sw", + "phases": "A", + "status": "CLOSED", + "to": "d2001301_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "m2001001", + "name": "swt_ln2001001_sw", + "phases": "B", + "status": "CLOSED", + "to": "d2001001_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d5865224-1_int", + "name": "swt_ln247160_sw", + "phases": "B", + "status": "CLOSED", + "to": "f739841" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5746546-1_int", + "name": "swt_a333_48332_sw", + "phases": "ABC", + "status": "OPEN", + "to": "e182723" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_10", + "name": "swt_hvmv69s1s2-10", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv69sub2_lnb" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186072", + "name": "swt_ln0048634_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d6048634-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2973156", + "name": "swt_ln0017295_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d6017295-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6170302-1_int", + "name": "swt_ln0170302_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "l2879773" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5835167-6_int", + "name": "swt_ln4625876_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q14414" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5686080-1_int", + "name": "swt_ln293471_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "f739845" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der-1", + "name": "swt_ln2001mt1_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m2001-mt1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d5655682-1_int", + "name": "swt_l5491_48332_sw", + "phases": "B", + "status": "CLOSED", + "to": "e182725" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_1089-dies1", + "power_rating": "750.000", + "primary_voltage": "7199.558", + "reactance": "0.057500", + "resistance": "0.004000", + "secondary_voltage": "277.128" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_1089-dies1", + "continuous_rating_A": "38.19", + "continuous_rating_B": "38.19", + "continuous_rating_C": "38.19", + "emergency_rating_A": "52.08", + "emergency_rating_B": "52.08", + "emergency_rating_C": "52.08", + "from": "m1089220", + "name": "xf_1089-dies1", + "phases": "ABC", + "to": "m1089der480-2" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_1089-lng1", + "power_rating": "2000.000", + "primary_voltage": "7199.558", + "reactance": "0.057500", + "resistance": "0.004000", + "secondary_voltage": "277.128" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_1089-lng1", + "continuous_rating_A": "101.86", + "continuous_rating_B": "101.86", + "continuous_rating_C": "101.86", + "emergency_rating_A": "138.90", + "emergency_rating_B": "138.90", + "emergency_rating_C": "138.90", + "from": "m1089186", + "name": "xf_1089-lng1", + "phases": "ABC", + "to": "m1089der480-1" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_hvmv69_11sub3", + "power_rating": "20000.000", + "primary_voltage": "39837.169", + "reactance": "0.079400", + "resistance": "0.013400", + "secondary_voltage": "7199.558" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_hvmv69_11sub3", + "continuous_rating_A": "184.08", + "continuous_rating_B": "184.08", + "continuous_rating_C": "184.08", + "emergency_rating_A": "251.02", + "emergency_rating_B": "251.02", + "emergency_rating_C": "251.02", + "from": "hvmv69sub3_hsb", + "name": "xf_hvmv69_11sub3", + "phases": "ABC", + "to": "regxfmr_hvmv11sub3_lsb" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_hvmv69_11sub2", + "power_rating": "20000.000", + "primary_voltage": "39837.169", + "reactance": "0.079400", + "resistance": "0.013400", + "secondary_voltage": "7199.558" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_hvmv69_11sub2", + "continuous_rating_A": "184.08", + "continuous_rating_B": "184.08", + "continuous_rating_C": "184.08", + "emergency_rating_A": "251.02", + "emergency_rating_B": "251.02", + "emergency_rating_C": "251.02", + "from": "hvmv69sub2_hsb", + "name": "xf_hvmv69_11sub2", + "phases": "ABC", + "to": "regxfmr_hvmv11sub2_lsb" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "DELTA_GWYE", + "name": "xcon_hvmv115_69sub", + "power_rating": "75000.000", + "primary_voltage": "66395.281", + "reactance": "0.070500", + "resistance": "0.013400", + "secondary_voltage": "39837.169" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_hvmv115_69sub", + "continuous_rating_A": "414.19", + "continuous_rating_B": "414.19", + "continuous_rating_C": "414.19", + "emergency_rating_A": "564.80", + "emergency_rating_B": "564.80", + "emergency_rating_C": "564.80", + "from": "hvmv115_hsb2", + "name": "xf_hvmv115_69sub", + "phases": "ABC", + "to": "regxfmr_hvmv69sub1_lsb1" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_hvmv69_11sub1", + "power_rating": "20000.000", + "primary_voltage": "39837.169", + "reactance": "0.079400", + "resistance": "0.013400", + "secondary_voltage": "7199.558" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_hvmv69_11sub1", + "continuous_rating_A": "184.08", + "continuous_rating_B": "184.08", + "continuous_rating_C": "184.08", + "emergency_rating_A": "251.02", + "emergency_rating_B": "251.02", + "emergency_rating_C": "251.02", + "from": "hvmv69sub1_hsb", + "name": "xf_hvmv69_11sub1", + "phases": "ABC", + "to": "regxfmr_hvmv11sub1_lsb" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_2001-mt123", + "power_rating": "750.000", + "primary_voltage": "7199.558", + "reactance": "0.057500", + "resistance": "0.004000", + "secondary_voltage": "277.128" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_2001-mt123", + "continuous_rating_A": "38.19", + "continuous_rating_B": "38.19", + "continuous_rating_C": "38.19", + "emergency_rating_A": "52.08", + "emergency_rating_B": "52.08", + "emergency_rating_C": "52.08", + "from": "m2001500", + "name": "xf_2001-mt123", + "phases": "ABC", + "to": "m2001der480-1" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_1069-mt1", + "power_rating": "300.000", + "primary_voltage": "7199.558", + "reactance": "0.057500", + "resistance": "0.004000", + "secondary_voltage": "277.128" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_1069-mt1", + "continuous_rating_A": "15.28", + "continuous_rating_B": "15.28", + "continuous_rating_C": "15.28", + "emergency_rating_A": "20.83", + "emergency_rating_B": "20.83", + "emergency_rating_C": "20.83", + "from": "m1069215", + "name": "xf_1069-mt1", + "phases": "ABC", + "to": "m1069der480-1" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_1142-lng1", + "power_rating": "150.000", + "primary_voltage": "7199.558", + "reactance": "0.057500", + "resistance": "0.004000", + "secondary_voltage": "277.128" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_1142-lng1", + "continuous_rating_A": "27.64", + "continuous_rating_B": "27.64", + "continuous_rating_C": "27.64", + "emergency_rating_A": "210.42", + "emergency_rating_B": "210.42", + "emergency_rating_C": "210.42", + "from": "m1142813", + "name": "xf_1142-lng1", + "phases": "ABC", + "to": "m1142der480-1" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_2001-ess12", + "power_rating": "750.000", + "primary_voltage": "7199.558", + "reactance": "0.057500", + "resistance": "0.004000", + "secondary_voltage": "277.128" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_2001-ess12", + "continuous_rating_A": "38.19", + "continuous_rating_B": "38.19", + "continuous_rating_C": "38.19", + "emergency_rating_A": "52.08", + "emergency_rating_B": "52.08", + "emergency_rating_C": "52.08", + "from": "m2001500", + "name": "xf_2001-ess12", + "phases": "ABC", + "to": "m2001der480-2" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_1209-dies1", + "power_rating": "750.000", + "primary_voltage": "7199.558", + "reactance": "0.057500", + "resistance": "0.004000", + "secondary_voltage": "277.128" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_1209-dies1", + "continuous_rating_A": "38.19", + "continuous_rating_B": "38.19", + "continuous_rating_C": "38.19", + "emergency_rating_A": "52.08", + "emergency_rating_B": "52.08", + "emergency_rating_C": "52.08", + "from": "e192258", + "name": "xf_1209-dies1", + "phases": "ABC", + "to": "m1209der480-1" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3235945", + "name": "xf_t5356796c", + "phases": "CS", + "to": "x3235945c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2955077", + "name": "xf_t5260543c", + "phases": "CS", + "to": "x2955077c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2916627", + "name": "xf_t5138563a", + "phases": "AS", + "to": "x2916627a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2936211", + "name": "xf_t5260567c", + "phases": "CS", + "to": "x2936211c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3122819", + "name": "xf_t5302860c", + "phases": "CS", + "to": "x3122819c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2691936", + "name": "xf_t5356009a", + "phases": "AS", + "to": "x2691936a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2673305", + "name": "xf_t5138236b", + "phases": "BS", + "to": "x2673305b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3217056", + "name": "xf_t5218474a", + "phases": "AS", + "to": "x3217056a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2748152", + "name": "xf_t5321849b", + "phases": "BS", + "to": "x2748152b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2936276", + "name": "xf_t5260458b", + "phases": "BS", + "to": "x2936276b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2879773", + "name": "xf_t5207290a", + "phases": "AS", + "to": "x2879773a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3119793", + "name": "xf_t226024307b", + "phases": "BS", + "to": "x3119793b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3172805", + "name": "xf_t226964880a", + "phases": "AS", + "to": "x3172805a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2729401", + "name": "xf_t5355597b", + "phases": "BS", + "to": "x2729401b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000711", + "name": "xf_t2000711b", + "phases": "BS", + "to": "x2000711b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2691946", + "name": "xf_t28147974b", + "phases": "BS", + "to": "x2691946b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2860484", + "name": "xf_t5323255b", + "phases": "BS", + "to": "x2860484b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3234185", + "name": "xf_t5323388b", + "phases": "BS", + "to": "x3234185b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3108449", + "name": "xf_t228622562a", + "phases": "AS", + "to": "x3108449a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2748143", + "name": "xf_t28121368a", + "phases": "AS", + "to": "x2748143a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3048889", + "name": "xf_t28128464c", + "phases": "CS", + "to": "x3048889c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3235246", + "name": "xf_t5323279b", + "phases": "BS", + "to": "x3235246b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3104135", + "name": "xf_t21399508a", + "phases": "AS", + "to": "x3104135a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3197653", + "name": "xf_t5339004b", + "phases": "BS", + "to": "x3197653b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000408", + "name": "xf_t2000408a", + "phases": "AS", + "to": "x2000408a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3197642", + "name": "xf_t5391979c", + "phases": "CS", + "to": "x3197642c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3216349", + "name": "xf_t5337708b", + "phases": "BS", + "to": "x3216349b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2804247", + "name": "xf_t5391737b", + "phases": "BS", + "to": "x2804247b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2673310", + "name": "xf_t5138562a", + "phases": "AS", + "to": "x2673310a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2860487", + "name": "xf_t5138586c", + "phases": "CS", + "to": "x2860487c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2955078", + "name": "xf_t5260542a", + "phases": "AS", + "to": "x2955078a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3197618", + "name": "xf_t5356008a", + "phases": "AS", + "to": "x3197618a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3178980", + "name": "xf_t5302510c", + "phases": "CS", + "to": "x3178980c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2955006", + "name": "xf_t5356797c", + "phases": "CS", + "to": "x2955006c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2748133", + "name": "xf_t5302861c", + "phases": "CS", + "to": "x2748133c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2973158", + "name": "xf_t5138259c", + "phases": "CS", + "to": "x2973158c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3082993", + "name": "xf_t226159329a", + "phases": "AS", + "to": "x3082993a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3086078", + "name": "xf_t5218473a", + "phases": "AS", + "to": "x3086078a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3066804", + "name": "xf_t21380599a", + "phases": "AS", + "to": "x3066804a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3086079", + "name": "xf_t5260457b", + "phases": "BS", + "to": "x3086079b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2786274", + "name": "xf_t5207291c", + "phases": "CS", + "to": "x2786274c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3235243", + "name": "xf_t5275008c", + "phases": "CS", + "to": "x3235243c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3176656", + "name": "xf_t226193170a", + "phases": "AS", + "to": "x3176656a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3178969", + "name": "xf_t5355596b", + "phases": "BS", + "to": "x3178969b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000712", + "name": "xf_t2000712b", + "phases": "BS", + "to": "x2000712b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2879068", + "name": "xf_t5323254b", + "phases": "BS", + "to": "x2879068b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l2690187", + "name": "xf_t226308716b", + "phases": "BS", + "to": "x2690187b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2690941", + "name": "xf_t5323387b", + "phases": "BS", + "to": "x2690941b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2860477", + "name": "xf_t28121587a", + "phases": "AS", + "to": "x2860477a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2973169", + "name": "xf_t21397304a", + "phases": "AS", + "to": "x2973169a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3066826", + "name": "xf_t5339003b", + "phases": "BS", + "to": "x3066826b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l0247171", + "name": "xf_t5247171b", + "phases": "BS", + "to": "x0247171b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000409", + "name": "xf_t2000409a", + "phases": "AS", + "to": "x2000409a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2860483", + "name": "xf_t21396699b", + "phases": "BS", + "to": "x2860483b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3160104", + "name": "xf_t5337707b", + "phases": "BS", + "to": "x3160104b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3104115", + "name": "xf_t5391738b", + "phases": "BS", + "to": "x3104115b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3010565", + "name": "xf_t5138343c", + "phases": "CS", + "to": "x3010565c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2692661", + "name": "xf_t5260650a", + "phases": "AS", + "to": "x2692661a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3122824", + "name": "xf_t5302402a", + "phases": "AS", + "to": "x3122824a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104121", + "name": "xf_t5138561a", + "phases": "AS", + "to": "x3104121a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3197637", + "name": "xf_t5138585c", + "phases": "CS", + "to": "x3197637c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2954339", + "name": "xf_t5391739b", + "phases": "BS", + "to": "x2954339b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2692600", + "name": "xf_t5356798c", + "phases": "CS", + "to": "x2692600c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3141389", + "name": "xf_t5356007a", + "phases": "AS", + "to": "x3141389a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2991911", + "name": "xf_t5138258c", + "phases": "CS", + "to": "x2991911c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2841623", + "name": "xf_t5294844a", + "phases": "AS", + "to": "x2841623a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3181545", + "name": "xf_t226193702c", + "phases": "CS", + "to": "x3181545c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2936270", + "name": "xf_t5218472a", + "phases": "AS", + "to": "x2936270a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3103822", + "name": "xf_t228665517c", + "phases": "CS", + "to": "x3103822c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2955005", + "name": "xf_t5260589b", + "phases": "BS", + "to": "x2955005b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2860481", + "name": "xf_t5338908c", + "phases": "CS", + "to": "x2860481c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3160123", + "name": "xf_t21015706a", + "phases": "AS", + "to": "x3160123a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3253570", + "name": "xf_t228314460c", + "phases": "CS", + "to": "x3253570c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3179682", + "name": "xf_t5207292c", + "phases": "CS", + "to": "x3179682c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2916606", + "name": "xf_t5275007c", + "phases": "CS", + "to": "x2916606c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2860479", + "name": "xf_t5355595b", + "phases": "BS", + "to": "x2860479b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000406", + "name": "xf_t2000406a", + "phases": "AS", + "to": "x2000406a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3254203", + "name": "xf_t5323233b", + "phases": "BS", + "to": "x3254203b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2710530", + "name": "xf_t21381118b", + "phases": "BS", + "to": "x2710530b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2991943", + "name": "xf_t21399619c", + "phases": "CS", + "to": "x2991943c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2879054", + "name": "xf_t5247061a", + "phases": "AS", + "to": "x2879054a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2916619", + "name": "xf_t5339006b", + "phases": "BS", + "to": "x2916619b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2897784", + "name": "xf_t5247170b", + "phases": "BS", + "to": "x2897784b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2745806", + "name": "xf_t226194262c", + "phases": "CS", + "to": "x2745806c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104113", + "name": "xf_t5138560a", + "phases": "AS", + "to": "x3104113a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2897775", + "name": "xf_t5138342c", + "phases": "CS", + "to": "x2897775c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2804259", + "name": "xf_t28127372a", + "phases": "AS", + "to": "x2804259a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3010563", + "name": "xf_t5294845a", + "phases": "AS", + "to": "x3010563a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3178976", + "name": "xf_t21397721a", + "phases": "AS", + "to": "x3178976a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2729430", + "name": "xf_t21248901b", + "phases": "BS", + "to": "x2729430b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3448661", + "name": "xf_t2223878647b", + "phases": "BS", + "to": "x3448661b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2955074", + "name": "xf_t5260479a", + "phases": "AS", + "to": "x2955074a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2805036", + "name": "xf_t5275248b", + "phases": "BS", + "to": "x2805036b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000710", + "name": "xf_t2000710b", + "phases": "BS", + "to": "x2000710b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2914323", + "name": "xf_t5355376b", + "phases": "BS", + "to": "x2914323b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000407", + "name": "xf_t2000407a", + "phases": "AS", + "to": "x2000407a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3065750", + "name": "xf_t5323389b", + "phases": "BS", + "to": "x3065750b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2991906", + "name": "xf_t5247060a", + "phases": "AS", + "to": "x2991906a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2785535", + "name": "xf_t5339005b", + "phases": "BS", + "to": "x2785535b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254211", + "name": "xf_t5247084b", + "phases": "BS", + "to": "x3254211b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3141395", + "name": "xf_t28149184c", + "phases": "CS", + "to": "x3141395c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2991919", + "name": "xf_t5302400a", + "phases": "AS", + "to": "x2991919a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2879077", + "name": "xf_t5337709b", + "phases": "BS", + "to": "x2879077b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2879752", + "name": "xf_t5330122b", + "phases": "BS", + "to": "x2879752b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3122826", + "name": "xf_t5302731a", + "phases": "AS", + "to": "x3122826a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2688693", + "name": "xf_t225918936c", + "phases": "CS", + "to": "x2688693c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2685809", + "name": "xf_t225533162a", + "phases": "AS", + "to": "x2685809a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2814529", + "name": "xf_t28120126a", + "phases": "AS", + "to": "x2814529a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3101789", + "name": "xf_t5294842a", + "phases": "AS", + "to": "x3101789a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2674051", + "name": "xf_t21389831a", + "phases": "AS", + "to": "x2674051a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2814529", + "name": "xf_t28120126c", + "phases": "CS", + "to": "x2814529c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2814529", + "name": "xf_t28120126b", + "phases": "BS", + "to": "x2814529b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3178975", + "name": "xf_t5321845b", + "phases": "BS", + "to": "x3178975b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2917333", + "name": "xf_t5260632a", + "phases": "AS", + "to": "x2917333a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l2708744", + "name": "xf_t226308710b", + "phases": "BS", + "to": "x2708744b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3216123", + "name": "xf_t5338926a", + "phases": "AS", + "to": "x3216123a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3085403", + "name": "xf_t5293668a", + "phases": "AS", + "to": "x3085403a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2689691", + "name": "xf_t5355375a", + "phases": "AS", + "to": "x2689691a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3649300", + "name": "xf_t2224237546a", + "phases": "AS", + "to": "x3649300a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2729429", + "name": "xf_t5293644a", + "phases": "AS", + "to": "x2729429a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3081380", + "name": "xf_t225700953a", + "phases": "AS", + "to": "x3081380a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3197660", + "name": "xf_t5323275b", + "phases": "BS", + "to": "x3197660b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000404", + "name": "xf_t2000404a", + "phases": "AS", + "to": "x2000404a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2766715", + "name": "xf_t5355593b", + "phases": "BS", + "to": "x2766715b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3160098", + "name": "xf_t5339048a", + "phases": "AS", + "to": "x3160098a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2710546", + "name": "xf_t5337704b", + "phases": "BS", + "to": "x2710546b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2990826", + "name": "xf_t5337619a", + "phases": "AS", + "to": "x2990826a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3082992", + "name": "xf_t5337728a", + "phases": "AS", + "to": "x3082992a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2973164", + "name": "xf_t5302514a", + "phases": "AS", + "to": "x2973164a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2991917", + "name": "xf_t5391757b", + "phases": "BS", + "to": "x2991917b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2691953", + "name": "xf_t5302732a", + "phases": "AS", + "to": "x2691953a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2990826", + "name": "xf_t5337619c", + "phases": "CS", + "to": "x2990826c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2990826", + "name": "xf_t5337619b", + "phases": "BS", + "to": "x2990826b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2786266", + "name": "xf_t5260631a", + "phases": "AS", + "to": "x2786266a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2785522", + "name": "xf_t28127681b", + "phases": "BS", + "to": "x2785522b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3178982", + "name": "xf_t5294843a", + "phases": "AS", + "to": "x3178982a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2803194", + "name": "xf_t227917130c", + "phases": "CS", + "to": "x2803194c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2973153", + "name": "xf_t5338925a", + "phases": "AS", + "to": "x2973153a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3011293", + "name": "xf_t28129466b", + "phases": "BS", + "to": "x3011293b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3011293", + "name": "xf_t28129466c", + "phases": "CS", + "to": "x3011293c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3011293", + "name": "xf_t28129466a", + "phases": "AS", + "to": "x3011293a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3104136", + "name": "xf_t5338949b", + "phases": "BS", + "to": "x3104136b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2860500", + "name": "xf_t5323274b", + "phases": "BS", + "to": "x2860500b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2841633", + "name": "xf_t5293645a", + "phases": "AS", + "to": "x2841633a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254206", + "name": "xf_t5355592b", + "phases": "BS", + "to": "x3254206b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104157", + "name": "xf_t5293427c", + "phases": "CS", + "to": "x3104157c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000405", + "name": "xf_t2000405a", + "phases": "AS", + "to": "x2000405a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2691948", + "name": "xf_t5337703b", + "phases": "BS", + "to": "x2691948b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2973148", + "name": "xf_t5339047a", + "phases": "AS", + "to": "x2973148a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2841631", + "name": "xf_t5391976c", + "phases": "CS", + "to": "x2841631c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3008237", + "name": "xf_t226193838c", + "phases": "CS", + "to": "x3008237c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2841636", + "name": "xf_t5391758b", + "phases": "BS", + "to": "x2841636b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3141403", + "name": "xf_t21399707a", + "phases": "AS", + "to": "x3141403a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2860491", + "name": "xf_t5302733b", + "phases": "BS", + "to": "x2860491b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2748131", + "name": "xf_t5323250b", + "phases": "BS", + "to": "x2748131b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2897766", + "name": "xf_t28128007c", + "phases": "CS", + "to": "x2897766c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2860491", + "name": "xf_t5302733a", + "phases": "AS", + "to": "x2860491a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2973833", + "name": "xf_t5260630b", + "phases": "BS", + "to": "x2973833b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3048963", + "name": "xf_t5260521b", + "phases": "BS", + "to": "x3048963b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3085399", + "name": "xf_t5302862c", + "phases": "CS", + "to": "x3085399c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3160100", + "name": "xf_t5321847b", + "phases": "BS", + "to": "x3160100b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2804249", + "name": "xf_t21389962c", + "phases": "CS", + "to": "x2804249c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2710511", + "name": "xf_t21357515a", + "phases": "AS", + "to": "x2710511a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3085395", + "name": "xf_t21391094a", + "phases": "AS", + "to": "x3085395a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2764411", + "name": "xf_t226010605c", + "phases": "CS", + "to": "x2764411c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104796", + "name": "xf_t5260569c", + "phases": "CS", + "to": "x3104796c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2673309", + "name": "xf_t5138472c", + "phases": "CS", + "to": "x2673309c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2879064", + "name": "xf_t5138581a", + "phases": "AS", + "to": "x2879064a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000402", + "name": "xf_t2000402a", + "phases": "AS", + "to": "x2000402a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2935566", + "name": "xf_t5441854c", + "phases": "CS", + "to": "x2935566c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2973152", + "name": "xf_t5323253b", + "phases": "BS", + "to": "x2973152b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2822858", + "name": "xf_t5355591b", + "phases": "BS", + "to": "x2822858b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2897800", + "name": "xf_t5323277b", + "phases": "BS", + "to": "x2897800b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2785536", + "name": "xf_t5339002b", + "phases": "BS", + "to": "x2785536b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3047073", + "name": "xf_t227917133c", + "phases": "CS", + "to": "x3047073c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2897801", + "name": "xf_t21470405a", + "phases": "AS", + "to": "x2897801a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2766750", + "name": "xf_t5293424c", + "phases": "CS", + "to": "x2766750c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2710532", + "name": "xf_t5293666c", + "phases": "CS", + "to": "x2710532c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254214", + "name": "xf_t5337706b", + "phases": "BS", + "to": "x3254214b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3216350", + "name": "xf_t5391977a", + "phases": "AS", + "to": "x3216350a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5", + "from": "l3254915", + "name": "xf_t5260520b", + "phases": "BS", + "to": "x3254915b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3142078", + "name": "xf_t5330121b", + "phases": "BS", + "to": "x3142078b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2766719", + "name": "xf_t21357865a", + "phases": "AS", + "to": "x2766719a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2860489", + "name": "xf_t5302405a", + "phases": "AS", + "to": "x2860489a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2878848", + "name": "xf_t22112168887c", + "phases": "CS", + "to": "x2878848c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3217057", + "name": "xf_t5218475a", + "phases": "AS", + "to": "x3217057a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3085390", + "name": "xf_t5321848b", + "phases": "BS", + "to": "x3085390b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2692655", + "name": "xf_t21389307c", + "phases": "CS", + "to": "x2692655c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2842329", + "name": "xf_t5260568c", + "phases": "CS", + "to": "x2842329c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2726974", + "name": "xf_t226193395b", + "phases": "BS", + "to": "x2726974b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2972930", + "name": "xf_t5338927a", + "phases": "AS", + "to": "x2972930a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2879066", + "name": "xf_t5323252b", + "phases": "BS", + "to": "x2879066b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000403", + "name": "xf_t2000403a", + "phases": "AS", + "to": "x2000403a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2860504", + "name": "xf_t5293667a", + "phases": "AS", + "to": "x2860504a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2763153", + "name": "xf_t5293425a", + "phases": "AS", + "to": "x2763153a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3178988", + "name": "xf_t5339001b", + "phases": "BS", + "to": "x3178988b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3226771", + "name": "xf_t227100746a", + "phases": "AS", + "to": "x3226771a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2916234", + "name": "xf_t228549643a", + "phases": "AS", + "to": "x2916234a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3048211", + "name": "xf_t21396015a", + "phases": "AS", + "to": "x3048211a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2785547", + "name": "xf_t5337705b", + "phases": "BS", + "to": "x2785547b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2916602", + "name": "xf_t5339049a", + "phases": "AS", + "to": "x2916602a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2860478", + "name": "xf_t5355590b", + "phases": "BS", + "to": "x2860478b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2728247", + "name": "xf_t5337729b", + "phases": "BS", + "to": "x2728247b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3029495", + "name": "xf_t5391736b", + "phases": "BS", + "to": "x3029495b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3141402", + "name": "xf_t5391978c", + "phases": "CS", + "to": "x3141402c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2728247", + "name": "xf_t5337729c", + "phases": "CS", + "to": "x2728247c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2728247", + "name": "xf_t5337729a", + "phases": "AS", + "to": "x2728247a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2841634", + "name": "xf_t5392038b", + "phases": "BS", + "to": "x2841634b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2711226", + "name": "xf_t5260527b", + "phases": "BS", + "to": "x2711226b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2989565", + "name": "xf_t21389237a", + "phases": "AS", + "to": "x2989565a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l2802481", + "name": "xf_t226308730a", + "phases": "AS", + "to": "x2802481a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2917310", + "name": "xf_t5260503b", + "phases": "BS", + "to": "x2917310b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3027124", + "name": "xf_t226195194c", + "phases": "CS", + "to": "x3027124c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3342743", + "name": "xf_t2223703238c", + "phases": "CS", + "to": "x3342743c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2821770", + "name": "xf_t227917119a", + "phases": "AS", + "to": "x2821770a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000913", + "name": "xf_t2000913c", + "phases": "CS", + "to": "x2000913c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3048205", + "name": "xf_t5274994c", + "phases": "CS", + "to": "x3048205c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3178997", + "name": "xf_t5293422c", + "phases": "CS", + "to": "x3178997c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001011", + "name": "xf_t2001011b", + "phases": "BS", + "to": "x2001011b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3207907", + "name": "xf_t5293664a", + "phases": "AS", + "to": "x3207907a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l3207907", + "name": "xf_t5293664b", + "phases": "BS", + "to": "x3207907b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3207907", + "name": "xf_t5293664c", + "phases": "CS", + "to": "x3207907c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3150961", + "name": "xf_t223400157c", + "phases": "CS", + "to": "x3150961c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct250", + "from": "l3234149", + "name": "xf_t227944551c", + "phases": "CS", + "to": "x3234149c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3216347", + "name": "xf_t5138413c", + "phases": "CS", + "to": "x3216347c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3010556", + "name": "xf_t5138655a", + "phases": "AS", + "to": "x3010556a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct250", + "from": "l3234149", + "name": "xf_t227944551a", + "phases": "AS", + "to": "x3234149a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct250", + "from": "l3234149", + "name": "xf_t227944551b", + "phases": "BS", + "to": "x3234149b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2748839", + "name": "xf_t5260502b", + "phases": "BS", + "to": "x2748839b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3179699", + "name": "xf_t21393454b", + "phases": "BS", + "to": "x3179699b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3214549", + "name": "xf_t226308731a", + "phases": "AS", + "to": "x3214549a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000914", + "name": "xf_t2000914c", + "phases": "CS", + "to": "x2000914c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254237", + "name": "xf_t21482181a", + "phases": "AS", + "to": "x3254237a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2983432", + "name": "xf_t225534325a", + "phases": "AS", + "to": "x2983432a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3139103", + "name": "xf_t225767272a", + "phases": "AS", + "to": "x3139103a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3122849", + "name": "xf_t5293423b", + "phases": "BS", + "to": "x3122849b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l3645811", + "name": "xf_t2224230689c", + "phases": "CS", + "to": "x3645811c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001012", + "name": "xf_t2001012b", + "phases": "BS", + "to": "x2001012b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2973166", + "name": "xf_t5293665c", + "phases": "CS", + "to": "x2973166c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104155", + "name": "xf_t21474587c", + "phases": "CS", + "to": "x3104155c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3159448", + "name": "xf_t5337684a", + "phases": "AS", + "to": "x3159448a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2785523", + "name": "xf_t5138412c", + "phases": "CS", + "to": "x2785523c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3082983", + "name": "xf_t226193899b", + "phases": "BS", + "to": "x3082983b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2841628", + "name": "xf_t28120786a", + "phases": "AS", + "to": "x2841628a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2798067", + "name": "xf_t225533237b", + "phases": "BS", + "to": "x2798067b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3142098", + "name": "xf_t5260501b", + "phases": "BS", + "to": "x3142098b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2897769", + "name": "xf_t5337660c", + "phases": "CS", + "to": "x2897769c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2842383", + "name": "xf_t5260634a", + "phases": "AS", + "to": "x2842383a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5", + "from": "l2689678", + "name": "xf_t226192762b", + "phases": "BS", + "to": "x2689678b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000911", + "name": "xf_t2000911c", + "phases": "CS", + "to": "x2000911c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2804250", + "name": "xf_t5274992c", + "phases": "CS", + "to": "x2804250c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3649302", + "name": "xf_t2224237653a", + "phases": "AS", + "to": "x3649302a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2710520", + "name": "xf_t5138679a", + "phases": "AS", + "to": "x2710520a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2711224", + "name": "xf_t5260500b", + "phases": "BS", + "to": "x2711224b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3197654", + "name": "xf_t21382992a", + "phases": "AS", + "to": "x3197654a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3235268", + "name": "xf_t28099529c", + "phases": "CS", + "to": "x3235268c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3214071", + "name": "xf_t226194419c", + "phases": "CS", + "to": "x3214071c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2935559", + "name": "xf_t21400185a", + "phases": "AS", + "to": "x2935559a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000912", + "name": "xf_t2000912c", + "phases": "CS", + "to": "x2000912c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2897771", + "name": "xf_t21148701b", + "phases": "BS", + "to": "x2897771b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3047058", + "name": "xf_t227902981a", + "phases": "AS", + "to": "x3047058a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2973151", + "name": "xf_t5138569a", + "phases": "AS", + "to": "x2973151a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2673331", + "name": "xf_t5338990b", + "phases": "BS", + "to": "x2673331b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001010", + "name": "xf_t2001010b", + "phases": "BS", + "to": "x2001010b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3216368", + "name": "xf_t5293663c", + "phases": "CS", + "to": "x3216368c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2767414", + "name": "xf_t5351019c", + "phases": "CS", + "to": "x2767414c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2766718", + "name": "xf_t5138652c", + "phases": "CS", + "to": "x2766718c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2748135", + "name": "xf_t28150172a", + "phases": "AS", + "to": "x2748135a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2748129", + "name": "xf_t5138567a", + "phases": "AS", + "to": "x2748129a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2822868", + "name": "xf_t21397544a", + "phases": "AS", + "to": "x2822868a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2766499", + "name": "xf_t22112168880c", + "phases": "CS", + "to": "x2766499c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2786204", + "name": "xf_t5223662c", + "phases": "CS", + "to": "x2786204c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3066830", + "name": "xf_t21469960b", + "phases": "BS", + "to": "x3066830b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000715", + "name": "xf_t2000715b", + "phases": "BS", + "to": "x2000715b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5", + "from": "l3197624", + "name": "xf_t5323235b", + "phases": "BS", + "to": "x3197624b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2916610", + "name": "xf_t5293660b", + "phases": "BS", + "to": "x2916610b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3122835", + "name": "xf_t5339008b", + "phases": "BS", + "to": "x3122835b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3104132", + "name": "xf_t5302469a", + "phases": "AS", + "to": "x3104132a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3197628", + "name": "xf_t5138651c", + "phases": "CS", + "to": "x3197628c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2954338", + "name": "xf_t5355618b", + "phases": "BS", + "to": "x2954338b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2785519", + "name": "xf_t5138566a", + "phases": "AS", + "to": "x2785519a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2876798", + "name": "xf_t226193745b", + "phases": "BS", + "to": "x2876798b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3030203", + "name": "xf_t5260639c", + "phases": "CS", + "to": "x3030203c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2936216", + "name": "xf_t5223663c", + "phases": "CS", + "to": "x2936216c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3048228", + "name": "xf_t5274997c", + "phases": "CS", + "to": "x3048228c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000910", + "name": "xf_t2000910c", + "phases": "CS", + "to": "x2000910c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2860480", + "name": "xf_t5323234b", + "phases": "BS", + "to": "x2860480b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3251854", + "name": "xf_t226881700a", + "phases": "AS", + "to": "x3251854a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2861219", + "name": "xf_t21389761b", + "phases": "BS", + "to": "x2861219b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2916617", + "name": "xf_t5339007b", + "phases": "BS", + "to": "x2916617b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3141393", + "name": "xf_t5442373c", + "phases": "CS", + "to": "x3141393c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3645812", + "name": "xf_t2224230754c", + "phases": "CS", + "to": "x3645812c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2710510", + "name": "xf_t5138650c", + "phases": "CS", + "to": "x2710510c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3102793", + "name": "xf_t227734175b", + "phases": "BS", + "to": "x3102793b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2973146", + "name": "xf_t28118903b", + "phases": "BS", + "to": "x2973146b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2991915", + "name": "xf_t5392036b", + "phases": "BS", + "to": "x2991915b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104122", + "name": "xf_t5138565a", + "phases": "AS", + "to": "x3104122a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3160871", + "name": "xf_t5260638c", + "phases": "CS", + "to": "x3160871c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3217053", + "name": "xf_t5260529c", + "phases": "CS", + "to": "x3217053c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3270814", + "name": "xf_t226191850a", + "phases": "AS", + "to": "x3270814a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2861218", + "name": "xf_t5260505c", + "phases": "CS", + "to": "x2861218c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3197646", + "name": "xf_t5355944b", + "phases": "BS", + "to": "x3197646b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3082988", + "name": "xf_t226195153b", + "phases": "BS", + "to": "x3082988b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000713", + "name": "xf_t2000713b", + "phases": "BS", + "to": "x2000713b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3160863", + "name": "xf_t5223660c", + "phases": "CS", + "to": "x3160863c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3235946", + "name": "xf_t5356800a", + "phases": "AS", + "to": "x3235946a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2673320", + "name": "xf_t5392037b", + "phases": "BS", + "to": "x2673320b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2822870", + "name": "xf_t21399171c", + "phases": "CS", + "to": "x2822870c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3728038", + "name": "xf_t2224387019a", + "phases": "AS", + "to": "x3728038a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3195318", + "name": "xf_t226194280b", + "phases": "BS", + "to": "x3195318b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3048196", + "name": "xf_t5138237b", + "phases": "BS", + "to": "x3048196b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2804283", + "name": "xf_t5138564a", + "phases": "AS", + "to": "x2804283a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2916609", + "name": "xf_t5138346c", + "phases": "CS", + "to": "x2916609c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3217052", + "name": "xf_t5260528c", + "phases": "CS", + "to": "x3217052c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3048199", + "name": "xf_t5323237b", + "phases": "BS", + "to": "x3048199b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2785529", + "name": "xf_t5355943c", + "phases": "CS", + "to": "x2785529c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3160862", + "name": "xf_t21386143c", + "phases": "CS", + "to": "x3160862c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2842384", + "name": "xf_t5260637c", + "phases": "CS", + "to": "x2842384c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3215385", + "name": "xf_t21384099c", + "phases": "CS", + "to": "x3215385c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3215385", + "name": "xf_t21384099b", + "phases": "BS", + "to": "x3215385b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3215385", + "name": "xf_t21384099a", + "phases": "AS", + "to": "x3215385a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000714", + "name": "xf_t2000714b", + "phases": "BS", + "to": "x2000714b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2730108", + "name": "xf_t5223661c", + "phases": "CS", + "to": "x2730108c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2822860", + "name": "xf_t5323236b", + "phases": "BS", + "to": "x2822860b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3104124", + "name": "xf_t5356065b", + "phases": "BS", + "to": "x3104124b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3011229", + "name": "xf_t5356801a", + "phases": "AS", + "to": "x3011229a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2897778", + "name": "xf_t5302468a", + "phases": "AS", + "to": "x2897778a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2851933", + "name": "xf_t21393643c", + "phases": "CS", + "to": "x2851933c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3104154", + "name": "xf_t5337642c", + "phases": "CS", + "to": "x3104154c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3029518", + "name": "xf_t5337666b", + "phases": "BS", + "to": "x3029518b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2973165", + "name": "xf_t5355942a", + "phases": "AS", + "to": "x2973165a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2766744", + "name": "xf_t28127319b", + "phases": "BS", + "to": "x2766744b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2820556", + "name": "xf_t226196648a", + "phases": "AS", + "to": "x2820556a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2851933", + "name": "xf_t21393643a", + "phases": "AS", + "to": "x2851933a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2851933", + "name": "xf_t21393643b", + "phases": "BS", + "to": "x2851933b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct100", + "from": "l2691959", + "name": "xf_t21400253b", + "phases": "BS", + "to": "x2691959b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3197638", + "name": "xf_t21396959a", + "phases": "AS", + "to": "x3197638a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3122823", + "name": "xf_t5302370b", + "phases": "BS", + "to": "x3122823b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2748157", + "name": "xf_t5338973a", + "phases": "AS", + "to": "x2748157a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2860499", + "name": "xf_t5338997b", + "phases": "BS", + "to": "x2860499b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001213", + "name": "xf_t2001213c", + "phases": "CS", + "to": "x2001213c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2767342", + "name": "xf_t5356802a", + "phases": "AS", + "to": "x2767342a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2823611", + "name": "xf_t21386877a", + "phases": "AS", + "to": "x2823611a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2935556", + "name": "xf_t5356064b", + "phases": "BS", + "to": "x2935556b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3048890", + "name": "xf_t28128517c", + "phases": "CS", + "to": "x3048890c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2876812", + "name": "xf_t5321880a", + "phases": "AS", + "to": "x2876812a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2804282", + "name": "xf_t5337641c", + "phases": "CS", + "to": "x2804282c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2691949", + "name": "xf_t5337689b", + "phases": "BS", + "to": "x2691949b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2973178", + "name": "xf_t5337665b", + "phases": "BS", + "to": "x2973178b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3728039", + "name": "xf_t2224387053a", + "phases": "AS", + "to": "x3728039a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3010580", + "name": "xf_t21451973b", + "phases": "BS", + "to": "x3010580b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2955047", + "name": "xf_t21469911a", + "phases": "AS", + "to": "x2955047a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2841632", + "name": "xf_t5338972b", + "phases": "BS", + "to": "x2841632b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2673316", + "name": "xf_t28120855a", + "phases": "AS", + "to": "x2673316a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3160103", + "name": "xf_t5356063c", + "phases": "CS", + "to": "x3160103c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2841622", + "name": "xf_t21384215a", + "phases": "AS", + "to": "x2841622a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3214069", + "name": "xf_t226194421c", + "phases": "CS", + "to": "x3214069c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001214", + "name": "xf_t2001214c", + "phases": "CS", + "to": "x2001214c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2748780", + "name": "xf_t5356803a", + "phases": "AS", + "to": "x2748780a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2970811", + "name": "xf_t5321881a", + "phases": "AS", + "to": "x2970811a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2955055", + "name": "xf_t21249647b", + "phases": "BS", + "to": "x2955055b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "293471", + "name": "xf_t5293471c", + "phases": "CS", + "to": "x_293471c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2935549", + "name": "xf_t5337668b", + "phases": "BS", + "to": "x2935549b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2954352", + "name": "xf_t28127090c", + "phases": "CS", + "to": "x2954352c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3085394", + "name": "xf_t5274988c", + "phases": "CS", + "to": "x3085394c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2785537", + "name": "xf_t5338975a", + "phases": "AS", + "to": "x2785537a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2822873", + "name": "xf_t5338999b", + "phases": "BS", + "to": "x2822873b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2785525", + "name": "xf_t21396606c", + "phases": "CS", + "to": "x2785525c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3122816", + "name": "xf_t5356062b", + "phases": "BS", + "to": "x3122816b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2991901", + "name": "xf_t5354851b", + "phases": "BS", + "to": "x2991901b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2823544", + "name": "xf_t5356804a", + "phases": "AS", + "to": "x2823544a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3122811", + "name": "xf_t5337669a", + "phases": "AS", + "to": "x3122811a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001211", + "name": "xf_t2001211c", + "phases": "CS", + "to": "x2001211c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2916607", + "name": "xf_t5321882c", + "phases": "CS", + "to": "x2916607c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254216", + "name": "xf_t21398563a", + "phases": "AS", + "to": "x3254216a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3215340", + "name": "xf_t228057846a", + "phases": "AS", + "to": "x3215340a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2897806", + "name": "xf_t5337643c", + "phases": "CS", + "to": "x2897806c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3216361", + "name": "xf_t21452406b", + "phases": "BS", + "to": "x3216361b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3195315", + "name": "xf_t226193662a", + "phases": "AS", + "to": "x3195315a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2822872", + "name": "xf_t5338950b", + "phases": "BS", + "to": "x2822872b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3312692", + "name": "xf_t2223661373a", + "phases": "AS", + "to": "x3312692a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2916605", + "name": "xf_t5274987c", + "phases": "CS", + "to": "x2916605c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3085410", + "name": "xf_t5339097b", + "phases": "BS", + "to": "x3085410b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2955081", + "name": "xf_t5260508a", + "phases": "AS", + "to": "x2955081a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254229", + "name": "xf_t5338998b", + "phases": "BS", + "to": "x3254229b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2858163", + "name": "xf_t5391990a", + "phases": "AS", + "to": "x2858163a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3195321", + "name": "xf_t5356805a", + "phases": "AS", + "to": "x3195321a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001212", + "name": "xf_t2001212c", + "phases": "CS", + "to": "x2001212c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3104830", + "name": "xf_t5328367c", + "phases": "CS", + "to": "x3104830c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3010564", + "name": "xf_t5321883c", + "phases": "CS", + "to": "x3010564c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2767409", + "name": "xf_t21391242b", + "phases": "BS", + "to": "x2767409b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2729408", + "name": "xf_t5355768b", + "phases": "BS", + "to": "x2729408b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3120376", + "name": "xf_t226163467a", + "phases": "AS", + "to": "x3120376a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2879087", + "name": "xf_t21399762a", + "phases": "AS", + "to": "x2879087a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2929261", + "name": "xf_t225533337a", + "phases": "AS", + "to": "x2929261a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2804272", + "name": "xf_t5338993b", + "phases": "BS", + "to": "x2804272b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2879092", + "name": "xf_t21399326c", + "phases": "CS", + "to": "x2879092c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2992556", + "name": "xf_t5346639c", + "phases": "CS", + "to": "x2992556c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001015", + "name": "xf_t2001015b", + "phases": "BS", + "to": "x2001015b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2875754", + "name": "xf_t225897943c", + "phases": "CS", + "to": "x2875754c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2785526", + "name": "xf_t5302374b", + "phases": "BS", + "to": "x2785526b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3216988", + "name": "xf_t5260590b", + "phases": "BS", + "to": "x3216988b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2730163", + "name": "xf_t5260481c", + "phases": "CS", + "to": "x2730163c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3048206", + "name": "xf_t5138649a", + "phases": "AS", + "to": "x3048206a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2861157", + "name": "xf_t5251867c", + "phases": "CS", + "to": "x2861157c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2766749", + "name": "xf_t5337661b", + "phases": "BS", + "to": "x2766749b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2726975", + "name": "xf_t226193422b", + "phases": "BS", + "to": "x2726975b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2859391", + "name": "xf_t227989724b", + "phases": "BS", + "to": "x2859391b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3140238", + "name": "xf_t227905262a", + "phases": "AS", + "to": "x3140238a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2685805", + "name": "xf_t225533531a", + "phases": "AS", + "to": "x2685805a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2989432", + "name": "xf_t226163575b", + "phases": "BS", + "to": "x2989432b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3048209", + "name": "xf_t28120195b", + "phases": "BS", + "to": "x3048209b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3197634", + "name": "xf_t5355767b", + "phases": "BS", + "to": "x3197634b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3027116", + "name": "xf_t226192684a", + "phases": "AS", + "to": "x3027116a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2935567", + "name": "xf_t5338992b", + "phases": "BS", + "to": "x2935567b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3233353", + "name": "xf_t21399630a", + "phases": "AS", + "to": "x3233353a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3179646", + "name": "xf_t5328365b", + "phases": "BS", + "to": "x3179646b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2691943", + "name": "xf_t5323400b", + "phases": "BS", + "to": "x2691943b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2823545", + "name": "xf_t5356807a", + "phases": "AS", + "to": "x2823545a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3030199", + "name": "xf_t5260480c", + "phases": "CS", + "to": "x3030199c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2766726", + "name": "xf_t5302373b", + "phases": "BS", + "to": "x2766726b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "293471", + "name": "xf_t5293471b", + "phases": "BS", + "to": "x_293471b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "293471", + "name": "xf_t5293471a", + "phases": "AS", + "to": "x_293471a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001210", + "name": "xf_t2001210c", + "phases": "CS", + "to": "x2001210c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2917359", + "name": "xf_t21482431a", + "phases": "AS", + "to": "x2917359a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2876796", + "name": "xf_t226193338a", + "phases": "AS", + "to": "x2876796a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2841630", + "name": "xf_t5138404c", + "phases": "CS", + "to": "x2841630c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3029501", + "name": "xf_t5337688b", + "phases": "BS", + "to": "x3029501b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2785520", + "name": "xf_t5138755b", + "phases": "BS", + "to": "x2785520b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2891575", + "name": "xf_t225533423c", + "phases": "CS", + "to": "x2891575c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3254227", + "name": "xf_t5338995b", + "phases": "BS", + "to": "x3254227b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2673343", + "name": "xf_t21470122b", + "phases": "BS", + "to": "x2673343b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2841616", + "name": "xf_t21031684a", + "phases": "AS", + "to": "x2841616a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3101782", + "name": "xf_t5356808a", + "phases": "AS", + "to": "x3101782a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000915", + "name": "xf_t2000915c", + "phases": "CS", + "to": "x2000915c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2692633", + "name": "xf_t5328364c", + "phases": "CS", + "to": "x2692633c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3254210", + "name": "xf_t5138647c", + "phases": "CS", + "to": "x3254210c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2841629", + "name": "xf_t5138405c", + "phases": "CS", + "to": "x2841629c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001013", + "name": "xf_t2001013b", + "phases": "BS", + "to": "x2001013b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2879062", + "name": "xf_t21385192c", + "phases": "CS", + "to": "x2879062c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2841637", + "name": "xf_t5293492c", + "phases": "CS", + "to": "x2841637c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3066816", + "name": "xf_t21398676a", + "phases": "AS", + "to": "x3066816a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2973156", + "name": "xf_t5337687b", + "phases": "BS", + "to": "x2973156b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3104120", + "name": "xf_t5138645b", + "phases": "BS", + "to": "x3104120b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2991929", + "name": "xf_t28147708b", + "phases": "BS", + "to": "x2991929b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3254212", + "name": "xf_t5138754b", + "phases": "BS", + "to": "x3254212b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2916603", + "name": "xf_t5323403b", + "phases": "BS", + "to": "x2916603b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3142050", + "name": "xf_t5251865c", + "phases": "CS", + "to": "x3142050c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2673323", + "name": "xf_t5355438c", + "phases": "CS", + "to": "x2673323c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3160115", + "name": "xf_t5338994b", + "phases": "BS", + "to": "x3160115b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2936214", + "name": "xf_t5356809a", + "phases": "AS", + "to": "x2936214a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3048221", + "name": "xf_t21399305a", + "phases": "AS", + "to": "x3048221a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3141401", + "name": "xf_t5338970a", + "phases": "AS", + "to": "x3141401a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2710536", + "name": "xf_t21396867a", + "phases": "AS", + "to": "x2710536a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2936213", + "name": "xf_t5328363b", + "phases": "BS", + "to": "x2936213b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2804251", + "name": "xf_t5138646a", + "phases": "AS", + "to": "x2804251a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2973162", + "name": "xf_t5302375b", + "phases": "BS", + "to": "x2973162b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001014", + "name": "xf_t2001014b", + "phases": "BS", + "to": "x2001014b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2952014", + "name": "xf_t5294809a", + "phases": "AS", + "to": "x2952014a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l2767340", + "name": "xf_t5260595a", + "phases": "AS", + "to": "x2767340a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001307", + "name": "xf_t2001307a", + "phases": "AS", + "to": "x2001307a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2954347", + "name": "xf_t5321841b", + "phases": "BS", + "to": "x2954347b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3157167", + "name": "xf_t226115278a", + "phases": "AS", + "to": "x3157167a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l2767340", + "name": "xf_t5260595c", + "phases": "CS", + "to": "x2767340c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l2767340", + "name": "xf_t5260595b", + "phases": "BS", + "to": "x2767340b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2879070", + "name": "xf_t5338934b", + "phases": "BS", + "to": "x2879070b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3066809", + "name": "xf_t5338958c", + "phases": "CS", + "to": "x3066809c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2766717", + "name": "xf_t5138470c", + "phases": "CS", + "to": "x2766717c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3029520", + "name": "xf_t21486213b", + "phases": "BS", + "to": "x3029520b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2710525", + "name": "xf_t5355437c", + "phases": "CS", + "to": "x2710525c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254228", + "name": "xf_t5325474b", + "phases": "BS", + "to": "x3254228b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000412", + "name": "xf_t2000412a", + "phases": "AS", + "to": "x2000412a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2710518", + "name": "xf_t21209868a", + "phases": "AS", + "to": "x2710518a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2673306", + "name": "xf_t5293608c", + "phases": "CS", + "to": "x2673306c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2801909", + "name": "xf_t226195333c", + "phases": "CS", + "to": "x2801909c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3216345", + "name": "xf_t5338933b", + "phases": "BS", + "to": "x3216345b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2710509", + "name": "xf_t5275000c", + "phases": "CS", + "to": "x2710509c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2973163", + "name": "xf_t5391753b", + "phases": "BS", + "to": "x2973163b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2748140", + "name": "xf_t5391995a", + "phases": "AS", + "to": "x2748140a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2879074", + "name": "xf_t5310560a", + "phases": "AS", + "to": "x2879074a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3085393", + "name": "xf_t5337627c", + "phases": "CS", + "to": "x3085393c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3048230", + "name": "xf_t5293490c", + "phases": "CS", + "to": "x3048230c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001308", + "name": "xf_t2001308a", + "phases": "AS", + "to": "x2001308a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2861223", + "name": "xf_t5260461b", + "phases": "BS", + "to": "x2861223b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2991916", + "name": "xf_t5337710b", + "phases": "BS", + "to": "x2991916b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2801902", + "name": "xf_t226194002b", + "phases": "BS", + "to": "x2801902b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3197627", + "name": "xf_t5337625c", + "phases": "CS", + "to": "x3197627c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2876814", + "name": "xf_t225806974a", + "phases": "AS", + "to": "x2876814a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2898457", + "name": "xf_t5260594a", + "phases": "AS", + "to": "x2898457a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2785517", + "name": "xf_t5338957c", + "phases": "CS", + "to": "x2785517c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2785515", + "name": "xf_t5293609c", + "phases": "CS", + "to": "x2785515c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3649299", + "name": "xf_t2224237391a", + "phases": "AS", + "to": "x3649299a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2803199", + "name": "xf_t227760021c", + "phases": "CS", + "to": "x2803199c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2803199", + "name": "xf_t227760021a", + "phases": "AS", + "to": "x2803199a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2803199", + "name": "xf_t227760021b", + "phases": "BS", + "to": "x2803199b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000413", + "name": "xf_t2000413a", + "phases": "AS", + "to": "x2000413a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3197661", + "name": "xf_t5338932c", + "phases": "CS", + "to": "x3197661c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l2763812", + "name": "xf_t21459651c", + "phases": "CS", + "to": "x2763812c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3235275", + "name": "xf_t5302507b", + "phases": "BS", + "to": "x3235275b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3216343", + "name": "xf_t5337626c", + "phases": "CS", + "to": "x3216343c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3141412", + "name": "xf_t5391996a", + "phases": "AS", + "to": "x3141412a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3122820", + "name": "xf_t5310561a", + "phases": "AS", + "to": "x3122820a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2897776", + "name": "xf_t5302858c", + "phases": "CS", + "to": "x2897776c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3214055", + "name": "xf_t226192175c", + "phases": "CS", + "to": "x3214055c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2841625", + "name": "xf_t5302834c", + "phases": "CS", + "to": "x2841625c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3626914", + "name": "xf_t2224179616c", + "phases": "CS", + "to": "x3626914c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2785524", + "name": "xf_t28044328c", + "phases": "CS", + "to": "x2785524c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3179650", + "name": "xf_t5251828b", + "phases": "BS", + "to": "x3179650b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2729206", + "name": "xf_t22112168866c", + "phases": "CS", + "to": "x2729206c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2992624", + "name": "xf_t5260484a", + "phases": "AS", + "to": "x2992624a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2766716", + "name": "xf_t5337713c", + "phases": "CS", + "to": "x2766716c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001305", + "name": "xf_t2001305a", + "phases": "AS", + "to": "x2001305a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5", + "from": "l2914324", + "name": "xf_t226196642a", + "phases": "AS", + "to": "x2914324a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3048231", + "name": "xf_t21400215b", + "phases": "BS", + "to": "x3048231b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3066815", + "name": "xf_t5338936c", + "phases": "CS", + "to": "x3066815c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3048203", + "name": "xf_t5323273b", + "phases": "BS", + "to": "x3048203b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2691966", + "name": "xf_t5339010b", + "phases": "BS", + "to": "x2691966b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3178973", + "name": "xf_t21149420a", + "phases": "AS", + "to": "x3178973a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2673319", + "name": "xf_t5391973c", + "phases": "CS", + "to": "x2673319c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2748128", + "name": "xf_t5337629c", + "phases": "CS", + "to": "x2748128c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3254209", + "name": "xf_t5337714c", + "phases": "CS", + "to": "x3254209c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3727710", + "name": "xf_t2224386863a", + "phases": "AS", + "to": "x3727710a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2806553", + "name": "xf_t227411655c", + "phases": "CS", + "to": "x2806553c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2748132", + "name": "xf_t5302637a", + "phases": "AS", + "to": "x2748132a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104130", + "name": "xf_t5391755b", + "phases": "BS", + "to": "x3104130b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2954361", + "name": "xf_t21383494b", + "phases": "BS", + "to": "x2954361b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2804253", + "name": "xf_t21396254a", + "phases": "AS", + "to": "x2804253a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2973149", + "name": "xf_t5325472b", + "phases": "BS", + "to": "x2973149b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2785531", + "name": "xf_t21399809a", + "phases": "AS", + "to": "x2785531a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001306", + "name": "xf_t2001306a", + "phases": "AS", + "to": "x2001306a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3251807", + "name": "xf_t225673440a", + "phases": "AS", + "to": "x3251807a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3235245", + "name": "xf_t5337712c", + "phases": "CS", + "to": "x3235245c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2954344", + "name": "xf_t5338959c", + "phases": "CS", + "to": "x2954344c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2973160", + "name": "xf_t5338935b", + "phases": "BS", + "to": "x2973160b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000410", + "name": "xf_t2000410a", + "phases": "AS", + "to": "x2000410a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3159645", + "name": "xf_t228446184a", + "phases": "AS", + "to": "x3159645a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3215203", + "name": "xf_t227760024b", + "phases": "BS", + "to": "x3215203b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2860490", + "name": "xf_t5138719a", + "phases": "AS", + "to": "x2860490a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3215203", + "name": "xf_t227760024c", + "phases": "CS", + "to": "x3215203c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000411", + "name": "xf_t2000411a", + "phases": "AS", + "to": "x2000411a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3215203", + "name": "xf_t227760024a", + "phases": "AS", + "to": "x3215203a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3010562", + "name": "xf_t5325473b", + "phases": "BS", + "to": "x3010562b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2991933", + "name": "xf_t5355433c", + "phases": "CS", + "to": "x2991933c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3029183", + "name": "xf_t228580047b", + "phases": "BS", + "to": "x3029183b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2841621", + "name": "xf_t5338910c", + "phases": "CS", + "to": "x2841621c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2897770", + "name": "xf_t5337628c", + "phases": "CS", + "to": "x2897770c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2879079", + "name": "xf_t5391756b", + "phases": "BS", + "to": "x2879079b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2710543", + "name": "xf_t21474614c", + "phases": "CS", + "to": "x2710543c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3179607", + "name": "xf_t5260591b", + "phases": "BS", + "to": "x3179607b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3254869", + "name": "xf_t5260575b", + "phases": "BS", + "to": "x3254869b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2710544", + "name": "xf_t21482279a", + "phases": "AS", + "to": "x2710544a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001303", + "name": "xf_t2001303a", + "phases": "AS", + "to": "x2001303a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2879063", + "name": "xf_t5337646b", + "phases": "BS", + "to": "x2879063b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3160872", + "name": "xf_t5260551c", + "phases": "CS", + "to": "x3160872c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2786273", + "name": "xf_t5275247b", + "phases": "BS", + "to": "x2786273b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2726973", + "name": "xf_t226192926a", + "phases": "AS", + "to": "x2726973a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2895449", + "name": "xf_t226193134c", + "phases": "CS", + "to": "x2895449c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2748139", + "name": "xf_t21400108b", + "phases": "BS", + "to": "x2748139b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2933135", + "name": "xf_t226197070a", + "phases": "AS", + "to": "x2933135a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3122837", + "name": "xf_t5355432c", + "phases": "CS", + "to": "x3122837c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3118855", + "name": "xf_t5339052c", + "phases": "CS", + "to": "x3118855c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5", + "from": "l3235255", + "name": "xf_t5293519b", + "phases": "BS", + "to": "x3235255b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2684420", + "name": "xf_t225498968b", + "phases": "BS", + "to": "x2684420b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2916620", + "name": "xf_t5338977c", + "phases": "CS", + "to": "x2916620c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2916620", + "name": "xf_t5338977b", + "phases": "BS", + "to": "x2916620b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3216346", + "name": "xf_t5391991a", + "phases": "AS", + "to": "x3216346a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3728041", + "name": "xf_t2224387074a", + "phases": "AS", + "to": "x3728041a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3122821", + "name": "xf_t5338953b", + "phases": "BS", + "to": "x3122821b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3048227", + "name": "xf_t5337647a", + "phases": "AS", + "to": "x3048227a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3010567", + "name": "xf_t5302813c", + "phases": "CS", + "to": "x3010567c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2785543", + "name": "xf_t5321860b", + "phases": "BS", + "to": "x2785543b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104134", + "name": "xf_t5138718c", + "phases": "CS", + "to": "x3104134c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2710515", + "name": "xf_t5321884c", + "phases": "CS", + "to": "x2710515c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3727712", + "name": "xf_t2224386889a", + "phases": "AS", + "to": "x3727712a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3067478", + "name": "xf_t5260598a", + "phases": "AS", + "to": "x3067478a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2766746", + "name": "xf_t5321886c", + "phases": "CS", + "to": "x2766746c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3216342", + "name": "xf_t5337645b", + "phases": "BS", + "to": "x3216342b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001304", + "name": "xf_t2001304a", + "phases": "AS", + "to": "x2001304a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3123452", + "name": "xf_t5260574c", + "phases": "CS", + "to": "x3123452c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3047289", + "name": "xf_t228091193b", + "phases": "BS", + "to": "x3047289b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2916620", + "name": "xf_t5338977a", + "phases": "AS", + "to": "x2916620a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3047289", + "name": "xf_t228091193a", + "phases": "AS", + "to": "x3047289a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2879076", + "name": "xf_t5138380c", + "phases": "CS", + "to": "x2879076c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3047289", + "name": "xf_t228091193c", + "phases": "CS", + "to": "x3047289c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2691939", + "name": "xf_t5355589b", + "phases": "BS", + "to": "x2691939b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3231255", + "name": "xf_t5339051c", + "phases": "CS", + "to": "x3231255c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3048222", + "name": "xf_t5355431c", + "phases": "CS", + "to": "x3048222c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3315860", + "name": "xf_t2223664050b", + "phases": "BS", + "to": "x3315860b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2691967", + "name": "xf_t5338976b", + "phases": "BS", + "to": "x2691967b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2897764", + "name": "xf_t5391750b", + "phases": "BS", + "to": "x2897764b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3029500", + "name": "xf_t5391992a", + "phases": "AS", + "to": "x3029500a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3727709", + "name": "xf_t2224386842a", + "phases": "AS", + "to": "x3727709a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254220", + "name": "xf_t5138717c", + "phases": "CS", + "to": "x3254220c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3235248", + "name": "xf_t5321861c", + "phases": "CS", + "to": "x3235248c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2730187", + "name": "xf_t5260464a", + "phases": "AS", + "to": "x2730187a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2691941", + "name": "xf_t5321887c", + "phases": "CS", + "to": "x2691941c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2991640", + "name": "xf_t229106135c", + "phases": "CS", + "to": "x2991640c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3178977", + "name": "xf_t5302810c", + "phases": "CS", + "to": "x3178977c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2842379", + "name": "xf_t5260488a", + "phases": "AS", + "to": "x2842379a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3066807", + "name": "xf_t5337624c", + "phases": "CS", + "to": "x3066807c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3160896", + "name": "xf_t5260573c", + "phases": "CS", + "to": "x3160896c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2937757", + "name": "xf_t227411650c", + "phases": "CS", + "to": "x2937757c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2915542", + "name": "xf_t227921427c", + "phases": "CS", + "to": "x2915542c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2915542", + "name": "xf_t227921427b", + "phases": "BS", + "to": "x2915542b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2915542", + "name": "xf_t227921427a", + "phases": "AS", + "to": "x2915542a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104119", + "name": "xf_t5338956a", + "phases": "AS", + "to": "x3104119a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2822857", + "name": "xf_t5355588b", + "phases": "BS", + "to": "x2822857b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3122848", + "name": "xf_t21397121c", + "phases": "CS", + "to": "x3122848c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2785516", + "name": "xf_t5138294b", + "phases": "BS", + "to": "x2785516b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104114", + "name": "xf_t5355587b", + "phases": "BS", + "to": "x3104114b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3066806", + "name": "xf_t5275002c", + "phases": "CS", + "to": "x3066806c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3010560", + "name": "xf_t5338955b", + "phases": "BS", + "to": "x3010560b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l3102286", + "name": "xf_t226308729b", + "phases": "BS", + "to": "x3102286b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3010570", + "name": "xf_t5302392a", + "phases": "AS", + "to": "x3010570a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2785521", + "name": "xf_t5338931c", + "phases": "CS", + "to": "x2785521c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2860488", + "name": "xf_t5391751b", + "phases": "BS", + "to": "x2860488b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3156034", + "name": "xf_t5391993a", + "phases": "AS", + "to": "x3156034a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001215", + "name": "xf_t2001215c", + "phases": "CS", + "to": "x2001215c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2897779", + "name": "xf_t5302508c", + "phases": "CS", + "to": "x2897779c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3254215", + "name": "xf_t5302859c", + "phases": "CS", + "to": "x3254215c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254219", + "name": "xf_t5138716c", + "phases": "CS", + "to": "x3254219c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3160105", + "name": "xf_t5302811c", + "phases": "CS", + "to": "x3160105c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3235241", + "name": "xf_t5321888c", + "phases": "CS", + "to": "x3235241c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2804256", + "name": "xf_t5321840b", + "phases": "BS", + "to": "x2804256b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2692654", + "name": "xf_t5260487a", + "phases": "AS", + "to": "x2692654a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001302", + "name": "xf_t2001302a", + "phases": "AS", + "to": "x2001302a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3236004", + "name": "xf_t5260572c", + "phases": "CS", + "to": "x3236004c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3086075", + "name": "xf_t5260463b", + "phases": "BS", + "to": "x3086075b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2879089", + "name": "xf_t21455388c", + "phases": "CS", + "to": "x2879089c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3197626", + "name": "xf_t5337623c", + "phases": "CS", + "to": "x3197626c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3066814", + "name": "xf_t5338979b", + "phases": "BS", + "to": "x3066814b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2897780", + "name": "xf_t5293518b", + "phases": "BS", + "to": "x2897780b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254234", + "name": "xf_t5355586b", + "phases": "BS", + "to": "x3254234b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2822862", + "name": "xf_t5275001c", + "phases": "CS", + "to": "x2822862c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2860482", + "name": "xf_t5338954a", + "phases": "AS", + "to": "x2860482a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2766738", + "name": "xf_t5338978c", + "phases": "CS", + "to": "x2766738c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3029506", + "name": "xf_t5338930b", + "phases": "BS", + "to": "x3029506b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3160102", + "name": "xf_t5355780b", + "phases": "BS", + "to": "x3160102b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2804260", + "name": "xf_t5391752b", + "phases": "BS", + "to": "x2804260b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3066821", + "name": "xf_t5391994a", + "phases": "AS", + "to": "x3066821a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2804261", + "name": "xf_t5302509c", + "phases": "CS", + "to": "x2804261c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3216367", + "name": "xf_t5337648b", + "phases": "BS", + "to": "x3216367b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2935552", + "name": "xf_t5274903c", + "phases": "CS", + "to": "x2935552c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2691945", + "name": "xf_t5302812c", + "phases": "CS", + "to": "x2691945c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2973144", + "name": "xf_t5138466c", + "phases": "CS", + "to": "x2973144c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3085396", + "name": "xf_t5138684a", + "phases": "AS", + "to": "x3085396a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3197639", + "name": "xf_t5310569a", + "phases": "AS", + "to": "x3197639a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3010585", + "name": "xf_t5294810a", + "phases": "AS", + "to": "x3010585a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3179673", + "name": "xf_t5260640c", + "phases": "CS", + "to": "x3179673c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2860493", + "name": "xf_t21397645a", + "phases": "AS", + "to": "x2860493a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2841635", + "name": "xf_t21399099a", + "phases": "AS", + "to": "x2841635a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2673312", + "name": "xf_t5321837a", + "phases": "AS", + "to": "x2673312a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3048962", + "name": "xf_t5260555a", + "phases": "AS", + "to": "x3048962a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3232902", + "name": "xf_t226194826a", + "phases": "AS", + "to": "x3232902a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2897773", + "name": "xf_t5338918a", + "phases": "AS", + "to": "x2897773a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2766742", + "name": "xf_t5355585b", + "phases": "BS", + "to": "x2766742b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2897765", + "name": "xf_t5323243b", + "phases": "BS", + "to": "x2897765b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3233413", + "name": "xf_t226308727b", + "phases": "BS", + "to": "x3233413b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2710514", + "name": "xf_t5323267b", + "phases": "BS", + "to": "x2710514b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2936279", + "name": "xf_t5247184c", + "phases": "CS", + "to": "x2936279c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l0247160", + "name": "xf_t5247160b", + "phases": "BS", + "to": "x0247160b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3235273", + "name": "xf_t5339016b", + "phases": "BS", + "to": "x3235273b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2766748", + "name": "xf_t21470326a", + "phases": "AS", + "to": "x2766748a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2897772", + "name": "xf_t5302679a", + "phases": "AS", + "to": "x2897772a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2991918", + "name": "xf_t5391749b", + "phases": "BS", + "to": "x2991918b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3030200", + "name": "xf_t5260554c", + "phases": "CS", + "to": "x3030200c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3065665", + "name": "xf_t227895952a", + "phases": "AS", + "to": "x3065665a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2879055", + "name": "xf_t5138465c", + "phases": "CS", + "to": "x2879055c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2991907", + "name": "xf_t5138574a", + "phases": "AS", + "to": "x2991907a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3082981", + "name": "xf_t226193737c", + "phases": "CS", + "to": "x3082981c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3085401", + "name": "xf_t28127253a", + "phases": "AS", + "to": "x3085401a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2691944", + "name": "xf_t5321838a", + "phases": "AS", + "to": "x2691944a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2935555", + "name": "xf_t5338917a", + "phases": "AS", + "to": "x2935555a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2710542", + "name": "xf_t5355584b", + "phases": "BS", + "to": "x2710542b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3122810", + "name": "xf_t5323242b", + "phases": "BS", + "to": "x3122810b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3197632", + "name": "xf_t5323266b", + "phases": "BS", + "to": "x3197632b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3178974", + "name": "xf_t5323399b", + "phases": "BS", + "to": "x3178974b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3027671", + "name": "xf_t226308728a", + "phases": "AS", + "to": "x3027671a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2763072", + "name": "xf_t226924200b", + "phases": "BS", + "to": "x2763072b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3067447", + "name": "xf_t21386157a", + "phases": "AS", + "to": "x3067447a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3141397", + "name": "xf_t21396796b", + "phases": "BS", + "to": "x3141397b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2915534", + "name": "xf_t227917122a", + "phases": "AS", + "to": "x2915534a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104131", + "name": "xf_t5302410a", + "phases": "AS", + "to": "x3104131a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3066801", + "name": "xf_t5138464c", + "phases": "CS", + "to": "x3066801c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2711225", + "name": "xf_t5260553c", + "phases": "CS", + "to": "x2711225c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2710519", + "name": "xf_t5302676a", + "phases": "AS", + "to": "x2710519a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2897554", + "name": "xf_t22112168870c", + "phases": "CS", + "to": "x2897554c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3235253", + "name": "xf_t5138573a", + "phases": "AS", + "to": "x3235253a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2767341", + "name": "xf_t5260577c", + "phases": "CS", + "to": "x2767341c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2691951", + "name": "xf_t5138379c", + "phases": "CS", + "to": "x2691951c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2710516", + "name": "xf_t5321839a", + "phases": "AS", + "to": "x2710516a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3010557", + "name": "xf_t21380453a", + "phases": "AS", + "to": "x3010557a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3160793", + "name": "xf_t28147899c", + "phases": "CS", + "to": "x3160793c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3189188", + "name": "xf_t5293658c", + "phases": "CS", + "to": "x3189188c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2785512", + "name": "xf_t5323245b", + "phases": "BS", + "to": "x2785512b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3066817", + "name": "xf_t21373784a", + "phases": "AS", + "to": "x3066817a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2729424", + "name": "xf_t5339018a", + "phases": "AS", + "to": "x2729424a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3066819", + "name": "xf_t5302677a", + "phases": "AS", + "to": "x3066819a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3120484", + "name": "xf_t226191772c", + "phases": "CS", + "to": "x3120484c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3198348", + "name": "xf_t5260552a", + "phases": "AS", + "to": "x3198348a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3030126", + "name": "xf_t5260576c", + "phases": "CS", + "to": "x3030126c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2710517", + "name": "xf_t5310568a", + "phases": "AS", + "to": "x2710517a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2748127", + "name": "xf_t5338919a", + "phases": "AS", + "to": "x2748127a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2970804", + "name": "xf_t5356787c", + "phases": "CS", + "to": "x2970804c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2729412", + "name": "xf_t28150189a", + "phases": "AS", + "to": "x2729412a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3632979", + "name": "xf_t2224192013a", + "phases": "AS", + "to": "x3632979a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l2802480", + "name": "xf_t226308725b", + "phases": "BS", + "to": "x2802480b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2991940", + "name": "xf_t28148060c", + "phases": "CS", + "to": "x2991940c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3104856", + "name": "xf_t5260467a", + "phases": "AS", + "to": "x3104856a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2935560", + "name": "xf_t5293659c", + "phases": "CS", + "to": "x2935560c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2804248", + "name": "xf_t5323244b", + "phases": "BS", + "to": "x2804248b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2857591", + "name": "xf_t226101460a", + "phases": "AS", + "to": "x2857591a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2729423", + "name": "xf_t5339017c", + "phases": "CS", + "to": "x2729423c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3216358", + "name": "xf_t21399826a", + "phases": "AS", + "to": "x3216358a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3176661", + "name": "xf_t5356788c", + "phases": "CS", + "to": "x3176661c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3029499", + "name": "xf_t5302678a", + "phases": "AS", + "to": "x3029499a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3048210", + "name": "xf_t5302412a", + "phases": "AS", + "to": "x3048210a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2991913", + "name": "xf_t5138571a", + "phases": "AS", + "to": "x2991913a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3067506", + "name": "xf_t5260620c", + "phases": "CS", + "to": "x3067506c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3160878", + "name": "xf_t5260511c", + "phases": "CS", + "to": "x3160878c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "m1108404", + "name": "xf_t1108404c", + "phases": "CS", + "to": "x1108404c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "m1108404", + "name": "xf_t1108404b", + "phases": "BS", + "to": "x1108404b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "m1108404", + "name": "xf_t1108404a", + "phases": "AS", + "to": "x1108404a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l3101194", + "name": "xf_t21459660c", + "phases": "CS", + "to": "x3101194c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2989571", + "name": "xf_t225991691a", + "phases": "AS", + "to": "x2989571a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3067507", + "name": "xf_t5260535c", + "phases": "CS", + "to": "x3067507c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2710521", + "name": "xf_t5138680a", + "phases": "AS", + "to": "x2710521a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2973167", + "name": "xf_t5293656b", + "phases": "BS", + "to": "x2973167b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2897789", + "name": "xf_t5323287b", + "phases": "BS", + "to": "x2897789b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3066812", + "name": "xf_t5323263a", + "phases": "AS", + "to": "x3066812a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3157708", + "name": "xf_t226192954c", + "phases": "CS", + "to": "x3157708c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2766732", + "name": "xf_t5247164b", + "phases": "BS", + "to": "x2766732b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2766729", + "name": "xf_t5293523a", + "phases": "AS", + "to": "x2766729a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2973171", + "name": "xf_t5339012b", + "phases": "BS", + "to": "x2973171b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3649301", + "name": "xf_t2224237643a", + "phases": "AS", + "to": "x3649301a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2936275", + "name": "xf_t5157715b", + "phases": "BS", + "to": "x2936275b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2673300", + "name": "xf_t5391745b", + "phases": "BS", + "to": "x2673300b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3048937", + "name": "xf_t5356789c", + "phases": "CS", + "to": "x3048937c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3122822", + "name": "xf_t5391987a", + "phases": "AS", + "to": "x3122822a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2746587", + "name": "xf_t227653310c", + "phases": "CS", + "to": "x2746587c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2841627", + "name": "xf_t5337716a", + "phases": "AS", + "to": "x2841627a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3139598", + "name": "xf_t226311345b", + "phases": "BS", + "to": "x3139598b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "m1108405", + "name": "xf_t1108405c", + "phases": "CS", + "to": "x1108405c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3122815", + "name": "xf_t5321858b", + "phases": "BS", + "to": "x3122815b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "m1108405", + "name": "xf_t1108405b", + "phases": "BS", + "to": "x1108405b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "m1108405", + "name": "xf_t1108405a", + "phases": "AS", + "to": "x1108405a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2764403", + "name": "xf_t226193078a", + "phases": "AS", + "to": "x2764403a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3252336", + "name": "xf_t226308723b", + "phases": "BS", + "to": "x3252336b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3215549", + "name": "xf_t228219458b", + "phases": "BS", + "to": "x3215549b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2897777", + "name": "xf_t5338937c", + "phases": "CS", + "to": "x2897777c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2804255", + "name": "xf_t5338913b", + "phases": "BS", + "to": "x2804255b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2692660", + "name": "xf_t5260643a", + "phases": "AS", + "to": "x2692660a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3160861", + "name": "xf_t5260558c", + "phases": "CS", + "to": "x3160861c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2748146", + "name": "xf_t5138570a", + "phases": "AS", + "to": "x2748146a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3189189", + "name": "xf_t5293657b", + "phases": "BS", + "to": "x3189189b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2989564", + "name": "xf_t5323286b", + "phases": "BS", + "to": "x2989564b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3214112", + "name": "xf_t226881057b", + "phases": "BS", + "to": "x3214112b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3104145", + "name": "xf_t5339011b", + "phases": "BS", + "to": "x3104145b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3139086", + "name": "xf_t226192846b", + "phases": "BS", + "to": "x3139086b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3139366", + "name": "xf_t226264795a", + "phases": "AS", + "to": "x3139366a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3254204", + "name": "xf_t5337715a", + "phases": "AS", + "to": "x3254204a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3179674", + "name": "xf_t5157716b", + "phases": "BS", + "to": "x3179674b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3085388", + "name": "xf_t5391746b", + "phases": "BS", + "to": "x3085388b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2897790", + "name": "xf_t21357984c", + "phases": "CS", + "to": "x2897790c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2916599", + "name": "xf_t5356015a", + "phases": "AS", + "to": "x2916599a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2688692", + "name": "xf_t225918926b", + "phases": "BS", + "to": "x2688692b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001309", + "name": "xf_t2001309a", + "phases": "AS", + "to": "x2001309a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2991920", + "name": "xf_t28118822a", + "phases": "AS", + "to": "x2991920a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2729207", + "name": "xf_t22112168874c", + "phases": "CS", + "to": "x2729207c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254213", + "name": "xf_t5321859b", + "phases": "BS", + "to": "x3254213b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l2821087", + "name": "xf_t226308720a", + "phases": "AS", + "to": "x2821087a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2710508", + "name": "xf_t5323241b", + "phases": "BS", + "to": "x2710508b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000414", + "name": "xf_t2000414a", + "phases": "AS", + "to": "x2000414a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2860501", + "name": "xf_t5323265b", + "phases": "BS", + "to": "x2860501b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3048968", + "name": "xf_t5350994c", + "phases": "CS", + "to": "x3048968c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2822867", + "name": "xf_t21386552b", + "phases": "BS", + "to": "x2822867b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2710505", + "name": "xf_t5323398b", + "phases": "BS", + "to": "x2710505b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3727707", + "name": "xf_t2224386750a", + "phases": "AS", + "to": "x3727707a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3216370", + "name": "xf_t5293521c", + "phases": "CS", + "to": "x3216370c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3216370", + "name": "xf_t5293521b", + "phases": "BS", + "to": "x3216370b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l0247162", + "name": "xf_t5247162b", + "phases": "BS", + "to": "x0247162b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3216370", + "name": "xf_t5293521a", + "phases": "AS", + "to": "x3216370a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2822859", + "name": "xf_t5391747b", + "phases": "BS", + "to": "x2822859b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2766747", + "name": "xf_t5391989a", + "phases": "AS", + "to": "x2766747a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3178981", + "name": "xf_t21396331b", + "phases": "BS", + "to": "x3178981b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2691947", + "name": "xf_t5337718a", + "phases": "AS", + "to": "x2691947a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3235249", + "name": "xf_t5356014a", + "phases": "AS", + "to": "x3235249a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3160107", + "name": "xf_t5138265a", + "phases": "AS", + "to": "x3160107a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2972704", + "name": "xf_t228445756c", + "phases": "CS", + "to": "x2972704c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3086074", + "name": "xf_t5260532c", + "phases": "CS", + "to": "x3086074c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3048965", + "name": "xf_t5260641b", + "phases": "BS", + "to": "x3048965b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3160864", + "name": "xf_t28127146b", + "phases": "BS", + "to": "x3160864b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "m1108403", + "name": "xf_t1108403b", + "phases": "BS", + "to": "x1108403b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2991905", + "name": "xf_t28148633a", + "phases": "AS", + "to": "x2991905a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "m1108403", + "name": "xf_t1108403a", + "phases": "AS", + "to": "x1108403a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5", + "from": "l2823592", + "name": "xf_t5223658a", + "phases": "AS", + "to": "x2823592a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2954345", + "name": "xf_t5338915c", + "phases": "CS", + "to": "x2954345c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3235247", + "name": "xf_t5321836a", + "phases": "AS", + "to": "x3235247a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "m1108403", + "name": "xf_t1108403c", + "phases": "CS", + "to": "x1108403c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2820533", + "name": "xf_t226193298a", + "phases": "AS", + "to": "x2820533a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2691950", + "name": "xf_t5138374c", + "phases": "CS", + "to": "x2691950c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2691954", + "name": "xf_t21399361b", + "phases": "BS", + "to": "x2691954b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2990098", + "name": "xf_t226308721a", + "phases": "AS", + "to": "x2990098a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3030204", + "name": "xf_t0107636a", + "phases": "AS", + "to": "x3030204a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3179637", + "name": "xf_t21386442c", + "phases": "CS", + "to": "x3179637c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2729414", + "name": "xf_t5293655a", + "phases": "AS", + "to": "x2729414a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2729414", + "name": "xf_t5293655b", + "phases": "BS", + "to": "x2729414b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3216344", + "name": "xf_t5323264b", + "phases": "BS", + "to": "x3216344b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2954346", + "name": "xf_t5323397b", + "phases": "BS", + "to": "x2954346b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3198356", + "name": "xf_t5350993c", + "phases": "CS", + "to": "x3198356c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2785527", + "name": "xf_t5293522a", + "phases": "AS", + "to": "x2785527a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000415", + "name": "xf_t2000415a", + "phases": "AS", + "to": "x2000415a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2804270", + "name": "xf_t5339013b", + "phases": "BS", + "to": "x2804270b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3195310", + "name": "xf_t226192185a", + "phases": "AS", + "to": "x3195310a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3179678", + "name": "xf_t5247185b", + "phases": "BS", + "to": "x3179678b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3645809", + "name": "xf_t2224230615c", + "phases": "CS", + "to": "x3645809c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2729414", + "name": "xf_t5293655c", + "phases": "CS", + "to": "x2729414c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3216348", + "name": "xf_t5337717a", + "phases": "AS", + "to": "x3216348a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2954348", + "name": "xf_t5356013a", + "phases": "AS", + "to": "x2954348a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2917328", + "name": "xf_t21389092b", + "phases": "BS", + "to": "x2917328b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2991902", + "name": "xf_t5391748b", + "phases": "BS", + "to": "x2991902b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2991910", + "name": "xf_t5337694b", + "phases": "BS", + "to": "x2991910b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2804262", + "name": "xf_t5355938a", + "phases": "AS", + "to": "x2804262a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2895461", + "name": "xf_t5294789a", + "phases": "AS", + "to": "x2895461a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3197630", + "name": "xf_t5138644a", + "phases": "AS", + "to": "x3197630a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3160865", + "name": "xf_t5260515a", + "phases": "AS", + "to": "x3160865a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2917255", + "name": "xf_t21386065c", + "phases": "CS", + "to": "x2917255c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3254873", + "name": "xf_t5251862c", + "phases": "CS", + "to": "x3254873c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2898522", + "name": "xf_t5260648a", + "phases": "AS", + "to": "x2898522a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2748130", + "name": "xf_t5138753b", + "phases": "BS", + "to": "x2748130b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "m1108410", + "name": "xf_t6061820b", + "phases": "BS", + "to": "x1108410b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2936268", + "name": "xf_t5223655c", + "phases": "CS", + "to": "x2936268c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3048946", + "name": "xf_t5260624c", + "phases": "CS", + "to": "x3048946c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3235242", + "name": "xf_t21380500c", + "phases": "CS", + "to": "x3235242c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3011298", + "name": "xf_t5207286c", + "phases": "CS", + "to": "x3011298c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000707", + "name": "xf_t2000707b", + "phases": "BS", + "to": "x2000707b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3235258", + "name": "xf_t5293652a", + "phases": "AS", + "to": "x3235258a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2841615", + "name": "xf_t5356012a", + "phases": "AS", + "to": "x2841615a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3235258", + "name": "xf_t5293652b", + "phases": "BS", + "to": "x3235258b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3235258", + "name": "xf_t5293652c", + "phases": "CS", + "to": "x3235258c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2783231", + "name": "xf_t226193886b", + "phases": "BS", + "to": "x2783231b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2841639", + "name": "xf_t5355937a", + "phases": "AS", + "to": "x2841639a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3008248", + "name": "xf_t5321159a", + "phases": "AS", + "to": "x3008248a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2805034", + "name": "xf_t5260647a", + "phases": "AS", + "to": "x2805034a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3010566", + "name": "xf_t5138776c", + "phases": "CS", + "to": "x3010566c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3235252", + "name": "xf_t21388572b", + "phases": "BS", + "to": "x3235252b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2785528", + "name": "xf_t5138752b", + "phases": "BS", + "to": "x2785528b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2674047", + "name": "xf_t5260514c", + "phases": "CS", + "to": "x2674047c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2745811", + "name": "xf_t5251863c", + "phases": "CS", + "to": "x2745811c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3066813", + "name": "xf_t5337693b", + "phases": "BS", + "to": "x3066813b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2673317", + "name": "xf_t21397771a", + "phases": "AS", + "to": "x2673317a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000902", + "name": "xf_t2000902c", + "phases": "CS", + "to": "x2000902c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3027122", + "name": "xf_t226194865a", + "phases": "AS", + "to": "x3027122a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2711234", + "name": "xf_t5207287b", + "phases": "BS", + "to": "x2711234b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3216337", + "name": "xf_t5356011a", + "phases": "AS", + "to": "x3216337a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000708", + "name": "xf_t2000708b", + "phases": "BS", + "to": "x2000708b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2955076", + "name": "xf_t21243817a", + "phases": "AS", + "to": "x2955076a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3157718", + "name": "xf_t226194093a", + "phases": "AS", + "to": "x3157718a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "m1108406", + "name": "xf_t1108406a", + "phases": "AS", + "to": "x1108406a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2822877", + "name": "xf_t5337672b", + "phases": "BS", + "to": "x2822877b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3198347", + "name": "xf_t5260622c", + "phases": "CS", + "to": "x3198347c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3197635", + "name": "xf_t5337696b", + "phases": "BS", + "to": "x3197635b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2954357", + "name": "xf_t5355936a", + "phases": "AS", + "to": "x2954357a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3197647", + "name": "xf_t5294787a", + "phases": "AS", + "to": "x3197647a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3048214", + "name": "xf_t5302474a", + "phases": "AS", + "to": "x3048214a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3235256", + "name": "xf_t5138642a", + "phases": "AS", + "to": "x3235256a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "m1108406", + "name": "xf_t1108406b", + "phases": "BS", + "to": "x1108406b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3231269", + "name": "xf_t225684682b", + "phases": "BS", + "to": "x3231269b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3066818", + "name": "xf_t5138751b", + "phases": "BS", + "to": "x3066818b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2917336", + "name": "xf_t5260513c", + "phases": "CS", + "to": "x2917336c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3728042", + "name": "xf_t2224387113a", + "phases": "AS", + "to": "x3728042a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2801895", + "name": "xf_t226191951b", + "phases": "BS", + "to": "x2801895b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2879069", + "name": "xf_t5338894a", + "phases": "AS", + "to": "x2879069a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2748840", + "name": "xf_t5157717b", + "phases": "BS", + "to": "x2748840b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3729297", + "name": "xf_t2224386592a", + "phases": "AS", + "to": "x3729297a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000705", + "name": "xf_t2000705b", + "phases": "BS", + "to": "x2000705b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3198355", + "name": "xf_t5207288b", + "phases": "BS", + "to": "x3198355b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3216336", + "name": "xf_t5356010a", + "phases": "AS", + "to": "x3216336a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3029507", + "name": "xf_t5302368b", + "phases": "BS", + "to": "x3029507b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "m1108407", + "name": "xf_t1108407b", + "phases": "BS", + "to": "x1108407b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2879072", + "name": "xf_t5337695b", + "phases": "BS", + "to": "x2879072b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2841638", + "name": "xf_t5138641c", + "phases": "CS", + "to": "x2841638c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2898515", + "name": "xf_t5260621c", + "phases": "CS", + "to": "x2898515c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3254207", + "name": "xf_t5337671a", + "phases": "AS", + "to": "x3254207a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2729428", + "name": "xf_t21398402a", + "phases": "AS", + "to": "x2729428a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2821010", + "name": "xf_t5294788a", + "phases": "AS", + "to": "x2821010a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2724120", + "name": "xf_t225577437c", + "phases": "CS", + "to": "x2724120c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3104859", + "name": "xf_t5138798b", + "phases": "BS", + "to": "x3104859b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2691973", + "name": "xf_t5355935a", + "phases": "AS", + "to": "x2691973a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3195327", + "name": "xf_t225901711a", + "phases": "AS", + "to": "x3195327a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l3645810", + "name": "xf_t2224230651c", + "phases": "CS", + "to": "x3645810c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3197633", + "name": "xf_t5338893a", + "phases": "AS", + "to": "x3197633a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3142099", + "name": "xf_t5157718b", + "phases": "BS", + "to": "x3142099b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000706", + "name": "xf_t2000706b", + "phases": "BS", + "to": "x2000706b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l3141411", + "name": "xf_t21197413c", + "phases": "CS", + "to": "x3141411c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3091052", + "name": "xf_t228532641a", + "phases": "AS", + "to": "x3091052a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2766727", + "name": "xf_t5302367b", + "phases": "BS", + "to": "x2766727b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2673321", + "name": "xf_t5302674a", + "phases": "AS", + "to": "x2673321a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2991927", + "name": "xf_t5355607b", + "phases": "BS", + "to": "x2991927b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2973159", + "name": "xf_t21398536a", + "phases": "AS", + "to": "x2973159a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2674052", + "name": "xf_t21393570c", + "phases": "CS", + "to": "x2674052c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3141400", + "name": "xf_t5138313a", + "phases": "AS", + "to": "x3141400a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2745799", + "name": "xf_t226191779c", + "phases": "CS", + "to": "x2745799c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3048207", + "name": "xf_t5323248b", + "phases": "BS", + "to": "x3048207b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3198358", + "name": "xf_t5138797b", + "phases": "BS", + "to": "x3198358b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104127", + "name": "xf_t5337690b", + "phases": "BS", + "to": "x3104127b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3048212", + "name": "xf_t5355934a", + "phases": "AS", + "to": "x3048212a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2822861", + "name": "xf_t21015829a", + "phases": "AS", + "to": "x2822861a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2822865", + "name": "xf_t5274986c", + "phases": "CS", + "to": "x2822865c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2858166", + "name": "xf_t226192994a", + "phases": "AS", + "to": "x2858166a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000703", + "name": "xf_t2000703b", + "phases": "BS", + "to": "x2000703b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3189190", + "name": "xf_t227100753a", + "phases": "AS", + "to": "x3189190a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2935553", + "name": "xf_t5323247b", + "phases": "BS", + "to": "x2935553b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3142049", + "name": "xf_t5356810c", + "phases": "CS", + "to": "x3142049c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2690868", + "name": "xf_t227917127c", + "phases": "CS", + "to": "x2690868c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2954355", + "name": "xf_t5293672a", + "phases": "AS", + "to": "x2954355a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2954354", + "name": "xf_t5302675a", + "phases": "AS", + "to": "x2954354a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2973180", + "name": "xf_t21398646b", + "phases": "BS", + "to": "x2973180b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2785518", + "name": "xf_t5138469c", + "phases": "CS", + "to": "x2785518c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104853", + "name": "xf_t5260518c", + "phases": "CS", + "to": "x3104853c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2766724", + "name": "xf_t5294786c", + "phases": "CS", + "to": "x2766724c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2820528", + "name": "xf_t226191778c", + "phases": "CS", + "to": "x2820528c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2992656", + "name": "xf_t5260627a", + "phases": "AS", + "to": "x2992656a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3236011", + "name": "xf_t5138796b", + "phases": "BS", + "to": "x3236011b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3029510", + "name": "xf_t5355606b", + "phases": "BS", + "to": "x3029510b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2674027", + "name": "xf_t21380325b", + "phases": "BS", + "to": "x2674027b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2898526", + "name": "xf_t21393486c", + "phases": "CS", + "to": "x2898526c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2839305", + "name": "xf_t28150292a", + "phases": "AS", + "to": "x2839305a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2916598", + "name": "xf_t5355933a", + "phases": "AS", + "to": "x2916598a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3728043", + "name": "xf_t2224387138a", + "phases": "AS", + "to": "x3728043a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2948732", + "name": "xf_t225571845b", + "phases": "BS", + "to": "x2948732b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2822864", + "name": "xf_t5274985c", + "phases": "CS", + "to": "x2822864c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2841620", + "name": "xf_t28147018b", + "phases": "BS", + "to": "x2841620b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000704", + "name": "xf_t2000704b", + "phases": "BS", + "to": "x2000704b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3067448", + "name": "xf_t5262075c", + "phases": "CS", + "to": "x3067448c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3217064", + "name": "xf_t21391390b", + "phases": "BS", + "to": "x3217064b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3122827", + "name": "xf_t5293673a", + "phases": "AS", + "to": "x3122827a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3160114", + "name": "xf_t5339019a", + "phases": "AS", + "to": "x3160114a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2804956", + "name": "xf_t5356811a", + "phases": "AS", + "to": "x2804956a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3197643", + "name": "xf_t5302369b", + "phases": "BS", + "to": "x3197643b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254205", + "name": "xf_t5302672c", + "phases": "CS", + "to": "x3254205c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2767408", + "name": "xf_t5260517c", + "phases": "CS", + "to": "x2767408c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2729409", + "name": "xf_t5355605b", + "phases": "BS", + "to": "x2729409b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2801896", + "name": "xf_t226191995b", + "phases": "BS", + "to": "x2801896b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3197644", + "name": "xf_t5138771a", + "phases": "AS", + "to": "x3197644a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2989566", + "name": "xf_t5260602b", + "phases": "BS", + "to": "x2989566b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2935551", + "name": "xf_t21387929c", + "phases": "CS", + "to": "x2935551c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2879061", + "name": "xf_t5337692b", + "phases": "BS", + "to": "x2879061b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3142079", + "name": "xf_t21249626b", + "phases": "BS", + "to": "x3142079b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3010569", + "name": "xf_t5302673a", + "phases": "AS", + "to": "x3010569a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3122813", + "name": "xf_t5138685a", + "phases": "AS", + "to": "x3122813a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2729427", + "name": "xf_t5323249b", + "phases": "BS", + "to": "x2729427b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2841624", + "name": "xf_t5355604b", + "phases": "BS", + "to": "x2841624b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2730149", + "name": "xf_t5260601c", + "phases": "CS", + "to": "x2730149c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2897774", + "name": "xf_t5337691b", + "phases": "BS", + "to": "x2897774b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2897781", + "name": "xf_t5138770a", + "phases": "AS", + "to": "x2897781a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3048966", + "name": "xf_t5260625c", + "phases": "CS", + "to": "x3048966c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000702", + "name": "xf_t2000702b", + "phases": "BS", + "to": "x2000702b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3122825", + "name": "xf_t28118808a", + "phases": "AS", + "to": "x3122825a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3177665", + "name": "xf_t227731863a", + "phases": "AS", + "to": "x3177665a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2861158", + "name": "xf_t5251858c", + "phases": "CS", + "to": "x2861158c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3066808", + "name": "xf_t5337654c", + "phases": "CS", + "to": "x3066808c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3085392", + "name": "xf_t5337630c", + "phases": "CS", + "to": "x3085392c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001008", + "name": "xf_t2001008b", + "phases": "BS", + "to": "x2001008b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3160117", + "name": "xf_t21357901b", + "phases": "BS", + "to": "x3160117b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3160101", + "name": "xf_t5337678a", + "phases": "AS", + "to": "x3160101a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3160108", + "name": "xf_t5355603b", + "phases": "BS", + "to": "x3160108b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2727795", + "name": "xf_t227678342c", + "phases": "CS", + "to": "x2727795c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3784018", + "name": "xf_t2224500658a", + "phases": "AS", + "to": "x3784018a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2804254", + "name": "xf_t5323418a", + "phases": "AS", + "to": "x2804254a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254208", + "name": "xf_t5338961c", + "phases": "CS", + "to": "x3254208c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2731712", + "name": "xf_t21426205b", + "phases": "BS", + "to": "x2731712b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2766720", + "name": "xf_t5441311a", + "phases": "AS", + "to": "x2766720a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2897792", + "name": "xf_t5338985a", + "phases": "AS", + "to": "x2897792a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001310", + "name": "xf_t2001310a", + "phases": "AS", + "to": "x2001310a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2730106", + "name": "xf_t5356814c", + "phases": "CS", + "to": "x2730106c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3010559", + "name": "xf_t5337679a", + "phases": "AS", + "to": "x3010559a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2858175", + "name": "xf_t225668688a", + "phases": "AS", + "to": "x2858175a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2954351", + "name": "xf_t5302805c", + "phases": "CS", + "to": "x2954351c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000909", + "name": "xf_t2000909c", + "phases": "CS", + "to": "x2000909c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3235267", + "name": "xf_t5321892c", + "phases": "CS", + "to": "x3235267c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2673346", + "name": "xf_t5293486c", + "phases": "CS", + "to": "x2673346c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2952007", + "name": "xf_t5251859c", + "phases": "CS", + "to": "x2952007c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2673308", + "name": "xf_t5337653b", + "phases": "BS", + "to": "x2673308b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2876797", + "name": "xf_t226193345a", + "phases": "AS", + "to": "x2876797a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3143999", + "name": "xf_t226193696a", + "phases": "AS", + "to": "x3143999a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2785513", + "name": "xf_t5337677a", + "phases": "AS", + "to": "x2785513a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001009", + "name": "xf_t2001009b", + "phases": "BS", + "to": "x2001009b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2992657", + "name": "xf_t21475841a", + "phases": "AS", + "to": "x2992657a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3029055", + "name": "xf_t5260607b", + "phases": "BS", + "to": "x3029055b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3123509", + "name": "xf_t28129923c", + "phases": "CS", + "to": "x3123509c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3251806", + "name": "xf_t5355602b", + "phases": "BS", + "to": "x3251806b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2897767", + "name": "xf_t5338960c", + "phases": "CS", + "to": "x2897767c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2748144", + "name": "xf_t5338984a", + "phases": "AS", + "to": "x2748144a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3122814", + "name": "xf_t5338899c", + "phases": "CS", + "to": "x3122814c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001202", + "name": "xf_t2001202c", + "phases": "CS", + "to": "x2001202c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254238", + "name": "xf_t5293487b", + "phases": "BS", + "to": "x3254238b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3195751", + "name": "xf_t5293681a", + "phases": "AS", + "to": "x3195751a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001311", + "name": "xf_t2001311a", + "phases": "AS", + "to": "x2001311a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2936212", + "name": "xf_t5356815a", + "phases": "AS", + "to": "x2936212a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2841645", + "name": "xf_t5321893c", + "phases": "CS", + "to": "x2841645c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2673307", + "name": "xf_t5337632c", + "phases": "CS", + "to": "x2673307c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3048888", + "name": "xf_t5251856c", + "phases": "CS", + "to": "x3048888c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001006", + "name": "xf_t2001006b", + "phases": "BS", + "to": "x2001006b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2952013", + "name": "xf_t5355843a", + "phases": "AS", + "to": "x2952013a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3251808", + "name": "xf_t226029836a", + "phases": "AS", + "to": "x3251808a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3254231", + "name": "xf_t5338988a", + "phases": "AS", + "to": "x3254231a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2673326", + "name": "xf_t5355601b", + "phases": "BS", + "to": "x2673326b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2673303", + "name": "xf_t5338963c", + "phases": "CS", + "to": "x2673303c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2879065", + "name": "xf_t5247126b", + "phases": "BS", + "to": "x2879065b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2897793", + "name": "xf_t5338987a", + "phases": "AS", + "to": "x2897793a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2879067", + "name": "xf_t21380616a", + "phases": "AS", + "to": "x2879067a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3141398", + "name": "xf_t21386976a", + "phases": "AS", + "to": "x3141398a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001005", + "name": "xf_t2001005b", + "phases": "BS", + "to": "x2001005b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000907", + "name": "xf_t2000907c", + "phases": "CS", + "to": "x2000907c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3086098", + "name": "xf_t21474556a", + "phases": "AS", + "to": "x3086098a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3729298", + "name": "xf_t2224386617a", + "phases": "AS", + "to": "x3729298a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3066829", + "name": "xf_t5321894c", + "phases": "CS", + "to": "x3066829c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3085400", + "name": "xf_t5302803c", + "phases": "CS", + "to": "x3085400c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2729405", + "name": "xf_t21393412b", + "phases": "BS", + "to": "x2729405b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3029497", + "name": "xf_t5337631c", + "phases": "CS", + "to": "x3029497c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3064514", + "name": "xf_t5251857c", + "phases": "CS", + "to": "x3064514c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3125349", + "name": "xf_t226193698c", + "phases": "CS", + "to": "x3125349c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3141396", + "name": "xf_t5337655c", + "phases": "CS", + "to": "x3141396c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001007", + "name": "xf_t2001007b", + "phases": "BS", + "to": "x2001007b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2876813", + "name": "xf_t5355842a", + "phases": "AS", + "to": "x2876813a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3235254", + "name": "xf_t5441331c", + "phases": "CS", + "to": "x3235254c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2973791", + "name": "xf_t5260605a", + "phases": "AS", + "to": "x2973791a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2691938", + "name": "xf_t5355600b", + "phases": "BS", + "to": "x2691938b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3176660", + "name": "xf_t226193892b", + "phases": "BS", + "to": "x3176660b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2729413", + "name": "xf_t21397067a", + "phases": "AS", + "to": "x2729413a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2748125", + "name": "xf_t5338962c", + "phases": "CS", + "to": "x2748125c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2935550", + "name": "xf_t5274999c", + "phases": "CS", + "to": "x2935550c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2785538", + "name": "xf_t5338986a", + "phases": "AS", + "to": "x2785538a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2897805", + "name": "xf_t21471907a", + "phases": "AS", + "to": "x2897805a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3141399", + "name": "xf_t5302804c", + "phases": "CS", + "to": "x3141399c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000908", + "name": "xf_t2000908c", + "phases": "CS", + "to": "x2000908c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3030205", + "name": "xf_t21390038c", + "phases": "CS", + "to": "x3030205c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2842390", + "name": "xf_t21325725c", + "phases": "CS", + "to": "x2842390c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3066805", + "name": "xf_t5337674a", + "phases": "AS", + "to": "x3066805a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3010561", + "name": "xf_t5337650a", + "phases": "AS", + "to": "x3010561a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3068944", + "name": "xf_t5260494b", + "phases": "BS", + "to": "x3068944b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3235250", + "name": "xf_t5337698b", + "phases": "BS", + "to": "x3235250b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3649298", + "name": "xf_t2224237384a", + "phases": "AS", + "to": "x3649298a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3225319", + "name": "xf_t225533675b", + "phases": "BS", + "to": "x3225319b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3097861", + "name": "xf_t225533215c", + "phases": "CS", + "to": "x3097861c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3122812", + "name": "xf_t21031694b", + "phases": "BS", + "to": "x3122812b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2820535", + "name": "xf_t5338981b", + "phases": "BS", + "to": "x2820535b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2879078", + "name": "xf_t21399229a", + "phases": "AS", + "to": "x2879078a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2822871", + "name": "xf_t5355840b", + "phases": "BS", + "to": "x2822871b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3178971", + "name": "xf_t5338896a", + "phases": "AS", + "to": "x3178971a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2954350", + "name": "xf_t5302809c", + "phases": "CS", + "to": "x2954350c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000905", + "name": "xf_t2000905c", + "phases": "CS", + "to": "x2000905c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2935547", + "name": "xf_t21383553b", + "phases": "BS", + "to": "x2935547b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3066811", + "name": "xf_t28126875b", + "phases": "BS", + "to": "x3066811b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3160868", + "name": "xf_t0107693b", + "phases": "BS", + "to": "x3160868b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001003", + "name": "xf_t2001003b", + "phases": "BS", + "to": "x2001003b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3197641", + "name": "xf_t5293591a", + "phases": "AS", + "to": "x3197641a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3728037", + "name": "xf_t2224386946a", + "phases": "AS", + "to": "x3728037a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2841618", + "name": "xf_t5337673a", + "phases": "AS", + "to": "x2841618a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2804258", + "name": "xf_t5337697b", + "phases": "BS", + "to": "x2804258b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2804252", + "name": "xf_t5302473a", + "phases": "AS", + "to": "x2804252a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254218", + "name": "xf_t5138720a", + "phases": "AS", + "to": "x3254218a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3122818", + "name": "xf_t28120183c", + "phases": "CS", + "to": "x3122818c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3120504", + "name": "xf_t225897846a", + "phases": "AS", + "to": "x3120504a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l3232301", + "name": "xf_t21458756c", + "phases": "CS", + "to": "x3232301c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2730107", + "name": "xf_t5251855c", + "phases": "CS", + "to": "x2730107c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3197645", + "name": "xf_t21395962a", + "phases": "AS", + "to": "x3197645a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2860492", + "name": "xf_t21395720c", + "phases": "CS", + "to": "x2860492c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3122817", + "name": "xf_t5355779c", + "phases": "CS", + "to": "x3122817c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2763407", + "name": "xf_t225906836c", + "phases": "CS", + "to": "x2763407c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2729411", + "name": "xf_t5138769a", + "phases": "AS", + "to": "x2729411a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2973150", + "name": "xf_t21380528a", + "phases": "AS", + "to": "x2973150a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001004", + "name": "xf_t2001004b", + "phases": "BS", + "to": "x2001004b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000906", + "name": "xf_t2000906c", + "phases": "CS", + "to": "x2000906c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2933120", + "name": "xf_t226192890c", + "phases": "CS", + "to": "x2933120c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2973161", + "name": "xf_t5293592a", + "phases": "AS", + "to": "x2973161a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2692664", + "name": "xf_t5351021c", + "phases": "CS", + "to": "x2692664c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l2862616", + "name": "xf_t227447984c", + "phases": "CS", + "to": "x2862616c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104133", + "name": "xf_t5293483a", + "phases": "AS", + "to": "x3104133a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2991939", + "name": "xf_t5337652b", + "phases": "BS", + "to": "x2991939b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3235244", + "name": "xf_t5337676a", + "phases": "AS", + "to": "x3235244a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2673314", + "name": "xf_t5355778c", + "phases": "CS", + "to": "x2673314c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2785546", + "name": "xf_t21399752a", + "phases": "AS", + "to": "x2785546a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5", + "from": "l2691965", + "name": "xf_t5338983b", + "phases": "BS", + "to": "x2691965b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2973155", + "name": "xf_t5338898a", + "phases": "AS", + "to": "x2973155a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000903", + "name": "xf_t2000903c", + "phases": "CS", + "to": "x2000903c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2805031", + "name": "xf_t5260491c", + "phases": "CS", + "to": "x2805031c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3104118", + "name": "xf_t5321890c", + "phases": "CS", + "to": "x3104118c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3235266", + "name": "xf_t5302807c", + "phases": "CS", + "to": "x3235266c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000709", + "name": "xf_t2000709b", + "phases": "BS", + "to": "x2000709b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3727708", + "name": "xf_t2224386815a", + "phases": "AS", + "to": "x3727708a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3027133", + "name": "xf_t226101449a", + "phases": "AS", + "to": "x3027133a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2748158", + "name": "xf_t5293480a", + "phases": "AS", + "to": "x2748158a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l2763811", + "name": "xf_t21459629c", + "phases": "CS", + "to": "x2763811c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2954349", + "name": "xf_t5337699b", + "phases": "BS", + "to": "x2954349b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2785514", + "name": "xf_t5337675a", + "phases": "AS", + "to": "x2785514a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3085402", + "name": "xf_t5302471a", + "phases": "AS", + "to": "x3085402a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3085398", + "name": "xf_t5355777b", + "phases": "BS", + "to": "x3085398b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3197636", + "name": "xf_t28148580b", + "phases": "BS", + "to": "x3197636b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2691942", + "name": "xf_t5247105b", + "phases": "BS", + "to": "x2691942b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2785534", + "name": "xf_t5338982b", + "phases": "BS", + "to": "x2785534b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3177881", + "name": "xf_t227896008c", + "phases": "CS", + "to": "x3177881c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3120503", + "name": "xf_t225869139a", + "phases": "AS", + "to": "x3120503a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2841626", + "name": "xf_t5302808c", + "phases": "CS", + "to": "x2841626c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000904", + "name": "xf_t2000904c", + "phases": "CS", + "to": "x2000904c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2973154", + "name": "xf_t5338897a", + "phases": "AS", + "to": "x2973154a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2911069", + "name": "xf_t225571871b", + "phases": "BS", + "to": "x2911069b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3141388", + "name": "xf_t5138416c", + "phases": "CS", + "to": "x3141388c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2748126", + "name": "xf_t5321891c", + "phases": "CS", + "to": "x2748126c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001002", + "name": "xf_t2001002b", + "phases": "BS", + "to": "x2001002b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2673313", + "name": "xf_t5321853b", + "phases": "BS", + "to": "x2673313b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3177894", + "name": "xf_t227903012a", + "phases": "AS", + "to": "x3177894a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2917330", + "name": "xf_t5260474a", + "phases": "AS", + "to": "x2917330a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104125", + "name": "xf_t5138264b", + "phases": "BS", + "to": "x3104125b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3101787", + "name": "xf_t5321877a", + "phases": "AS", + "to": "x3101787a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3216351", + "name": "xf_t21398815a", + "phases": "AS", + "to": "x3216351a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3649297", + "name": "xf_t2224237380a", + "phases": "AS", + "to": "x3649297a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2841641", + "name": "xf_t21380156b", + "phases": "BS", + "to": "x2841641b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3029503", + "name": "xf_t5138373c", + "phases": "CS", + "to": "x3029503c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2766721", + "name": "xf_t5247059a", + "phases": "AS", + "to": "x2766721a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l2951995", + "name": "xf_t226192801c", + "phases": "CS", + "to": "x2951995c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3104144", + "name": "xf_t5339020a", + "phases": "AS", + "to": "x3104144a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3197625", + "name": "xf_t5339044c", + "phases": "CS", + "to": "x3197625c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2935554", + "name": "xf_t5338921a", + "phases": "AS", + "to": "x2935554a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3216339", + "name": "xf_t5391741b", + "phases": "BS", + "to": "x3216339b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3649306", + "name": "xf_t2224238167a", + "phases": "AS", + "to": "x3649306a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2879075", + "name": "xf_t5337724a", + "phases": "AS", + "to": "x2879075a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3085389", + "name": "xf_t5391765b", + "phases": "BS", + "to": "x3085389b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2970258", + "name": "xf_t21459640c", + "phases": "CS", + "to": "x2970258c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2916618", + "name": "xf_t5323283b", + "phases": "BS", + "to": "x2916618b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2748124", + "name": "xf_t5323392b", + "phases": "BS", + "to": "x2748124b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2804257", + "name": "xf_t5321854b", + "phases": "BS", + "to": "x2804257b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3101788", + "name": "xf_t5321878a", + "phases": "AS", + "to": "x3101788a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2861222", + "name": "xf_t5260473a", + "phases": "AS", + "to": "x2861222a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2973157", + "name": "xf_t5337722a", + "phases": "AS", + "to": "x2973157a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2748781", + "name": "xf_t21382813a", + "phases": "AS", + "to": "x2748781a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3104129", + "name": "xf_t5338969a", + "phases": "AS", + "to": "x3104129a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2954353", + "name": "xf_t5338945a", + "phases": "AS", + "to": "x2954353a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3104126", + "name": "xf_t5138372c", + "phases": "CS", + "to": "x3104126c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3157710", + "name": "xf_t226193361b", + "phases": "BS", + "to": "x3157710b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2897807", + "name": "xf_t21386771b", + "phases": "BS", + "to": "x2897807b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2673315", + "name": "xf_t5247058a", + "phases": "AS", + "to": "x2673315a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2804277", + "name": "xf_t5339043c", + "phases": "CS", + "to": "x2804277c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2935557", + "name": "xf_t21397005a", + "phases": "AS", + "to": "x2935557a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3197631", + "name": "xf_t5338920a", + "phases": "AS", + "to": "x3197631a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3197640", + "name": "xf_t5338944c", + "phases": "CS", + "to": "x3197640c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2673311", + "name": "xf_t21397029a", + "phases": "AS", + "to": "x2673311a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2935568", + "name": "xf_t28119958b", + "phases": "BS", + "to": "x2935568b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2710513", + "name": "xf_t5325245b", + "phases": "BS", + "to": "x2710513b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3178978", + "name": "xf_t5337723a", + "phases": "AS", + "to": "x3178978a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3048201", + "name": "xf_t5391742b", + "phases": "BS", + "to": "x3048201b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3727711", + "name": "xf_t2224386874a", + "phases": "AS", + "to": "x3727711a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2952003", + "name": "xf_t5337614b", + "phases": "BS", + "to": "x2952003b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254870", + "name": "xf_t5260581c", + "phases": "CS", + "to": "x3254870c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2860486", + "name": "xf_t28127390c", + "phases": "CS", + "to": "x2860486c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3159037", + "name": "xf_t5323391b", + "phases": "BS", + "to": "x3159037b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2897791", + "name": "xf_t5323282b", + "phases": "BS", + "to": "x2897791b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3235251", + "name": "xf_t21387206c", + "phases": "CS", + "to": "x3235251c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001208", + "name": "xf_t2001208c", + "phases": "CS", + "to": "x2001208c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3046854", + "name": "xf_t227732939b", + "phases": "BS", + "to": "x3046854b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2879767", + "name": "xf_t5260496b", + "phases": "BS", + "to": "x2879767b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2860485", + "name": "xf_t5321855b", + "phases": "BS", + "to": "x2860485b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2879071", + "name": "xf_t5337701b", + "phases": "BS", + "to": "x2879071b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2820531", + "name": "xf_t226192936b", + "phases": "BS", + "to": "x2820531b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2991908", + "name": "xf_t5338900a", + "phases": "AS", + "to": "x2991908a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3104123", + "name": "xf_t5338924c", + "phases": "CS", + "to": "x3104123c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2804957", + "name": "xf_t5356790c", + "phases": "CS", + "to": "x2804957c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2726983", + "name": "xf_t226109079a", + "phases": "AS", + "to": "x2726983a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3029502", + "name": "xf_t5138262a", + "phases": "AS", + "to": "x3029502a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2879073", + "name": "xf_t5138371c", + "phases": "CS", + "to": "x2879073c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2804269", + "name": "xf_t5323285b", + "phases": "BS", + "to": "x2804269b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2710504", + "name": "xf_t5323394b", + "phases": "BS", + "to": "x2710504b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3104128", + "name": "xf_t5247057a", + "phases": "AS", + "to": "x3104128a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2925506", + "name": "xf_t225533703c", + "phases": "CS", + "to": "x2925506c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2991909", + "name": "xf_t5355773a", + "phases": "AS", + "to": "x2991909a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3178972", + "name": "xf_t5338923c", + "phases": "CS", + "to": "x3178972c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2785511", + "name": "xf_t5339046a", + "phases": "AS", + "to": "x2785511a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3141390", + "name": "xf_t5391743b", + "phases": "BS", + "to": "x3141390b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3029504", + "name": "xf_t5337702b", + "phases": "BS", + "to": "x3029504b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2785530", + "name": "xf_t5391985a", + "phases": "AS", + "to": "x2785530a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3045895", + "name": "xf_t5351020c", + "phases": "CS", + "to": "x3045895c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2991922", + "name": "xf_t5302734a", + "phases": "AS", + "to": "x2991922a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3160106", + "name": "xf_t5310570a", + "phases": "AS", + "to": "x3160106a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3085397", + "name": "xf_t5323261b", + "phases": "BS", + "to": "x3085397b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3649305", + "name": "xf_t2224237718a", + "phases": "AS", + "to": "x3649305a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001209", + "name": "xf_t2001209c", + "phases": "CS", + "to": "x2001209c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2767343", + "name": "xf_t5356791c", + "phases": "CS", + "to": "x2767343c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2767407", + "name": "xf_t5260495b", + "phases": "BS", + "to": "x2767407b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2860506", + "name": "xf_t5321856b", + "phases": "BS", + "to": "x2860506b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2766722", + "name": "xf_t5337700b", + "phases": "BS", + "to": "x2766722b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2766725", + "name": "xf_t21399220c", + "phases": "CS", + "to": "x2766725c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3160109", + "name": "xf_t5338947b", + "phases": "BS", + "to": "x3160109b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2859403", + "name": "xf_t228001810a", + "phases": "AS", + "to": "x2859403a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3160113", + "name": "xf_t5323284b", + "phases": "BS", + "to": "x3160113b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2991912", + "name": "xf_t5247056a", + "phases": "AS", + "to": "x2991912a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2822866", + "name": "xf_t5338922b", + "phases": "BS", + "to": "x2822866b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3197652", + "name": "xf_t5339021a", + "phases": "AS", + "to": "x3197652a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2861197", + "name": "xf_t21474711c", + "phases": "CS", + "to": "x2861197c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3008232", + "name": "xf_t226192492b", + "phases": "BS", + "to": "x3008232b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2710537", + "name": "xf_t5391744b", + "phases": "BS", + "to": "x2710537b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2766723", + "name": "xf_t5391986a", + "phases": "AS", + "to": "x2766723a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2879753", + "name": "xf_t21249674b", + "phases": "BS", + "to": "x2879753b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2991923", + "name": "xf_t5302735a", + "phases": "AS", + "to": "x2991923a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3085391", + "name": "xf_t21236413b", + "phases": "BS", + "to": "x3085391b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001206", + "name": "xf_t2001206c", + "phases": "CS", + "to": "x2001206c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001315", + "name": "xf_t2001315a", + "phases": "AS", + "to": "x2001315a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2897768", + "name": "xf_t5337634c", + "phases": "CS", + "to": "x2897768c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254217", + "name": "xf_t21399112c", + "phases": "CS", + "to": "x3254217c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3048208", + "name": "xf_t5138260a", + "phases": "AS", + "to": "x3048208a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3122847", + "name": "xf_t21483138a", + "phases": "AS", + "to": "x3122847a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2991914", + "name": "xf_t5338941c", + "phases": "CS", + "to": "x2991914c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3010568", + "name": "xf_t5338965a", + "phases": "AS", + "to": "x3010568a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3728040", + "name": "xf_t2224387062a", + "phases": "AS", + "to": "x3728040a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l3027670", + "name": "xf_t226308719b", + "phases": "BS", + "to": "x3027670b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2729407", + "name": "xf_t5247100b", + "phases": "BS", + "to": "x2729407b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2764399", + "name": "xf_t226192493b", + "phases": "BS", + "to": "x2764399b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3066810", + "name": "xf_t5337659c", + "phases": "CS", + "to": "x3066810c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3251799", + "name": "xf_t5260562a", + "phases": "AS", + "to": "x3251799a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2764412", + "name": "xf_t5321874a", + "phases": "AS", + "to": "x2764412a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2916625", + "name": "xf_t21467859b", + "phases": "BS", + "to": "x2916625b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3778577", + "name": "xf_t2224490448c", + "phases": "CS", + "to": "x3778577c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3048887", + "name": "xf_t5260586b", + "phases": "BS", + "to": "x3048887b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2729406", + "name": "xf_t5337633c", + "phases": "CS", + "to": "x2729406c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001207", + "name": "xf_t2001207c", + "phases": "CS", + "to": "x2001207c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3179608", + "name": "xf_t5356793c", + "phases": "CS", + "to": "x3179608c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5", + "from": "l3254230", + "name": "xf_t5338989a", + "phases": "AS", + "to": "x3254230a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2913406", + "name": "xf_t225940756b", + "phases": "BS", + "to": "x2913406b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2766730", + "name": "xf_t5355359b", + "phases": "BS", + "to": "x2766730b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3552667", + "name": "xf_t2224061203c", + "phases": "CS", + "to": "x3552667c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2691952", + "name": "xf_t5391980a", + "phases": "AS", + "to": "x2691952a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3104117", + "name": "xf_t5338964c", + "phases": "CS", + "to": "x3104117c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "m2001400", + "name": "xf_t2001400c", + "phases": "CS", + "to": "x2001400c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3263051", + "name": "xf_t22112371533c", + "phases": "CS", + "to": "x3263051c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2729434", + "name": "xf_t5321851b", + "phases": "BS", + "to": "x2729434b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2936271", + "name": "xf_t5260476a", + "phases": "AS", + "to": "x2936271a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001313", + "name": "xf_t2001313a", + "phases": "AS", + "to": "x2001313a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104850", + "name": "xf_t5260561c", + "phases": "CS", + "to": "x3104850c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2841619", + "name": "xf_t5337636c", + "phases": "CS", + "to": "x2841619c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3086002", + "name": "xf_t5356794c", + "phases": "CS", + "to": "x3086002c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3120502", + "name": "xf_t5294812a", + "phases": "AS", + "to": "x3120502a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2896685", + "name": "xf_t227187012a", + "phases": "AS", + "to": "x2896685a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2896685", + "name": "xf_t227187012c", + "phases": "CS", + "to": "x2896685c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3178979", + "name": "xf_t5338968c", + "phases": "CS", + "to": "x3178979c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2896685", + "name": "xf_t227187012b", + "phases": "BS", + "to": "x2896685b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2673322", + "name": "xf_t5355358b", + "phases": "BS", + "to": "x2673322b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3141394", + "name": "xf_t5339042b", + "phases": "BS", + "to": "x3141394b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2673318", + "name": "xf_t5338967c", + "phases": "CS", + "to": "x2673318c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3233412", + "name": "xf_t226308717a", + "phases": "AS", + "to": "x3233412a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2879081", + "name": "xf_t5391981a", + "phases": "AS", + "to": "x2879081a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2766741", + "name": "xf_t21386754a", + "phases": "AS", + "to": "x2766741a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3197629", + "name": "xf_t5247122b", + "phases": "BS", + "to": "x3197629b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2729410", + "name": "xf_t5338943c", + "phases": "CS", + "to": "x2729410c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001203", + "name": "xf_t2001203c", + "phases": "CS", + "to": "x2001203c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001312", + "name": "xf_t2001312a", + "phases": "AS", + "to": "x2001312a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2879794", + "name": "xf_t5260475a", + "phases": "AS", + "to": "x2879794a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2842330", + "name": "xf_t5356795c", + "phases": "CS", + "to": "x2842330c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2916608", + "name": "xf_t5321852c", + "phases": "CS", + "to": "x2916608c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2822863", + "name": "xf_t5337635c", + "phases": "CS", + "to": "x2822863c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2841648", + "name": "xf_t5337720a", + "phases": "AS", + "to": "x2841648a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001205", + "name": "xf_t2001205c", + "phases": "CS", + "to": "x2001205c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001314", + "name": "xf_t2001314a", + "phases": "AS", + "to": "x2001314a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3027132", + "name": "xf_t5321876a", + "phases": "AS", + "to": "x3027132a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3065696", + "name": "xf_t227921416a", + "phases": "AS", + "to": "x3065696a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2991921", + "name": "xf_t28129399c", + "phases": "CS", + "to": "x2991921c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3216338", + "name": "xf_t5355599b", + "phases": "BS", + "to": "x3216338b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2804245", + "name": "xf_t5355598b", + "phases": "BS", + "to": "x2804245b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3649304", + "name": "xf_t2224237713a", + "phases": "AS", + "to": "x3649304a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2822869", + "name": "xf_t5338942a", + "phases": "AS", + "to": "x2822869a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3029505", + "name": "xf_t5338966c", + "phases": "CS", + "to": "x3029505c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3029498", + "name": "xf_t5247036c", + "phases": "CS", + "to": "x3029498c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3253995", + "name": "xf_t21396815c", + "phases": "CS", + "to": "x3253995c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3048200", + "name": "xf_t5391740b", + "phases": "BS", + "to": "x3048200b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001204", + "name": "xf_t2001204c", + "phases": "CS", + "to": "x2001204c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2710512", + "name": "xf_t5323280b", + "phases": "BS", + "to": "x2710512b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5653469-1_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2952007c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "ld_251859c0", + "nominal_voltage": "120.09", + "parent": "sx2952007c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3029510b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2691939b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2727795c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2879773a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3254217c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3254218a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026920", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000913c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000913c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000913c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000913c0", + "nominal_voltage": "120.09", + "parent": "sx2000913c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3122816b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026925", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026926", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000708b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026927", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001013b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001013b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001013b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001013b0", + "nominal_voltage": "120.09", + "parent": "sx2001013b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2804957c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356790c0", + "nominal_voltage": "120.09", + "parent": "sx2804957c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2711234b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2860490a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3181545c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3125349c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226193698c0", + "nominal_voltage": "120.09", + "parent": "sx3125349c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d6023352-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2691938b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2935560c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3048966", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3048968", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3122815b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3254219c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3048962", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3048963", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000914c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000914c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000914c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000914c0", + "nominal_voltage": "120.09", + "parent": "sx2000914c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3048965", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026915", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2841641b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2973178b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026916", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000707b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3235275b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001012b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001012b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001012b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001012b0", + "nominal_voltage": "120.09", + "parent": "sx2001012b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2731712b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21426205b0", + "nominal_voltage": "120.09", + "parent": "sx2731712b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3045895c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3045895c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3045895c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_351020c0", + "nominal_voltage": "120.09", + "parent": "sx3045895c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2801896b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3254215c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026940", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3101782a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026941", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000911c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000911c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000911c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000911c0", + "nominal_voltage": "120.09", + "parent": "sx2000911c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x1108406a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026942", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3122818c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2897779c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2841000", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026947", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2821010a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_294788a0", + "nominal_voltage": "120.09", + "parent": "sx2821010a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026948", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2842330", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026949", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000706b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x1108406b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3160868b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026946", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001011b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001011b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001011b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001011b0", + "nominal_voltage": "120.09", + "parent": "sx2001011b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2955055", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3179699b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21393454b0", + "nominal_voltage": "120.09", + "parent": "sx3179699b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2801895b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3254216a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3027116a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2842329", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x1108407b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026931", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000912c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000912c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000912c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000912c0", + "nominal_voltage": "120.09", + "parent": "sx2000912c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3122817c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "hvmv69sub3_hsb", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026939", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000705b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3235273b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d6049822-1_int", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2955047", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001010b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001010b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001010b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001010b0", + "nominal_voltage": "120.09", + "parent": "sx2001010b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026935", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2804956a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356811a0", + "nominal_voltage": "120.09", + "parent": "sx2804956a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2820528c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2860493a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3010570a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302392a0", + "nominal_voltage": "120.09", + "parent": "sx3010570a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2955081", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3048937", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2952003b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337614b0", + "nominal_voltage": "120.09", + "parent": "sx2952003b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2804261c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047821", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2897777c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3159037", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047824", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047825", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047826", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000704b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3140238a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227905262a0", + "nominal_voltage": "120.09", + "parent": "sx3140238a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047828", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2842390", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2955078", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2955076", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2803194c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2955077", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2955074", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p859694", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p1197121", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "221-242079", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3045895", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104796", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000910c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000910c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000910c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000910c0", + "nominal_voltage": "120.09", + "parent": "sx2000910c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2897778a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047831", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2823592a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3122819c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p850401", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047834", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047835", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p850400", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047836", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047837", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2804262a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000703b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3160865a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2860491b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2916610b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293660b0", + "nominal_voltage": "120.09", + "parent": "sx2916610b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047809", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3252336b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3252336b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3252336b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226308723b0", + "nominal_voltage": "120.09", + "parent": "sx3252336b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2860491a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2842383", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026907", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2842384", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3195310a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2992556c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2861157c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_251867c0", + "nominal_voltage": "120.09", + "parent": "sx2861157c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3048230c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5712486-1_int", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3160864b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026905", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2897775c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026906", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2858175a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2842379", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026902", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000702b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2860492c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047819", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3048231b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2691936a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2861158c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_251858c0", + "nominal_voltage": "120.09", + "parent": "sx2861158c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2804260b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3048946", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "221-306687", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2917255c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2897776c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047812", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "221-306686", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047813", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3160863c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2801895", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1166394", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1166393", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2673316a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1166396", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2801896", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1166395", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1166398", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2767414", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3160872", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3160871", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1166399", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2691967b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338976b0", + "nominal_voltage": "120.09", + "parent": "sx2691967b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2786266a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2710516", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2710517", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2710514", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2710515", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3235275", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2710518", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2710519", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3235273", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3101788a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "e183493", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2973791a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2710512", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3160878", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2710513", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2710510", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2710511", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2673315a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1166387", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2691966b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_339010b0", + "nominal_voltage": "120.09", + "parent": "sx2691966b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1166386", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2767409", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2767408", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2767407", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2710525", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3195318b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3101787a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3214549a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226308731a0", + "nominal_voltage": "120.09", + "parent": "sx3214549a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2710520", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2973791", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2685805", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2936276b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2842390c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21325725c0", + "nominal_voltage": "120.09", + "parent": "sx2842390c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2685809", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2710521", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1166391", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3178980c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302510c0", + "nominal_voltage": "120.09", + "parent": "sx3178980c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2673314c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104796c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260569c0", + "nominal_voltage": "120.09", + "parent": "sx3104796c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3160896c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260573c0", + "nominal_voltage": "120.09", + "parent": "sx3160896c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2690941b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323387b0", + "nominal_voltage": "120.09", + "parent": "sx2690941b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108489", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2710536", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108499", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2710537", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108493", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3195315a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108492", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2710530", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3160896", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108490", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3178981b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3178981b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3178981b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21396331b0", + "nominal_voltage": "120.09", + "parent": "sx3178981b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2936275b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2710532", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2730149", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2710519a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2673313b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3195751a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3207907c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3207907b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5535139-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3101789a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2710542", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2730163c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260481c0", + "nominal_voltage": "120.09", + "parent": "sx2730163c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3178982a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_294843a0", + "nominal_voltage": "120.09", + "parent": "sx3178982a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5623395-1_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2710546", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2710543", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2710544", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2710518a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p903490", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1166356", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3122848c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21397121c0", + "nominal_voltage": "120.09", + "parent": "sx3122848c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1166355", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1166358", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2954355a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293672a0", + "nominal_voltage": "120.09", + "parent": "sx2954355a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3207907a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3068944b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3081380a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2879061b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337692b0", + "nominal_voltage": "120.09", + "parent": "sx2879061b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3027157", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3027156", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x1108404a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x1108404c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x1108404b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2673319c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2710517a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3122847a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21483138a0", + "nominal_voltage": "120.09", + "parent": "sx3122847a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2916619b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_339006b0", + "nominal_voltage": "120.09", + "parent": "sx2916619b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3085389b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2954354a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302675a0", + "nominal_voltage": "120.09", + "parent": "sx2954354a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2766729a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293523a0", + "nominal_voltage": "120.09", + "parent": "sx2766729a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x1108405b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x1108405a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x1108405c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2673318c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1166374", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2954357a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355936a0", + "nominal_voltage": "120.09", + "parent": "sx2954357a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1166373", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2710516a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1166376", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1166375", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2691965b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338983b0", + "nominal_voltage": "120.09", + "parent": "sx2691965b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1166377", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2916618b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323283b0", + "nominal_voltage": "120.09", + "parent": "sx2916618b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "e183473", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000915c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000915c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000915c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000915c0", + "nominal_voltage": "120.09", + "parent": "sx2000915c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "e183472", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2798067b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2936279c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001015b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001015b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001015b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001015b0", + "nominal_voltage": "120.09", + "parent": "sx2001015b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2730107", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x_293471c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2730108", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x_293471a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2730106", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x_293471b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1166361", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2673317a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2767414c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1166362", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3122849b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293423b0", + "nominal_voltage": "120.09", + "parent": "sx3122849b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1166364", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2804956", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3160861", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2710515c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2804957", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1166366", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1166369", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2916617b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_339007b0", + "nominal_voltage": "120.09", + "parent": "sx2916617b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1166368", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2745799c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5958866-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2710505", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2710504", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3120376a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2710509", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2710508", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3160863", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3216123", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3160862", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x1108403c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3160865", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001014b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001014b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001014b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001014b0", + "nominal_voltage": "120.09", + "parent": "sx2001014b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3160864", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3253995", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1166370", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x1108403b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3160868", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x1108403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p829796", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p829797", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2879054a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_247061a0", + "nominal_voltage": "120.09", + "parent": "sx2879054a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3632979a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p829798", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2766726b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302373b0", + "nominal_voltage": "120.09", + "parent": "sx2766726b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2954351c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302805c0", + "nominal_voltage": "120.09", + "parent": "sx2954351c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x0247160b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2954350c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2954350c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2954350c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302809c0", + "nominal_voltage": "120.09", + "parent": "sx2954350c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2929261a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_225533337a0", + "nominal_voltage": "120.09", + "parent": "sx2929261a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3215385a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21384099a0", + "nominal_voltage": "120.09", + "parent": "sx3215385a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3215385c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21384099c0", + "nominal_voltage": "120.09", + "parent": "sx3215385c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3215385b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21384099b0", + "nominal_voltage": "120.09", + "parent": "sx3215385b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "e206614", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3178988b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_339001b0", + "nominal_voltage": "120.09", + "parent": "sx3178988b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2710525c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d6017295-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2766725c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21399220c0", + "nominal_voltage": "120.09", + "parent": "sx2766725c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2857591a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3101194c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3101194c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3101194c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21459660c0", + "nominal_voltage": "120.09", + "parent": "sx3101194c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2802481a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5710794-3_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2708293", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3216123a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3066829", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3066826", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1139551", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1139550", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1139552", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108527", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108526", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108529", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x0247162b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3085388b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2954353a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338945a0", + "nominal_voltage": "120.09", + "parent": "sx2954353a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069199", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108524", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2876797a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108532", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104145b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3048199", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1139544", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3066821", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1139543", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1139546", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1139545", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3048196", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1139547", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1186052", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1139549", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3172805", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d6413567-3_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2766727b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302367b0", + "nominal_voltage": "120.09", + "parent": "sx2766727b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2954352c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2127090c0", + "nominal_voltage": "120.09", + "parent": "sx2954352c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069187", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108534", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069189", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108535", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2876798b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108540", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069192", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2786204c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_223662c0", + "nominal_voltage": "120.09", + "parent": "sx2786204c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069191", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3157167a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3066830", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3029495b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391736b0", + "nominal_voltage": "120.09", + "parent": "sx3029495b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3066808", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3066807", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3066806", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3066805", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3097861c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3066804", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2673312a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "198-5320", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3066801", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2710546b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337704b0", + "nominal_voltage": "120.09", + "parent": "sx2710546b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "hvmv_sub1_48332", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069175", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2766722b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337700b0", + "nominal_voltage": "120.09", + "parent": "sx2766722b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3066809", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2991911c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138258c0", + "nominal_voltage": "120.09", + "parent": "sx2991911c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3177665", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2820531b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069184", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2730163", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069181", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3178997", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125929", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2952007", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3312692a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2223661373a0", + "nominal_voltage": "120.09", + "parent": "sx3312692a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3159037b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323391b0", + "nominal_voltage": "120.09", + "parent": "sx3159037b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3160123a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2952003", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3066819", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3066818", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125911", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3066817", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3066816", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125913", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3066815", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125914", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001315a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001315a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001315a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001315a0", + "nominal_voltage": "120.09", + "parent": "sx2001315a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3066814", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3066813", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125916", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2673311a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3066812", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125917", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069169", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2710521a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3315860", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2766721a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2766721a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2766721a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_247059a0", + "nominal_voltage": "120.09", + "parent": "sx2766721a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2991910b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337694b0", + "nominal_voltage": "120.09", + "parent": "sx2991910b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069174", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001500", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104144a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3066811", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3251854a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5799561-2_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3066810", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125919", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125902", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125903", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125904", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001314a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001314a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001314a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001314a0", + "nominal_voltage": "120.09", + "parent": "sx2001314a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3254915b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260520b0", + "nominal_voltage": "120.09", + "parent": "sx3254915b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125905", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2673310a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2767409b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2710520a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2710544a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710544a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2710544a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21482279a0", + "nominal_voltage": "120.09", + "parent": "sx2710544a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069154", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3214055c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226192175c0", + "nominal_voltage": "120.09", + "parent": "sx3214055c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069156", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069155", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2766724c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_294786c0", + "nominal_voltage": "120.09", + "parent": "sx2766724c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3142078b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2730187", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "f739845", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2879055c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138465c0", + "nominal_voltage": "120.09", + "parent": "sx2879055c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "f739844", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2936271a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "f739842", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "f739841", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2764399", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1166400", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069147", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1166402", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2766723a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391986a0", + "nominal_voltage": "120.09", + "parent": "sx2766723a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069149", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069148", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3232902a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226194826a0", + "nominal_voltage": "120.09", + "parent": "sx3232902a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1166407", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2785543b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3142079b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2936270a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2726983a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226109079a0", + "nominal_voltage": "120.09", + "parent": "sx2726983a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2841639a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001313a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001313a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001313a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001313a0", + "nominal_voltage": "120.09", + "parent": "sx2001313a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2763072", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2952014", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3029055b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260607b0", + "nominal_voltage": "120.09", + "parent": "sx3029055b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2952013", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2916620b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338977b0", + "nominal_voltage": "120.09", + "parent": "sx2916620b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2916620a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338977a0", + "nominal_voltage": "120.09", + "parent": "sx2916620a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3197660b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2860485b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069136", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2991915b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_392036b0", + "nominal_voltage": "120.09", + "parent": "sx2991915b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2803199b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069135", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2803199c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026890", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2803199a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3029518b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069131", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069133", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2841638c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2935555a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026886", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026880", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3141388c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138416c0", + "nominal_voltage": "120.09", + "parent": "sx3141388c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3233413b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026883", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2820535b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3160872c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3254869b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260575b0", + "nominal_voltage": "120.09", + "parent": "sx3254869b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2860486c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3141389a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356007a0", + "nominal_voltage": "120.09", + "parent": "sx3141389a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3178969", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2991914c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338941c0", + "nominal_voltage": "120.09", + "parent": "sx2991914c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2917330a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260474a0", + "nominal_voltage": "120.09", + "parent": "sx2917330a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2973833b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026874", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2935556b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2991640", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069130", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026876", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2823545a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356807a0", + "nominal_voltage": "120.09", + "parent": "sx2823545a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026872", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2841637c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026877", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2973171b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3160871c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2860483b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d2001301_int", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3178979", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2991913a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138571a0", + "nominal_voltage": "120.09", + "parent": "sx2991913a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2935553b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2766720a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_441311a0", + "nominal_voltage": "120.09", + "parent": "sx2766720a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3178974", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2763407c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3178973", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3178972", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3178971", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2820533a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3178978", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3011298c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_207286c0", + "nominal_voltage": "120.09", + "parent": "sx3011298c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3178977", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3178976", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3178975", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2841636b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000200", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2785546a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2690868c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2860484b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3254220c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2991912a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_247056a0", + "nominal_voltage": "120.09", + "parent": "sx2991912a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026895", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026896", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2935554a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3178982", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026898", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026891", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3178988", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3233412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2841635a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2897784b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3178981", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2785547b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3178980", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108508", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2991919a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302400a0", + "nominal_voltage": "120.09", + "parent": "sx2991919a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2804269b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108505", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1140522", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3141400a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1140521", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108507", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1140520", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2860489a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108506", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108501", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1140526", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2917333a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260632a0", + "nominal_voltage": "120.09", + "parent": "sx2917333a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108500", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1140525", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1140524", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1140523", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047780", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3122812b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1140528", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1140527", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2841634b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2935559a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047786", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047787", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3141401a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3119793", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026848", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026849", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026844", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2897781a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026847", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3029498c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_247036c0", + "nominal_voltage": "120.09", + "parent": "sx3029498c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1139540", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1139542", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5895780-3_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1139541", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2991918b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391749b0", + "nominal_voltage": "120.09", + "parent": "sx2991918b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2726975", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2726974", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2726973", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108514", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3122810b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1140519", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026830", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047792", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1140518", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3729298a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224386617a0", + "nominal_voltage": "120.09", + "parent": "sx3729298a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3122811a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047793", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1140517", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047794", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108520", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1140516", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2876796a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2726983", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047795", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047796", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2841633a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3011293a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2129466a0", + "nominal_voltage": "120.09", + "parent": "sx3011293a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3011293b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2129466b0", + "nominal_voltage": "120.09", + "parent": "sx3011293b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3011293c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3011293c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3011293c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2129466c0", + "nominal_voltage": "120.09", + "parent": "sx3011293c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1139537", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3029497c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337631c0", + "nominal_voltage": "120.09", + "parent": "sx3029497c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026834", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1139539", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1139538", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3086098a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2991917b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391757b0", + "nominal_voltage": "120.09", + "parent": "sx2991917b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2860487c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3141402c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2674027b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "193-51796", + "nominal_voltage": "7199.56", + "phases": "ABN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3729297a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224386592a0", + "nominal_voltage": "120.09", + "parent": "sx3729297a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3122814c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3552667c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224061203c0", + "nominal_voltage": "120.09", + "parent": "sx3552667c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2917336c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260513c0", + "nominal_voltage": "120.09", + "parent": "sx2917336c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047763", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3141403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026861", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2935557a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047766", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047767", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047768", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047769", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2823544a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356804a0", + "nominal_voltage": "120.09", + "parent": "sx2823544a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3008248a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321159a0", + "nominal_voltage": "120.09", + "parent": "sx3008248a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2802480b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2841632b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026866", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069der480-1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3139366", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3197661c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2746587", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2860488b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2991916b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337710b0", + "nominal_voltage": "120.09", + "parent": "sx2991916b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "flags": "DELTAMODE", + "name": "m1209-dies1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209-dies1_dgmtr", + "nominal_voltage": "277.13", + "parent": "m1209-dies1", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "check_mode": "ONCHANGE", + "eventgen_object": "testgendev", + "grid_association": "true", + "name": "base_fault_check_object", + "strictly_radial": "false" + }, + "children": [], + "name": "fault_check" + }, + { + "attributes": { + "fault_type": "DLG-X", + "manual_outages": "m1209-dies1,2001-08-01 12:10:1.001 PST,2001-08-01 13:00:5.001 PST", + "name": "testgendev" + }, + "children": [], + "name": "eventgen" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026851", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3029499a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302678a0", + "nominal_voltage": "120.09", + "parent": "sx3029499a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026852", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026854", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3122813a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047773", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p862322", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026859", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047777", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000709b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2841631c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026855", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026857", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026858", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2897780b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3251807a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_225673440a0", + "nominal_voltage": "120.09", + "parent": "sx3251807a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3027670b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2822870", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2879767", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026808", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3160113", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3048199b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2972704c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_228445756c0", + "nominal_voltage": "120.09", + "parent": "sx2972704c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2805031c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3254205c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2684420", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2859391b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227989724b0", + "nominal_voltage": "120.09", + "parent": "sx2859391b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2822868", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2822869", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2822866", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2879773", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3160115", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047744", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2841630c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2822867", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3160114", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026805", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2822864", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3160117", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2822865", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026807", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2822862", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026800", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2822863", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2822860", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2822861", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2804282c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337641c0", + "nominal_voltage": "120.09", + "parent": "sx2804282c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2764412", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2916603b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323403b0", + "nominal_voltage": "120.09", + "parent": "sx2916603b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2879753", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3251806b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355602b0", + "nominal_voltage": "120.09", + "parent": "sx3251806b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3027671a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2764411", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2879752", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3160123", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2801949", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3254206b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3160098a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_339048a0", + "nominal_voltage": "120.09", + "parent": "sx3160098a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104856a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260467a0", + "nominal_voltage": "120.09", + "parent": "sx3104856a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2804270b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3254207a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047750", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047751", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000902c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000902c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000902c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000902c0", + "nominal_voltage": "120.09", + "parent": "sx2000902c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3122827a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047752", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2822877", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047755", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047756", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2822873", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2822871", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2822872", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3254873c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_251862c0", + "nominal_voltage": "120.09", + "parent": "sx3254873c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3217052c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260528c0", + "nominal_voltage": "120.09", + "parent": "sx3217052c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3029500a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3082993", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3649298", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3649297", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2916602a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_339049a0", + "nominal_voltage": "120.09", + "parent": "sx2916602a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3197654a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3649299", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2764403", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104853c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260518c0", + "nominal_voltage": "120.09", + "parent": "sx3104853c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3254203b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3179673c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026820", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3066809c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338958c0", + "nominal_voltage": "120.09", + "parent": "sx3066809c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047720", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047721", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026826", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047722", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3254870c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260581c0", + "nominal_voltage": "120.09", + "parent": "sx3254870c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2879794", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047723", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047724", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026829", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047725", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3082992", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026823", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3216988b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026824", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047728", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047729", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3217053c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260529c0", + "nominal_voltage": "120.09", + "parent": "sx3217053c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3082983", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3251808a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226029836a0", + "nominal_voltage": "120.09", + "parent": "sx3251808a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3082988", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3197653b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3254204a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3067478a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3067478a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3067478a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260598a0", + "nominal_voltage": "120.09", + "parent": "sx3067478a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026810", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2822859", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2748839b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2822857", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2822858", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047732", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047733", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "196-29521", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047737", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p873800", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3082981", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026812", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p873801", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "196-29520", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3179674b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3197625c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_339044c0", + "nominal_voltage": "120.09", + "parent": "sx3197625c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2786274c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3102793b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3150961c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2748124b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323392b0", + "nominal_voltage": "120.09", + "parent": "sx2748124b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2897789b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047702", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047707", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "regxfmr_hvmv11sub3_lsb", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3160878c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3029055", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2955081a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260508a0", + "nominal_voltage": "120.09", + "parent": "sx2955081a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2805036b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3197624b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323235b0", + "nominal_voltage": "120.09", + "parent": "sx3197624b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2915534a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227917122a0", + "nominal_voltage": "120.09", + "parent": "sx2915534a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2786273b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5578300-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5867591-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047711", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047713", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000715b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047718", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2801950", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2804283a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2804283a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2804283a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138564a0", + "nominal_voltage": "120.09", + "parent": "sx2804283a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3010580b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21451973b0", + "nominal_voltage": "120.09", + "parent": "sx3010580b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3235946a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3139598b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3102286", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3254208c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3235945c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2933120c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226192890c0", + "nominal_voltage": "120.09", + "parent": "sx2933120c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000714b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000712b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3552667", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3160100", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3160102", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2805034a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3160101", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2989564b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323286b0", + "nominal_voltage": "120.09", + "parent": "sx2989564b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104850c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260561c0", + "nominal_voltage": "120.09", + "parent": "sx3104850c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5863704-2_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089der480-2", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089der480-1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3254209c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3645809c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224230615c0", + "nominal_voltage": "120.09", + "parent": "sx3645809c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3160104", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3160103", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3160106", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3160105", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3179678b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3160108", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3160107", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "221-311905", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3160109", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000713b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2804272b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125966", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000711b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125968", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125969", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001009b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001009b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001009b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001009b0", + "nominal_voltage": "120.09", + "parent": "sx2001009b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000408a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2806553c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227411655c0", + "nominal_voltage": "120.09", + "parent": "sx2806553c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000905", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000904", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000903", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125960", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000902", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125961", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000909", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125962", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000908", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000907", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000906", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2767407b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2748128c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337629c0", + "nominal_voltage": "120.09", + "parent": "sx2748128c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000901", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000900", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000909c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000909c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000909c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000909c0", + "nominal_voltage": "120.09", + "parent": "sx2000909c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001312a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001312a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001312a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001312a0", + "nominal_voltage": "120.09", + "parent": "sx2001312a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125955", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2710509c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000710b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125957", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3010585a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_294810a0", + "nominal_voltage": "120.09", + "parent": "sx3010585a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125959", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000409a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001008b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001008b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001008b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001008b0", + "nominal_voltage": "120.09", + "parent": "sx2001008b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125952", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2767408c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2748127a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338919a0", + "nominal_voltage": "120.09", + "parent": "sx2748127a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2857591", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3066804a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21380599a0", + "nominal_voltage": "120.09", + "parent": "sx3066804a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001311a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001311a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001311a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001311a0", + "nominal_voltage": "120.09", + "parent": "sx2001311a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2763153", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125943", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125944", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2710508b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000406a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2673326b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3232902", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125947", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001007b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001007b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001007b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001007b0", + "nominal_voltage": "120.09", + "parent": "sx2001007b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3118855c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2729206c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2212168866c0", + "nominal_voltage": "120.09", + "parent": "sx2729206c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125940", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2952013a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355843a0", + "nominal_voltage": "120.09", + "parent": "sx2952013a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3728043a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2748126c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321891c0", + "nominal_voltage": "120.09", + "parent": "sx2748126c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000907c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000907c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000907c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000907c0", + "nominal_voltage": "120.09", + "parent": "sx2000907c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001310a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001310a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001310a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001310a0", + "nominal_voltage": "120.09", + "parent": "sx2001310a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2990098a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3066801c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138464c0", + "nominal_voltage": "120.09", + "parent": "sx3066801c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2952014a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_294809a0", + "nominal_voltage": "120.09", + "parent": "sx2952014a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125934", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000407a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2875754c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2822870c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2916609c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138346c0", + "nominal_voltage": "120.09", + "parent": "sx2916609c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2729207c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2212168874c0", + "nominal_voltage": "120.09", + "parent": "sx2729207c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3728042a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3101782", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2948732b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2748125c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338962c0", + "nominal_voltage": "120.09", + "parent": "sx2748125c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3101789", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5860450-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3101788", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001006b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001006b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001006b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001006b0", + "nominal_voltage": "120.09", + "parent": "sx2001006b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000908c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000908c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000908c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000908c0", + "nominal_voltage": "120.09", + "parent": "sx2000908c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3101787", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000404a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2814529b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2120126b0", + "nominal_voltage": "120.09", + "parent": "sx2814529b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2814529c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2814529c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2814529c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2120126c0", + "nominal_voltage": "120.09", + "parent": "sx2814529c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2916608c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321852c0", + "nominal_voltage": "120.09", + "parent": "sx2916608c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3215340a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2814529a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2814529a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2814529a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2120126a0", + "nominal_voltage": "120.09", + "parent": "sx2814529a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2692000", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3728041a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2745806c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226194262c0", + "nominal_voltage": "120.09", + "parent": "sx2745806c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000905c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000905c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000905c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000905c0", + "nominal_voltage": "120.09", + "parent": "sx2000905c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3066807c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337624c0", + "nominal_voltage": "120.09", + "parent": "sx3066807c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001005b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001005b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001005b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001005b0", + "nominal_voltage": "120.09", + "parent": "sx2001005b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2879073c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138371c0", + "nominal_voltage": "120.09", + "parent": "sx2879073c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1186078", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1186072", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3216368c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000405a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2710505b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3122835b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_339008b0", + "nominal_voltage": "120.09", + "parent": "sx3122835b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125990", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2916607c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321882c0", + "nominal_voltage": "120.09", + "parent": "sx2916607c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2729206", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125994", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2729207", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3048196b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125997", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "regxfmr_hvmv69sub1_lsb1", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104830", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3728040a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3066808c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337654c0", + "nominal_voltage": "120.09", + "parent": "sx3066808c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3214071c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226194419c0", + "nominal_voltage": "120.09", + "parent": "sx3214071c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3156034", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000906c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000906c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000906c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000906c0", + "nominal_voltage": "120.09", + "parent": "sx2000906c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1186065", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2879072b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337695b0", + "nominal_voltage": "120.09", + "parent": "sx2879072b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3232933", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1186067", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001004b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001004b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001004b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001004b0", + "nominal_voltage": "120.09", + "parent": "sx2001004b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2917310b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1186061", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1186064", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3008232b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1186063", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125987", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125988", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125989", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2710504b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2916606c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_275007c0", + "nominal_voltage": "120.09", + "parent": "sx2916606c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125982", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2897792a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2897792a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2897792a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338985a0", + "nominal_voltage": "120.09", + "parent": "sx2897792a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000903c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000903c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000903c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000903c0", + "nominal_voltage": "120.09", + "parent": "sx2000903c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3066805a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337674a0", + "nominal_voltage": "120.09", + "parent": "sx3066805a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2879071b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337701b0", + "nominal_voltage": "120.09", + "parent": "sx2879071b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3178997c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3178997c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3178997c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293422c0", + "nominal_voltage": "120.09", + "parent": "sx3178997c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3217057a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_218475a0", + "nominal_voltage": "120.09", + "parent": "sx3217057a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001003b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001003b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001003b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001003b0", + "nominal_voltage": "120.09", + "parent": "sx2001003b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125976", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125978", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125979", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2916605c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_274987c0", + "nominal_voltage": "120.09", + "parent": "sx2916605c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3122837c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355432c0", + "nominal_voltage": "120.09", + "parent": "sx3122837c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5513564-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000915", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2764436", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000914", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000913", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1125974", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104850", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000912", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000911", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000910", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000904c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000904c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000904c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000904c0", + "nominal_voltage": "120.09", + "parent": "sx2000904c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3066806c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_275002c0", + "nominal_voltage": "120.09", + "parent": "sx3066806c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2897793a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338987a0", + "nominal_voltage": "120.09", + "parent": "sx2897793a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104859", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3251799a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3217056a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_218474a0", + "nominal_voltage": "120.09", + "parent": "sx3217056a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2879070b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338934b0", + "nominal_voltage": "120.09", + "parent": "sx2879070b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3189190a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104856", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2748129a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138567a0", + "nominal_voltage": "120.09", + "parent": "sx2748129a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2916234", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001002b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001002b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001002b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001002b0", + "nominal_voltage": "120.09", + "parent": "sx2001002b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000402a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104853", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001308a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001308a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001308a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001308a0", + "nominal_voltage": "120.09", + "parent": "sx2001308a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2879066b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323252b0", + "nominal_voltage": "120.09", + "parent": "sx2879066b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3037449", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2710514b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2673320b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2766738c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338978c0", + "nominal_voltage": "120.09", + "parent": "sx2766738c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3037441", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001308a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000412a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000412a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000412a0", + "nominal_voltage": "120.09", + "parent": "sx2000412a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2692600c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356798c0", + "nominal_voltage": "120.09", + "parent": "sx2692600c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104135a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000411a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2879065b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_247126b0", + "nominal_voltage": "120.09", + "parent": "sx2879065b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001307a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001307a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001307a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001307a0", + "nominal_voltage": "120.09", + "parent": "sx2001307a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2897790c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2710513b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3037455", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d6140778-1_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3037453", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "hvmv11sub1_lsb", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3037452", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2730149c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2730149c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2730149c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260601c0", + "nominal_voltage": "120.09", + "parent": "sx2730149c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001307a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000413a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000413a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000413a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000413a0", + "nominal_voltage": "120.09", + "parent": "sx2000413a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3141393c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_442373c0", + "nominal_voltage": "120.09", + "parent": "sx3141393c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104136b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3008237c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226193838c0", + "nominal_voltage": "120.09", + "parent": "sx3008237c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2879064a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138581a0", + "nominal_voltage": "120.09", + "parent": "sx2879064a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3270814a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226191850a0", + "nominal_voltage": "120.09", + "parent": "sx3270814a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3086002c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power": "12MVA", + "bustype": "SWING", + "flags": "DELTAMODE", + "name": "sourcebus", + "nominal_voltage": "66395.28", + "phases": "ABCN", + "positive_sequence_voltage": "${VSOURCE}", + "power_convergence_value": "100VA" + }, + "children": [], + "name": "substation" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2691973a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355935a0", + "nominal_voltage": "120.09", + "parent": "sx2691973a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p828362", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001306a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001306a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001306a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001306a0", + "nominal_voltage": "120.09", + "parent": "sx2001306a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2710512b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2861218c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260505c0", + "nominal_voltage": "120.09", + "parent": "sx2861218c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2891575c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2891575c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2891575c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_225533423c0", + "nominal_voltage": "120.09", + "parent": "sx2891575c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000410a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000410a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000410a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000410a0", + "nominal_voltage": "120.09", + "parent": "sx2000410a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001305a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2822877b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3141394b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_339042b0", + "nominal_voltage": "120.09", + "parent": "sx3141394b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001306a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2917328b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21389092b0", + "nominal_voltage": "120.09", + "parent": "sx2917328b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104133a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1137002", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1137003", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1137005", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2879063b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337646b0", + "nominal_voltage": "120.09", + "parent": "sx2879063b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001305a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001305a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001305a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001305a0", + "nominal_voltage": "120.09", + "parent": "sx2001305a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2710511a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2842379a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3177894a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227903012a0", + "nominal_voltage": "120.09", + "parent": "sx3177894a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p828359", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000411a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000411a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000411a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000411a0", + "nominal_voltage": "120.09", + "parent": "sx2000411a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001304a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2726975b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226193422b0", + "nominal_voltage": "120.09", + "parent": "sx2726975b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3141395c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2149184c0", + "nominal_voltage": "120.09", + "parent": "sx3141395c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p1121283", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3177881c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104134c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p1121282", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2861219b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21389761b0", + "nominal_voltage": "120.09", + "parent": "sx2861219b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2879062c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21385192c0", + "nominal_voltage": "120.09", + "parent": "sx2879062c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p828360", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000410a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3214069c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226194421c0", + "nominal_voltage": "120.09", + "parent": "sx3214069c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2842384c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260637c0", + "nominal_voltage": "120.09", + "parent": "sx2842384c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001304a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001304a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001304a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001304a0", + "nominal_voltage": "120.09", + "parent": "sx2001304a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2991923a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302735a0", + "nominal_voltage": "120.09", + "parent": "sx2991923a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2710510c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001303a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104131a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2726974b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226193395b0", + "nominal_voltage": "120.09", + "parent": "sx2726974b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "flags": "DELTAMODE", + "name": "m1142-lng1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142-lng1_dgmtr", + "nominal_voltage": "277.13", + "parent": "m1142-lng1", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2822871b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3066811b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2126875b0", + "nominal_voltage": "120.09", + "parent": "sx3066811b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2842383a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260634a0", + "nominal_voltage": "120.09", + "parent": "sx2842383a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001303a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001303a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001303a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001303a0", + "nominal_voltage": "120.09", + "parent": "sx2001303a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2879069a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338894a0", + "nominal_voltage": "120.09", + "parent": "sx2879069a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2673323c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2991922a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302734a0", + "nominal_voltage": "120.09", + "parent": "sx2991922a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001302a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3235245", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026796", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3235246", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026797", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3235243", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026798", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2841629c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3235244", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2726973a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226192926a0", + "nominal_voltage": "120.09", + "parent": "sx2726973a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3235241", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026792", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3235242", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2822872b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104132a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026795", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3066812a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323263a0", + "nominal_voltage": "120.09", + "parent": "sx3066812a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3235249", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3235247", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2860500b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323274b0", + "nominal_voltage": "120.09", + "parent": "sx2860500b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3235248", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2879068b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323254b0", + "nominal_voltage": "120.09", + "parent": "sx2879068b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2673322b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2764412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2954361b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21383494b0", + "nominal_voltage": "120.09", + "parent": "sx2954361b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2991921c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2129399c0", + "nominal_voltage": "120.09", + "parent": "sx2991921c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2730149c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3235256", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3235257", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3235254", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3235255", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2841628a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3235252", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2822873b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3235253", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3235250", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3235251", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001302a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001302a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001302a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001302a0", + "nominal_voltage": "120.09", + "parent": "sx2001302a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3139086b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226192846b0", + "nominal_voltage": "120.09", + "parent": "sx3139086b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3141390b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391743b0", + "nominal_voltage": "120.09", + "parent": "sx3141390b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3235258", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2692633c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2913406b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2879067a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21380616a0", + "nominal_voltage": "120.09", + "parent": "sx2879067a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2973180b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2673321a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2764411c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2991920a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2118822a0", + "nominal_voltage": "120.09", + "parent": "sx2991920a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3235267", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3234149a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227944551a0", + "nominal_voltage": "120.09", + "parent": "sx3234149a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3235268", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3234149b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227944551b0", + "nominal_voltage": "120.09", + "parent": "sx3234149b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3234149c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227944551c0", + "nominal_voltage": "120.09", + "parent": "sx3234149c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2841627a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3235266", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104130b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3066810c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337659c0", + "nominal_voltage": "120.09", + "parent": "sx3066810c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3216337a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356011a0", + "nominal_voltage": "120.09", + "parent": "sx3216337a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2989565a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21389237a0", + "nominal_voltage": "120.09", + "parent": "sx2989565a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3047058a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227902981a0", + "nominal_voltage": "120.09", + "parent": "sx3047058a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2748781a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2766730b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355359b0", + "nominal_voltage": "120.09", + "parent": "sx2766730b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2989432b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226163575b0", + "nominal_voltage": "120.09", + "parent": "sx2989432b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2991927b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355607b0", + "nominal_voltage": "120.09", + "parent": "sx2991927b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p895102", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3029506b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026764", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p895107", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2915542c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227921427c0", + "nominal_voltage": "120.09", + "parent": "sx2915542c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2935567b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3048214", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p895104", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026760", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p895106", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p895105", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2841626c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3048210", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3048211", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3048212", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2804277c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026767", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000100", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3233413", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026769", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3233412", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3216338b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355599b0", + "nominal_voltage": "120.09", + "parent": "sx3216338b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2860504a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293667a0", + "nominal_voltage": "120.09", + "parent": "sx2860504a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2989566b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260602b0", + "nominal_voltage": "120.09", + "parent": "sx2989566b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2748780a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047pv-3", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047pv-3_pvmtr", + "nominal_voltage": "7199.56", + "parent": "m1047pv-3", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3254210c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047pv-2", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047pv-1", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p895111", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p895113", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p895112", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3029505c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2915542b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227921427b0", + "nominal_voltage": "120.09", + "parent": "sx2915542b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2915542a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227921427a0", + "nominal_voltage": "120.09", + "parent": "sx2915542a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3048207", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p901894", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2935568b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3048208", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3108449a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3048209", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3216988", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3048203", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p895114", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3048205", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p895117", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2841625c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3048206", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3048200", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3048201", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p873787", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3216339b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391741b0", + "nominal_voltage": "120.09", + "parent": "sx3216339b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3160098", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3216370a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3216370c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3216370b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2766732b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_247164b0", + "nominal_voltage": "120.09", + "parent": "sx2766732b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3122821b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026785", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026786", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3122822a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3008232b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226192492b0", + "nominal_voltage": "120.09", + "parent": "sx3008232b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026783", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2841624b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026784", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047688", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2860501b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323265b0", + "nominal_voltage": "120.09", + "parent": "sx2860501b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3159645a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_228446184a0", + "nominal_voltage": "120.09", + "parent": "sx3159645a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3048230", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3048231", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3103822c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_228665517c0", + "nominal_voltage": "120.09", + "parent": "sx3103822c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "221-312488", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026780", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3029507b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3065696a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227921416a0", + "nominal_voltage": "120.09", + "parent": "sx3065696a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3122820a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026774", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3091052", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026777", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001400", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2821770a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227917119a0", + "nominal_voltage": "120.09", + "parent": "sx2821770a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2935566c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3048227", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2841623a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3048228", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026773", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047699", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3048221", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3048222", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2951995c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226192801c0", + "nominal_voltage": "120.09", + "parent": "sx2951995c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026778", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026779", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2729206c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "196-29518", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "196-29519", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2897554", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3197652a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3254213b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3029502a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026722", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3122824a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2970258c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21459640c0", + "nominal_voltage": "120.09", + "parent": "sx2970258c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2841622a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3141396c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337655c0", + "nominal_voltage": "120.09", + "parent": "sx3141396c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047669", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2729207c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2897793a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026724", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2955077c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2955077c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2955077c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260543c0", + "nominal_voltage": "120.09", + "parent": "sx2955077c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026726", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2895449c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226193134c0", + "nominal_voltage": "120.09", + "parent": "sx2895449c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3029501b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2711226b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1137001", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5534967-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2801902", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2801909", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3254214b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047671", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3122823b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047672", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3141397b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21396796b0", + "nominal_voltage": "120.09", + "parent": "sx3141397b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2841621c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026713", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2955078a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260542a0", + "nominal_voltage": "120.09", + "parent": "sx2955078a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3214112b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226881057b0", + "nominal_voltage": "120.09", + "parent": "sx3214112b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2955074a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260479a0", + "nominal_voltage": "120.09", + "parent": "sx2955074a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2991929b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2147708b0", + "nominal_voltage": "120.09", + "parent": "sx2991929b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2711225c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2860499b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2879767b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3141398a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21386976a0", + "nominal_voltage": "120.09", + "parent": "sx3141398a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3254211b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2916602a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3029504b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2948732", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000414a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000414a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000414a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000414a0", + "nominal_voltage": "120.09", + "parent": "sx2000414a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026744", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3122826a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2841620b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026745", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047649", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2897791b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2860506b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321856b0", + "nominal_voltage": "120.09", + "parent": "sx2860506b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001309a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001309a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001309a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001309a0", + "nominal_voltage": "120.09", + "parent": "sx2001309a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3197618a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356008a0", + "nominal_voltage": "120.09", + "parent": "sx3197618a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3216336a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356010a0", + "nominal_voltage": "120.09", + "parent": "sx3216336a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2711224b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3254212b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x0247171b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2916603b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3029503c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000415a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000415a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000415a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000415a0", + "nominal_voltage": "120.09", + "parent": "sx2000415a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026732", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3122825a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3141399c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302804c0", + "nominal_voltage": "120.09", + "parent": "sx3141399c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2689691a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2955005", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026734", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2955076a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21243817a0", + "nominal_voltage": "120.09", + "parent": "sx2955076a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2955006", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2897792a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026736", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2766723", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3216361", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2766722", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2766721", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2766720", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3046854b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227732939b0", + "nominal_voltage": "120.09", + "parent": "sx3046854b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2766727", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2766726", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2766725", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2748131b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323250b0", + "nominal_voltage": "120.09", + "parent": "sx2748131b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2766724", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "q16642_cap", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2766729", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2766728", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3197633a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338893a0", + "nominal_voltage": "120.09", + "parent": "sx3197633a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2748132a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302637a0", + "nominal_voltage": "120.09", + "parent": "sx2748132a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2805031c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260491c0", + "nominal_voltage": "120.09", + "parent": "sx2805031c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047623", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2785517c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338957c0", + "nominal_voltage": "120.09", + "parent": "sx2785517c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2785528b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3143999a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3216358", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3649304a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2804270b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_339013b0", + "nominal_voltage": "120.09", + "parent": "sx2804270b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "r18242", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2674052c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "r18241", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3216350", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2972704c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3216351", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2766716", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104830c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2766715", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2748130b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138753b0", + "nominal_voltage": "120.09", + "parent": "sx2748130b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2766719", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "r18243", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3197632b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323266b0", + "nominal_voltage": "120.09", + "parent": "sx3197632b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2766718", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2766717", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "r18245", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2804282c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3216349", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047633", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3216343", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2785518c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138469c0", + "nominal_voltage": "120.09", + "parent": "sx2785518c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3216344", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2785529c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3216342", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3216347", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3216348", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3216345", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3216346", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2674051a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026709", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2989571a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_225991691a0", + "nominal_voltage": "120.09", + "parent": "sx2989571a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3632979", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3141411c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21197413c0", + "nominal_voltage": "120.09", + "parent": "sx3141411c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3197631a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338920a0", + "nominal_voltage": "120.09", + "parent": "sx3197631a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3216338", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3067478", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3216339", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026700", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2991909a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3215549b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_228219458b0", + "nominal_voltage": "120.09", + "parent": "sx3215549b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2763153a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293425a0", + "nominal_voltage": "120.09", + "parent": "sx2763153a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026705", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026706", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2876814a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026708", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3649302a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3216336", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3778577", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026701", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3216337", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026702", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2785519a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138566a0", + "nominal_voltage": "120.09", + "parent": "sx2785519a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026703", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026704", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d6138608-3_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3141412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391996a0", + "nominal_voltage": "120.09", + "parent": "sx3141412a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2842329c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260568c0", + "nominal_voltage": "120.09", + "parent": "sx2842329c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3197630a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138644a0", + "nominal_voltage": "120.09", + "parent": "sx3197630a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2879752b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2991908a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047612", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047613", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3649301a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047615", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3010567", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3215203a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3010568", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2954339b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391739b0", + "nominal_voltage": "120.09", + "parent": "sx2954339b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3027133a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3010565", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2992656a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260627a0", + "nominal_voltage": "120.09", + "parent": "sx2992656a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3010566", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3010563", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3160878c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260511c0", + "nominal_voltage": "120.09", + "parent": "sx3160878c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3010564", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3008248", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3010561", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3010562", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2821087a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3010560", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3197637c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3197637c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3197637c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138585c0", + "nominal_voltage": "120.09", + "parent": "sx3197637c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2691959b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1134480", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2805036b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2805036b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2805036b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_275248b0", + "nominal_voltage": "120.09", + "parent": "sx2805036b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3123452c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260574c0", + "nominal_voltage": "120.09", + "parent": "sx3123452c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3215203c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3215203b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1134479", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1134478", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d2000100_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1134477", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1134476", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3067447a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21386157a0", + "nominal_voltage": "120.09", + "parent": "sx3067447a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1134475", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1134474", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1134472", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2915534a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3010569", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1142099", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2954338b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355618b0", + "nominal_voltage": "120.09", + "parent": "sx2954338b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2763811c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21459629c0", + "nominal_voltage": "120.09", + "parent": "sx2763811c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1142098", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3010570", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3197636b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2148580b0", + "nominal_voltage": "120.09", + "parent": "sx3197636b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3085410b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3067448c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_262075c0", + "nominal_voltage": "120.09", + "parent": "sx3067448c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3021569", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2745811c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_251863c0", + "nominal_voltage": "120.09", + "parent": "sx2745811c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3019248", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2748135a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2150172a0", + "nominal_voltage": "120.09", + "parent": "sx2748135a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3029183", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2763812c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21459651c0", + "nominal_voltage": "120.09", + "parent": "sx2763812c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3030199", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3030197", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3010585", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l0247171", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3197635b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337696b0", + "nominal_voltage": "120.09", + "parent": "sx3197635b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3010580", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2748133c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302861c0", + "nominal_voltage": "120.09", + "parent": "sx2748133c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089093", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089094", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p860892", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2783231", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2914324", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2914323", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3235946a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356800a0", + "nominal_voltage": "120.09", + "parent": "sx3235946a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2804283a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3649306a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3008279", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2804272b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2804272b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2804272b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338993b0", + "nominal_voltage": "120.09", + "parent": "sx2804272b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l0247160", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089097", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1134471", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089096", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1134470", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l0247162", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3197634b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355767b0", + "nominal_voltage": "120.09", + "parent": "sx3197634b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2766499c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2805034a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260647a0", + "nominal_voltage": "120.09", + "parent": "sx2805034a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3067447", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3067448", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2897789b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2897789b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2897789b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323287b0", + "nominal_voltage": "120.09", + "parent": "sx2897789b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3235945c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356796c0", + "nominal_voltage": "120.09", + "parent": "sx3235945c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3649305a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1134469", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2804277c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_339043c0", + "nominal_voltage": "120.09", + "parent": "sx2804277c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2710530b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21381118b0", + "nominal_voltage": "120.09", + "parent": "sx2710530b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3234185", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001der-4", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001der-5", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001215c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001215c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001215c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001215c0", + "nominal_voltage": "120.09", + "parent": "sx2001215c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "q14413", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001der-1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "q14414", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001der-2", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "q14411", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2841615a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356012a0", + "nominal_voltage": "120.09", + "parent": "sx2841615a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001der-3", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "q14412", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3030126", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3011229a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356801a0", + "nominal_voltage": "120.09", + "parent": "sx3011229a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2748139b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21400108b0", + "nominal_voltage": "120.09", + "parent": "sx2748139b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001214c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001214c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001214c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001214c0", + "nominal_voltage": "120.09", + "parent": "sx2001214c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m4362181", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2991902b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3233412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3233412a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3233412a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226308717a0", + "nominal_voltage": "120.09", + "parent": "sx3233412a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2785511a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_339046a0", + "nominal_voltage": "120.09", + "parent": "sx2785511a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104118c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321890c0", + "nominal_voltage": "120.09", + "parent": "sx3104118c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5504876-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3645810c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224230651c0", + "nominal_voltage": "120.09", + "parent": "sx3645810c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2685809a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2745848", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2851933", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1145954", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1145956", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3160872c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260551c0", + "nominal_voltage": "120.09", + "parent": "sx3160872c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1145955", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2897784b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_247170b0", + "nominal_voltage": "120.09", + "parent": "sx2897784b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001213c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001213c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001213c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001213c0", + "nominal_voltage": "120.09", + "parent": "sx2001213c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3195751", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3065696", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3198348a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260552a0", + "nominal_voltage": "120.09", + "parent": "sx3198348a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2991901b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3010556", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3027132a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3010557", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3008232", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2992657a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2992657a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2992657a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21475841a0", + "nominal_voltage": "120.09", + "parent": "sx2992657a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3233413b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226308727b0", + "nominal_voltage": "120.09", + "parent": "sx3233413b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2785512b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323245b0", + "nominal_voltage": "120.09", + "parent": "sx2785512b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3008237", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5956471-2_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3160871c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260638c0", + "nominal_voltage": "120.09", + "parent": "sx3160871c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2970258c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2990098", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104119a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338956a0", + "nominal_voltage": "120.09", + "parent": "sx3104119a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3048200b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391740b0", + "nominal_voltage": "120.09", + "parent": "sx3048200b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001212c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001212c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001212c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001212c0", + "nominal_voltage": "120.09", + "parent": "sx2001212c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3010559", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3198347c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3198347c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3198347c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260622c0", + "nominal_voltage": "120.09", + "parent": "sx3198347c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "flags": "DELTAMODE", + "name": "m2001-ess1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001-ess1_stmtr", + "nominal_voltage": "277.13", + "parent": "m2001-ess1", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "flags": "DELTAMODE", + "name": "m2001-ess2", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001-ess2_stmtr", + "nominal_voltage": "277.13", + "parent": "m2001-ess2", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2785513a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2785513a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2785513a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337677a0", + "nominal_voltage": "120.09", + "parent": "sx2785513a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2724120c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_225577437c0", + "nominal_voltage": "120.09", + "parent": "sx2724120c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3645812c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224230754c0", + "nominal_voltage": "120.09", + "parent": "sx3645812c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3727711a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3048201b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391742b0", + "nominal_voltage": "120.09", + "parent": "sx3048201b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2895449c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2991907a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2876812a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3179682", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001211c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001211c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001211c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001211c0", + "nominal_voltage": "120.09", + "parent": "sx2001211c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p860847", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2766750", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2785514a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337675a0", + "nominal_voltage": "120.09", + "parent": "sx2785514a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3552667c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104117c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338964c0", + "nominal_voltage": "120.09", + "parent": "sx3104117c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3645811c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224230689c0", + "nominal_voltage": "120.09", + "parent": "sx3645811c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p860843", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3179699", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3226771a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227100746a0", + "nominal_voltage": "120.09", + "parent": "sx3226771a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3727712a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d6290228-6_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027123", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3142049c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3179637c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21386442c0", + "nominal_voltage": "120.09", + "parent": "sx3179637c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2991906a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "regxfmr_190-8581", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001210c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001210c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001210c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001210c0", + "nominal_voltage": "120.09", + "parent": "sx2001210c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2876813a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2766741", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1144663", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1144665", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1144664", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2766744", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2766742", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2785515c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293609c0", + "nominal_voltage": "120.09", + "parent": "sx2785515c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2766749", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2766748", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2745806", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2766747", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2766746", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1144667", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1144666", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104114b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355587b0", + "nominal_voltage": "120.09", + "parent": "sx3104114b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1144668", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m4362177", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2897780b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293518b0", + "nominal_voltage": "120.09", + "parent": "sx2897780b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3048203b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323273b0", + "nominal_voltage": "120.09", + "parent": "sx3048203b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3216358a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3120484c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2991905a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2745811", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2766730", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3160098a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3157710b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226193361b0", + "nominal_voltage": "120.09", + "parent": "sx3157710b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2766732", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3216370", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2766738", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "hvmv69sub2_hsb", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104115b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391738b0", + "nominal_voltage": "120.09", + "parent": "sx3104115b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3179682c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2897781a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138770a0", + "nominal_voltage": "120.09", + "parent": "sx2897781a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3727710a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2785516b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138294b0", + "nominal_voltage": "120.09", + "parent": "sx2785516b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3065665", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "q14404", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3216367", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3216368", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2916599a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356015a0", + "nominal_voltage": "120.09", + "parent": "sx2916599a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3101814", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1138000", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3216123a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338926a0", + "nominal_voltage": "120.09", + "parent": "sx3216123a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2897790c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21357984c0", + "nominal_voltage": "120.09", + "parent": "sx2897790c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3066830b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3179646", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3008237c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3065750", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3108449", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2916598a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355933a0", + "nominal_voltage": "120.09", + "parent": "sx2916598a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2895461", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2673331b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2802481a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226308730a0", + "nominal_voltage": "120.09", + "parent": "sx2802481a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2766749b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337661b0", + "nominal_voltage": "120.09", + "parent": "sx2766749b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3010557a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104113a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138560a0", + "nominal_voltage": "120.09", + "parent": "sx3104113a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2897791b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323282b0", + "nominal_voltage": "120.09", + "parent": "sx2897791b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3047073", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2891575c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3179650", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2876798b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226193745b0", + "nominal_voltage": "120.09", + "parent": "sx2876798b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001209c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001209c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001209c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001209c0", + "nominal_voltage": "120.09", + "parent": "sx2001209c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3029495b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3102286b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226308729b0", + "nominal_voltage": "120.09", + "parent": "sx3102286b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3010556a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027121", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3772794", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027114", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2861219", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026chp-2", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2861218", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "flags": "DELTAMODE", + "name": "m1026chp-3", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026chp-3_dgmtr", + "nominal_voltage": "7199.56", + "parent": "m1026chp-3", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2766715b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3177894a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d2001201_int", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3101827", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001208c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001208c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001208c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001208c0", + "nominal_voltage": "120.09", + "parent": "sx2001208c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2895449", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2710525c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355437c0", + "nominal_voltage": "120.09", + "parent": "sx2710525c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027110", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2861222", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3179678", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2861223", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027100", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027101", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3179674", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3179673", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027109", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3216367b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2991910b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001207c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001207c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001207c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001207c0", + "nominal_voltage": "120.09", + "parent": "sx2001207c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3225319", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3179608", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026690", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3179607", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3030199c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260480c0", + "nominal_voltage": "120.09", + "parent": "sx3030199c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001400c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3177881c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227896008c0", + "nominal_voltage": "120.09", + "parent": "sx3177881c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2839305", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2766746c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321886c0", + "nominal_voltage": "120.09", + "parent": "sx2766746c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2841624", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2841623", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2841626", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2841625", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2841628", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026682", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2823611a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21386877a0", + "nominal_voltage": "120.09", + "parent": "sx2823611a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2841627", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2841629", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2841620", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2841619c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337636c0", + "nominal_voltage": "120.09", + "parent": "sx2841619c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2841622", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2841621", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3142078b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_330121b0", + "nominal_voltage": "120.09", + "parent": "sx3142078b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001206c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001206c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001206c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001206c0", + "nominal_voltage": "120.09", + "parent": "sx2001206c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3216361b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026681", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000413", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000412", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2841615", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000411", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000410", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2841616", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2841619", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000415", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2841618", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000414", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026679", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2841618a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337673a0", + "nominal_voltage": "120.09", + "parent": "sx2841618a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3234149a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3142079b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21249626b0", + "nominal_voltage": "120.09", + "parent": "sx3142079b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3234149b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3234149c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000409", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2710520a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138679a0", + "nominal_voltage": "120.09", + "parent": "sx2710520a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3029055b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000408", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000407", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2766748a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21470326a0", + "nominal_voltage": "120.09", + "parent": "sx2766748a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2991933c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355433c0", + "nominal_voltage": "120.09", + "parent": "sx2991933c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000402", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000401", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000400", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000406", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000405", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000404", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3178969b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000403", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2955047a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21469911a0", + "nominal_voltage": "120.09", + "parent": "sx2955047a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001205c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001205c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001205c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001205c0", + "nominal_voltage": "120.09", + "parent": "sx2001205c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2748840b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3048962a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3047060", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m4277837", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2710521a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710521a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2710521a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138680a0", + "nominal_voltage": "120.09", + "parent": "sx2710521a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3010559a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2766747a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391989a0", + "nominal_voltage": "120.09", + "parent": "sx2766747a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026697", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2973180b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21398646b0", + "nominal_voltage": "120.09", + "parent": "sx2973180b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026699", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3047059", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026693", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3179637", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026695", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3157718a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226194093a0", + "nominal_voltage": "120.09", + "parent": "sx3157718a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001204c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001204c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001204c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001204c0", + "nominal_voltage": "120.09", + "parent": "sx2001204c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3047058", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2841616a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841616a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2841616a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21031684a0", + "nominal_voltage": "120.09", + "parent": "sx2841616a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3197629b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_247122b0", + "nominal_voltage": "120.09", + "parent": "sx3197629b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2991939b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337652b0", + "nominal_voltage": "120.09", + "parent": "sx2991939b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3139598", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3123509c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p829957", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2766742b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355585b0", + "nominal_voltage": "120.09", + "parent": "sx2766742b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047592", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p829956", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2785520b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2806553c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2861223b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5534970-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3086079b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3082992a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026646", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026647", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026648", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3156034a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391993a0", + "nominal_voltage": "120.09", + "parent": "sx3156034a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3197628c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138651c0", + "nominal_voltage": "120.09", + "parent": "sx3197628c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2766741a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21386754a0", + "nominal_voltage": "120.09", + "parent": "sx2766741a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2691954b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3253995c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21396815c0", + "nominal_voltage": "120.09", + "parent": "sx3253995c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047593", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2785521c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2724120", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3768670", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2937757c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3082993a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3086078a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p829974", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2674047c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p829979", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3197627c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337625c0", + "nominal_voltage": "120.09", + "parent": "sx3197627c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3048210a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026670", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p829975", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p829976", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p829977", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2766744b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2127319b0", + "nominal_voltage": "120.09", + "parent": "sx2766744b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p829978", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2841645", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026665", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5861005-2_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2841648", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2925506c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_225533703c0", + "nominal_voltage": "120.09", + "parent": "sx2925506c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026667", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026660", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3225319b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_225533675b0", + "nominal_voltage": "120.09", + "parent": "sx3225319b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2839332", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026661", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2839331", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026662", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047566", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047568", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3142050c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3160896c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3177881", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2841641", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2785522b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p829960", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p829961", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2763072b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p829962", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p829963", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3197626c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337623c0", + "nominal_voltage": "120.09", + "parent": "sx3197626c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3048211a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p829965", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047580", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2841635", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2841634", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047572", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2841637", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3177894", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026655", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2841636", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026656", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047574", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2861222a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2933135a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2841639", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047575", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2841638", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3029183b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047577", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2814529c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2814529a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2814529b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2841631", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026657", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2820556a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2841630", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026658", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2841633", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2841632", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2785523c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2895496", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3048212a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2898522", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2898526", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089103", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2879753b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089102", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3065665a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227895952a0", + "nominal_voltage": "120.09", + "parent": "sx3065665a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104859b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138798b0", + "nominal_voltage": "120.09", + "parent": "sx3104859b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2691950c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3649300a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047548", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3086075b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2766717c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2785524c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089115", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089118", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089119", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1149225", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026chp-1", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089112", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p829986", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089113", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5565090-1_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2917359a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21482431a0", + "nominal_voltage": "120.09", + "parent": "sx2917359a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047550", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047552", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3086074c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047558", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2766716c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5774470-2_int", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2785525c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2842330c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356795c0", + "nominal_voltage": "120.09", + "parent": "sx2842330c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1149235", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1149236", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1149233", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3048214a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3048946c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260624c0", + "nominal_voltage": "120.09", + "parent": "sx3048946c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089120", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5587291-3_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089122", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2691953a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047520", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047521", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047522", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047526", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2879092c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2785526b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047528", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089138", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2983432a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2766719a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1149249", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2895489", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089132", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2898515", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089131", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2691952a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2992624a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2691951c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047534", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2785527a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2766718c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089148", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5746546-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2804956a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3197639", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3197638", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3197637", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3197636", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3197635", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3120504a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_225897846a0", + "nominal_voltage": "120.09", + "parent": "sx3120504a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089141", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2973178b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337665b0", + "nominal_voltage": "120.09", + "parent": "sx2973178b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3197645a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21395962a0", + "nominal_voltage": "120.09", + "parent": "sx3197645a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089143", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5472341-1_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089145", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089144", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2748144a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338984a0", + "nominal_voltage": "120.09", + "parent": "sx2748144a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3197634", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3197633", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047503", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3197632", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3197631", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3197630", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2936214a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2936214a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2936214a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356809a0", + "nominal_voltage": "120.09", + "parent": "sx2936214a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047507", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1147865", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1147866", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2804957c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3197629", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1147863", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3197628", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1147864", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3197627", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1147861", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3197626", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1147862", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2801895b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226191951b0", + "nominal_voltage": "120.09", + "parent": "sx2801895b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3197625", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3197624", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1147860", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2916627a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138563a0", + "nominal_voltage": "120.09", + "parent": "sx2916627a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3048937c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3048937c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3048937c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356789c0", + "nominal_voltage": "120.09", + "parent": "sx3048937c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2727795c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227678342c0", + "nominal_voltage": "120.09", + "parent": "sx2727795c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3195321a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089155", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089158", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1147867", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2690187b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226308716b0", + "nominal_voltage": "120.09", + "parent": "sx2690187b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3047073c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227917133c0", + "nominal_voltage": "120.09", + "parent": "sx3047073c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3197644a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138771a0", + "nominal_voltage": "120.09", + "parent": "sx3197644a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3085403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2748143a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2748143a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2748143a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2121368a0", + "nominal_voltage": "120.09", + "parent": "sx2748143a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089160", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047513", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047515", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2936213b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_328363b0", + "nominal_voltage": "120.09", + "parent": "sx2936213b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047518", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2937757", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2801896b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226191995b0", + "nominal_voltage": "120.09", + "parent": "sx2801896b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3160868b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_20107693b0", + "nominal_voltage": "120.09", + "parent": "sx3160868b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2936211c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260567c0", + "nominal_voltage": "120.09", + "parent": "sx2936211c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089163", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2851933a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21393643a0", + "nominal_voltage": "120.09", + "parent": "sx2851933a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089162", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089165", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2764399b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1147858", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1147859", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3197643b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302369b0", + "nominal_voltage": "120.09", + "parent": "sx3197643b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3254227b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1147857", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3217064b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089170", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2851933c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21393643c0", + "nominal_voltage": "120.09", + "parent": "sx2851933c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3235275b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302507b0", + "nominal_voltage": "120.09", + "parent": "sx3235275b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2851933b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21393643b0", + "nominal_voltage": "120.09", + "parent": "sx2851933b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3197654", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2936212a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356815a0", + "nominal_voltage": "120.09", + "parent": "sx2936212a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3197653", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3727709a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3197652", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p895409", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2916625b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21467859b0", + "nominal_voltage": "120.09", + "parent": "sx2916625b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3197647", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3197646", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089174", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089173", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2748140a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391995a0", + "nominal_voltage": "120.09", + "parent": "sx2748140a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089176", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3254228b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089177", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089179", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3197642c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391979c0", + "nominal_voltage": "120.09", + "parent": "sx3197642c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3254229b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5955074-2_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089183", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3139366a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226264795a0", + "nominal_voltage": "120.09", + "parent": "sx3139366a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3197645", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3197644", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3197643", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3197642", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5682346-3_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3197641", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3197640", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2731712b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2992556", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069738", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2860481c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3118855", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2804261c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302509c0", + "nominal_voltage": "120.09", + "parent": "sx2804261c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3030204a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069730", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089185", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2691947a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2748139", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089187", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2914324a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069731", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089186", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089189", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089188", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2935551c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2748140", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2748143", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2748144", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3235273b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_339016b0", + "nominal_voltage": "120.09", + "parent": "sx3235273b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2748146", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2897778a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302468a0", + "nominal_voltage": "120.09", + "parent": "sx2897778a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3179699b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2879794a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260475a0", + "nominal_voltage": "120.09", + "parent": "sx2879794a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3727707a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3030203c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3030205c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3027122a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027091", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2804262a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355938a0", + "nominal_voltage": "120.09", + "parent": "sx2804262a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3160865a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260515a0", + "nominal_voltage": "120.09", + "parent": "sx3160865a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2860482a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089196", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089195", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089198", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2991640c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_229106135c0", + "nominal_voltage": "120.09", + "parent": "sx2991640c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089197", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2691946b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027092", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089199", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2935552c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2748152", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2914323b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2748157", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2748158", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3727708a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2803194c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227917130c0", + "nominal_voltage": "120.09", + "parent": "sx2803194c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2897779c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302508c0", + "nominal_voltage": "120.09", + "parent": "sx2897779c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3197618", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3029520b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2691949b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3160864b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2127146b0", + "nominal_voltage": "120.09", + "parent": "sx3160864b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3197647a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_294787a0", + "nominal_voltage": "120.09", + "parent": "sx3197647a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2684420b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3085402a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3101194", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2748124", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3139103a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_225767272a0", + "nominal_voltage": "120.09", + "parent": "sx3139103a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2748125", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2748146a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138570a0", + "nominal_voltage": "120.09", + "parent": "sx2748146a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2897776c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302858c0", + "nominal_voltage": "120.09", + "parent": "sx2897776c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2915534", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2936216c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_223663c0", + "nominal_voltage": "120.09", + "parent": "sx2936216c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2858163a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3232301", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2860480b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3027124c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2804260b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391752b0", + "nominal_voltage": "120.09", + "parent": "sx2804260b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2748126", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2973791a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260605a0", + "nominal_voltage": "120.09", + "parent": "sx2973791a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3160863c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_223660c0", + "nominal_voltage": "120.09", + "parent": "sx3160863c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3197646b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355944b0", + "nominal_voltage": "120.09", + "parent": "sx3197646b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2935550c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2748127", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2691948b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2748128", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2748129", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3085400c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2911069b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_225571871b0", + "nominal_voltage": "120.09", + "parent": "sx2911069b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2748130", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2748131", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2748132", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3085401a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2748133", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2748135", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d6170302-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2915542", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2897777c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338937c0", + "nominal_voltage": "120.09", + "parent": "sx2897777c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2916620c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338977c0", + "nominal_voltage": "120.09", + "parent": "sx2916620c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1142100", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2973833b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260630b0", + "nominal_voltage": "120.09", + "parent": "sx2973833b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1142101", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2954347b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321841b0", + "nominal_voltage": "120.09", + "parent": "sx2954347b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1142102", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3048963b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2710542b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355584b0", + "nominal_voltage": "120.09", + "parent": "sx2710542b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1142107", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1142108", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1142109", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027066", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1142103", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1142104", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1142105", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1142106", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3160862c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3160862c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3160862c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21386143c0", + "nominal_voltage": "120.09", + "parent": "sx3160862c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3342743c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2223703238c0", + "nominal_voltage": "120.09", + "parent": "sx3342743c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3216348a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027056", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2767343c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356791c0", + "nominal_voltage": "120.09", + "parent": "sx2767343c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001203c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001203c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001203c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001203c0", + "nominal_voltage": "120.09", + "parent": "sx2001203c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2803199c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227760021c0", + "nominal_voltage": "120.09", + "parent": "sx2803199c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2897774b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337691b0", + "nominal_voltage": "120.09", + "parent": "sx2897774b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3085391b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21236413b0", + "nominal_voltage": "120.09", + "parent": "sx3085391b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2710543c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710543c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2710543c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21474614c0", + "nominal_voltage": "120.09", + "parent": "sx2710543c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2803199a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227760021a0", + "nominal_voltage": "120.09", + "parent": "sx2803199a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3142098b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260501b0", + "nominal_voltage": "120.09", + "parent": "sx3142098b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2803199b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2803199b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2803199b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227760021b0", + "nominal_voltage": "120.09", + "parent": "sx2803199b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2990826b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2990826c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027055", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2954346b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323397b0", + "nominal_voltage": "120.09", + "parent": "sx2954346b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3160861c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260558c0", + "nominal_voltage": "120.09", + "parent": "sx3160861c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2973171b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_339012b0", + "nominal_voltage": "120.09", + "parent": "sx2973171b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2990826a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d6017316-1_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3216349b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3778577c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224490448c0", + "nominal_voltage": "120.09", + "parent": "sx3778577c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p893610", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001202c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001202c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001202c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001202c0", + "nominal_voltage": "120.09", + "parent": "sx2001202c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2897775c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138342c0", + "nominal_voltage": "120.09", + "parent": "sx2897775c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2858166a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3085390b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321848b0", + "nominal_voltage": "120.09", + "parent": "sx3085390b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3064514c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_251857c0", + "nominal_voltage": "120.09", + "parent": "sx3064514c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2954349b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337699b0", + "nominal_voltage": "120.09", + "parent": "sx2954349b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3142099b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_157718b0", + "nominal_voltage": "120.09", + "parent": "sx3142099b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027080", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3048965b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027087", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3195327a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2767341c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260577c0", + "nominal_voltage": "120.09", + "parent": "sx2767341c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2897772a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2897772a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2897772a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302679a0", + "nominal_voltage": "120.09", + "parent": "sx2897772a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3179646b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_328365b0", + "nominal_voltage": "120.09", + "parent": "sx3179646b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x1108410b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3085393c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337627c0", + "nominal_voltage": "120.09", + "parent": "sx3085393c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2954348a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356013a0", + "nominal_voltage": "120.09", + "parent": "sx2954348a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3048966c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027071", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3189189", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3189188", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027073", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2767342a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356802a0", + "nominal_voltage": "120.09", + "parent": "sx2767342a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3189190", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027068", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3030126c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260576c0", + "nominal_voltage": "120.09", + "parent": "sx3030126c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2897773a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338918a0", + "nominal_voltage": "120.09", + "parent": "sx2897773a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2692664c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3085392c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337630c0", + "nominal_voltage": "120.09", + "parent": "sx3085392c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3048890c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2128517c0", + "nominal_voltage": "120.09", + "parent": "sx3048890c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3763623", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3763624", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104128a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_247057a0", + "nominal_voltage": "120.09", + "parent": "sx3104128a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3197641a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3197641a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3197641a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293591a0", + "nominal_voltage": "120.09", + "parent": "sx3197641a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3097861c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_225533215c0", + "nominal_voltage": "120.09", + "parent": "sx3097861c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3763620", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2897770c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337628c0", + "nominal_voltage": "120.09", + "parent": "sx2897770c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027019", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027013", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027014", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1008733", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p903360", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3216344b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p830058", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3065750b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3030203", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2822857b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355588b0", + "nominal_voltage": "120.09", + "parent": "sx2822857b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3030200", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3763618", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3048968c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3067506", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3067507", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027011", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104129a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338969a0", + "nominal_voltage": "120.09", + "parent": "sx3104129a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027005", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3197640c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338944c0", + "nominal_voltage": "120.09", + "parent": "sx3197640c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3085393", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027001", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2897771b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21148701b0", + "nominal_voltage": "120.09", + "parent": "sx2897771b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3085392", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027002", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2767340a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260595a0", + "nominal_voltage": "120.09", + "parent": "sx2767340a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3085391", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m4122658", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2767340b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260595b0", + "nominal_voltage": "120.09", + "parent": "sx2767340b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3085390", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027004", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m4122657", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2767340c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260595c0", + "nominal_voltage": "120.09", + "parent": "sx2767340c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3085397", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2936268c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3085396", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1008742", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3763619", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3030204", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3085395", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1008743", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3030205", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3085394", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p903354", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1008746", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3085399", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3085398", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3216345b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2822858b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355591b0", + "nominal_voltage": "120.09", + "parent": "sx2822858b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3120502a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_294812a0", + "nominal_voltage": "120.09", + "parent": "sx3120502a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027041", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2802480b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226308725b0", + "nominal_voltage": "120.09", + "parent": "sx2802480b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3160117b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21357901b0", + "nominal_voltage": "120.09", + "parent": "sx3160117b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027042", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142der480-1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027043", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104126c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104126c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3104126c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138372c0", + "nominal_voltage": "120.09", + "parent": "sx3104126c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2954345c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338915c0", + "nominal_voltage": "120.09", + "parent": "sx2954345c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027038", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027039", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3150961", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027036", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1008752", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2692661a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1008753", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3231269b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_225684682b0", + "nominal_voltage": "120.09", + "parent": "sx3231269b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "q1301", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3085389", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3216346a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2917310", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3085388", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1008758", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1142110", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1142111", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1142112", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3120503a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_225869139a0", + "nominal_voltage": "120.09", + "parent": "sx3120503a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2822859b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391747b0", + "nominal_voltage": "120.09", + "parent": "sx2822859b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104127b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337690b0", + "nominal_voltage": "120.09", + "parent": "sx3104127b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2954344c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338959c0", + "nominal_voltage": "120.09", + "parent": "sx2954344c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027027", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027023", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2861197c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2804269b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323285b0", + "nominal_voltage": "120.09", + "parent": "sx2804269b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2692660a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3216347c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3085399c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302862c0", + "nominal_voltage": "120.09", + "parent": "sx3085399c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2917328", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3048228c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3178974b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104124b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356065b0", + "nominal_voltage": "120.09", + "parent": "sx3104124b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2822864c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_274985c0", + "nominal_voltage": "120.09", + "parent": "sx2822864c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2991943c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2991943c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2991943c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21399619c0", + "nominal_voltage": "120.09", + "parent": "sx2991943c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2917330", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2688693c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2917336", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2917333", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3082988b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2822865c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_274986c0", + "nominal_voltage": "120.09", + "parent": "sx2822865c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3085398b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355777b0", + "nominal_voltage": "120.09", + "parent": "sx3085398b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d2000901_int", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2673343b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2955005b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3010569a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3649299a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224237391a0", + "nominal_voltage": "120.09", + "parent": "sx3649299a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3178975b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2764403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226193078a0", + "nominal_voltage": "120.09", + "parent": "sx2764403a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2916234a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104125b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138264b0", + "nominal_voltage": "120.09", + "parent": "sx3104125b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5926308-3_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d6320328-1_int", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3008248a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3157708c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226192954c0", + "nominal_voltage": "120.09", + "parent": "sx3157708c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2746587c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2990828", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2822866b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338922b0", + "nominal_voltage": "120.09", + "parent": "sx2822866b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2990826", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2990827", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3649298a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224237384a0", + "nominal_voltage": "120.09", + "parent": "sx3649298a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3091052a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2860479b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1027000", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3010568a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3178976a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2710536a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21396867a0", + "nominal_voltage": "120.09", + "parent": "sx2710536a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104122a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138565a0", + "nominal_voltage": "120.09", + "parent": "sx3104122a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3010567c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5865224-1_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3067506c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260620c0", + "nominal_voltage": "120.09", + "parent": "sx3067506c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2935549b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104157c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2917359", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5835167-6_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2822867b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2822867b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2822867b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21386552b0", + "nominal_voltage": "120.09", + "parent": "sx2822867b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2767343", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104123c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338924c0", + "nominal_voltage": "120.09", + "parent": "sx3104123c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3179607b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3178977c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3649297a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224237380a0", + "nominal_voltage": "120.09", + "parent": "sx3649297a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2710537b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391744b0", + "nominal_voltage": "120.09", + "parent": "sx2710537b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2688692b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2991940c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2148060c0", + "nominal_voltage": "120.09", + "parent": "sx2991940c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3067507c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260535c0", + "nominal_voltage": "120.09", + "parent": "sx3067507c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3178978a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3010566c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104120b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138645b0", + "nominal_voltage": "120.09", + "parent": "sx3104120b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3179608c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2862616c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2673300b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391745b0", + "nominal_voltage": "120.09", + "parent": "sx2673300b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3160123a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21015706a0", + "nominal_voltage": "120.09", + "parent": "sx3160123a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2822860b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323236b0", + "nominal_voltage": "120.09", + "parent": "sx2822860b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104155c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000300", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2970804c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3178979c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5746703-1_int", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3048887b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260586b0", + "nominal_voltage": "120.09", + "parent": "sx3048887b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3085395a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21391094a0", + "nominal_voltage": "120.09", + "parent": "sx3085395a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2767342", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3234149", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2767341", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2767340", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3189188c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293658c0", + "nominal_voltage": "120.09", + "parent": "sx3189188c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3198358b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138797b0", + "nominal_voltage": "120.09", + "parent": "sx3198358b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2692655c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104121a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138561a0", + "nominal_voltage": "120.09", + "parent": "sx3104121a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3254230a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3064514", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142798", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3312692a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142799", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2822861a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21015829a0", + "nominal_voltage": "120.09", + "parent": "sx2822861a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2879087a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3048888c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_251856c0", + "nominal_voltage": "120.09", + "parent": "sx3048888c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2862616", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2689678b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226192762b0", + "nominal_voltage": "120.09", + "parent": "sx2689678b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3189189b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293657b0", + "nominal_voltage": "120.09", + "parent": "sx3189189b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2692654a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3085394c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_274988c0", + "nominal_voltage": "120.09", + "parent": "sx3085394c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3198356c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_350993c0", + "nominal_voltage": "120.09", + "parent": "sx3198356c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2710532c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293666c0", + "nominal_voltage": "120.09", + "parent": "sx2710532c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2673346c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d6198039-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047490", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2822862c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_275001c0", + "nominal_voltage": "120.09", + "parent": "sx2822862c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3066821a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2685805a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047483", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047484", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2785530a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047485", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3047289b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047486", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3047289a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3048889c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2128464c0", + "nominal_voltage": "120.09", + "parent": "sx3048889c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3216350a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3085397b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323261b0", + "nominal_voltage": "120.09", + "parent": "sx3085397b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3047289c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3198355b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_207288b0", + "nominal_voltage": "120.09", + "parent": "sx3198355b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2822863c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337635c0", + "nominal_voltage": "120.09", + "parent": "sx2822863c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2785531a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104154c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2879089c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047497", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2859403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3232902a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d6440002-2_int", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3085396a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138684a0", + "nominal_voltage": "120.09", + "parent": "sx3085396a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3216351a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3085410", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "q16483_cap", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2954352", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2954353", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2954350", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3085403", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2954351", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3085402", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2730163c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2691943b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047471", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104125", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3010561a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104126", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104123", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104124", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104121", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3176656", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104122", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104120", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "221-311359", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2806553", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2954349", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "228-1048090-1_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2992624", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3263051c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2954347", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2954348", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2954345", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3085401", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104129", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2954346", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3085400", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104127", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2954344", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104128", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2895461a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3254234b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3048221a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047480", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2691942b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104114", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3448661b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104115", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2673305b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138236b0", + "nominal_voltage": "120.09", + "parent": "sx2673305b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2691941c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3176661", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3010560b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104113", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047478", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2954338", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2954339", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3159448a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337684a0", + "nominal_voltage": "120.09", + "parent": "sx3159448a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104118", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104119", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3176660", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3030200c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104117", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089204", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089203", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089205", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089207", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3197639a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_310569a0", + "nominal_voltage": "120.09", + "parent": "sx3197639a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3082981c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3048222c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3254231a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089200", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2691945c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089202", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089201", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2783231b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226193886b0", + "nominal_voltage": "120.09", + "parent": "sx2783231b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2841648a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104145", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047441", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047442", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104144", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047444", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047447", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2955055b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21249647b0", + "nominal_voltage": "120.09", + "parent": "sx2955055b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2785534b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089215", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2954361", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5804798-3_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3197638a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21396959a0", + "nominal_voltage": "120.09", + "parent": "sx3197638a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2897554c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d2000701_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3066826b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "221-559681", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2673303c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338963c0", + "nominal_voltage": "120.09", + "parent": "sx2673303c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2691944a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "221-559682", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089213", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104136", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104134", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104135", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047453", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104132", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104133", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3214549", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104130", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104131", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047457", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3082983b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2954357", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2785535b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2954354", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2954355", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3122837", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2766750c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2766750c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2766750c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293424c0", + "nominal_voltage": "120.09", + "parent": "sx2766750c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3122835", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2729401b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2763811", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2763812", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1089220", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5837361-8_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2860477a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3254237a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2673308b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673308b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2673308b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337653b0", + "nominal_voltage": "120.09", + "parent": "sx2673308b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047420", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047423", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3010565c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047424", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2935547b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2785536b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3122848", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3122849", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3122847", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2860478b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3254238b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3178971a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3010564c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047430", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2673309c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138472c0", + "nominal_voltage": "120.09", + "parent": "sx2673309c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104157", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104154", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3342743", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047432", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2841645c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3104155", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047433", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047434", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047435", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "hvmv11sub2_lsb", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2992657", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2785537a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2992656", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5803273-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3122815", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3122816", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3122813", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3122814", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3122819", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136360", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136361", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3122817", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136362", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3122818", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136363", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2955006c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3066829c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2708744b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3178972c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2673306c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293608c0", + "nominal_voltage": "120.09", + "parent": "sx2673306c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047400", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047401", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3010563a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "193-48013", + "nominal_voltage": "7199.56", + "phases": "ACN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3727707", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047403", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136353", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047404", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136354", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2785538a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3727709", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136355", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3727708", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047406", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136356", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3122811", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136357", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3122812", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136358", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047409", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136359", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3122810", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3122826", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3048227a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3122827", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3122824", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3122825", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p875742", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3178973a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069662", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3727710", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2673307c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337632c0", + "nominal_voltage": "120.09", + "parent": "sx2673307c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3010562b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3727712", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3727711", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047410", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2879081a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136365", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136366", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136367", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3122822", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136368", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3122823", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047419", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3122820", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3122821", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2841631c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391976c0", + "nominal_voltage": "120.09", + "parent": "sx2841631c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3254206b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355592b0", + "nominal_voltage": "120.09", + "parent": "sx3254206b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2973166c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293665c0", + "nominal_voltage": "120.09", + "parent": "sx2973166c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3120504a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3251807a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2711224b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260500b0", + "nominal_voltage": "120.09", + "parent": "sx2711224b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3027671a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226308728a0", + "nominal_voltage": "120.09", + "parent": "sx3027671a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3254870", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3254873", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3047073c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2729405b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3254207a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337671a0", + "nominal_voltage": "120.09", + "parent": "sx3254207a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3067478a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3254869", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3216988b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260590b0", + "nominal_voltage": "120.09", + "parent": "sx3216988b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2973167b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293656b0", + "nominal_voltage": "120.09", + "parent": "sx2973167b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2841630c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138404c0", + "nominal_voltage": "120.09", + "parent": "sx2841630c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069640", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3251806b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3139598b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226311345b0", + "nominal_voltage": "120.09", + "parent": "sx3139598b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3048937c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3011229", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2729406c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3179650b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3179650b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3179650b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_251828b0", + "nominal_voltage": "120.09", + "parent": "sx3179650b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3254204a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337715a0", + "nominal_voltage": "120.09", + "parent": "sx3254204a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3066809c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3086098a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21474556a0", + "nominal_voltage": "120.09", + "parent": "sx3086098a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104853c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3784018a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224500658a0", + "nominal_voltage": "120.09", + "parent": "sx3784018a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d6077791-3_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069632", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142801", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142800", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3448661", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3217052c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3029501b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337688b0", + "nominal_voltage": "120.09", + "parent": "sx3029501b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001015", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142808", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001010", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2729407b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001014", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001013", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2897768c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2897768c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2897768c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337634c0", + "nominal_voltage": "120.09", + "parent": "sx2897768c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001012", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001011", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069627", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069629", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2973169a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21397304a0", + "nominal_voltage": "120.09", + "parent": "sx2973169a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3254205c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302672c0", + "nominal_voltage": "120.09", + "parent": "sx3254205c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3254870c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069620", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2748152b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321849b0", + "nominal_voltage": "120.09", + "parent": "sx2748152b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142813", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142811", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3197654a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21382992a0", + "nominal_voltage": "120.09", + "parent": "sx3197654a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142810", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001007", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001006", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3251808a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142815", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001005", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3029500a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391992a0", + "nominal_voltage": "120.09", + "parent": "sx3029500a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142814", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001004", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d6138609-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3159448", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142819", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001009", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142818", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001008", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2729408b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2820556", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001003", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2897769c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337660c0", + "nominal_voltage": "120.09", + "parent": "sx2897769c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001002", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001001", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001000", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069619", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069613", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2935552c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_274903c0", + "nominal_voltage": "120.09", + "parent": "sx2935552c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069610", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2952014a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2860482a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338954a0", + "nominal_voltage": "120.09", + "parent": "sx2860482a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2935551c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2935551c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2935551c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21387929c0", + "nominal_voltage": "120.09", + "parent": "sx2935551c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2729409b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2897766c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2128007c0", + "nominal_voltage": "120.09", + "parent": "sx2897766c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3197625c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3645809c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3150961c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_223400157c0", + "nominal_voltage": "120.09", + "parent": "sx3150961c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069607", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2804250c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_274992c0", + "nominal_voltage": "120.09", + "parent": "sx2804250c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2935553b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323247b0", + "nominal_voltage": "120.09", + "parent": "sx2935553b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069600", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104850c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2763407", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1138606", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1138608", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1138607", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2955081a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3253570", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2860483b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21396699b0", + "nominal_voltage": "120.09", + "parent": "sx2860483b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2727795", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2897767c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2897767c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2897767c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338960c0", + "nominal_voltage": "120.09", + "parent": "sx2897767c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3197624b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3010580b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1138604", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1138603", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2820590", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3254208c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338961c0", + "nominal_voltage": "120.09", + "parent": "sx3254208c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2858163a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391990a0", + "nominal_voltage": "120.09", + "parent": "sx2858163a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3254873c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2933120c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2898526c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21393486c0", + "nominal_voltage": "120.09", + "parent": "sx2898526c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2748158a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293480a0", + "nominal_voltage": "120.09", + "parent": "sx2748158a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2911069b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2860480b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323234b0", + "nominal_voltage": "120.09", + "parent": "sx2860480b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2897764b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391750b0", + "nominal_voltage": "120.09", + "parent": "sx2897764b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3215203", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2820583", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2823611", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3254209c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337714c0", + "nominal_voltage": "120.09", + "parent": "sx3254209c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3027670b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226308719b0", + "nominal_voltage": "120.09", + "parent": "sx3027670b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3102793b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227734175b0", + "nominal_voltage": "120.09", + "parent": "sx3102793b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2748157a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338973a0", + "nominal_voltage": "120.09", + "parent": "sx2748157a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2860481c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338908c0", + "nominal_voltage": "120.09", + "parent": "sx2860481c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2897765b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323243b0", + "nominal_voltage": "120.09", + "parent": "sx2897765b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2935550c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_274999c0", + "nominal_voltage": "120.09", + "parent": "sx2935550c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2935556b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356064b0", + "nominal_voltage": "120.09", + "parent": "sx2935556b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2911069", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3141399c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3217053", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2804253a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21396254a0", + "nominal_voltage": "120.09", + "parent": "sx2804253a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3217052", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3065696a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5742811-3_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3029507b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302368b0", + "nominal_voltage": "120.09", + "parent": "sx3029507b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2729434b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321851b0", + "nominal_voltage": "120.09", + "parent": "sx2729434b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2989564b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3216336a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2689691a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355375a0", + "nominal_voltage": "120.09", + "parent": "sx2689691a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "r20703", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3048221a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21399305a0", + "nominal_voltage": "120.09", + "parent": "sx3048221a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2766741a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2991927b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2804254a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323418a0", + "nominal_voltage": "120.09", + "parent": "sx2804254a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2951995", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2860486c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2127390c0", + "nominal_voltage": "120.09", + "parent": "sx2860486c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2841639a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355937a0", + "nominal_voltage": "120.09", + "parent": "sx2841639a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3197629b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2841638c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841638c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2841638c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138641c0", + "nominal_voltage": "120.09", + "parent": "sx2841638c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2935557a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21397005a0", + "nominal_voltage": "120.09", + "parent": "sx2935557a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2785534b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338982b0", + "nominal_voltage": "120.09", + "parent": "sx2785534b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3728037", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3216370b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293521b0", + "nominal_voltage": "120.09", + "parent": "sx3216370b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3728038", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3216370a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293521a0", + "nominal_voltage": "120.09", + "parent": "sx3216370a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "228-961799-3_int", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2989565a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2783231b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2989432b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3216337a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3123452", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3048222c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355431c0", + "nominal_voltage": "120.09", + "parent": "sx3048222c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3029506b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338930b0", + "nominal_voltage": "120.09", + "parent": "sx3029506b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2804255b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338913b0", + "nominal_voltage": "120.09", + "parent": "sx2804255b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2860487c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138586c0", + "nominal_voltage": "120.09", + "parent": "sx2860487c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3103822", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3197628c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2841637c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293492c0", + "nominal_voltage": "120.09", + "parent": "sx2841637c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2935554a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338921a0", + "nominal_voltage": "120.09", + "parent": "sx2935554a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3728040", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2785535b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_339005b0", + "nominal_voltage": "120.09", + "parent": "sx2785535b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2804251a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138646a0", + "nominal_voltage": "120.09", + "parent": "sx2804251a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3728041", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3160109b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338947b0", + "nominal_voltage": "120.09", + "parent": "sx3160109b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3728042", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3253570c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_228314460c0", + "nominal_voltage": "120.09", + "parent": "sx3253570c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3728043", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2898522a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260648a0", + "nominal_voltage": "120.09", + "parent": "sx2898522a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2973160b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338935b0", + "nominal_voltage": "120.09", + "parent": "sx2973160b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2989566b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2970258", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3728039", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3216370c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293521c0", + "nominal_voltage": "120.09", + "parent": "sx3216370c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3216338b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3197627c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2860484b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323255b0", + "nominal_voltage": "120.09", + "parent": "sx2860484b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2841636b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841636b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2841636b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391758b0", + "nominal_voltage": "120.09", + "parent": "sx2841636b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2935555a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338917a0", + "nominal_voltage": "120.09", + "parent": "sx2935555a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "hvmv69sub1_hsb", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2821010", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3011298c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3160108b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355603b0", + "nominal_voltage": "120.09", + "parent": "sx3160108b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2785536b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_339002b0", + "nominal_voltage": "120.09", + "parent": "sx2785536b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2804252a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2804252a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2804252a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302473a0", + "nominal_voltage": "120.09", + "parent": "sx2804252a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2973161a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293592a0", + "nominal_voltage": "120.09", + "parent": "sx2973161a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3216339b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3214069c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2766742b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3197626c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2860485b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321855b0", + "nominal_voltage": "120.09", + "parent": "sx2860485b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2841635a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21399099a0", + "nominal_voltage": "120.09", + "parent": "sx2841635a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104859b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3141395c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2822868a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21397544a0", + "nominal_voltage": "120.09", + "parent": "sx2822868a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3231255c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_339051c0", + "nominal_voltage": "120.09", + "parent": "sx3231255c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3160107a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138265a0", + "nominal_voltage": "120.09", + "parent": "sx3160107a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3197653b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_339004b0", + "nominal_voltage": "120.09", + "parent": "sx3197653b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2973162b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302375b0", + "nominal_voltage": "120.09", + "parent": "sx2973162b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3029503c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138373c0", + "nominal_voltage": "120.09", + "parent": "sx3029503c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3068944", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2972930a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338927a0", + "nominal_voltage": "120.09", + "parent": "sx2972930a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2785537a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338975a0", + "nominal_voltage": "120.09", + "parent": "sx2785537a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2804258b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337697b0", + "nominal_voltage": "120.09", + "parent": "sx2804258b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3729298a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3251799", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3141396c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2841634b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_392038b0", + "nominal_voltage": "120.09", + "parent": "sx2841634b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2822869a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338942a0", + "nominal_voltage": "120.09", + "parent": "sx2822869a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3160106a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3160106a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3160106a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_310570a0", + "nominal_voltage": "120.09", + "parent": "sx3160106a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2973163b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391753b0", + "nominal_voltage": "120.09", + "parent": "sx2973163b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3197652a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_339021a0", + "nominal_voltage": "120.09", + "parent": "sx3197652a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "221-311609", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3214112b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3029502a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138262a0", + "nominal_voltage": "120.09", + "parent": "sx3029502a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2728247", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2879767b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260496b0", + "nominal_voltage": "120.09", + "parent": "sx2879767b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2785538a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2785538a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2785538a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338986a0", + "nominal_voltage": "120.09", + "parent": "sx2785538a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3254203b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323233b0", + "nominal_voltage": "120.09", + "parent": "sx3254203b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2804259a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2127372a0", + "nominal_voltage": "120.09", + "parent": "sx2804259a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2841633a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293645a0", + "nominal_voltage": "120.09", + "parent": "sx2841633a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3141397b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3729297a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3011293a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3011293b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2973164a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302514a0", + "nominal_voltage": "120.09", + "parent": "sx2973164a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3160105c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302811c0", + "nominal_voltage": "120.09", + "parent": "sx3160105c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3011293c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3048227a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337647a0", + "nominal_voltage": "120.09", + "parent": "sx3048227a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3029505c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338966c0", + "nominal_voltage": "120.09", + "parent": "sx3029505c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2804256b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321840b0", + "nominal_voltage": "120.09", + "parent": "sx2804256b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2991929b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2711226b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260527b0", + "nominal_voltage": "120.09", + "parent": "sx2711226b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2860488b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391751b0", + "nominal_voltage": "120.09", + "parent": "sx2860488b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104856a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2841632b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338972b0", + "nominal_voltage": "120.09", + "parent": "sx2841632b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3141398a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2973165a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355942a0", + "nominal_voltage": "120.09", + "parent": "sx2973165a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3160104b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337707b0", + "nominal_voltage": "120.09", + "parent": "sx3160104b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2935559a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21400185a0", + "nominal_voltage": "120.09", + "parent": "sx2935559a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3048228c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_274997c0", + "nominal_voltage": "120.09", + "parent": "sx3048228c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2711225c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260553c0", + "nominal_voltage": "120.09", + "parent": "sx2711225c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3029504b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337702b0", + "nominal_voltage": "120.09", + "parent": "sx3029504b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2674027b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21380325b0", + "nominal_voltage": "120.09", + "parent": "sx2674027b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2804257b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321854b0", + "nominal_voltage": "120.09", + "parent": "sx2804257b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5653457-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2860489a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302405a0", + "nominal_voltage": "120.09", + "parent": "sx2860489a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3251806", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3251808", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3251807", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3160115b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338994b0", + "nominal_voltage": "120.09", + "parent": "sx3160115b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026492", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104136b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338949b0", + "nominal_voltage": "120.09", + "parent": "sx3104136b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026487", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2879078a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026486", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026485", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "228-1353934-4_int", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026488", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx0247160b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_247160b0", + "nominal_voltage": "120.09", + "parent": "sx0247160b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2822877b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337672b0", + "nominal_voltage": "120.09", + "parent": "sx2822877b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx0247162b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_247162b0", + "nominal_voltage": "120.09", + "parent": "sx0247162b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2954361b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3160114a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_339019a0", + "nominal_voltage": "120.09", + "parent": "sx3160114a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2879079b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104134c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104134c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3104134c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138718c0", + "nominal_voltage": "120.09", + "parent": "sx3104134c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3216367b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337648b0", + "nominal_voltage": "120.09", + "parent": "sx3216367b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3085389b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391765b0", + "nominal_voltage": "120.09", + "parent": "sx3085389b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3178988b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3160113b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3160113b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3160113b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323284b0", + "nominal_voltage": "120.09", + "parent": "sx3160113b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001208c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000600", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001209c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3216342b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3157167a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226115278a0", + "nominal_voltage": "120.09", + "parent": "sx3157167a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2804248b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323244b0", + "nominal_voltage": "120.09", + "parent": "sx2804248b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3176661c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356788c0", + "nominal_voltage": "120.09", + "parent": "sx3176661c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3216368c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3216368c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3216368c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293663c0", + "nominal_voltage": "120.09", + "parent": "sx3216368c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3085388b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391746b0", + "nominal_voltage": "120.09", + "parent": "sx3085388b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "flags": "DELTAMODE", + "name": "m1069-mt1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069-mt1_dgmtr", + "nominal_voltage": "277.13", + "parent": "m1069-mt1", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001207c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104135a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21399508a0", + "nominal_voltage": "120.09", + "parent": "sx3104135a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026496", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "regxfmr_hvmv11sub1_lsb", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3216343c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2766738c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2804249c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21389962c0", + "nominal_voltage": "120.09", + "parent": "sx2804249c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3176660b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226193892b0", + "nominal_voltage": "120.09", + "parent": "sx3176660b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3215340a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_228057846a0", + "nominal_voltage": "120.09", + "parent": "sx3215340a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2692600c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104132a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104132a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3104132a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302469a0", + "nominal_voltage": "120.09", + "parent": "sx3104132a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2821770a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3233353a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21399630a0", + "nominal_voltage": "120.09", + "parent": "sx3233353a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2673312a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321837a0", + "nominal_voltage": "120.09", + "parent": "sx2673312a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2822872b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338950b0", + "nominal_voltage": "120.09", + "parent": "sx2822872b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3066811b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3216361b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21452406b0", + "nominal_voltage": "120.09", + "parent": "sx3216361b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001206c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047386", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3066810c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047388", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2879074a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2951995c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3120376", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3047289", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3027671", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3027670", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2917255", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2785530a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391985a0", + "nominal_voltage": "120.09", + "parent": "sx2785530a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2991933c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2801902b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2764411c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226010605c0", + "nominal_voltage": "120.09", + "parent": "sx2764411c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2673313b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321853b0", + "nominal_voltage": "120.09", + "parent": "sx2673313b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104133a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293483a0", + "nominal_voltage": "120.09", + "parent": "sx3104133a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3066812a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2822873b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338999b0", + "nominal_voltage": "120.09", + "parent": "sx2822873b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001205c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2878848c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2879075a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2766732b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2001400c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001400c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001400c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2001400c0", + "nominal_voltage": "120.09", + "parent": "sx2001400c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2990098a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2990098a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2990098a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226308721a0", + "nominal_voltage": "120.09", + "parent": "sx2990098a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3251830", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104130b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391755b0", + "nominal_voltage": "120.09", + "parent": "sx3104130b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2785531a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21399809a0", + "nominal_voltage": "120.09", + "parent": "sx2785531a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2936271a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260476a0", + "nominal_voltage": "120.09", + "parent": "sx2936271a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2726983a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001204c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2673310a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138562a0", + "nominal_voltage": "120.09", + "parent": "sx2673310a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2764412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321874a0", + "nominal_voltage": "120.09", + "parent": "sx2764412a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026472", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047371", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2859403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_228001810a0", + "nominal_voltage": "120.09", + "parent": "sx2859403a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026463", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2879076c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026468", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047368", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3048962a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260555a0", + "nominal_voltage": "120.09", + "parent": "sx3048962a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026466", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3315860b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3047289a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_228091193a0", + "nominal_voltage": "120.09", + "parent": "sx3047289a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3251854", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2936270a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_218472a0", + "nominal_voltage": "120.09", + "parent": "sx2936270a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104131a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302410a0", + "nominal_voltage": "120.09", + "parent": "sx3104131a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3159037b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2929261", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3217064", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3047289c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_228091193c0", + "nominal_voltage": "120.09", + "parent": "sx3047289c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3047289b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_228091193b0", + "nominal_voltage": "120.09", + "parent": "sx3047289b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d2001001_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001203c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2673311a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21397029a0", + "nominal_voltage": "120.09", + "parent": "sx2673311a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d6108141-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047374", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2879077b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3139086b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2692633c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_328364c0", + "nominal_voltage": "120.09", + "parent": "sx2692633c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047379", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3048963b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260521b0", + "nominal_voltage": "120.09", + "parent": "sx3048963b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1209der480-1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3217057", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3217056", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2728247c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337729c0", + "nominal_voltage": "120.09", + "parent": "sx2728247c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2728247a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337729a0", + "nominal_voltage": "120.09", + "parent": "sx2728247a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2728247b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337729b0", + "nominal_voltage": "120.09", + "parent": "sx2728247b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142860", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827532", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827531", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3011298", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827530", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2948732b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_225571845b0", + "nominal_voltage": "120.09", + "parent": "sx2948732b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827536", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142863", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827534", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001202c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2970811a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827533", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142868", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3011293", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142865", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827537", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3066815c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047340", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2673316a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2120855a0", + "nominal_voltage": "120.09", + "parent": "sx2673316a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047342", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142869", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047344", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047345", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047346", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2879070b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "e206217", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3232301c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142871", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827521", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827520", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2689726", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2689727", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2936276b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260458b0", + "nominal_voltage": "120.09", + "parent": "sx2936276b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2729410c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142875", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827525", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142874", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p859135", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142873", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827523", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3066816a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827522", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827529", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827528", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827527", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3217057a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2673317a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673317a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2673317a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21397771a0", + "nominal_voltage": "120.09", + "parent": "sx2673317a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3048965b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3048965b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3048965b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260641b0", + "nominal_voltage": "120.09", + "parent": "sx3048965b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047358", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2879071b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2729411a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3178980c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827554", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827553", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142880", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2936275b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_157715b0", + "nominal_voltage": "120.09", + "parent": "sx2936275b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069597", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827555", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2822870c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21399171c0", + "nominal_voltage": "120.09", + "parent": "sx2822870c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2673314c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355778c0", + "nominal_voltage": "120.09", + "parent": "sx2673314c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "e206209", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3066813b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069595", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2710508b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323241b0", + "nominal_voltage": "120.09", + "parent": "sx2710508b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047322", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3048966c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260625c0", + "nominal_voltage": "120.09", + "parent": "sx3048966c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047323", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047324", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047325", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2879072b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047326", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "e206211", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "e206210", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2875754c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_225897943c0", + "nominal_voltage": "120.09", + "parent": "sx2875754c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2729412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827542", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069588", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3178981b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069582", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2822871b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355840b0", + "nominal_voltage": "120.09", + "parent": "sx2822871b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827549", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5621886-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827548", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3066814b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069590", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2710509c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_275000c0", + "nominal_voltage": "120.09", + "parent": "sx2710509c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2673315a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_247058a0", + "nominal_voltage": "120.09", + "parent": "sx2673315a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2952013a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3010570a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047335", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2879073c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047338", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047339", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3207907c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293664c0", + "nominal_voltage": "120.09", + "parent": "sx3207907c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3207907b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293664b0", + "nominal_voltage": "120.09", + "parent": "sx3207907b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3207907a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293664a0", + "nominal_voltage": "120.09", + "parent": "sx3207907a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827576", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx1108405b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2221108405b0", + "nominal_voltage": "120.09", + "parent": "sx1108405b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827575", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx1108405c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2221108405c0", + "nominal_voltage": "120.09", + "parent": "sx1108405c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3066819a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827574", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827573", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx1108405a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2221108405a0", + "nominal_voltage": "120.09", + "parent": "sx1108405a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3048968c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_350994c0", + "nominal_voltage": "120.09", + "parent": "sx3048968c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3048890c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2823592_cap", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069572", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "196-36167", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069574", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3178982a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142821", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142828", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2972930", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2748780", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142826", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2748781", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047300", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2820528", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047303", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d6231996-1_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2729413a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047309", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827561", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827560", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3081380a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_225700953a0", + "nominal_voltage": "120.09", + "parent": "sx3081380a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2729414c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1010013", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136030", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136031", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827564", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2842329c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1010011", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136032", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827563", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx1108406a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2221108406a0", + "nominal_voltage": "120.09", + "parent": "sx1108406a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx1108406b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2221108406b0", + "nominal_voltage": "120.09", + "parent": "sx1108406b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1010017", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069565", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1010016", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069564", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1010015", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069567", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2851933b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1010014", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2851933a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3214071c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5712477-3_int", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142835", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069560", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2851933c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069563", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142833", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142832", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142839", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2691973a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3217053c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047311", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047312", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047314", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2820533", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047316", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2820535", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3120484c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226191772c0", + "nominal_voltage": "120.09", + "parent": "sx3120484c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047318", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3235268c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2099529c0", + "nominal_voltage": "120.09", + "parent": "sx3235268c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047319", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136027", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2729414b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136028", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2729414a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2820531", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3197661", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001100", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136029", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3197660", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3172805a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069558", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069557", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx1108403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2221108403a0", + "nominal_voltage": "120.09", + "parent": "sx1108403a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069554", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069556", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx1108403b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2221108403b0", + "nominal_voltage": "120.09", + "parent": "sx1108403b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069555", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx1108403c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2221108403c0", + "nominal_voltage": "120.09", + "parent": "sx1108403c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3066817a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069550", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2710504b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323394b0", + "nominal_voltage": "120.09", + "parent": "sx2710504b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3120502a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069551", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142843", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3217056a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2673318c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673318c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2673318c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338967c0", + "nominal_voltage": "120.09", + "parent": "sx2673318c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2839305a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2839305a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2839305a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2150292a0", + "nominal_voltage": "120.09", + "parent": "sx2839305a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2745799c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226191779c0", + "nominal_voltage": "120.09", + "parent": "sx2745799c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3189190a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227100753a0", + "nominal_voltage": "120.09", + "parent": "sx3189190a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3235267c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321892c0", + "nominal_voltage": "120.09", + "parent": "sx3235267c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "e192860", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827580", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx1108404a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2221108404a0", + "nominal_voltage": "120.09", + "parent": "sx1108404a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "190-7361", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx1108404b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2221108404b0", + "nominal_voltage": "120.09", + "parent": "sx1108404b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069549", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069548", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069543", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3251799a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260562a0", + "nominal_voltage": "120.09", + "parent": "sx3251799a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2798067b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_225533237b0", + "nominal_voltage": "120.09", + "parent": "sx2798067b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1142851", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx1108404c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2221108404c0", + "nominal_voltage": "120.09", + "parent": "sx1108404c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069544", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3066818b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3200222", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3120503a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2710505b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323398b0", + "nominal_voltage": "120.09", + "parent": "sx2710505b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2673319c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673319c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2673319c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391973c0", + "nominal_voltage": "120.09", + "parent": "sx2673319c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2803194", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2898457a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2936279c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2936279c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2936279c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_247184c0", + "nominal_voltage": "120.09", + "parent": "sx2936279c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3235266c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302807c0", + "nominal_voltage": "120.09", + "parent": "sx3235266c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d6019477-1_int", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2803199", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2933135", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3254218a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138720a0", + "nominal_voltage": "120.09", + "parent": "sx3254218a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069535", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069532", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2973154a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338897a0", + "nominal_voltage": "120.09", + "parent": "sx2973154a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2691939b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355589b0", + "nominal_voltage": "120.09", + "parent": "sx2691939b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069533", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069530", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "hvmv115_hsb2", + "nominal_voltage": "66395.28", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2925506", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "hvmv115_hsb1", + "nominal_voltage": "66395.28", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2860490a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138719a0", + "nominal_voltage": "120.09", + "parent": "sx2860490a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2786204", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3125349", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2785529c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355943c0", + "nominal_voltage": "120.09", + "parent": "sx2785529c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3235253a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138573a0", + "nominal_voltage": "120.09", + "parent": "sx3235253a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2748131b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2785516b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069524", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3254219c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138716c0", + "nominal_voltage": "120.09", + "parent": "sx3254219c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069526", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069521", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m4118755", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2973155a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338898a0", + "nominal_voltage": "120.09", + "parent": "sx2973155a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3195310a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226192185a0", + "nominal_voltage": "120.09", + "parent": "sx3195310a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m4118754", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2691938b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355600b0", + "nominal_voltage": "120.09", + "parent": "sx2691938b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3029510b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355606b0", + "nominal_voltage": "120.09", + "parent": "sx3029510b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3181545c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226193702c0", + "nominal_voltage": "120.09", + "parent": "sx3181545c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2952007c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2860491a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302733a0", + "nominal_voltage": "120.09", + "parent": "sx2860491a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2860491b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302733b0", + "nominal_voltage": "120.09", + "parent": "sx2860491b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3235252b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21388572b0", + "nominal_voltage": "120.09", + "parent": "sx3235252b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2935560c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293659c0", + "nominal_voltage": "120.09", + "parent": "sx2935560c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2748130b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2785517c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069518", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069517", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069519", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069514", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069513", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069516", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2785519a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069515", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3254216a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21398563a0", + "nominal_voltage": "120.09", + "parent": "sx3254216a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2973156b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337687b0", + "nominal_voltage": "120.09", + "parent": "sx2973156b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2727019", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1010004", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2673309", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1010003", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1010008", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1010007", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2673303", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2708744", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2711234b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_207287b0", + "nominal_voltage": "120.09", + "parent": "sx2711234b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2673308", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2673307", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3235251c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21387206c0", + "nominal_voltage": "120.09", + "parent": "sx3235251c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2673306", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2673305", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2785518c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3027116a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226192684a0", + "nominal_voltage": "120.09", + "parent": "sx3027116a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2673300", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2933165", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2933164", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3101782a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356808a0", + "nominal_voltage": "120.09", + "parent": "sx3101782a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069509", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069503", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3254217c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21399112c0", + "nominal_voltage": "120.09", + "parent": "sx3254217c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069505", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2973157a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337722a0", + "nominal_voltage": "120.09", + "parent": "sx2973157a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069504", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3141400a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138313a0", + "nominal_voltage": "120.09", + "parent": "sx3141400a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2821010a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2727008", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069500", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3235250b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337698b0", + "nominal_voltage": "120.09", + "parent": "sx3235250b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3728039a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224387053a0", + "nominal_voltage": "120.09", + "parent": "sx3728039a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3234185b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323388b0", + "nominal_voltage": "120.09", + "parent": "sx3234185b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2973144c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2983432", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2748135a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3236011b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138796b0", + "nominal_voltage": "120.09", + "parent": "sx3236011b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3140238a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2973158c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138259c0", + "nominal_voltage": "120.09", + "parent": "sx2973158c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2673326", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "221-308718", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2673323", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2861197", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3728038a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224387019a0", + "nominal_voltage": "120.09", + "parent": "sx3728038a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3086098", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2673322", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2898495", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2936213", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2673321", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2936214", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2673320", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2936211", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2936212", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2916608", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2916609", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2916606", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2916607", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5655682-1_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2973159a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21398536a0", + "nominal_voltage": "120.09", + "parent": "sx2973159a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2916605", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2916602", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2916603", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3159645a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2925506c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2673315", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2673314", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2673313", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2952003b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2673312", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2673319", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2673318", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2673317", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2673316", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2973146b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2916610", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3270814", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2673311", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2673310", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3728037a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224386946a0", + "nominal_voltage": "120.09", + "parent": "sx3728037a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2916619", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2916617", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2916618", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1209748", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1209749", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3729298", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827514", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827512", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3729297", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827511", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827515", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136999", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d6504019-6_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2673346", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3016088", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3086075", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3086074", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2860492c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21395720c0", + "nominal_voltage": "120.09", + "parent": "sx2860492c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3086079", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3086078", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1209750", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2916620", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136993", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136994", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1209753", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136995", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2673343", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136996", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1209751", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136997", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2748133c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1209752", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136998", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1209758", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2936216", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2916627", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2916625", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827503", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2691936a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356009a0", + "nominal_voltage": "120.09", + "parent": "sx2691936a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827502", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827501", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827500", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827507", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827506", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827505", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827504", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2898515c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260621c0", + "nominal_voltage": "120.09", + "parent": "sx2898515c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827509", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827508", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3123452c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2860493a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21397645a0", + "nominal_voltage": "120.09", + "parent": "sx2860493a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2973148a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2879773a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_207290a0", + "nominal_voltage": "120.09", + "parent": "sx2879773a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2673331", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1209763", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2992556c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2992556c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2992556c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_346639c0", + "nominal_voltage": "120.09", + "parent": "sx2992556c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2748132a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2785521c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338931c0", + "nominal_voltage": "120.09", + "parent": "sx2785521c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2915542c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2915542b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2915542a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2935568b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2119958b0", + "nominal_voltage": "120.09", + "parent": "sx2935568b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3108449a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_228622562a0", + "nominal_voltage": "120.09", + "parent": "sx3108449a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2823545a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3197661c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338932c0", + "nominal_voltage": "120.09", + "parent": "sx3197661c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3236004", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3123509c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2129923c0", + "nominal_voltage": "120.09", + "parent": "sx3123509c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2973149b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2896685a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227187012a0", + "nominal_voltage": "120.09", + "parent": "sx2896685a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3103822c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2896685b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227187012b0", + "nominal_voltage": "120.09", + "parent": "sx2896685b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3235248c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2896685c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227187012c0", + "nominal_voltage": "120.09", + "parent": "sx2896685c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2841627a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841627a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2841627a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337716a0", + "nominal_voltage": "120.09", + "parent": "sx2841627a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3254210c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138647c0", + "nominal_voltage": "120.09", + "parent": "sx3254210c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2991915b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3029495", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2841626c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302808c0", + "nominal_voltage": "120.09", + "parent": "sx2841626c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3029497", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1141480", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2785522b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2127681b0", + "nominal_voltage": "120.09", + "parent": "sx2785522b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2913406b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_225940756b0", + "nominal_voltage": "120.09", + "parent": "sx2913406b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3029498", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3029499", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3141388c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3029518b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337666b0", + "nominal_voltage": "120.09", + "parent": "sx3029518b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3729981", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2729423c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_339017c0", + "nominal_voltage": "120.09", + "parent": "sx2729423c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2748780a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356803a0", + "nominal_voltage": "120.09", + "parent": "sx2748780a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2823544a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3197660b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323275b0", + "nominal_voltage": "120.09", + "parent": "sx3197660b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3252336b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2748781a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21382813a0", + "nominal_voltage": "120.09", + "parent": "sx2748781a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3254869b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3235247a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3236011", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3048210a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302412a0", + "nominal_voltage": "120.09", + "parent": "sx3048210a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3254211b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_247084b0", + "nominal_voltage": "120.09", + "parent": "sx3254211b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2991914c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2786274", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2763407c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_225906836c0", + "nominal_voltage": "120.09", + "parent": "sx2763407c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2860499b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338997b0", + "nominal_voltage": "120.09", + "parent": "sx2860499b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2786273", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2801909c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2785523c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2785523c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2785523c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138412c0", + "nominal_voltage": "120.09", + "parent": "sx2785523c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2841625c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302834c0", + "nominal_voltage": "120.09", + "parent": "sx2841625c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1141475", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1141474", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1141473", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2935566c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_441854c0", + "nominal_voltage": "120.09", + "parent": "sx2935566c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "196-35813", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3141389a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1141479", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1141478", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2690868c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227917127c0", + "nominal_voltage": "120.09", + "parent": "sx2690868c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1141477", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1141476", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2860500b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2955078a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2729424a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_339018a0", + "nominal_voltage": "120.09", + "parent": "sx2729424a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2936271", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3048211a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21396015a0", + "nominal_voltage": "120.09", + "parent": "sx3048211a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3235246b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2936270", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3046854", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2936275", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2936276", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2786266", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2936279", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3032977", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2823592a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_223658a0", + "nominal_voltage": "120.09", + "parent": "sx2823592a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2991913a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2935567b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338992b0", + "nominal_voltage": "120.09", + "parent": "sx2935567b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2991911c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2841624b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355604b0", + "nominal_voltage": "120.09", + "parent": "sx2841624b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3032980", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3032981", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2785524c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2044328c0", + "nominal_voltage": "120.09", + "parent": "sx2785524c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3176656a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226193170a0", + "nominal_voltage": "120.09", + "parent": "sx3176656a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2860501b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5472350-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3048212a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355934a0", + "nominal_voltage": "120.09", + "parent": "sx3048212a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2766730b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3235245c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2936268", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2991912a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2876796a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226193338a0", + "nominal_voltage": "120.09", + "parent": "sx2876796a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2841623a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_294844a0", + "nominal_voltage": "120.09", + "parent": "sx2841623a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2785525c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21396606c0", + "nominal_voltage": "120.09", + "parent": "sx2785525c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3029497c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3119793b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226024307b0", + "nominal_voltage": "120.09", + "parent": "sx3119793b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2820528c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226191778c0", + "nominal_voltage": "120.09", + "parent": "sx2820528c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3141401a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338970a0", + "nominal_voltage": "120.09", + "parent": "sx3141401a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2973150a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21380528a0", + "nominal_voltage": "120.09", + "parent": "sx2973150a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1009828", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1009827", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "regxfmr_190-7361", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2991919a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2955076a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1009820", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p904451", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3235244a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "q14734", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3254214b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3254214b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3254214b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337706b0", + "nominal_voltage": "120.09", + "parent": "sx3254214b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1009824", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "q14733", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p904452", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2876797a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226193345a0", + "nominal_voltage": "120.09", + "parent": "sx2876797a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2841622a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21384215a0", + "nominal_voltage": "120.09", + "parent": "sx2841622a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1009840", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2785526b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302374b0", + "nominal_voltage": "120.09", + "parent": "sx2785526b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3141402c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391978c0", + "nominal_voltage": "120.09", + "parent": "sx3141402c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2729427b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323249b0", + "nominal_voltage": "120.09", + "parent": "sx2729427b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2973151a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138569a0", + "nominal_voltage": "120.09", + "parent": "sx2973151a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1009839", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1009838", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3048214a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302474a0", + "nominal_voltage": "120.09", + "parent": "sx3048214a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2955077c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3086002", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2804247b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391737b0", + "nominal_voltage": "120.09", + "parent": "sx2804247b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3254215c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302859c0", + "nominal_voltage": "120.09", + "parent": "sx3254215c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2991918b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3235243c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1009832", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1009834", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3029499a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2917359a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5563942-4_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2841621c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338910c0", + "nominal_voltage": "120.09", + "parent": "sx2841621c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2729428a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2729428a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2729428a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21398402a0", + "nominal_voltage": "120.09", + "parent": "sx2729428a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2973152b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323253b0", + "nominal_voltage": "120.09", + "parent": "sx2973152b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2860504a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3141403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21399707a0", + "nominal_voltage": "120.09", + "parent": "sx3141403a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2955074a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3236004c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2785527a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293522a0", + "nominal_voltage": "120.09", + "parent": "sx2785527a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3254212b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138754b0", + "nominal_voltage": "120.09", + "parent": "sx3254212b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2991917b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1009843", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3235242c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3029498c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2729429a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293644a0", + "nominal_voltage": "120.09", + "parent": "sx2729429a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2841620b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2147018b0", + "nominal_voltage": "120.09", + "parent": "sx2841620b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3048946c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3046854b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2973153a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338925a0", + "nominal_voltage": "120.09", + "parent": "sx2973153a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3784018", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2916598a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2860506b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2785528b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138752b0", + "nominal_voltage": "120.09", + "parent": "sx2785528b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2804245b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355598b0", + "nominal_voltage": "120.09", + "parent": "sx2804245b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2991916b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1009855", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx0247171b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_247171b0", + "nominal_voltage": "120.09", + "parent": "sx0247171b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3254213b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321859b0", + "nominal_voltage": "120.09", + "parent": "sx3254213b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3235241c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3197618a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827495", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2991939", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3141399", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3141397", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827499", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2954350c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3141398", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827498", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3141395", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3141396", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p827496", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3141393", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2673320b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_392037b0", + "nominal_voltage": "120.09", + "parent": "sx2673320b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3141394", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2689678", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1230123", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3160103c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356063c0", + "nominal_voltage": "120.09", + "parent": "sx3160103c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3141390", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2710514b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323267b0", + "nominal_voltage": "120.09", + "parent": "sx2710514b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1230121", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1230122", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026366", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000500", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2916599a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026364", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2879066b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026363", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3048205c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_274994c0", + "nominal_voltage": "120.09", + "parent": "sx3048205c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2861219b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2991933", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2766725c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3139086", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3101194c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2991929", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3141388", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3141389", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2991927", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3048205c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2989600", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2673321a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302674a0", + "nominal_voltage": "120.09", + "parent": "sx2673321a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3160102b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355780b0", + "nominal_voltage": "120.09", + "parent": "sx3160102b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026361", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2710515c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321884c0", + "nominal_voltage": "120.09", + "parent": "sx2710515c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3632979a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224192013a0", + "nominal_voltage": "120.09", + "parent": "sx3632979a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3048206a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138649a0", + "nominal_voltage": "120.09", + "parent": "sx3048206a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "flags": "DELTAMODE", + "name": "m2001-mt2", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001-mt2_dgmtr", + "nominal_voltage": "277.13", + "parent": "m2001-mt2", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2879067a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2689691", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026354", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "flags": "DELTAMODE", + "name": "m2001-mt3", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001-mt3_dgmtr", + "nominal_voltage": "277.13", + "parent": "m2001-mt3", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m2001-mt1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m2001-mt1_dgmtr", + "nominal_voltage": "277.13", + "parent": "m2001-mt1", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026357", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026356", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2991921", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2991920", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2991923", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2766724c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2991922", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3177665a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2991918", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3626914c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2748839", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2991917", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3048206a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2821087", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2991919", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2991914", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2991913", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2991916", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2954352c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2991915", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2726975b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2710512b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323280b0", + "nominal_voltage": "120.09", + "parent": "sx2710512b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3157718", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047292", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3160101a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337678a0", + "nominal_voltage": "120.09", + "parent": "sx3160101a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026394", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047293", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026393", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3048207b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323248b0", + "nominal_voltage": "120.09", + "parent": "sx3048207b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3141393c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2842330c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2879068b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1009805", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026387", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1009807", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3157710", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1009809", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2748840", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2991910", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2991912", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2691973", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2991911", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "regxfmr_190-8593", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2766727b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2991907", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3141394b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2991906", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3048207b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2991909", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2991908", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2991902", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2954351c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2991905", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2726974b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2710513b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_325245b0", + "nominal_voltage": "120.09", + "parent": "sx2710513b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3048208a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138260a0", + "nominal_voltage": "120.09", + "parent": "sx3048208a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3157708", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3160100b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321847b0", + "nominal_voltage": "120.09", + "parent": "sx3160100b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2879069a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026377", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1047299", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026378", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2861218c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2766726b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2991901", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1139250", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1139252", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1139251", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2897807b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21386771b0", + "nominal_voltage": "120.09", + "parent": "sx2897807b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3048208a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1139254", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3029500", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3029501", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1139256", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2710510c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710510c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2710510c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138650c0", + "nominal_voltage": "120.09", + "parent": "sx2710510c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2726973a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3029502", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1139255", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d6409775-4_int", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3029503", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3029504", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3029505", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3029506", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3029507", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3048209b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2120195b0", + "nominal_voltage": "120.09", + "parent": "sx3048209b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104144a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104144a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3104144a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_339020a0", + "nominal_voltage": "120.09", + "parent": "sx3104144a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026320", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2766721a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026324", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026323", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2879062c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026329", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026328", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026327", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2991923a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1139260", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2820531b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226192936b0", + "nominal_voltage": "120.09", + "parent": "sx2820531b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2991921c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1139263", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2745799", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3048209b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1139264", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3083019", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3251854a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226881700a0", + "nominal_voltage": "120.09", + "parent": "sx3251854a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3226771", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2710511a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21357515a0", + "nominal_voltage": "120.09", + "parent": "sx2710511a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104145b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_339011b0", + "nominal_voltage": "120.09", + "parent": "sx3104145b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2729430b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21248901b0", + "nominal_voltage": "120.09", + "parent": "sx2729430b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2766720a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2879063b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026312", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1139258", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1139257", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1139259", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2991922a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "221-311583", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3123509", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5502543-2_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2897805a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21471907a0", + "nominal_voltage": "120.09", + "parent": "sx2897805a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2991920a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3029520", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3086002c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356794c0", + "nominal_voltage": "120.09", + "parent": "sx3086002c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2673322b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355358b0", + "nominal_voltage": "120.09", + "parent": "sx2673322b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026344", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026343", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026341", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2879064a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3254915b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026347", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3270814a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2766723a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2841629c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138405c0", + "nominal_voltage": "120.09", + "parent": "sx2841629c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2785520b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138755b0", + "nominal_voltage": "120.09", + "parent": "sx2785520b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d6140776-1_int", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2897806c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337643c0", + "nominal_voltage": "120.09", + "parent": "sx2897806c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "221-311595", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3029510", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001215c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2673323c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355438c0", + "nominal_voltage": "120.09", + "parent": "sx2673323c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3029518", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3141390b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026333", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026331", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3235249a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026330", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2879065b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2766722b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026335", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2991943", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3120484", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026339", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2841628a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2120786a0", + "nominal_voltage": "120.09", + "parent": "sx2841628a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2991940", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2748127a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2730187a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069499", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069498", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001214c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "226-23745", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069495", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1126016", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2691967b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069494", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1126017", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069497", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069496", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "226-23751", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2861158", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2861157", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2730108c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_223661c0", + "nominal_voltage": "120.09", + "parent": "sx2730108c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1126020", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3010585a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2767408c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260517c0", + "nominal_voltage": "120.09", + "parent": "sx2767408c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3214549a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2748126c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2898457", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069488", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2896685b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069487", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2896685c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3066804a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001213c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069489", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2896685a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069484", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1126005", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069483", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2691966b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3626914", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2767409b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2767409b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2767409b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21391242b0", + "nominal_voltage": "120.09", + "parent": "sx2767409b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2954357a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3270853", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3270854", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2729423c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3728043a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3728043a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3728043a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224387138a0", + "nominal_voltage": "120.09", + "parent": "sx3728043a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104796c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001212c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3066801c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "hvmv11sub3_lsb", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2673326b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355601b0", + "nominal_voltage": "120.09", + "parent": "sx2673326b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069481", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2730106c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356814c0", + "nominal_voltage": "120.09", + "parent": "sx2730106c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026308", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026307", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3231255", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2690941b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2748125c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m4350438", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2897801a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21470405a0", + "nominal_voltage": "120.09", + "parent": "sx2897801a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026309", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3728042a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224387113a0", + "nominal_voltage": "120.09", + "parent": "sx3728042a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001211c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069469", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069466", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069465", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069468", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069467", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069462", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069461", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2878848", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069464", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069463", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2730107c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_251855c0", + "nominal_voltage": "120.09", + "parent": "sx2730107c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2879061b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3231269", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2767407b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260495b0", + "nominal_voltage": "120.09", + "parent": "sx2767407b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3235258c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293652c0", + "nominal_voltage": "120.09", + "parent": "sx3235258c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3235258a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293652a0", + "nominal_voltage": "120.09", + "parent": "sx3235258a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2729424a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3235258b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293652b0", + "nominal_voltage": "120.09", + "parent": "sx3235258b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2748124b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2785511a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3728041a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224387074a0", + "nominal_voltage": "120.09", + "parent": "sx3728041a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "190-8581", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2691959", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001210c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2691954", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "q16483", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069457", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3048200b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3066807c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069456", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069451", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2710518a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21209868a0", + "nominal_voltage": "120.09", + "parent": "sx2710518a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2691952", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2691953", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2691950", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2954354a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2691951", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2748839b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260502b0", + "nominal_voltage": "120.09", + "parent": "sx2748839b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2766729a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2785512b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "e203026", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2875754", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3068944b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260494b0", + "nominal_voltage": "120.09", + "parent": "sx3068944b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2691967", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "190-8593", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2745806c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2691965", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3728040a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224387062a0", + "nominal_voltage": "120.09", + "parent": "sx3728040a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2691966", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3048201b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3066808c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2710519a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302676a0", + "nominal_voltage": "120.09", + "parent": "sx2710519a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2805031", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3119793b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2805035", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2805034", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2954353a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3235256a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138642a0", + "nominal_voltage": "120.09", + "parent": "sx3235256a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2897800b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323277b0", + "nominal_voltage": "120.09", + "parent": "sx2897800b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2785513a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2805037", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2805036", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2691938", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2691939", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx_293471a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293471a0", + "nominal_voltage": "120.09", + "parent": "sx_293471a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2691936", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx_293471b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293471b0", + "nominal_voltage": "120.09", + "parent": "sx_293471b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx_293471c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293471c0", + "nominal_voltage": "120.09", + "parent": "sx_293471c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069437", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2896685", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069438", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2748129a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3066805a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2710516a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321839a0", + "nominal_voltage": "120.09", + "parent": "sx2710516a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2691965b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3235255b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293519b0", + "nominal_voltage": "120.09", + "parent": "sx3235255b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2785514a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2729427b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3143999", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2691949", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2748128c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2691947", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2691948", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2691945", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2691946", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3048203b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d6049825-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2691943", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069428", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2691944", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3160793c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1126023", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3178997c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3066806c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069424", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1126025", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069420", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2710517a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_310568a0", + "nominal_voltage": "120.09", + "parent": "sx2710517a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1126031", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3235254c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_441331c0", + "nominal_voltage": "120.09", + "parent": "sx3235254c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2691941", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2729428a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2691942", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2954355a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2785515c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2913406", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069419", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069418", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1209800", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1209805", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "221-703009", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069417", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069411", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3195321a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356805a0", + "nominal_voltage": "120.09", + "parent": "sx3195321a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3139366a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1209807", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069412", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2859391b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3235241c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321888c0", + "nominal_voltage": "120.09", + "parent": "sx3235241c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2729429a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2936213b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3197645a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3235252b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000902c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2748143a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2973153a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069408", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3179673c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260640c0", + "nominal_voltage": "120.09", + "parent": "sx3179673c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3085403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293668a0", + "nominal_voltage": "120.09", + "parent": "sx3085403a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1209811", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3195327", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3197643b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1209817", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1209814", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1209819", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3122827a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293673a0", + "nominal_voltage": "120.09", + "parent": "sx3122827a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2916605c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3645811", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1137956", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3645812", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1137957", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1137958", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2936212a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3195321", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3197644a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2973154a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3645810", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3235251c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1209823", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1209824", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3086074c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260532c0", + "nominal_voltage": "120.09", + "parent": "sx3086074c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3179674b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_157716b0", + "nominal_voltage": "120.09", + "parent": "sx3179674b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1209822", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1209828", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3197642c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3254228b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_325474b0", + "nominal_voltage": "120.09", + "parent": "sx3254228b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3645809", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3728039a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2764399b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226192493b0", + "nominal_voltage": "120.09", + "parent": "sx2764399b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2973144c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138466c0", + "nominal_voltage": "120.09", + "parent": "sx2973144c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2916606c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3234185b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3195356", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2973155a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2690187b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2936211c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2786273b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_275247b0", + "nominal_voltage": "120.09", + "parent": "sx2786273b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3235250b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3254229b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338998b0", + "nominal_voltage": "120.09", + "parent": "sx3254229b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3197641a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3728038a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2916607c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3236011b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2748140a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2973156b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3217064b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3217064b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3217064b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21391390b0", + "nominal_voltage": "120.09", + "parent": "sx3217064b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "q16642", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3085400c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302803c0", + "nominal_voltage": "120.09", + "parent": "sx3085400c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136660", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1137991", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2973146b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2118903b0", + "nominal_voltage": "120.09", + "parent": "sx2973146b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3727708a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224386815a0", + "nominal_voltage": "120.09", + "parent": "sx3727708a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2691947a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337718a0", + "nominal_voltage": "120.09", + "parent": "sx2691947a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2916608c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3728037a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136658", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1137989", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136659", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3030204a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_20107636a0", + "nominal_voltage": "120.09", + "parent": "sx3030204a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000715b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000715b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000715b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000715b0", + "nominal_voltage": "120.09", + "parent": "sx2000715b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2898515c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2973157a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1137985", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1137986", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1137987", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3027122a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226194865a0", + "nominal_voltage": "120.09", + "parent": "sx3027122a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136657", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1137988", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2748146a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136670", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2691946b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2691946b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2691946b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2147974b0", + "nominal_voltage": "120.09", + "parent": "sx2691946b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136671", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2936216c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2916609c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2879794a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136669", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3030205c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21390038c0", + "nominal_voltage": "120.09", + "parent": "sx3030205c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136661", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1137992", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3727709a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224386842a0", + "nominal_voltage": "120.09", + "parent": "sx3727709a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2973158c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1137993", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136663", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1137994", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2914324a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226196642a0", + "nominal_voltage": "120.09", + "parent": "sx2914324a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136664", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1137995", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136665", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1137996", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136666", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136667", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1137998", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136668", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1137999", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2786274c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2786274c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2786274c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_207291c0", + "nominal_voltage": "120.09", + "parent": "sx2786274c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2954349b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3085402a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302471a0", + "nominal_voltage": "120.09", + "parent": "sx3085402a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "193-103041", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3195318", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3254219", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2973148a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2973148a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2973148a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_339047a0", + "nominal_voltage": "120.09", + "parent": "sx2973148a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3179678b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_247185b0", + "nominal_voltage": "120.09", + "parent": "sx3179678b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3195315", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2691949b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337689b0", + "nominal_voltage": "120.09", + "parent": "sx2691949b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000713b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000713b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000713b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000713b0", + "nominal_voltage": "120.09", + "parent": "sx2000713b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3254210", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2973159a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3254213", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3254214", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1137960", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3197647a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3195310", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3254211", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1137961", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3254212", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3254217", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2914323b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355376b0", + "nominal_voltage": "120.09", + "parent": "sx2914323b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3214112", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3254218", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3254215", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3027124c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226195194c0", + "nominal_voltage": "120.09", + "parent": "sx3027124c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3254216", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3085401a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2127253a0", + "nominal_voltage": "120.09", + "parent": "sx3085401a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3254208", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3254209", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2973149b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_325472b0", + "nominal_voltage": "120.09", + "parent": "sx2973149b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3727707a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224386750a0", + "nominal_voltage": "120.09", + "parent": "sx3727707a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2936214a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2691948b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337703b0", + "nominal_voltage": "120.09", + "parent": "sx2691948b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3139103a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2684420b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_225498968b0", + "nominal_voltage": "120.09", + "parent": "sx2684420b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000714b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000714b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000714b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000714b0", + "nominal_voltage": "120.09", + "parent": "sx2000714b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3030203c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260639c0", + "nominal_voltage": "120.09", + "parent": "sx3030203c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3235946", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3254203", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3235945", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3197646b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3254206", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2748144a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3254207", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3254204", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3254205", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3029520b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21486213b0", + "nominal_voltage": "120.09", + "parent": "sx3029520b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3122820a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_310561a0", + "nominal_voltage": "120.09", + "parent": "sx3122820a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2691943b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323400b0", + "nominal_voltage": "120.09", + "parent": "sx2691943b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2933135a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226197070a0", + "nominal_voltage": "120.09", + "parent": "sx2933135a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3082992a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3082992a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3082992a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337728a0", + "nominal_voltage": "120.09", + "parent": "sx3082992a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3030200c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260554c0", + "nominal_voltage": "120.09", + "parent": "sx3030200c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108269", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2730107c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108276", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108278", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108274", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3232301c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21458756c0", + "nominal_voltage": "120.09", + "parent": "sx3232301c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3066815c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338936c0", + "nominal_voltage": "120.09", + "parent": "sx3066815c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1009742", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108270", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2879081a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391981a0", + "nominal_voltage": "120.09", + "parent": "sx2879081a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2691942b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_247105b0", + "nominal_voltage": "120.09", + "parent": "sx2691942b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2839305a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1009763", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3086079b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260457b0", + "nominal_voltage": "120.09", + "parent": "sx3086079b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3263051c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2212371533c0", + "nominal_voltage": "120.09", + "parent": "sx3263051c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3082993a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226159329a0", + "nominal_voltage": "120.09", + "parent": "sx3082993a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2859403", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2730108c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2820535b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338981b0", + "nominal_voltage": "120.09", + "parent": "sx2820535b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2729411a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138769a0", + "nominal_voltage": "120.09", + "parent": "sx2729411a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2729410c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338943c0", + "nominal_voltage": "120.09", + "parent": "sx2729410c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108286", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3066816a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21398676a0", + "nominal_voltage": "120.09", + "parent": "sx3066816a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3122822a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391987a0", + "nominal_voltage": "120.09", + "parent": "sx3122822a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1009770", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2691945c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2691945c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2691945c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302812c0", + "nominal_voltage": "120.09", + "parent": "sx2691945c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1009771", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2729412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2150189a0", + "nominal_voltage": "120.09", + "parent": "sx2729412a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2861222a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260473a0", + "nominal_voltage": "120.09", + "parent": "sx2861222a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2937757c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227411650c0", + "nominal_voltage": "120.09", + "parent": "sx2937757c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108257", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3235258a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3235258c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2897800b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3235258b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3066813b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337693b0", + "nominal_voltage": "120.09", + "parent": "sx3066813b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3254220c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138717c0", + "nominal_voltage": "120.09", + "parent": "sx3254220c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3122821b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338953b0", + "nominal_voltage": "120.09", + "parent": "sx3122821b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1009784", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2691944a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321838a0", + "nominal_voltage": "120.09", + "parent": "sx2691944a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108259", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2820533a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226193298a0", + "nominal_voltage": "120.09", + "parent": "sx2820533a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2861223b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260461b0", + "nominal_voltage": "120.09", + "parent": "sx2861223b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108258", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2729413a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21397067a0", + "nominal_voltage": "120.09", + "parent": "sx2729413a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2730106c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3312692", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2842383a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108266", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108265", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108268", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108267", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108262", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108261", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2897801a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108264", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108263", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3066814b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338979b0", + "nominal_voltage": "120.09", + "parent": "sx3066814b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108260", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2674047c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260514c0", + "nominal_voltage": "120.09", + "parent": "sx2674047c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2730187a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260464a0", + "nominal_voltage": "120.09", + "parent": "sx2730187a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3122824a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302402a0", + "nominal_voltage": "120.09", + "parent": "sx3122824a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2891575", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2729414a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293655a0", + "nominal_voltage": "120.09", + "parent": "sx2729414a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2729414c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293655c0", + "nominal_voltage": "120.09", + "parent": "sx2729414c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2729414b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293655b0", + "nominal_voltage": "120.09", + "parent": "sx2729414b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2842384c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3066819a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302677a0", + "nominal_voltage": "120.09", + "parent": "sx3066819a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3235256a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2814529", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3649302", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3649301", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3649304", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2690187", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3649306", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3649305", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1009705", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "hvmv69s1s2_5", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3122823b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302370b0", + "nominal_voltage": "120.09", + "parent": "sx3122823b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "hvmv69s1s2_4", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "hvmv69s1s2_7", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "hvmv69s1s2_6", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3086075b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260463b0", + "nominal_voltage": "120.09", + "parent": "sx3086075b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "hvmv69s1s2_1", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3254227b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338995b0", + "nominal_voltage": "120.09", + "parent": "sx3254227b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "228-979371-2_int", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "hvmv69s1s2_3", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3649300", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "hvmv69s1s2_2", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3036169", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3036167", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3036164", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3036165", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3036162", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3036172", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3036170", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "193-46661", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3235255b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "hvmv69s1s2_9", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "hvmv69s1s2_8", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3225319b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1009715", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2691941c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321887c0", + "nominal_voltage": "120.09", + "parent": "sx2691941c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3122826a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302731a0", + "nominal_voltage": "120.09", + "parent": "sx3122826a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3086078a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_218473a0", + "nominal_voltage": "120.09", + "parent": "sx3086078a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2898457a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260594a0", + "nominal_voltage": "120.09", + "parent": "sx2898457a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108299", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108298", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2983432a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_225534325a0", + "nominal_voltage": "120.09", + "parent": "sx2983432a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108295", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3066817a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21373784a0", + "nominal_voltage": "120.09", + "parent": "sx3066817a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000800", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1009720", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3235254c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1009724", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000413a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1009726", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000415a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3122825a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2118808a0", + "nominal_voltage": "120.09", + "parent": "sx3122825a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3156034a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "221-240988", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001309a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "221-240991", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3102793", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3066818b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138751b0", + "nominal_voltage": "120.09", + "parent": "sx3066818b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3181545", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3159645", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2916598", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2916599", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3235253a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000414a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2879078a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879078a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2879078a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21399229a0", + "nominal_voltage": "120.09", + "parent": "sx2879078a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2973150", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2929261a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2973152", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2804249c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "hvmv69s1s2_10", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2973151", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p901946", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p901945", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5956499-2_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3160793c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2147899c0", + "nominal_voltage": "120.09", + "parent": "sx3160793c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108302", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "196-31070", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2879054a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108311", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2822863c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p901941", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104123c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3649299a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2674052", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2973144", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2955005b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2955005b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2955005b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260589b0", + "nominal_voltage": "120.09", + "parent": "sx2955005b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "e192258", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2973146", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3160103c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2973149", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2973148", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2879077b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337709b0", + "nominal_voltage": "120.09", + "parent": "sx2879077b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2674051", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2973161", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2973160", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2973163", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2973162", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3649298a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108317", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p901934", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3216342b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337645b0", + "nominal_voltage": "120.09", + "parent": "sx3216342b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3215385c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3215385b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p901936", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3215385a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108316", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108315", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p895075", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "e184626", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2822864c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2879055c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p901931", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104124b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p901933", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p901932", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2802481", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2973154", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3010557a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21380453a0", + "nominal_voltage": "120.09", + "parent": "sx3010557a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2802480", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2973153", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2973156", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2973155", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2857591a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226101460a0", + "nominal_voltage": "120.09", + "parent": "sx2857591a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2955006c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356797c0", + "nominal_voltage": "120.09", + "parent": "sx2955006c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2973158", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2674047", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2973157", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3160102b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2973159", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2879076c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879076c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2879076c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138380c0", + "nominal_voltage": "120.09", + "parent": "sx2879076c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p895080", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p895082", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3160100b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3649297a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2804247b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3226771a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p895089", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3216343c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337626c0", + "nominal_voltage": "120.09", + "parent": "sx3216343c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3189189b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p895087", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2822865c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2688692", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3177665a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227731863a0", + "nominal_voltage": "120.09", + "parent": "sx3177665a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104121a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2711224", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3067507c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3160101a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2711225", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2879075a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337724a0", + "nominal_voltage": "120.09", + "parent": "sx2879075a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2711226", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3010556a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138655a0", + "nominal_voltage": "120.09", + "parent": "sx3010556a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2917328b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2764403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2804248b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2673331b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673331b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2673331b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338990b0", + "nominal_voltage": "120.09", + "parent": "sx2673331b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2688693", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3216344b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323264b0", + "nominal_voltage": "120.09", + "parent": "sx3216344b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2801902b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226194002b0", + "nominal_voltage": "120.09", + "parent": "sx2801902b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2822866b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p901951", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108300", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2841619c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3626914c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224179616c0", + "nominal_voltage": "120.09", + "parent": "sx3626914c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104122a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2711234", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2859391", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3067506c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2879074a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_310560a0", + "nominal_voltage": "120.09", + "parent": "sx2879074a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p901909", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2710546b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108347", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p901905", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001315a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2897807b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108354", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2897806c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108353", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108356", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108355", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108350", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108352", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3254230a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338989a0", + "nominal_voltage": "120.09", + "parent": "sx3254230a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3189188c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "e192201", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3037538", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3037537", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2729430b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104157c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293427c0", + "nominal_voltage": "120.09", + "parent": "sx3104157c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2841618a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001314a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104120b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108364", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108361", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2692655c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21389307c0", + "nominal_voltage": "120.09", + "parent": "sx2692655c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108360", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3214055c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2822860b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3198356c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3198358", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3198356", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3198355", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3254231a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3254231a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3254231a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338988a0", + "nominal_voltage": "120.09", + "parent": "sx3254231a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2878848c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2212168887c0", + "nominal_voltage": "120.09", + "parent": "sx2878848c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3949154", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104154c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337642c0", + "nominal_voltage": "120.09", + "parent": "sx3104154c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3949157", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3178969b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355596b0", + "nominal_voltage": "120.09", + "parent": "sx3178969b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2973171", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108329", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2710544a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108328", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3037540", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p901927", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069398", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001313a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108331", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108334", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2841616a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2822861a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3198355b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2973165", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2973164", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2973167", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2973166", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2973169", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3066821a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391994a0", + "nominal_voltage": "120.09", + "parent": "sx3066821a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104155c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104155c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3104155c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21474587c0", + "nominal_voltage": "120.09", + "parent": "sx3104155c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2973180", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2879079b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391756b0", + "nominal_voltage": "120.09", + "parent": "sx2879079b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p901913", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001312a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p901912", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3157718a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001009b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2710543c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069384", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108335", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "regxfmr_hvmv11sub2_lsb", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2841615a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2897805a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108345", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2748840b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_157717b0", + "nominal_voltage": "120.09", + "parent": "sx2748840b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3047058a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069393", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108344", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2822862c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069390", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108340", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p901910", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2973178", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3010559a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337679a0", + "nominal_voltage": "120.09", + "parent": "sx3010559a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3216349b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337708b0", + "nominal_voltage": "120.09", + "parent": "sx3216349b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2748139b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2804248", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2804249", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2767342a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001311a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001008b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2710542b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069376", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2785519", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001315", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000711b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000711b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000711b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000711b0", + "nominal_voltage": "120.09", + "parent": "sx2000711b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2785518", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3215549", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001314", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2785517", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001313", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2785516", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069382", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001312", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2785515", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3254231", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2785514", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2804250", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000408a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000408a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000408a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000408a0", + "nominal_voltage": "120.09", + "parent": "sx2000408a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "e193509", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2785513", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3157710b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2785512", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3254230", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2785511", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2804253", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2690941", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2804254", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1209772", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3101789a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_294842a0", + "nominal_voltage": "120.09", + "parent": "sx3101789a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2804251", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2804252", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3254234", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2804257", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1209775", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001311", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2954346b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2804258", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1209776", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001310", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3030126c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2804255", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3254237", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3235249a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356014a0", + "nominal_voltage": "120.09", + "parent": "sx3235249a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2804256", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3254238", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1209774", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3120504", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3120503", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3195318b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226194280b0", + "nominal_voltage": "120.09", + "parent": "sx3195318b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2804259", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2729434b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5712587-2_int", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2767343c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3139103", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001007b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2989565", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001310a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2989566", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001309", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d6141147-1_int", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069363", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069365", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069364", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001304", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2989571", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001303", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001302", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001301", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000712b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000712b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000712b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000712b0", + "nominal_voltage": "120.09", + "parent": "sx2000712b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2804260", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3254220", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001308", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2786266a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260631a0", + "nominal_voltage": "120.09", + "parent": "sx2786266a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2804261", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001307", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001306", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000909c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001305", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1209782", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2990826c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337619c0", + "nominal_voltage": "120.09", + "parent": "sx2990826c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2804262", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000409a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000409a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000409a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000409a0", + "nominal_voltage": "120.09", + "parent": "sx2000409a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2990826a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337619a0", + "nominal_voltage": "120.09", + "parent": "sx2990826a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3101788a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321878a0", + "nominal_voltage": "120.09", + "parent": "sx3101788a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2954345c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2990826b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337619b0", + "nominal_voltage": "120.09", + "parent": "sx2990826b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3254228", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001300", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2804269", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3254229", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1209787", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3235248c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321861c0", + "nominal_voltage": "120.09", + "parent": "sx3235248c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3120502", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3254227", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3011229a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3141412", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "hvmv69sub2_lnb", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2876797", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1209788", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2876798", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3141411", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3207907", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2876796", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3085410b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3085410b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3085410b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_339097b0", + "nominal_voltage": "120.09", + "parent": "sx3085410b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3195751a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293681a0", + "nominal_voltage": "120.09", + "parent": "sx3195751a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069356", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001006b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "293471", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3195315a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226193662a0", + "nominal_voltage": "120.09", + "parent": "sx3195315a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2745811c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2916610b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2801909c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226195333c0", + "nominal_voltage": "120.09", + "parent": "sx2801909c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3142098b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2989564", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1209790", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2692654a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260487a0", + "nominal_voltage": "120.09", + "parent": "sx2692654a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000406a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000406a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000406a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000406a0", + "nominal_voltage": "120.09", + "parent": "sx2000406a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3081380", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1136672", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2767340c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3198348", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000908c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3198347", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1209791", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2767340a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3160109b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "flags": "DELTAMODE", + "name": "m1089-dies1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089-dies1_dgmtr", + "nominal_voltage": "277.13", + "parent": "m1089-dies1", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2767340b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d6108145-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1209797", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p1164481", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3235247a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321836a0", + "nominal_voltage": "120.09", + "parent": "sx3235247a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1209795", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104129a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2954348a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3141401", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3141402", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3141400", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069348", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2991640c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001005b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000710b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000710b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000710b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000710b0", + "nominal_voltage": "120.09", + "parent": "sx2000710b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3176656a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069350", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3142099b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3198358b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000407a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000407a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000407a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000407a0", + "nominal_voltage": "120.09", + "parent": "sx2000407a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2898522a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000907c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3235246b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323279b0", + "nominal_voltage": "120.09", + "parent": "sx3235246b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2767341c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3160108b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2804247", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2954347b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3141403", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2804245", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3727712a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224386889a0", + "nominal_voltage": "120.09", + "parent": "sx3727712a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3197640c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3216345b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338933b0", + "nominal_voltage": "120.09", + "parent": "sx3216345b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069335", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5860423-3_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001004b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000404a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000404a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000404a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000404a0", + "nominal_voltage": "120.09", + "parent": "sx2000404a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3065750b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323389b0", + "nominal_voltage": "120.09", + "parent": "sx3065750b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3235245c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337712c0", + "nominal_voltage": "120.09", + "parent": "sx3235245c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2724120c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2804245b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3048196b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138237b0", + "nominal_voltage": "120.09", + "parent": "sx3048196b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000906c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104127b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3160107a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3120534", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2822867b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2973150a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3216346a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391991a0", + "nominal_voltage": "120.09", + "parent": "sx3216346a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069328", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2842379a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260488a0", + "nominal_voltage": "120.09", + "parent": "sx2842379a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001003b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2917310b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260503b0", + "nominal_voltage": "120.09", + "parent": "sx2917310b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3122835b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p901972", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2972704", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3253570c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000405a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000405a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000405a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000405a0", + "nominal_voltage": "120.09", + "parent": "sx2000405a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5774457-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3160106a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104128a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000905c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3235244a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337676a0", + "nominal_voltage": "120.09", + "parent": "sx3235244a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2822868a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3118855c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_339052c0", + "nominal_voltage": "120.09", + "parent": "sx3118855c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3216347c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3216347c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3216347c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138413c0", + "nominal_voltage": "120.09", + "parent": "sx3216347c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069312", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069311", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001002b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069310", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3179682c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_207292c0", + "nominal_voltage": "120.09", + "parent": "sx3179682c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3727710a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224386863a0", + "nominal_voltage": "120.09", + "parent": "sx3727710a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3233353", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000402a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000402a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000402a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000402a0", + "nominal_voltage": "120.09", + "parent": "sx2000402a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2804271", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2804272", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104125b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3235243c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3235243c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3235243c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_275008c0", + "nominal_voltage": "120.09", + "parent": "sx3235243c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2804270", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2954344c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3179637c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3101787a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321877a0", + "nominal_voltage": "120.09", + "parent": "sx3101787a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2822869a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2933120", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3120376a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226163467a0", + "nominal_voltage": "120.09", + "parent": "sx3120376a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000904c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2973151a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2804277", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2767414c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_351019c0", + "nominal_voltage": "120.09", + "parent": "sx2767414c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3160105c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3216348a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3216348a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3216348a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337717a0", + "nominal_voltage": "120.09", + "parent": "sx3216348a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "r20185", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3139121", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069300", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3236004c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260572c0", + "nominal_voltage": "120.09", + "parent": "sx3236004c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3727711a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224386874a0", + "nominal_voltage": "120.09", + "parent": "sx3727711a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000403a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000403a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000403a0", + "nominal_voltage": "120.09", + "parent": "sx2000403a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2674027", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3122837c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2804282", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2989596", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2804283", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104126c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3048199b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323237b0", + "nominal_voltage": "120.09", + "parent": "sx3048199b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3235242c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21380500c0", + "nominal_voltage": "120.09", + "parent": "sx3235242c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000903c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2973152b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3231255c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3160104b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2935557", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2935555", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2935556", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3649305a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224237718a0", + "nominal_voltage": "120.09", + "parent": "sx3649305a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001012b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3122816b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356062b0", + "nominal_voltage": "120.09", + "parent": "sx3122816b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3197632b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2935559", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2729406c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337633c0", + "nominal_voltage": "120.09", + "parent": "sx2729406c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3143999a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3143999a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3143999a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226193696a0", + "nominal_voltage": "120.09", + "parent": "sx3143999a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2729423", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2729424", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2897769c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2935560", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000707b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000707b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000707b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000707b0", + "nominal_voltage": "120.09", + "parent": "sx2000707b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3197633a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3214055", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3215385", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000914c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2973165a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3252336", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2935547", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3649304a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224237713a0", + "nominal_voltage": "120.09", + "parent": "sx3649304a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001011b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3197631a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3122815b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321858b0", + "nominal_voltage": "120.09", + "parent": "sx3122815b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2935549", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2729408", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2729409", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2729407b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_247100b0", + "nominal_voltage": "120.09", + "parent": "sx2729407b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2916617b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3784018a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2729405", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2729406", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2729407", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2729411", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2973833", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2729412", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2729413", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2729414", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2729410", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3157167", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000708b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000708b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000708b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000708b0", + "nominal_voltage": "120.09", + "parent": "sx2000708b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2935550", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2935553", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2935554", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2935551", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2935552", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000913c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2973166c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000911c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001010b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2991909a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355773a0", + "nominal_voltage": "120.09", + "parent": "sx2991909a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx1108407b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2221108407b0", + "nominal_voltage": "120.09", + "parent": "sx1108407b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2729408b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355768b0", + "nominal_voltage": "120.09", + "parent": "sx2729408b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2841641b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21380156b0", + "nominal_voltage": "120.09", + "parent": "sx2841641b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3197630a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2916618b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3122818c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2120183c0", + "nominal_voltage": "120.09", + "parent": "sx3122818c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000705b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000705b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000705b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000705b0", + "nominal_voltage": "120.09", + "parent": "sx2000705b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2674052c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21393570c0", + "nominal_voltage": "120.09", + "parent": "sx2674052c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2897767c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2973167b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2879752b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_330122b0", + "nominal_voltage": "120.09", + "parent": "sx2879752b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000912c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2935568", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000910c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2821770", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2935566", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2935567", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3122817c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355779c0", + "nominal_voltage": "120.09", + "parent": "sx3122817c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2991908a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338900a0", + "nominal_voltage": "120.09", + "parent": "sx2991908a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2729409b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355605b0", + "nominal_voltage": "120.09", + "parent": "sx2729409b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2916619b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3141411c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3104830c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_328367c0", + "nominal_voltage": "120.09", + "parent": "sx3104830c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3215549b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3649302a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224237653a0", + "nominal_voltage": "120.09", + "parent": "sx3649302a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2729427", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2729428", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2729429", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2989571a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2674051a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2674051a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2674051a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21389831a0", + "nominal_voltage": "120.09", + "parent": "sx2674051a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2729434", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3179650b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2729430", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000706b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000706b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000706b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000706b0", + "nominal_voltage": "120.09", + "parent": "sx2000706b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2897768c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3141412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2748152b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3045895c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2879753b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21249674b0", + "nominal_voltage": "120.09", + "parent": "sx2879753b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2763153a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3067447a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2766499c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2212168880c0", + "nominal_voltage": "120.09", + "parent": "sx2766499c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3160793", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2691959b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21400253b0", + "nominal_voltage": "120.09", + "parent": "sx2691959b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2861158c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000703b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000703b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000703b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000703b0", + "nominal_voltage": "120.09", + "parent": "sx2000703b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2897765b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3197637c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3215340", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2973169a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2954338b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2748158a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3122819c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302860c0", + "nominal_voltage": "120.09", + "parent": "sx3122819c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2804250c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000704b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000704b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000704b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000704b0", + "nominal_voltage": "120.09", + "parent": "sx2000704b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2785547", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2785546", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "r42246", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2897766c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3197636b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2785543", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "r42247", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3048230c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293490c0", + "nominal_voltage": "120.09", + "parent": "sx3048230c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1009691", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2748157a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2858175a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_225668688a0", + "nominal_voltage": "120.09", + "parent": "sx2858175a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "flags": "DELTAMODE", + "name": "m1089-lng1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089-lng1_dgmtr", + "nominal_voltage": "277.13", + "parent": "m1089-lng1", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2729401", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2763811c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3125349c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2785538", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2785537", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2785536", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2842390c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2785535", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2785534", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3048231b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21400215b0", + "nominal_voltage": "120.09", + "parent": "sx3048231b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2785531", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2785530", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3197635b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2731712", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3649306a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224238167a0", + "nominal_voltage": "120.09", + "parent": "sx3649306a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2917255c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21386065c0", + "nominal_voltage": "120.09", + "parent": "sx2917255c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3097861", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2763812c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2954339b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2785529", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2785528", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000702b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000702b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000702b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000702b0", + "nominal_voltage": "120.09", + "parent": "sx2000702b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2861157c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2785527", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2785526", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2785525", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2785524", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2785523", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2785522", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2785521", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1009698", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2897764b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2785520", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2898526c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3197634b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3254915", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3010562b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_325473b0", + "nominal_voltage": "120.09", + "parent": "sx3010562b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2992624a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260484a0", + "nominal_voltage": "120.09", + "parent": "sx2992624a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3448661b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2223878647b0", + "nominal_voltage": "120.09", + "parent": "sx3448661b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3159448a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108398", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108393", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108395", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2860504", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3254234b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355586b0", + "nominal_voltage": "120.09", + "parent": "sx3254234b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2991939b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2860506", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3029183b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_228580047b0", + "nominal_voltage": "120.09", + "parent": "sx3029183b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2860500", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2860501", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3010561a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337650a0", + "nominal_voltage": "120.09", + "parent": "sx3010561a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3142079", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2691954b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21399361b0", + "nominal_voltage": "120.09", + "parent": "sx2691954b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2673303c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2970811a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321881a0", + "nominal_voltage": "120.09", + "parent": "sx2970811a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3142078", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2785546a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21399752a0", + "nominal_voltage": "120.09", + "parent": "sx2785546a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2895461a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_294789a0", + "nominal_voltage": "120.09", + "parent": "sx2895461a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2897800", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2897801", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3142050c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_251865c0", + "nominal_voltage": "120.09", + "parent": "sx3142050c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2897806", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2897807", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3082981c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226193737c0", + "nominal_voltage": "120.09", + "parent": "sx3082981c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2897805", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2858200", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2917330a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2879092c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21399326c0", + "nominal_voltage": "120.09", + "parent": "sx2879092c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3122810b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323242b0", + "nominal_voltage": "120.09", + "parent": "sx3122810b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1009651", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1009650", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2785547b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337705b0", + "nominal_voltage": "120.09", + "parent": "sx2785547b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3010560b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338955b0", + "nominal_voltage": "120.09", + "parent": "sx3010560b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108368", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2763072b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226924200b0", + "nominal_voltage": "120.09", + "parent": "sx2763072b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2692660", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108375", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108378", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108372", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2897554c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2212168870c0", + "nominal_voltage": "120.09", + "parent": "sx2897554c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3197639a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2692664", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2692661", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3067448c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3253995c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3082983b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226193899b0", + "nominal_voltage": "120.09", + "parent": "sx3082983b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3142050", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108379", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2729401b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355597b0", + "nominal_voltage": "120.09", + "parent": "sx2729401b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "hvmv69s2s3_1", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108387", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2955055b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "hvmv69s2s3_2", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1009655", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2821087a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226308720a0", + "nominal_voltage": "120.09", + "parent": "sx2821087a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3066826b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_339003b0", + "nominal_voltage": "120.09", + "parent": "sx3066826b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108381", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108380", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2823544", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2823545", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2841648a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337720a0", + "nominal_voltage": "120.09", + "parent": "sx2841648a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3197638a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3122812b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21031694b0", + "nominal_voltage": "120.09", + "parent": "sx3122812b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2691951c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2691951c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2691951c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138379c0", + "nominal_voltage": "120.09", + "parent": "sx2691951c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3254238b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293487b0", + "nominal_voltage": "120.09", + "parent": "sx3254238b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000707", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000706", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000705", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000704", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000709", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000708", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3649301a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224237643a0", + "nominal_voltage": "120.09", + "parent": "sx3649301a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000703", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2766718c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138652c0", + "nominal_voltage": "120.09", + "parent": "sx2766718c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000702", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000701", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000700", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3235268c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3178971a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338896a0", + "nominal_voltage": "120.09", + "parent": "sx3178971a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3010566c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138776c0", + "nominal_voltage": "120.09", + "parent": "sx3010566c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2917333a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2860478b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355590b0", + "nominal_voltage": "120.09", + "parent": "sx2860478b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2673309c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3122811a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337669a0", + "nominal_voltage": "120.09", + "parent": "sx3122811a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2673307c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3010565c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3010565c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3010565c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138343c0", + "nominal_voltage": "120.09", + "parent": "sx3010565c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3065665a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2708744b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226308710b0", + "nominal_voltage": "120.09", + "parent": "sx2708744b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2766717c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138470c0", + "nominal_voltage": "120.09", + "parent": "sx2766717c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2935549b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337668b0", + "nominal_voltage": "120.09", + "parent": "sx2935549b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3649300a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2224237546a0", + "nominal_voltage": "120.09", + "parent": "sx3649300a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3235267c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3178972c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338923c0", + "nominal_voltage": "120.09", + "parent": "sx3178972c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2860479b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355595b0", + "nominal_voltage": "120.09", + "parent": "sx2860479b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2691950c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138374c0", + "nominal_voltage": "120.09", + "parent": "sx2691950c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2673308b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3010564c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321883c0", + "nominal_voltage": "120.09", + "parent": "sx3010564c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2673306c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2691953a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302732a0", + "nominal_voltage": "120.09", + "parent": "sx2691953a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2841645c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321893c0", + "nominal_voltage": "120.09", + "parent": "sx2841645c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3122814c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338899c0", + "nominal_voltage": "120.09", + "parent": "sx3122814c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3172805a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226964880a0", + "nominal_voltage": "120.09", + "parent": "sx3172805a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3066829c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321894c0", + "nominal_voltage": "120.09", + "parent": "sx3066829c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3178973a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21149420a0", + "nominal_voltage": "120.09", + "parent": "sx3178973a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2000709b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000709b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000709b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "flags": "DELTAMODE", + "name": "ld_2000709b0", + "nominal_voltage": "120.09", + "parent": "sx2000709b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3235266c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3327098", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2691952a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391980a0", + "nominal_voltage": "120.09", + "parent": "sx2691952a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2935547b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21383553b0", + "nominal_voltage": "120.09", + "parent": "sx2935547b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2673305b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m3327097", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3010563a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_294845a0", + "nominal_voltage": "120.09", + "parent": "sx3010563a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3254237a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21482181a0", + "nominal_voltage": "120.09", + "parent": "sx3254237a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2823592", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3214071", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3142099", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3122813a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138685a0", + "nominal_voltage": "120.09", + "parent": "sx3122813a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3142098", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2729405b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21393412b0", + "nominal_voltage": "120.09", + "parent": "sx2729405b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2766750c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2766719a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21357865a0", + "nominal_voltage": "120.09", + "parent": "sx2766719a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3214064", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3178974b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_323399b0", + "nominal_voltage": "120.09", + "parent": "sx3178974b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3214069", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2917336c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2860477a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2121587a0", + "nominal_voltage": "120.09", + "parent": "sx2860477a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3082988b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226195153b0", + "nominal_voltage": "120.09", + "parent": "sx3082988b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3178975b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321845b0", + "nominal_voltage": "120.09", + "parent": "sx3178975b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2746587c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227653310c0", + "nominal_voltage": "120.09", + "parent": "sx2746587c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2876814", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108423", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2876812", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2876813", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3085398b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2879092", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108433", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3027116", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1138598", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1138597", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2692600", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1138599", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2766749b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3160115b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2879089c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21455388c0", + "nominal_voltage": "120.09", + "parent": "sx2879089c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2897765", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3178976a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21397721a0", + "nominal_voltage": "120.09", + "parent": "sx3178976a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2897766", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2710537b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2897764", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2897769", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3176661c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2897767", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2897768", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3085397b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3157708c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "196-35541", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2879081", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2858163", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5686080-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2858166", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3010569a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302673a0", + "nominal_voltage": "120.09", + "parent": "sx3010569a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2879089", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3027124", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2860478", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2879087", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3027122", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2860477", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2766748a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2860479", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3160114a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2916234a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_228549643a0", + "nominal_voltage": "120.09", + "parent": "sx2916234a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2710536a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2804259a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2991940c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2688692b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_225918926b0", + "nominal_voltage": "120.09", + "parent": "sx2688692b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3178977c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302810c0", + "nominal_voltage": "120.09", + "parent": "sx3178977c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108406", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108405", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3176660b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2860490", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2766716c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337713c0", + "nominal_voltage": "120.09", + "parent": "sx2766716c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d6047588-1_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108407", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108402", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108401", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2786204c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108404", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108403", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2858175", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2860485", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2860484", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2860487", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2860486", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108410", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2860481", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2860480", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2860483", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2860482", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3010568a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338965a0", + "nominal_voltage": "120.09", + "parent": "sx3010568a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2860489", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3027133", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2860488", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3027132", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3160113b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2766499", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2879087a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21399762a0", + "nominal_voltage": "120.09", + "parent": "sx2879087a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3178978a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_337723a0", + "nominal_voltage": "120.09", + "parent": "sx3178978a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1138594", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1138593", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1138596", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1138595", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2688693c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_225918936c0", + "nominal_voltage": "120.09", + "parent": "sx2688693c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3091052a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_228532641a0", + "nominal_voltage": "120.09", + "parent": "sx3091052a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2766715b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355593b0", + "nominal_voltage": "120.09", + "parent": "sx2766715b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000715", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2673343b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21470122b0", + "nominal_voltage": "120.09", + "parent": "sx2673343b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108413", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108412", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3085399c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000710", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2860492", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000714", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2860491", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000713", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000712", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2860493", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2000711", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3179607b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260591b0", + "nominal_voltage": "120.09", + "parent": "sx3179607b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2860499", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3010567c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_302813c0", + "nominal_voltage": "120.09", + "parent": "sx3010567c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3066830b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21469960b0", + "nominal_voltage": "120.09", + "parent": "sx3066830b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p850072", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3142049", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2689678b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2970804c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356787c0", + "nominal_voltage": "120.09", + "parent": "sx2970804c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3178979c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_338968c0", + "nominal_voltage": "120.09", + "parent": "sx3178979c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2673300b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001der480-2", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3085394c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001der480-1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2820556a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226196648a0", + "nominal_voltage": "120.09", + "parent": "sx2820556a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2879055", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2879054", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3179608c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356793c0", + "nominal_voltage": "120.09", + "parent": "sx3179608c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p850083", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3048887b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3085393c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2862616c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227447984c0", + "nominal_voltage": "120.09", + "parent": "sx2862616c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2970804", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069285", + "nominal_voltage": "7199.56", + "phases": "ACN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx1108410b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2226061820b0", + "nominal_voltage": "120.09", + "parent": "sx1108410b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p850080", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3216350a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391977a0", + "nominal_voltage": "120.09", + "parent": "sx3216350a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108486", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3233353a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2766744b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108484", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108483", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3030199c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2692654", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2692655", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3048888c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2785543b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321860b0", + "nominal_voltage": "120.09", + "parent": "sx2785543b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3216351a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21398815a0", + "nominal_voltage": "120.09", + "parent": "sx3216351a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2710532c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2673346c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_293486c0", + "nominal_voltage": "120.09", + "parent": "sx2673346c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3085396a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2879072", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2879071", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2879070", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069284", + "nominal_voltage": "7199.56", + "phases": "ACN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p1123251", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2879079", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2766747a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2879078", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2879077", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2685805a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_225533531a0", + "nominal_voltage": "120.09", + "parent": "sx2685805a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2879076", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2879075", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2879074", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2879073", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2991943c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3048889c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2955047a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3085395a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2823611a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d2000401_int", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108459", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2879061", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108464", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108460", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108462", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3315860b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2223664050b0", + "nominal_voltage": "120.09", + "parent": "sx3315860b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2879069", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2692635", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2879068", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2879067", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2766746c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2692633", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2879066", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2879065", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2879064", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2879063", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2879062", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3778577c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3160861c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "e182729", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3085390b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p893163", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "e182727", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "e182726", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2692664c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_351021c0", + "nominal_voltage": "120.09", + "parent": "sx2692664c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "e182725", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2728247a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "e182724", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2710530b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "e182723", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "e182722", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2916620a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2916620c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2916620b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5806920-1_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2728247b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2728247c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2858166a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226192994a0", + "nominal_voltage": "120.09", + "parent": "sx2858166a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2897773a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3160862c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d6048634-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2804253a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "hvmv69sub1_lsb2", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2822859b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104119a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m4113345", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069249", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m4113347", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m4113348", + "nominal_voltage": "7199.56", + "phases": "ACN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1140830", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3064514c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069248", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2991902b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_391748b0", + "nominal_voltage": "120.09", + "parent": "sx2991902b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069247", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "e182733", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1140832", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "e182732", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1140831", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "e182731", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "e182730", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2970841", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2970842", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026997", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069250", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026990", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2970845", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2804254a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2897774b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3231269b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3263051", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3085392c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "221-282818", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "e182748", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "e182746", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1140823", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "e182745", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069230", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1140822", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2991901b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_354851b0", + "nominal_voltage": "120.09", + "parent": "sx2991901b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3198348a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "e182744", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1140821", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3195327a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_225901711a0", + "nominal_voltage": "120.09", + "parent": "sx3195327a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1140820", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1140827", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3198347c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3027132a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321876a0", + "nominal_voltage": "120.09", + "parent": "sx3027132a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2992657a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1140825", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1140824", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2970811", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "221-282819", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1140829", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1140828", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2685809a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_225533162a0", + "nominal_voltage": "120.09", + "parent": "sx2685809a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104117c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2804251a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2897771b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2973160b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3085391b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069227", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069224", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069226", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069225", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2798067", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3215203b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227760024b0", + "nominal_voltage": "120.09", + "parent": "sx3215203b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3215203a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3215203a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3215203a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227760024a0", + "nominal_voltage": "120.09", + "parent": "sx3215203a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2992656a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3215203c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3215203c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3215203c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_227760024c0", + "nominal_voltage": "120.09", + "parent": "sx3215203c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2989432", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1140819", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1140818", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "n1140817", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104118c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3179646b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2897772a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2804252a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3027133a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_226101449a0", + "nominal_voltage": "120.09", + "parent": "sx3027133a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2897792", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2973161a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2897793", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069217", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2991907a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_138574a0", + "nominal_voltage": "120.09", + "parent": "sx2991907a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2690868", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2876813a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_355842a0", + "nominal_voltage": "120.09", + "parent": "sx2876813a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069218", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3645812c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069213", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2692660a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260643a0", + "nominal_voltage": "120.09", + "parent": "sx2692660a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069215", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069210", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026961", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3122848c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026960", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026969", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2804257b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104115b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3142049c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_356810c0", + "nominal_voltage": "120.09", + "parent": "sx3142049c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3048890", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2972930a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2973162b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069206", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069205", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069208", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2876814a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_225806974a0", + "nominal_voltage": "120.09", + "parent": "sx2876814a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2991906a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_247060a0", + "nominal_voltage": "120.09", + "parent": "sx2991906a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx3216358a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21399826a0", + "nominal_voltage": "120.09", + "parent": "sx3216358a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2804258b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069202", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1069201", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2876847", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "p841985", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2916625b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001015b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2876846", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3048889", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026950", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026951", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1108400", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3122847a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026953", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3048887", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3048888", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3195365", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026954", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2897770c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2897772", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2897773", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2897770", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2861197c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2861197c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2861197c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_21474711c0", + "nominal_voltage": "120.09", + "parent": "sx2861197c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2897771", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2897776", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2897777", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2897774", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2991905a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_2148633a0", + "nominal_voltage": "120.09", + "parent": "sx2991905a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2897775", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3102286b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3645810c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2897778", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2897779", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001014b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026984", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001215", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001214", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026986", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001213", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104113a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2936268c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_223655c0", + "nominal_voltage": "120.09", + "parent": "sx2936268c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3160117b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2804255b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026987", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001212", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2897780", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001211", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2973163b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026989", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001210", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2822857b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2897784", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2897781", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2876812a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_321880a0", + "nominal_voltage": "120.09", + "parent": "sx2876812a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3645811c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3342743c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "sx2692661a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "flags": "DELTAMODE", + "name": "ld_260650a0", + "nominal_voltage": "120.09", + "parent": "sx2692661a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2897789", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2916627a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2001013b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026972", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001205", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001204", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001203", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001202", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001209", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001208", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3104114b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x3122849b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026970", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001207", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "d5534969-2_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001206", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2804256b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2897790", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l3140238", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001201", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "l2897791", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026977", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m2001200", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2000915c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2822858b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "m1026978", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "frequency_measure_type": "PLL", + "name": "m1026979", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "flags": "DELTAMODE", + "name": "x2973164a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "filename": "pow/Voltage_9500.csv", + "mode": "POLAR" + }, + "children": [], + "name": "voltdump" + } + ], + "schedules": [] +} \ No newline at end of file diff --git a/local-server/tests/golden/9500__IEEE_9500.json b/local-server/tests/golden/9500__IEEE_9500.json new file mode 100644 index 00000000..55ad1268 --- /dev/null +++ b/local-server/tests/golden/9500__IEEE_9500.json @@ -0,0 +1,147292 @@ +{ + "classes": [], + "clock": { + "starttime": "2000-01-01 0:00:00", + "stoptime": "2000-01-01 0:00:00", + "timezone": "EST+5EDT" + }, + "definitions": [ + { + "name": "VSOURCE", + "value": "69715.045" + } + ], + "directives": [ + { + "name": "relax_naming_rules", + "value": "1" + }, + { + "name": "profiler", + "value": "1" + } + ], + "includes": [ + { + "value": "Rotating_Machines.glm" + }, + { + "value": "Inverters.glm" + }, + { + "value": "Recorders.glm" + } + ], + "modules": [ + { + "attributes": {}, + "name": "tape" + }, + { + "attributes": { + "line_capacitance": "true", + "lu_solver": "KLU", + "solver_method": "NR" + }, + "name": "powerflow" + }, + { + "attributes": {}, + "name": "generators" + }, + { + "attributes": { + "report_event_log": "false" + }, + "name": "reliability" + } + ], + "objects": [ + { + "attributes": { + "check_mode": "ONCHANGE", + "grid_association": "true", + "name": "base_fault_check_object", + "output_filename": "testtopo.txt", + "strictly_radial": "false" + }, + "children": [], + "name": "fault_check" + }, + { + "attributes": { + "diameter": "0.39800", + "geometric_mean_radius": "0.011417", + "name": "wire_1/0_3w_cs", + "rating.summer.continuous": "200.00", + "rating.summer.emergency": "200.00", + "rating.winter.continuous": "200.00", + "rating.winter.emergency": "200.00", + "resistance": "0.971519" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.39800", + "geometric_mean_radius": "0.004458", + "name": "wire_1/0_acsr", + "rating.summer.continuous": "260.00", + "rating.summer.emergency": "260.00", + "rating.winter.continuous": "260.00", + "rating.winter.emergency": "260.00", + "resistance": "1.040999" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.25000", + "geometric_mean_radius": "0.00700", + "name": "wire_4_wpal", + "rating.summer.continuous": "150.00", + "rating.summer.emergency": "150.00", + "rating.winter.continuous": "150.00", + "rating.winter.emergency": "150.00", + "resistance": "2.459419" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.25000", + "geometric_mean_radius": "0.004367", + "name": "wire_4_acsr", + "rating.summer.continuous": "150.00", + "rating.summer.emergency": "150.00", + "rating.winter.continuous": "150.00", + "rating.winter.emergency": "150.00", + "resistance": "2.530689" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.25000", + "geometric_mean_radius": "0.00700", + "name": "wire_4_dpx", + "rating.summer.continuous": "136.00", + "rating.summer.emergency": "136.00", + "rating.winter.continuous": "136.00", + "rating.winter.emergency": "136.00", + "resistance": "2.449900" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.44700", + "geometric_mean_radius": "0.005100", + "name": "wire_2/0_wpal", + "rating.summer.continuous": "300.00", + "rating.summer.emergency": "300.00", + "rating.winter.continuous": "300.00", + "rating.winter.emergency": "300.00", + "resistance": "0.853001" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.74300", + "geometric_mean_radius": "0.02400", + "name": "wire_397_acsr", + "rating.summer.continuous": "630.00", + "rating.summer.emergency": "630.00", + "rating.winter.continuous": "630.00", + "rating.winter.emergency": "630.00", + "resistance": "0.256999" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.74300", + "geometric_mean_radius": "0.02400", + "name": "wire_397_aac_treewire", + "rating.summer.continuous": "526.00", + "rating.summer.emergency": "526.00", + "rating.winter.continuous": "526.00", + "rating.winter.emergency": "526.00", + "resistance": "0.283008" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.31600", + "geometric_mean_radius": "0.004183", + "name": "wire_2_acsr", + "rating.summer.continuous": "200.00", + "rating.summer.emergency": "200.00", + "rating.winter.continuous": "200.00", + "rating.winter.emergency": "200.00", + "resistance": "1.625700" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.31600", + "geometric_mean_radius": "0.004183", + "name": "wire_2_wpal", + "rating.summer.continuous": "155.00", + "rating.summer.emergency": "155.00", + "rating.winter.continuous": "155.00", + "rating.winter.emergency": "155.00", + "resistance": "1.690130" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.19800", + "geometric_mean_radius": "0.003942", + "name": "wire_6_wpal", + "rating.summer.continuous": "115.00", + "rating.summer.emergency": "115.00", + "rating.winter.continuous": "115.00", + "rating.winter.emergency": "115.00", + "resistance": "3.910899" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.25000", + "geometric_mean_radius": "0.00700", + "name": "wire_4_tpx", + "rating.summer.continuous": "115.00", + "rating.summer.emergency": "115.00", + "rating.winter.continuous": "115.00", + "rating.winter.emergency": "115.00", + "resistance": "2.449900" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.39800", + "geometric_mean_radius": "0.011417", + "name": "wire_1/0_tpx", + "rating.summer.continuous": "205.00", + "rating.summer.emergency": "205.00", + "rating.winter.continuous": "205.00", + "rating.winter.emergency": "205.00", + "resistance": "0.18400" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.56300", + "geometric_mean_radius": "0.015767", + "name": "wire_4/0_tpx", + "rating.summer.continuous": "318.00", + "rating.summer.emergency": "318.00", + "rating.winter.continuous": "318.00", + "rating.winter.emergency": "318.00", + "resistance": "0.485760" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.44700", + "geometric_mean_radius": "0.005100", + "name": "wire_2/0_acsr", + "rating.summer.continuous": "300.00", + "rating.summer.emergency": "300.00", + "rating.winter.continuous": "300.00", + "rating.winter.emergency": "300.00", + "resistance": "0.853001" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "conductor_diameter": "0.368110", + "conductor_gmr": "0.011089", + "conductor_resistance": "0.970434", + "insulation_relative_permitivitty": "2.30", + "name": "cncab_1/0_al_15kv_1/3", + "neutral_diameter": "0.025197", + "neutral_gmr": "0.000819", + "neutral_resistance": "4.103827", + "neutral_strands": "6", + "outer_diameter": "1.078740" + }, + "children": [], + "name": "underground_line_conductor" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.000", + "distance_AE": "32.000", + "distance_AN": "5.5902", + "distance_BC": "2.500", + "distance_BE": "34.000", + "distance_BN": "7.000", + "distance_CE": "32.000", + "distance_CN": "5.2202", + "distance_NE": "27.000", + "name": "spc_3ph_h-4_acsr2_acsr2_acsr4_wpal_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-4_acsrxx1/0_tpx_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x4_wpalx4_wpal_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x4_wpalx1/0_tpx_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.000", + "distance_AE": "32.000", + "distance_AN": "5.5902", + "distance_BC": "2.500", + "distance_BE": "34.000", + "distance_BN": "7.000", + "distance_CE": "32.000", + "distance_CN": "5.2202", + "distance_NE": "27.000", + "name": "spc_3ph_h-4_wpal4_wpal4_wpal1/0_tpx_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.000", + "distance_AE": "32.000", + "distance_AN": "5.5902", + "distance_BC": "2.500", + "distance_BE": "34.000", + "distance_BN": "7.000", + "distance_CE": "32.000", + "distance_CN": "5.2202", + "distance_NE": "27.000", + "name": "spc_3ph_h-4_acsr4_acsr4_acsr4_wpal_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.000", + "distance_AE": "32.000", + "distance_AN": "5.5902", + "distance_BC": "2.500", + "distance_BE": "34.000", + "distance_BN": "7.000", + "distance_CE": "32.000", + "distance_CN": "5.2202", + "distance_NE": "27.000", + "name": "spc_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x4_wpalx2_acsr_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx6_wpal6_wpal_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x4_acsrx4_wpal_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx4_wpal4_wpal_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-2_acsrxx4_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x4_acsrx1/0_tpx_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x2_acsrx1/0_tpx_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x4_acsrx4_tpx_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.000", + "distance_AE": "32.000", + "distance_AN": "5.5902", + "distance_BC": "2.500", + "distance_BE": "34.000", + "distance_BN": "7.000", + "distance_CE": "32.000", + "distance_CN": "5.2202", + "distance_NE": "27.000", + "name": "spc_3ph_h-2_acsr2_acsr4_acsr4_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.000", + "distance_AE": "32.000", + "distance_AN": "5.5902", + "distance_BC": "2.500", + "distance_BE": "34.000", + "distance_BN": "7.000", + "distance_CE": "32.000", + "distance_CN": "5.2202", + "distance_NE": "27.000", + "name": "spc_3ph_h-397_acsr397_acsr397_acsr2/0_wpal_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x4_acsrx1/0_3w_cs_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "-4.0026", + "name": "spc_1p_1/0_axnj_db_A" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "-4.0026", + "name": "spc_1p_1/0_axnj_db_B" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "-4.0026", + "name": "spc_1p_1/0_axnj_db_C" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-2_acsrxx4_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx4_acsr1/0_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-2_acsrxx2_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-2_acsrxx2_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx4_wpal4_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "0.500", + "distance_AC": "1.000", + "distance_AE": "-4.0026", + "distance_BC": "0.500", + "distance_BE": "-4.0026", + "distance_CE": "-4.0026", + "name": "spc_3p_1/0_axnj_db_ABC" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-4_acsrxx4_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-4_acsrxx4_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-2_acsrxx4/0_tpx_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x4_acsrx4_dpx_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx4_acsr4_tpx_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-4_acsrxx6_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x4_acsrx2_wpal_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x4_wpalx4_acsr_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx4_acsr4_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx4_acsr4_acsr_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx4_acsr4_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx4_wpal1/0_tpx_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AC": "4.000", + "distance_AE": "32.000", + "distance_AN": "5.5902", + "distance_CE": "32.000", + "distance_CN": "5.2202", + "distance_NE": "27.000", + "name": "spc_2ph_h-2_acsrx2_acsr2_acsr_ACN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.000", + "distance_AE": "32.000", + "distance_AN": "5.5902", + "distance_BC": "2.500", + "distance_BE": "34.000", + "distance_BN": "7.000", + "distance_CE": "32.000", + "distance_CN": "5.2202", + "distance_NE": "27.000", + "name": "spc_3ph_h-4_wpal4_wpal4_wpal4_wpal_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-2_acsrxx1/0_tpx_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x2_acsrx1/0_3w_cs_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.000", + "distance_AE": "32.000", + "distance_AN": "5.5902", + "distance_BC": "2.500", + "distance_BE": "34.000", + "distance_BN": "7.000", + "distance_CE": "32.000", + "distance_CN": "5.2202", + "distance_NE": "27.000", + "name": "spc_3ph_h-2/0_acsr2/0_acsr2/0_acsr4_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-4_wpalxx2_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x2_acsrx4_tpx_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "6.4185", + "distance_AC": "10.0066", + "distance_AE": "39.9934", + "distance_AN": "16.0806", + "distance_BC": "6.3929", + "distance_BE": "45.0131", + "distance_BN": "11.2716", + "distance_CE": "50.000", + "distance_CN": "6.1885", + "distance_NE": "56.0039", + "name": "spc_3ph-69kv_397_treewire_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x2_acsrx4_acsr_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-4_wpalxx4_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-2_wpalxx2_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-4_acsrxx2_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-4_acsrxx2_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x4_acsrx4_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x4_acsrx4_acsr_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.000", + "distance_AE": "32.000", + "distance_AN": "5.5902", + "distance_BC": "2.500", + "distance_BE": "34.000", + "distance_BN": "7.000", + "distance_CE": "32.000", + "distance_CN": "5.2202", + "distance_NE": "27.000", + "name": "spc_3ph_h-4_acsr4_acsr4_acsr4_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx2_acsr4_dpx_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x2_acsrx2_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x2_acsrx2_acsr_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x2_acsrx2_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-4_acsrxx4_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx4_acsr2_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-4_wpalxx1/0_tpx_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.000", + "distance_AE": "32.000", + "distance_AN": "5.5902", + "distance_BC": "2.500", + "distance_BE": "34.000", + "distance_BN": "7.000", + "distance_CE": "32.000", + "distance_CN": "5.2202", + "distance_NE": "27.000", + "name": "spc_3ph_h-397_acsr397_acsr397_acsr397_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx2_acsr1/0_tpx_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.000", + "distance_AE": "32.000", + "distance_AN": "5.5902", + "distance_BC": "2.500", + "distance_BE": "34.000", + "distance_BN": "7.000", + "distance_CE": "32.000", + "distance_CN": "5.2202", + "distance_NE": "27.000", + "name": "spc_3ph_h-2_acsr2_acsr2_acsr2_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx4_acsr4_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx4_acsr4_wpal_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-2/0_acsrxx2_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx2/0_acsr1/0_tpx_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.000", + "distance_AE": "32.000", + "distance_AN": "5.5902", + "distance_BC": "2.500", + "distance_BE": "34.000", + "distance_BN": "7.000", + "distance_CE": "32.000", + "distance_CN": "5.2202", + "distance_NE": "27.000", + "name": "spc_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx2_acsr2_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx2_acsr2_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.000", + "distance_AE": "32.000", + "distance_AN": "5.5902", + "distance_BC": "2.500", + "distance_BE": "34.000", + "distance_BN": "7.000", + "distance_CE": "32.000", + "distance_CN": "5.2202", + "distance_NE": "27.000", + "name": "spc_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_wpal_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-4_wpalxx4_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-4_wpalxx4_wpal_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.000", + "distance_AE": "32.000", + "distance_AN": "5.5902", + "distance_BC": "2.500", + "distance_BE": "34.000", + "distance_BN": "7.000", + "distance_CE": "32.000", + "distance_CN": "5.2202", + "distance_NE": "27.000", + "name": "spc_3ph_h-4_acsr4_acsr4_acsr4_tpx_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-4_acsrxx1/0_3w_cs_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "conductor_A": "wire_397_acsr", + "conductor_B": "wire_397_acsr", + "conductor_C": "wire_397_acsr", + "conductor_N": "wire_397_acsr", + "name": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "spacing": "spc_3ph_h-397_acsr397_acsr397_acsr397_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "spacing": "spc_1ph-4_acsrxx4_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_wpal", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-4_wpalxx1/0_tpx_ln5895784-1", + "spacing": "spc_1ph-4_wpalxx1/0_tpx_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-4_acsrxx2_acsr_ln6019479-1", + "spacing": "spc_1ph-4_acsrxx2_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_2_acsr", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "spacing": "spc_1ph-x2_acsrx1/0_tpx_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_2_wpal", + "name": "lcon_1ph-x4_acsrx2_wpal_ln5496577-1", + "spacing": "spc_1ph-x4_acsrx2_wpal_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_2_acsr", + "conductor_N": "wire_1/0_3w_cs", + "name": "lcon_1ph-x2_acsrx1/0_3w_cs_ln6043468-3", + "spacing": "spc_1ph-x2_acsrx1/0_3w_cs_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_6_wpal", + "name": "lcon_1ph-4_acsrxx6_wpal_ln5895785-1", + "spacing": "spc_1ph-4_acsrxx6_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_397_acsr", + "conductor_B": "wire_397_acsr", + "conductor_C": "wire_397_acsr", + "conductor_N": "wire_2/0_wpal", + "name": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_wpal_ln6291244-1", + "spacing": "spc_3ph_h-397_acsr397_acsr397_acsr2/0_wpal_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_4_dpx", + "name": "lcon_1ph-xx2_acsr4_dpx_ln5744331-1", + "spacing": "spc_1ph-xx2_acsr4_dpx_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_1/0_3w_cs", + "name": "lcon_1ph-4_acsrxx1/0_3w_cs_ln5686244-1", + "spacing": "spc_1ph-4_acsrxx1/0_3w_cs_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_wpal", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-4_wpalxx4_wpal_ln6198049-1", + "spacing": "spc_1ph-4_wpalxx4_wpal_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "cncab_1/0_al_15kv_1/3", + "name": "lcon_1p_1/0_axnj_db_ln8945010-1", + "spacing": "spc_1p_1/0_axnj_db_C" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "spacing": "spc_1ph-2_acsrxx1/0_tpx_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "spacing": "spc_1ph-2_acsrxx2_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_B": "wire_4_acsr", + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_tpx", + "name": "lcon_3ph_h-4_acsr4_acsr4_acsr4_tpx_ln5742835-1", + "spacing": "spc_3ph_h-4_acsr4_acsr4_acsr4_tpx_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_1/0_acsr", + "name": "lcon_1ph-xx4_acsr1/0_acsr_ln5852082-1", + "spacing": "spc_1ph-xx4_acsr1/0_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_2_acsr", + "conductor_N": "wire_4_tpx", + "name": "lcon_1ph-x2_acsrx4_tpx_ln6169266-1", + "spacing": "spc_1ph-x2_acsrx4_tpx_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_B": "wire_2_acsr", + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "spacing": "spc_3ph_h-4_acsr2_acsr2_acsr4_wpal_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_wpal", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-xx4_wpal1/0_tpx_ln5956462-1", + "spacing": "spc_1ph-xx4_wpal1/0_tpx_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-xx2_acsr2_acsr_ln6411379-1", + "spacing": "spc_1ph-xx2_acsr2_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2/0_acsr", + "conductor_B": "wire_2/0_acsr", + "conductor_C": "wire_2/0_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr4_acsr_ln5898194-1", + "spacing": "spc_3ph_h-2/0_acsr2/0_acsr2/0_acsr4_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-x4_acsrx1/0_tpx_ln5562952-1", + "spacing": "spc_1ph-x4_acsrx1/0_tpx_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_4/0_tpx", + "name": "lcon_1ph-2_acsrxx4/0_tpx_ln6103927-1", + "spacing": "spc_1ph-2_acsrxx4/0_tpx_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_wpal", + "conductor_N": "wire_2_wpal", + "name": "lcon_1ph-4_wpalxx2_wpal_ln5561444-1", + "spacing": "spc_1ph-4_wpalxx2_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2/0_acsr", + "conductor_B": "wire_2/0_acsr", + "conductor_C": "wire_2/0_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "spacing": "spc_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_wpal", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-x4_wpalx2_acsr_ln5472350-1", + "spacing": "spc_1ph-x4_wpalx2_acsr_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_wpal", + "conductor_N": "wire_2_wpal", + "name": "lcon_1ph-2_wpalxx2_wpal_ln6409800-1", + "spacing": "spc_1ph-2_wpalxx2_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_B": "wire_2_acsr", + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_3ph_h-2_acsr2_acsr4_acsr4_acsr_ln5655838-1", + "spacing": "spc_3ph_h-2_acsr2_acsr4_acsr4_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "spacing": "spc_1ph-xx4_acsr4_wpal_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "cncab_1/0_al_15kv_1/3", + "conductor_B": "cncab_1/0_al_15kv_1/3", + "conductor_C": "cncab_1/0_al_15kv_1/3", + "name": "lcon_3p_1/0_axnj_db_ln8979254-2", + "spacing": "spc_3p_1/0_axnj_db_ABC" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-2_acsrxx4_acsr_ln5589097-1", + "spacing": "spc_1ph-2_acsrxx4_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "spacing": "spc_1ph-xx2_acsr2_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_B": "wire_2_acsr", + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "spacing": "spc_3ph_h-2_acsr2_acsr2_acsr2_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_6_wpal", + "conductor_N": "wire_6_wpal", + "name": "lcon_1ph-xx6_wpal6_wpal_ln6108128-2", + "spacing": "spc_1ph-xx6_wpal6_wpal_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_tpx", + "name": "lcon_1ph-xx4_acsr4_tpx_ln5531226-1", + "spacing": "spc_1ph-xx4_acsr4_tpx_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_wpal", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "spacing": "spc_1ph-xx4_wpal4_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "spacing": "spc_1ph-x4_acsrx4_acsr_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_wpal", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "spacing": "spc_1ph-4_wpalxx4_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-2_acsrxx4_wpal_ln5686245-2", + "spacing": "spc_1ph-2_acsrxx4_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_wpal", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-x4_wpalx1/0_tpx_ln6077771-1", + "spacing": "spc_1ph-x4_wpalx1/0_tpx_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "spacing": "spc_1ph-4_acsrxx4_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_397_aac_treewire", + "conductor_B": "wire_397_aac_treewire", + "conductor_C": "wire_397_aac_treewire", + "conductor_N": "wire_2/0_acsr", + "name": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "spacing": "spc_3ph-69kv_397_treewire_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-xx4_acsr4_acsr_ln5744357-1", + "spacing": "spc_1ph-xx4_acsr4_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_wpal", + "conductor_B": "wire_4_wpal", + "conductor_C": "wire_4_wpal", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_3ph_h-4_wpal4_wpal4_wpal1/0_tpx_ln6411371-1", + "spacing": "spc_3ph_h-4_wpal4_wpal4_wpal1/0_tpx_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_1/0_3w_cs", + "name": "lcon_1ph-x4_acsrx1/0_3w_cs_ln5775368-1", + "spacing": "spc_1ph-x4_acsrx1/0_3w_cs_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_B": "wire_4_acsr", + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "spacing": "spc_3ph_h-4_acsr4_acsr4_acsr4_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-xx2_acsr1/0_tpx_ln6229827-1", + "spacing": "spc_1ph-xx2_acsr1/0_tpx_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "cncab_1/0_al_15kv_1/3", + "name": "lcon_1p_1/0_axnj_db_ln81048087-1", + "spacing": "spc_1p_1/0_axnj_db_B" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "spacing": "spc_1ph-2_acsrxx2_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-x4_acsrx4_acsr_ln5683000-1", + "spacing": "spc_1ph-x4_acsrx4_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_wpal", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "spacing": "spc_1ph-4_wpalxx4_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-xx4_acsr4_wpal_ln5593235-1", + "spacing": "spc_1ph-xx4_acsr4_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_4_dpx", + "name": "lcon_1ph-x4_acsrx4_dpx_ln6506308-1", + "spacing": "spc_1ph-x4_acsrx4_dpx_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_wpal", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "spacing": "spc_1ph-x4_wpalx4_wpal_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-4_acsrxx4_acsr_ln6320366-1", + "spacing": "spc_1ph-4_acsrxx4_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_2_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-x2_acsrx4_acsr_ln6201698-2", + "spacing": "spc_1ph-x2_acsrx4_acsr_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-4_acsrxx2_acsr_ln5775367-1", + "spacing": "spc_1ph-4_acsrxx2_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "spacing": "spc_1ph-x2_acsrx2_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2/0_acsr", + "conductor_B": "wire_2/0_acsr", + "conductor_C": "wire_2/0_acsr", + "conductor_N": "wire_2_wpal", + "name": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_wpal_ln6259996-1", + "spacing": "spc_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_wpal_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2/0_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-2/0_acsrxx2_acsr_ln6129680-2", + "spacing": "spc_1ph-2/0_acsrxx2_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_wpal", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "spacing": "spc_1ph-xx4_wpal4_wpal_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-4_acsrxx1/0_tpx_ln6138596-1", + "spacing": "spc_1ph-4_acsrxx1/0_tpx_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "cncab_1/0_al_15kv_1/3", + "name": "lcon_1p_1/0_axnj_db_ln8979370-1", + "spacing": "spc_1p_1/0_axnj_db_A" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_B": "wire_4_acsr", + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "spacing": "spc_3ph_h-4_acsr4_acsr4_acsr4_wpal_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_2/0_acsr", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-xx2/0_acsr1/0_tpx_ln5866260-1", + "spacing": "spc_1ph-xx2/0_acsr1/0_tpx_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_4_tpx", + "name": "lcon_1ph-x4_acsrx4_tpx_ln5804795-1", + "spacing": "spc_1ph-x4_acsrx4_tpx_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-xx4_acsr4_acsr_ln6138606-1", + "spacing": "spc_1ph-xx4_acsr4_acsr_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "spacing": "spc_1ph-x2_acsrx2_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "spacing": "spc_1ph-x4_acsrx4_wpal_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "spacing": "spc_1ph-x2_acsrx2_acsr_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_wpal", + "conductor_B": "wire_4_wpal", + "conductor_C": "wire_4_wpal", + "conductor_N": "wire_4_wpal", + "name": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "spacing": "spc_3ph_h-4_wpal4_wpal4_wpal4_wpal_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_397_acsr", + "conductor_B": "wire_397_acsr", + "conductor_C": "wire_397_acsr", + "conductor_N": "wire_2/0_acsr", + "name": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "spacing": "spc_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-xx4_acsr2_acsr_ln5741170-3", + "spacing": "spc_1ph-xx4_acsr2_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_wpal", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "spacing": "spc_1ph-x4_wpalx4_acsr_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "spacing": "spc_1ph-xx4_acsr4_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_2ph_h-2_acsrx2_acsr2_acsr_ln5637597-1", + "spacing": "spc_2ph_h-2_acsrx2_acsr2_acsr_ACN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c33": "0.000", + "name": "lcon_cap_1c_PUZ_C", + "z33": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c22": "0.000", + "name": "lcon_cap_3b_PUZ_B", + "z22": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c22": "0.000", + "name": "lcon_cap_1b_PUZ_B", + "z22": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c11": "0.000", + "name": "lcon_cap_3a_PUZ_A", + "z11": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c11": "0.000", + "name": "lcon_cap_1a_PUZ_A", + "z11": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c11": "0.000", + "name": "lcon_cap_2a_PUZ_A", + "z11": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c33": "0.000", + "name": "lcon_cap_3c_PUZ_C", + "z33": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "name": "tcon_4/0triplex_12", + "z11": "2.16454+0.880800j", + "z12": "0.623542+0.673688j", + "z21": "0.623542+0.673688j", + "z22": "2.16454+0.880800j" + }, + "children": [], + "name": "triplex_line_configuration" + }, + { + "attributes": { + "c33": "0.000", + "name": "lcon_cap_2c_PUZ_C", + "z33": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "name": "tcon_750_triplex_12", + "z11": "0.262666+0.146913j", + "z12": "0.123666+0.0353481j", + "z21": "0.123666+0.0353481j", + "z22": "0.262666+0.146913j" + }, + "children": [], + "name": "triplex_line_configuration" + }, + { + "attributes": { + "c22": "0.000", + "name": "lcon_cap_2b_PUZ_B", + "z22": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct100B", + "power_rating": "100.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct250A", + "power_rating": "250.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct250B", + "power_rating": "250.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct250C", + "power_rating": "250.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct25A", + "power_rating": "25.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct25B", + "power_rating": "25.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct25C", + "power_rating": "25.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct75A", + "power_rating": "75.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct75B", + "power_rating": "75.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct75C", + "power_rating": "75.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct50A", + "power_rating": "50.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct50B", + "power_rating": "50.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct50C", + "power_rating": "50.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct5A", + "power_rating": "5.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct5B", + "power_rating": "5.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct5C", + "power_rating": "5.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct15A", + "power_rating": "15.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct15B", + "power_rating": "15.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct15C", + "power_rating": "15.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct37A", + "power_rating": "37.500", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct37B", + "power_rating": "37.500", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct37C", + "power_rating": "37.500", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct10A", + "power_rating": "10.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct10B", + "power_rating": "10.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct10C", + "power_rating": "10.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047671", + "length": "199.6940", + "name": "line_ln6320335-1", + "phases": "AN", + "to": "l2710511" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027080", + "length": "217.0226", + "name": "line_ln6392977-2", + "phases": "AN", + "to": "l3215340" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3215340", + "length": "113.9520", + "name": "line_ln6392977-1", + "phases": "AN", + "to": "m1027087" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069574", + "length": "164.8425", + "name": "line_ln5835159-1", + "phases": "BN", + "to": "l2710530" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047755", + "length": "51.9306", + "name": "line_ln5653456-1", + "phases": "AN", + "to": "l3066812" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026848", + "length": "196.8740", + "name": "line_ln5683825-1", + "phases": "AN", + "to": "l2935557" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p901927", + "length": "53.6051", + "name": "line_ln5621848-2", + "phases": "BN", + "to": "n1136353" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047pv-3", + "length": "347.4188", + "name": "line_ln1047pvfrm-2", + "phases": "ABCN", + "to": "m1047pv-2" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108400", + "length": "274.7637", + "name": "line_ln6422014-1", + "phases": "ABCN", + "to": "m1108404" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047pv-1", + "length": "395.6069", + "name": "line_ln1047pvfrm-1", + "phases": "ABCN", + "to": "m1047520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069582", + "length": "206.9402", + "name": "line_ln5833720-1", + "phases": "BN", + "to": "l2933165" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2726973", + "length": "277.6810", + "name": "line_ln5739188-1", + "phases": "ABCN", + "to": "m1047485" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209797", + "length": "218.5031", + "name": "line_ln6291242-1", + "phases": "ABCN", + "to": "m1209791" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027019", + "length": "198.1320", + "name": "line_ln5593228-1", + "phases": "BN", + "to": "l2785522" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001312", + "length": "158.2381", + "name": "line_ln2001313-1", + "phases": "AN", + "to": "m2001313" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047812", + "length": "71.6005", + "name": "line_ln6137086-2", + "phases": "BN", + "to": "m4350438" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209817", + "length": "82.8487", + "name": "line_ln5742828-1", + "phases": "ABCN", + "to": "l2801909" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001214", + "length": "158.2381", + "name": "line_ln2001215-1", + "phases": "CN", + "to": "m2001215" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069174", + "length": "241.7164", + "name": "line_ln5833622-1", + "phases": "CN", + "to": "l3216347" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2801909", + "length": "227.2727", + "name": "line_ln5742828-2", + "phases": "ABCN", + "to": "m1209814" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010017", + "length": "280.2416", + "name": "line_ln6106583-2", + "phases": "AN", + "to": "l2858175" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2858175", + "length": "15.1668", + "name": "line_ln6106583-3", + "phases": "AN", + "to": "m1027110" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026658", + "length": "350.0012", + "name": "line_ln6439600-1", + "phases": "AN", + "to": "l3172805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027121", + "length": "28.6949", + "name": "line_ln6106583-4", + "phases": "AN", + "to": "n1134469" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1134469", + "length": "1051.9214", + "name": "line_ln6106583-5", + "phases": "AN", + "to": "m1010017" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3037537", + "length": "560.000", + "name": "line_ln5951197-2", + "phases": "BN", + "to": "l3231269" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3048965", + "length": "168.4396", + "name": "line_ln5805761-1", + "phases": "ABCN", + "to": "m1142843" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089177", + "length": "439.2533", + "name": "line_ln5865230-1", + "phases": "ABCN", + "to": "l2822863" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108529", + "length": "20.0056", + "name": "line_ln5563852-1", + "phases": "CN", + "to": "p829796" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1069248", + "length": "823.2027", + "name": "line_ln8979370-1", + "phases": "A", + "to": "l2915534" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l2915534", + "length": "555.2803", + "name": "line_ln8979370-2", + "phases": "A", + "to": "193-48013" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026681", + "length": "211.5975", + "name": "line_ln6047580-2", + "phases": "ABCN", + "to": "l3048221" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1142843", + "length": "32.4347", + "name": "line_ln5746705-1", + "phases": "AN", + "to": "p829976" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2879794", + "length": "110.7480", + "name": "line_ln6109190-1", + "phases": "AN", + "to": "m1142811" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089165", + "length": "141.1667", + "name": "line_ln5804789-1", + "phases": "CN", + "to": "l2748128" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2936275", + "length": "297.8728", + "name": "line_ln6048632-1", + "phases": "BN", + "to": "l3179674" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1140528", + "length": "161.6146", + "name": "line_ln6900591-29", + "phases": "AN", + "to": "l3649297" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2691952", + "length": "7.1516", + "name": "line_ln6505949-1", + "phases": "ABCN", + "to": "m3036170" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3197638", + "length": "200.8744", + "name": "line_ln6290213-1", + "phases": "AN", + "to": "m1026849" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p1123251", + "length": "20.7333", + "name": "line_ln6900591-28", + "phases": "AN", + "to": "n1140528" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3772794", + "length": "200.0169", + "name": "line_ln6900591-27", + "phases": "AN", + "to": "l3649300" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649299", + "length": "12.7263", + "name": "line_ln6900591-26", + "phases": "AN", + "to": "m3772794" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069481", + "length": "32.1703", + "name": "line_ln5565091-1", + "phases": "CN", + "to": "p827507" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649304", + "length": "220.1037", + "name": "line_ln6900591-22", + "phases": "AN", + "to": "l3649305" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2936211", + "length": "265.2143", + "name": "line_ln6018241-1", + "phases": "CN", + "to": "l2842329" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000403", + "length": "158.2381", + "name": "line_ln2000404-1", + "phases": "AN", + "to": "m2000404" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649302", + "length": "205.9075", + "name": "line_ln6900591-20", + "phases": "AN", + "to": "l3649304" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3160100", + "length": "219.3886", + "name": "line_ln5472346-1", + "phases": "BN", + "to": "l3085390" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069731", + "length": "182.6228", + "name": "line_ln5835124-1", + "phases": "BN", + "to": "l2710504" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1089143", + "length": "84.3570", + "name": "line_ln6411382-1", + "phases": "AN", + "to": "m1089144" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2711234", + "length": "389.8882", + "name": "line_ln5654485-1", + "phases": "BN", + "to": "l3198355" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3254207", + "length": "232.5779", + "name": "line_ln5532739-1", + "phases": "AN", + "to": "m1069390" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026942", + "length": "100.0009", + "name": "line_ln5621826-1", + "phases": "AN", + "to": "l3270814" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089155", + "length": "334.0872", + "name": "line_ln5562921-1", + "phases": "CN", + "to": "m1089158" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2860485", + "length": "683.6319", + "name": "line_ln5744361-1", + "phases": "BN", + "to": "l2860506" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1126005", + "length": "264.1840", + "name": "line_ln6351417-1", + "phases": "AN", + "to": "l3011229" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649301", + "length": "206.8914", + "name": "line_ln6900591-14", + "phases": "AN", + "to": "l3649302" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649300", + "length": "200.7040", + "name": "line_ln6900591-12", + "phases": "AN", + "to": "l3649301" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000500", + "length": "487.0451", + "name": "line_ln2000600-1", + "phases": "ABCN", + "to": "m2000600" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1108278", + "length": "377.7532", + "name": "line_ln5987964-1", + "phases": "BN", + "to": "l3179699" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827521", + "length": "29.9894", + "name": "line_ln5955074-3", + "phases": "BN", + "to": "n1139546" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "d5955074-2_int", + "length": "280.7366", + "name": "line_ln5955074-2", + "phases": "BN", + "to": "l2970842" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m3037449", + "length": "60.2699", + "name": "line_ln6170199-2", + "phases": "CN", + "to": "m1108375" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3104131", + "length": "200.5200", + "name": "line_ln5835146-1", + "phases": "AN", + "to": "m1026377" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2879055", + "length": "298.3053", + "name": "line_ln6320322-1", + "phases": "CN", + "to": "l2973144" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142798", + "length": "260.6238", + "name": "line_ln6078773-1", + "phases": "BN", + "to": "m1142801" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047732", + "length": "284.4418", + "name": "line_ln6380810-1", + "phases": "ABCN", + "to": "m1047737" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047613", + "length": "1.2596", + "name": "line_ln6268990-2", + "phases": "CN", + "to": "m1047612" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026907", + "length": "242.8592", + "name": "line_ln5774458-1", + "phases": "ABCN", + "to": "m1026915" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1136995", + "length": "41.4644", + "name": "line_ln6268990-4", + "phases": "CN", + "to": "m1047613" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2954355", + "length": "78.1149", + "name": "line_ln5502544-1", + "phases": "AN", + "to": "m1026665" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1137998", + "length": "78.1837", + "name": "line_ln6318740-3", + "phases": "CN", + "to": "m1026895" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p895409", + "length": "39.6171", + "name": "line_ln6318740-2", + "phases": "CN", + "to": "n1137998" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047615", + "length": "44.2254", + "name": "line_ln6268990-3", + "phases": "CN", + "to": "n1136995" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047623", + "length": "194.1592", + "name": "line_ln6167816-1", + "phases": "AN", + "to": "l3008279" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2730163", + "length": "277.3370", + "name": "line_ln6200527-1", + "phases": "ABCN", + "to": "l2992624" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047780", + "length": "403.1257", + "name": "line_ln5714046-1", + "phases": "BN", + "to": "l3066811" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108381", + "length": "249.1960", + "name": "line_ln6350574-1", + "phases": "ABCN", + "to": "l3254237" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1139552", + "length": "287.6527", + "name": "line_ln5895789-2", + "phases": "ABCN", + "to": "m1026702" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "r18243", + "length": "101.5793", + "name": "line_ln5895789-3", + "phases": "ABCN", + "to": "n1139552" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1209800", + "length": "33.1031", + "name": "line_ln5958865-1", + "phases": "ABCN", + "to": "p829957" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026978", + "length": "14.9607", + "name": "line_ln6169251-1", + "phases": "ABCN", + "to": "m1026979" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108316", + "length": "27.5072", + "name": "line_ln5686489-1", + "phases": "CN", + "to": "196-35541" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026693", + "length": "279.6714", + "name": "line_ln6327237-1", + "phases": "BN", + "to": "m1026699" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166402", + "length": "307.1436", + "name": "line_ln5866187-1", + "phases": "CN", + "to": "l3048889" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026699", + "length": "172.3687", + "name": "line_ln6327237-2", + "phases": "BN", + "to": "m1026704" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047513", + "length": "20.5212", + "name": "line_ln5773033-1", + "phases": "CN", + "to": "p901913" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047358", + "length": "317.3828", + "name": "line_ln5472368-1", + "phases": "AN", + "to": "l2729411" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026485", + "length": "24.1743", + "name": "line_ln5504714-1", + "phases": "BN", + "to": "p827542" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1089204", + "length": "144.0990", + "name": "line_ln5774449-1", + "phases": "AN", + "to": "l3010557" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069560", + "length": "267.1529", + "name": "line_ln5773046-1", + "phases": "BN", + "to": "m1069567" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069551", + "length": "399.6649", + "name": "line_ln5773046-2", + "phases": "BN", + "to": "m1069560" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "d2001201_int", + "length": "158.2381", + "name": "line_ln2001202-1", + "phases": "CN", + "to": "m2001202" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2710542", + "length": "116.0424", + "name": "line_ln6229831-1", + "phases": "BN", + "to": "l2729430" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "q14411", + "length": "148.8129", + "name": "line_ln5956499-3", + "phases": "ABCN", + "to": "m1069428" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "d5804798-3_int", + "length": "101.0477", + "name": "line_ln5804798-3", + "phases": "BN", + "to": "m1047766" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010013", + "length": "179.8845", + "name": "line_ln6379375-1", + "phases": "AN", + "to": "l3120503" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2766749", + "length": "133.6583", + "name": "line_ln5956499-2", + "phases": "ABCN", + "to": "d5956499-2_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047763", + "length": "57.4980", + "name": "line_ln5804798-2", + "phases": "BN", + "to": "n1136030" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3036165", + "length": "214.2790", + "name": "line_ln5986931-2", + "phases": "BN", + "to": "l3235252" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827553", + "length": "17.5673", + "name": "line_ln6110366-1", + "phases": "BN", + "to": "m1047826" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047793", + "length": "21.4713", + "name": "line_ln6108170-1", + "phases": "BN", + "to": "m1047795" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx1/0_tpx_ln6138596-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069390", + "length": "151.3047", + "name": "line_ln6138596-1", + "phases": "AN", + "to": "l2841618" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026800", + "length": "191.5363", + "name": "line_ln5562934-1", + "phases": "ABCN", + "to": "m1026797" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047388", + "length": "161.6154", + "name": "line_ln5623394-1", + "phases": "BN", + "to": "l2729407" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027039", + "length": "15.0026", + "name": "line_ln5806920-1", + "phases": "BN", + "to": "d5806920-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069418", + "length": "287.9597", + "name": "line_ln5926291-1", + "phases": "ABCN", + "to": "m1069417" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1147864", + "length": "225.2904", + "name": "line_ln6411373-3", + "phases": "AN", + "to": "l2710536" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026902", + "length": "34.6914", + "name": "line_ln6411373-2", + "phases": "AN", + "to": "n1147864" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001005", + "length": "158.2381", + "name": "line_ln2001006-1", + "phases": "BN", + "to": "m2001006" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047406", + "length": "95.9172", + "name": "line_ln5472359-1", + "phases": "AN", + "to": "l3216348" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069610", + "length": "199.9990", + "name": "line_ln5650048-1", + "phases": "BN", + "to": "m1069600" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3263051", + "length": "234.3533", + "name": "line_ln5623404-1", + "phases": "CN", + "to": "m1069199" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008733", + "length": "45.0140", + "name": "line_ln5644817-1", + "phases": "BN", + "to": "l3225319" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108375", + "length": "176.6469", + "name": "line_ln6048521-1", + "phases": "CN", + "to": "l3160793" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209791", + "length": "181.2432", + "name": "line_ln5654472-1", + "phases": "ABCN", + "to": "m1209790" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3048937", + "length": "354.9205", + "name": "line_ln5651998-1", + "phases": "CN", + "to": "l3176661" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2841638", + "length": "299.2758", + "name": "line_ln6199531-1", + "phases": "CN", + "to": "l2860492" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026961", + "length": "281.3834", + "name": "line_ln6262263-1", + "phases": "AN", + "to": "l2710516" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026366", + "length": "205.1962", + "name": "line_ln5653465-1", + "phases": "AN", + "to": "l3122824" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p901905", + "length": "84.6481", + "name": "line_ln5682333-1", + "phases": "BN", + "to": "l2804257" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln6138606-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2954350", + "length": "376.7449", + "name": "line_ln6138606-1", + "phases": "BN", + "to": "m1069206" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047669", + "length": "11.1371", + "name": "line_ln5956464-1", + "phases": "ABCN", + "to": "m1047672" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e183493", + "length": "292.8446", + "name": "line_ln6201850-1", + "phases": "ABCN", + "to": "m1125902" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026926", + "length": "46.1475", + "name": "line_ln5926301-1", + "phases": "ABCN", + "to": "m1026927" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089189", + "length": "260.3491", + "name": "line_ln5593219-1", + "phases": "ABCN", + "to": "l2841619" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1139549", + "length": "144.2126", + "name": "line_ln6259994-2", + "phases": "AN", + "to": "l2879074" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009843", + "length": "187.1711", + "name": "line_ln6350552-1", + "phases": "BN", + "to": "l3160108" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026646", + "length": "170.0540", + "name": "line_ln6259994-3", + "phases": "AN", + "to": "n1139549" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p827514", + "length": "19.9923", + "name": "line_ln6352699-1", + "phases": "ABCN", + "to": "m1026876" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1089143", + "length": "243.0012", + "name": "line_ln5604685-1", + "phases": "ABCN", + "to": "m1089145" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e203026", + "length": "890.6524", + "name": "line_ln6044631-1", + "phases": "ABCN", + "to": "m1009650" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026947", + "length": "454.8803", + "name": "line_ln6077775-1", + "phases": "BN", + "to": "m1026946" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1089145", + "length": "242.9986", + "name": "line_ln5604685-2", + "phases": "ABCN", + "to": "l3047289" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3104125", + "length": "125.4820", + "name": "line_ln5502531-1", + "phases": "ABCN", + "to": "m1089131" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108276", + "length": "135.7889", + "name": "line_ln6048641-1", + "phases": "BN", + "to": "l2786273" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1136357", + "length": "131.1798", + "name": "line_ln5651985-3", + "phases": "CN", + "to": "l2897790" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069554", + "length": "109.3238", + "name": "line_ln5653478-1", + "phases": "BN", + "to": "l3160115" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069548", + "length": "61.2269", + "name": "line_ln5651985-2", + "phases": "CN", + "to": "n1136357" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p830058", + "length": "29.0941", + "name": "line_ln5776833-1", + "phases": "CN", + "to": "m1166370" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4_wpal_ln5686245-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "p829961", + "length": "32.4484", + "name": "line_ln5686245-2", + "phases": "AN", + "to": "n1141476" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3027133", + "length": "197.8748", + "name": "line_ln5528079-3", + "phases": "CN", + "to": "m3037453" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4_wpal_ln5686245-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "n1141476", + "length": "250.6023", + "name": "line_ln5686245-3", + "phases": "AN", + "to": "l2692654" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166396", + "length": "220.5660", + "name": "line_ln6324073-1", + "phases": "CN", + "to": "m1166399" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2767342", + "length": "160.3960", + "name": "line_ln5503479-1", + "phases": "AN", + "to": "l2748780" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047471", + "length": "60.3665", + "name": "line_ln6108139-1", + "phases": "BN", + "to": "l3216349" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2804257", + "length": "194.9624", + "name": "line_ln5895776-1", + "phases": "BN", + "to": "l2860485" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047503", + "length": "77.9737", + "name": "line_ln5863706-1", + "phases": "ABCN", + "to": "l2841635" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1134479", + "length": "207.8554", + "name": "line_ln5682346-3", + "phases": "ABCN", + "to": "d5682346-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009834", + "length": "1.000", + "name": "line_ln6259981-1", + "phases": "BN", + "to": "l3178969" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3178969", + "length": "251.3492", + "name": "line_ln6259981-2", + "phases": "BN", + "to": "l2729401" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089207", + "length": "77.7636", + "name": "line_ln6290200-1", + "phases": "ABCN", + "to": "l3160098" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069503", + "length": "92.9115", + "name": "line_ln5682346-2", + "phases": "ABCN", + "to": "n1134479" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108364", + "length": "315.4201", + "name": "line_ln5683812-1", + "phases": "CN", + "to": "l2897766" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3029500", + "length": "299.3577", + "name": "line_ln5835137-1", + "phases": "AN", + "to": "m1026764" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p901932", + "length": "16.3308", + "name": "line_ln6439986-2", + "phases": "CN", + "to": "n1136359" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1136359", + "length": "94.4867", + "name": "line_ln6439986-3", + "phases": "CN", + "to": "l3008237" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6320366-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3010585", + "length": "190.3332", + "name": "line_ln6320366-1", + "phases": "CN", + "to": "m1026798" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000710", + "length": "158.2381", + "name": "line_ln2000711-1", + "phases": "BN", + "to": "m2000711" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069590", + "length": "32.0210", + "name": "line_ln5744352-1", + "phases": "BN", + "to": "l2801902" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3949157", + "length": "345.7758", + "name": "line_ln6991377-17", + "phases": "AN", + "to": "l3728037" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3727708", + "length": "16.6515", + "name": "line_ln6991377-16", + "phases": "AN", + "to": "m3949157" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069551", + "length": "185.1575", + "name": "line_ln5562947-1", + "phases": "BN", + "to": "m1069555" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3728037", + "length": "340.1826", + "name": "line_ln6991377-18", + "phases": "AN", + "to": "m3949154" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln5775367-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "m1126025", + "length": "182.4373", + "name": "line_ln5775367-1", + "phases": "AN", + "to": "l2823545" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3729298", + "length": "195.4934", + "name": "line_ln6991377-13", + "phases": "AN", + "to": "l3727707" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3727707", + "length": "180.7032", + "name": "line_ln6991377-15", + "phases": "AN", + "to": "l3727708" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047819", + "length": "222.4577", + "name": "line_ln6350530-1", + "phases": "BN", + "to": "m1047821" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "n1136353", + "length": "34.7951", + "name": "line_ln5621848-3", + "phases": "BN", + "to": "l2820535" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069627", + "length": "454.5724", + "name": "line_ln6077797-1", + "phases": "BN", + "to": "l2897791" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1009655", + "length": "23.2483", + "name": "line_ln8945010-1", + "phases": "C", + "to": "p827528" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2674027", + "length": "222.7092", + "name": "line_ln5684836-1", + "phases": "ABCN", + "to": "l2692633" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3729297", + "length": "205.3445", + "name": "line_ln6991377-11", + "phases": "AN", + "to": "l3729298" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2001200", + "length": "475.1801", + "name": "line_ln2001300-1", + "phases": "ABCN", + "to": "m2001300" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1126023", + "length": "251.9183", + "name": "line_ln6291153-1", + "phases": "AN", + "to": "m1126017" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "l2763407", + "length": "553.3025", + "name": "line_ln6073917-1", + "phases": "ABCN", + "to": "m1186000" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047750", + "length": "276.6073", + "name": "line_ln5865234-1", + "phases": "AN", + "to": "m1047744" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3085396", + "length": "765.8110", + "name": "line_ln6320331-1", + "phases": "AN", + "to": "l3122813" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000407", + "length": "158.2381", + "name": "line_ln2000408-1", + "phases": "AN", + "to": "m2000408" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009820", + "length": "261.9346", + "name": "line_ln5774489-1", + "phases": "BN", + "to": "l3254234" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "221-311905", + "length": "45.8719", + "name": "line_ln8979254-2", + "phases": "ABC", + "to": "l3215203" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "p850080", + "length": "16.6850", + "name": "line_ln8979254-1", + "phases": "ABC", + "to": "221-311905" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1089103", + "length": "358.9835", + "name": "line_ln6047558-1", + "phases": "BN", + "to": "l2673305" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx4_acsr_ln6201698-2", + "continuous_rating_B": "200.00", + "emergency_rating_B": "200.00", + "from": "p827529", + "length": "14.9005", + "name": "line_ln6201698-2", + "phases": "BN", + "to": "n1136668" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx4_acsr_ln6201698-2", + "continuous_rating_B": "200.00", + "emergency_rating_B": "200.00", + "from": "n1136668", + "length": "142.0386", + "name": "line_ln6201698-3", + "phases": "BN", + "to": "l3029506" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3235249", + "length": "307.3018", + "name": "line_ln6350539-1", + "phases": "AN", + "to": "l2954348" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2954347", + "length": "99.9999", + "name": "line_ln5500962-1", + "phases": "BN", + "to": "m1026953" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2992624", + "length": "167.4908", + "name": "line_ln6170293-1", + "phases": "ABCN", + "to": "m1125919" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026953", + "length": "99.9983", + "name": "line_ln5500962-2", + "phases": "BN", + "to": "l3008232" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047592", + "length": "131.5331", + "name": "line_ln5532748-5", + "phases": "ABCN", + "to": "m3763619" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2917328", + "length": "211.9463", + "name": "line_ln6351511-1", + "phases": "ABCN", + "to": "l2861218" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m3763619", + "length": "138.0636", + "name": "line_ln5532748-6", + "phases": "ABCN", + "to": "m1026830" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069169", + "length": "275.2756", + "name": "line_ln6108126-1", + "phases": "AN", + "to": "l2879064" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln6019479-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1026851", + "length": "22.0635", + "name": "line_ln6019479-1", + "phases": "CN", + "to": "p827536" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m3036164", + "length": "553.8933", + "name": "line_ln5593224-2", + "phases": "BN", + "to": "l3085397" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2860482", + "length": "2024.8548", + "name": "line_ln5744330-1", + "phases": "AN", + "to": "l3254204" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3104154", + "length": "132.6220", + "name": "line_ln5859993-1", + "phases": "ABCN", + "to": "l3104155" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2933120", + "length": "821.7893", + "name": "line_ln5804785-1", + "phases": "CN", + "to": "l3104117" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026940", + "length": "376.8252", + "name": "line_ln6017291-1", + "phases": "BN", + "to": "m1026935" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010011", + "length": "268.9972", + "name": "line_ln6198052-1", + "phases": "AN", + "to": "l3120504" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m3036167", + "length": "10.2360", + "name": "line_ln6505945-1", + "phases": "ABCN", + "to": "l2973156" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "l3207907", + "length": "7.9535", + "name": "line_ln6506307-4", + "phases": "ABCN", + "to": "m3037441" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166386", + "length": "207.0463", + "name": "line_ln6381856-1", + "phases": "CN", + "to": "l3048966" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026826", + "length": "198.3684", + "name": "line_ln5683843-1", + "phases": "CN", + "to": "m1026820" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009843", + "length": "116.6676", + "name": "line_ln6167749-1", + "phases": "BN", + "to": "l3251806" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047340", + "length": "320.4652", + "name": "line_ln6411391-1", + "phases": "AN", + "to": "m1047342" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000700", + "length": "467.5028", + "name": "line_ln2000800-1", + "phases": "ABCN", + "to": "m2000800" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069572", + "length": "129.9611", + "name": "line_ln6320353-1", + "phases": "BN", + "to": "m1069574" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2711225", + "length": "324.5392", + "name": "line_ln6018330-1", + "phases": "CN", + "to": "l3030200" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2973833", + "length": "135.8307", + "name": "line_ln5866308-1", + "phases": "ABCN", + "to": "m1166373" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "d2000701_int", + "length": "158.2381", + "name": "line_ln2000702-1", + "phases": "BN", + "to": "m2000702" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1136366", + "length": "15.5673", + "name": "line_ln5472390-3", + "phases": "ABCN", + "to": "l2916620" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2936271", + "length": "457.8621", + "name": "line_ln5927423-1", + "phases": "ABCN", + "to": "m1142815" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142835", + "length": "122.5707", + "name": "line_ln5896824-1", + "phases": "CN", + "to": "l3104853" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026883", + "length": "202.1878", + "name": "line_ln5653491-1", + "phases": "CN", + "to": "m1026898" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026667", + "length": "181.3996", + "name": "line_ln5956473-1", + "phases": "AN", + "to": "m1026661" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3027122", + "length": "23.6139", + "name": "line_ln5500984-1", + "phases": "AN", + "to": "m1108506" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069632", + "length": "121.5221", + "name": "line_ln5985349-1", + "phases": "BN", + "to": "l2726974" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2726974", + "length": "292.5053", + "name": "line_ln5985349-2", + "phases": "BN", + "to": "l2916618" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1069312", + "length": "24.0663", + "name": "line_ln81018875-1", + "phases": "A", + "to": "p873800" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069518", + "length": "54.0050", + "name": "line_ln5472390-2", + "phases": "ABCN", + "to": "n1136366" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047483", + "length": "25.6840", + "name": "line_ln5958701-1", + "phases": "CN", + "to": "p827505" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1142105", + "length": "37.9834", + "name": "line_ln5500984-3", + "phases": "AN", + "to": "l3027122" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p901946", + "length": "11.6131", + "name": "line_ln5500984-4", + "phases": "AN", + "to": "n1142105" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3225319", + "length": "167.4470", + "name": "line_ln5644817-2", + "phases": "BN", + "to": "l3048201" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026463", + "length": "68.0446", + "name": "line_ln6292462-1", + "phases": "BN", + "to": "p827495" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069469", + "length": "27.1370", + "name": "line_ln5683856-2", + "phases": "AN", + "to": "n1139263" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1139263", + "length": "85.2588", + "name": "line_ln5683856-3", + "phases": "AN", + "to": "l3048227" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047388", + "length": "704.6352", + "name": "line_ln5774454-1", + "phases": "BN", + "to": "l2691942" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047344", + "length": "246.9700", + "name": "line_ln6108148-1", + "phases": "AN", + "to": "l3029499" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx1/0_tpx_ln5562952-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "l2766742", + "length": "296.0435", + "name": "line_ln5562952-1", + "phases": "BN", + "to": "m1009820" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047441", + "length": "199.4172", + "name": "line_ln6380814-1", + "phases": "BN", + "to": "l3197635" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3327097", + "length": "140.9987", + "name": "line_ln6660515-2", + "phases": "BN", + "to": "l3448661" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3066830", + "length": "438.1156", + "name": "line_ln6350570-1", + "phases": "BN", + "to": "l3197660" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1166373", + "length": "30.6673", + "name": "line_ln6412354-1", + "phases": "ABCN", + "to": "m1166374" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047335", + "length": "279.9589", + "name": "line_ln6169255-1", + "phases": "AN", + "to": "l2710519" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln6138606-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069217", + "length": "289.9192", + "name": "line_ln5683821-1", + "phases": "BN", + "to": "l2954350" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3216336", + "length": "219.6505", + "name": "line_ln5926286-1", + "phases": "AN", + "to": "l2691936" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3772794", + "length": "242.3239", + "name": "line_ln6900592-3", + "phases": "AN", + "to": "l3649306" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx6_wpal_ln5895785-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "l2710520", + "length": "140.3767", + "name": "line_ln5895785-1", + "phases": "AN", + "to": "m1069131" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069556", + "length": "21.1804", + "name": "line_ln6258445-1", + "phases": "CN", + "to": "p901932" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047423", + "length": "165.5683", + "name": "line_ln5835142-1", + "phases": "AN", + "to": "m1047420" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "p827580", + "length": "26.2790", + "name": "line_ln5686080-1", + "phases": "ABCN", + "to": "d5686080-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2673300", + "length": "160.3374", + "name": "line_ln5532735-1", + "phases": "BN", + "to": "m1008753" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089205", + "length": "201.2179", + "name": "line_ln6015794-1", + "phases": "AN", + "to": "m1089200" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069555", + "length": "158.7335", + "name": "line_ln5502557-1", + "phases": "BN", + "to": "l3085410" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001205", + "length": "158.2381", + "name": "line_ln2001206-1", + "phases": "CN", + "to": "m2001206" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047292", + "length": "290.6972", + "name": "line_ln6229835-1", + "phases": "ABCN", + "to": "l2691954" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089132", + "length": "154.2096", + "name": "line_ln6077779-1", + "phases": "ABCN", + "to": "l3029503" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026366", + "length": "307.2730", + "name": "line_ln5593237-1", + "phases": "AN", + "to": "l3104131" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1145955", + "length": "44.7302", + "name": "line_ln5744343-3", + "phases": "AN", + "to": "m1026335" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p829974", + "length": "217.0724", + "name": "line_ln5989328-1", + "phases": "AN", + "to": "l2805034" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026468", + "length": "307.9261", + "name": "line_ln6380827-1", + "phases": "BN", + "to": "l2766732" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047324", + "length": "303.7952", + "name": "line_ln5986935-1", + "phases": "ABCN", + "to": "l2897780" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047769", + "length": "536.6278", + "name": "line_ln5954962-1", + "phases": "BN", + "to": "l3197632" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069300", + "length": "773.7466", + "name": "line_ln5637600-1", + "phases": "ABCN", + "to": "m1069310" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026333", + "length": "45.1793", + "name": "line_ln5744343-2", + "phases": "AN", + "to": "n1145955" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "p895114", + "length": "19.4388", + "name": "line_ln5528573-2", + "phases": "AN", + "to": "n1141479" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "n1141479", + "length": "34.1189", + "name": "line_ln5528573-3", + "phases": "AN", + "to": "l3198348" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "m1009715", + "length": "168.9329", + "name": "line_ln5804808-1", + "phases": "AN", + "to": "l3010563" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3122817", + "length": "182.9897", + "name": "line_ln5623400-1", + "phases": "CN", + "to": "l2673314" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069181", + "length": "247.4824", + "name": "line_ln5804794-1", + "phases": "AN", + "to": "l2973151" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009827", + "length": "285.8982", + "name": "line_ln5623390-1", + "phases": "BN", + "to": "m1009832" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1089119", + "length": "22.3474", + "name": "line_ln5625547-1", + "phases": "BN", + "to": "p827521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089165", + "length": "502.0109", + "name": "line_ln5926295-1", + "phases": "CN", + "to": "l3216343" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047325", + "length": "31.5972", + "name": "line_ln5837356-1", + "phases": "AN", + "to": "p827532" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089188", + "length": "217.5801", + "name": "line_ln6229790-1", + "phases": "ABCN", + "to": "m1089189" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026341", + "length": "224.9589", + "name": "line_ln5683830-1", + "phases": "ABCN", + "to": "l2973162" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026829", + "length": "449.6545", + "name": "line_ln5531256-1", + "phases": "ABCN", + "to": "m1026824" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069208", + "length": "363.5149", + "name": "line_ln5865243-1", + "phases": "CN", + "to": "l3010567" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m4362181", + "length": "214.7358", + "name": "line_ln5588016-4", + "phases": "BN", + "to": "l3254214" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2710546", + "length": "84.9655", + "name": "line_ln5588016-3", + "phases": "BN", + "to": "m4362181" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2917330", + "length": "293.7465", + "name": "line_ln5654476-1", + "phases": "AN", + "to": "l2861222" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "d5653469-1_int", + "length": "196.0954", + "name": "line_ln5653469-1", + "phases": "BN", + "to": "l3178981" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3118855", + "length": "165.6336", + "name": "line_ln5769126-1", + "phases": "ABCN", + "to": "l3231255" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2841630", + "length": "93.0966", + "name": "line_ln5926305-1", + "phases": "CN", + "to": "l2954352" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p901913", + "length": "75.8156", + "name": "line_ln5803262-1", + "phases": "CN", + "to": "l3157708" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069513", + "length": "288.9093", + "name": "line_ln5895804-1", + "phases": "ABCN", + "to": "m1069516" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026327", + "length": "834.7717", + "name": "line_ln6320340-1", + "phases": "BN", + "to": "l3197643" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026648", + "length": "171.3321", + "name": "line_ln6229800-1", + "phases": "AN", + "to": "m1026647" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069192", + "length": "303.5315", + "name": "line_ln5562930-1", + "phases": "AN", + "to": "l2991913" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m4113345", + "length": "264.5570", + "name": "line_ln5803262-6", + "phases": "CN", + "to": "l3197640" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047447", + "length": "175.3764", + "name": "line_ln6047567-1", + "phases": "BN", + "to": "l2954349" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108484", + "length": "29.0082", + "name": "line_ln5565229-1", + "phases": "AN", + "to": "p829797" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1136029", + "length": "358.6205", + "name": "line_ln5898058-2", + "phases": "BN", + "to": "m1047767" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3157708", + "length": "46.3637", + "name": "line_ln5803262-7", + "phases": "CN", + "to": "n1137991" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3010563", + "length": "201.8673", + "name": "line_ln6259990-1", + "phases": "AN", + "to": "l2841623" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1137991", + "length": "142.3776", + "name": "line_ln5803262-8", + "phases": "CN", + "to": "m4113345" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827509", + "length": "21.7017", + "name": "line_ln5898058-3", + "phases": "BN", + "to": "n1136029" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209772", + "length": "571.9677", + "name": "line_ln5542283-1", + "phases": "ABCN", + "to": "e192258" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "l2879062", + "length": "295.8508", + "name": "line_ln5956460-1", + "phases": "CN", + "to": "m1089173" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125952", + "length": "18.0264", + "name": "line_ln5591708-1", + "phases": "CN", + "to": "p901936" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1142811", + "length": "169.0989", + "name": "line_ln5745385-1", + "phases": "AN", + "to": "l2992657" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1142874", + "length": "26.4957", + "name": "line_ln6346338-1", + "phases": "CN", + "to": "p895111" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108270", + "length": "404.7947", + "name": "line_ln6199509-1", + "phases": "BN", + "to": "l2785516" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047344", + "length": "184.8542", + "name": "line_ln5532757-1", + "phases": "AN", + "to": "l3066819" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108524", + "length": "115.7786", + "name": "line_ln5679770-2", + "phases": "CN", + "to": "n1136031" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1136031", + "length": "193.1453", + "name": "line_ln5679770-3", + "phases": "CN", + "to": "l3197625" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125961", + "length": "21.8286", + "name": "line_ln5864458-1", + "phases": "CN", + "to": "m1125959" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089179", + "length": "373.4157", + "name": "line_ln5835133-1", + "phases": "ABCN", + "to": "m1069451" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2748133", + "length": "279.8956", + "name": "line_ln6108135-1", + "phases": "CN", + "to": "l3085399" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026309", + "length": "716.4803", + "name": "line_ln5774467-1", + "phases": "BN", + "to": "l2804260" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3104114", + "length": "182.2345", + "name": "line_ln5593215-1", + "phases": "BN", + "to": "m1009824" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108526", + "length": "329.1713", + "name": "line_ln6380805-1", + "phases": "ABCN", + "to": "m1089199" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3082993", + "length": "199.9984", + "name": "line_ln6492183-1", + "phases": "AN", + "to": "m3016088" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125914", + "length": "14.3215", + "name": "line_ln6049963-1", + "phases": "BN", + "to": "p829963" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2823544", + "length": "101.4394", + "name": "line_ln6379357-1", + "phases": "AN", + "to": "m1126016" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "e182722", + "length": "43.8206", + "name": "line_ln5534966-2", + "phases": "AN", + "to": "n1138596" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2001400", + "length": "620.8775", + "name": "line_ln2001500-1", + "phases": "ABCN", + "to": "m2001500" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000910", + "length": "158.2381", + "name": "line_ln2000911-1", + "phases": "CN", + "to": "m2000911" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m4113348", + "length": "27.2254", + "name": "line_ln8979343-3", + "phases": "C", + "to": "p850400" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2691938", + "length": "145.1821", + "name": "line_ln6169242-1", + "phases": "BN", + "to": "m1009840" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125987", + "length": "221.2588", + "name": "line_ln6413700-1", + "phases": "ABCN", + "to": "m1125989" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1138596", + "length": "80.3522", + "name": "line_ln5534966-3", + "phases": "AN", + "to": "l3254207" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069181", + "length": "60.3124", + "name": "line_ln5532744-1", + "phases": "AN", + "to": "l2804253" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108353", + "length": "279.4725", + "name": "line_ln5895772-1", + "phases": "CN", + "to": "l3048205" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166387", + "length": "383.3727", + "name": "line_ln5624375-1", + "phases": "CN", + "to": "l3198347" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027073", + "length": "151.8441", + "name": "line_ln6320362-1", + "phases": "CN", + "to": "l2879089" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027004", + "length": "125.0111", + "name": "line_ln5986922-1", + "phases": "BN", + "to": "l2804248" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3214071", + "length": "176.9274", + "name": "line_ln5561442-2", + "phases": "ABCN", + "to": "m1125952" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000714", + "length": "158.2381", + "name": "line_ln2000715-1", + "phases": "BN", + "to": "m2000715" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125947", + "length": "192.6220", + "name": "line_ln5561442-1", + "phases": "ABCN", + "to": "l3214071" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069629", + "length": "479.9941", + "name": "line_ln5894218-1", + "phases": "BN", + "to": "m1069640" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069550", + "length": "13.6101", + "name": "line_ln5956482-1", + "phases": "BN", + "to": "m1069551" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108268", + "length": "1395.4919", + "name": "line_ln5500971-1", + "phases": "BN", + "to": "m1108267" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1149233", + "length": "319.5395", + "name": "line_ln5896833-1", + "phases": "ABCN", + "to": "l3048965" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001303", + "length": "158.2381", + "name": "line_ln2001304-1", + "phases": "AN", + "to": "m2001304" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1139550", + "length": "79.6687", + "name": "line_ln6017301-3", + "phases": "AN", + "to": "l3197639" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m3036169", + "length": "76.7350", + "name": "line_ln6017301-4", + "phases": "AN", + "to": "n1139550" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069564", + "length": "21.4534", + "name": "line_ln6076243-1", + "phases": "AN", + "to": "p901933" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3011298", + "length": "262.9788", + "name": "line_ln6351524-1", + "phases": "ABCN", + "to": "m1108295" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3342743", + "length": "926.5728", + "name": "line_ln6140775-3", + "phases": "CN", + "to": "m1026883" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p827511", + "length": "38.9976", + "name": "line_ln6140775-4", + "phases": "CN", + "to": "n1140527" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3104830", + "length": "244.3330", + "name": "line_ln5563901-2", + "phases": "ABCN", + "to": "n1142104" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1140527", + "length": "462.6533", + "name": "line_ln6140775-5", + "phases": "CN", + "to": "l3342743" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1142104", + "length": "149.2205", + "name": "line_ln5563901-3", + "phases": "ABCN", + "to": "m1108500" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047406", + "length": "215.2559", + "name": "line_ln6108134-1", + "phases": "AN", + "to": "l2691947" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2879069", + "length": "401.0548", + "name": "line_ln6350535-1", + "phases": "AN", + "to": "l3197633" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047404", + "length": "203.9987", + "name": "line_ln5480058-1", + "phases": "AN", + "to": "l3091052" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008752", + "length": "98.9431", + "name": "line_ln6047554-1", + "phases": "BN", + "to": "l3085389" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "n1139251", + "length": "572.7039", + "name": "line_ln8979344-4", + "phases": "C", + "to": "m1069249" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "221-311595", + "length": "12.6733", + "name": "line_ln8979344-3", + "phases": "C", + "to": "n1139251" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l3101194", + "length": "732.6219", + "name": "line_ln81001717-1", + "phases": "A", + "to": "l2862616" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186065", + "length": "226.6728", + "name": "line_ln5927383-1", + "phases": "ABCN", + "to": "m1186064" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p850400", + "length": "22.9941", + "name": "line_ln8979344-1", + "phases": "C", + "to": "221-311595" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p901936", + "length": "116.9831", + "name": "line_ln6258453-1", + "phases": "CN", + "to": "m1125955" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069462", + "length": "98.5273", + "name": "line_ln5958706-1", + "phases": "BN", + "to": "l3216342" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008743", + "length": "270.0996", + "name": "line_ln6017283-1", + "phases": "BN", + "to": "m1008742" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2935554", + "length": "143.9965", + "name": "line_ln6169247-1", + "phases": "ABCN", + "to": "m1047713" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3217053", + "length": "8.7063", + "name": "line_ln6506315-4", + "phases": "CN", + "to": "m3037455" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069155", + "length": "329.8877", + "name": "line_ln5532743-1", + "phases": "ABCN", + "to": "m1069154" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3122816", + "length": "1669.6394", + "name": "line_ln6290209-1", + "phases": "ABCN", + "to": "l3160103" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009828", + "length": "223.8775", + "name": "line_ln5865226-1", + "phases": "BN", + "to": "l2766715" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3159448", + "length": "8.1644", + "name": "line_ln5965099-2", + "phases": "ABCN", + "to": "m1069311" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5744357-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069224", + "length": "392.4829", + "name": "line_ln5744357-1", + "phases": "AN", + "to": "m1069218" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m3037540", + "length": "191.4795", + "name": "line_ln5593220-2", + "phases": "CN", + "to": "l2822862" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089198", + "length": "580.8660", + "name": "line_ln6290199-1", + "phases": "ABCN", + "to": "m1089201" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m4113347", + "length": "76.1845", + "name": "line_ln5965099-8", + "phases": "ABCN", + "to": "n1138607" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1138607", + "length": "211.0022", + "name": "line_ln5965099-9", + "phases": "ABCN", + "to": "l3159448" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3120534", + "length": "341.3378", + "name": "line_ln5501092-1", + "phases": "AN", + "to": "m1126020" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026796", + "length": "99.7777", + "name": "line_ln5498301-1", + "phases": "ABCN", + "to": "m1026795" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001308", + "length": "158.2381", + "name": "line_ln2001309-1", + "phases": "AN", + "to": "m2001309" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026895", + "length": "199.9986", + "name": "line_ln5863691-1", + "phases": "CN", + "to": "l2820528" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2820528", + "length": "99.9972", + "name": "line_ln5863691-2", + "phases": "CN", + "to": "l2745799" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108372", + "length": "220.9181", + "name": "line_ln6230694-1", + "phases": "BN", + "to": "l3179607" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026906", + "length": "407.0203", + "name": "line_ln6260001-1", + "phases": "AN", + "to": "l2916598" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108484", + "length": "340.7855", + "name": "line_ln5503480-1", + "phases": "ABCN", + "to": "l2730106" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026886", + "length": "31.7445", + "name": "line_ln6225673-1", + "phases": "CN", + "to": "p895409" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2897772", + "length": "185.1879", + "name": "line_ln6318859-1", + "phases": "AN", + "to": "l3101814" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069738", + "length": "314.0668", + "name": "line_ln5878934-1", + "phases": "BN", + "to": "l3234185" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069640", + "length": "308.8674", + "name": "line_ln6015793-1", + "phases": "BN", + "to": "l3160113" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069514", + "length": "23.7761", + "name": "line_ln6171506-1", + "phases": "AN", + "to": "p827548" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p895105", + "length": "32.4333", + "name": "line_ln6134417-2", + "phases": "AN", + "to": "n1142110" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1142110", + "length": "29.2652", + "name": "line_ln6134417-3", + "phases": "AN", + "to": "l2673316" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137961", + "length": "404.0814", + "name": "line_ln6301772-3", + "phases": "AN", + "to": "l3104133" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026935", + "length": "300.0929", + "name": "line_ln5865239-1", + "phases": "BN", + "to": "l2935556" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026320", + "length": "240.9853", + "name": "line_ln6138611-1", + "phases": "BN", + "to": "l3104130" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3160108", + "length": "192.4131", + "name": "line_ln6108156-1", + "phases": "BN", + "to": "l3029510" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047314", + "length": "63.3856", + "name": "line_ln6301772-2", + "phases": "AN", + "to": "n1137961" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026830", + "length": "9.0484", + "name": "line_ln5928545-1", + "phases": "CN", + "to": "p827511" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069192", + "length": "180.7519", + "name": "line_ln5804793-1", + "phases": "AN", + "to": "m1069191" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209753", + "length": "675.8795", + "name": "line_ln5866267-1", + "phases": "BN", + "to": "m1209748" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108315", + "length": "38.0823", + "name": "line_ln6332133-1", + "phases": "CN", + "to": "p860843" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3949157", + "length": "160.9836", + "name": "line_ln6991379-2", + "phases": "AN", + "to": "l3727711" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026744", + "length": "552.4778", + "name": "line_ln5835150-1", + "phases": "ABCN", + "to": "m1026724" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166356", + "length": "167.1554", + "name": "line_ln6078810-1", + "phases": "AN", + "to": "l2730187" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3727711", + "length": "139.6416", + "name": "line_ln6991379-4", + "phases": "AN", + "to": "l3727712" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047552", + "length": "28.7631", + "name": "line_ln6292466-1", + "phases": "BN", + "to": "p827529" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1027002", + "length": "300.7900", + "name": "line_ln6199518-1", + "phases": "ABCN", + "to": "l2673313" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1125979", + "length": "298.1567", + "name": "line_ln5957413-1", + "phases": "CN", + "to": "l2917255" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2839305", + "length": "331.0724", + "name": "line_ln5712498-1", + "phases": "AN", + "to": "m1166361" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1136363", + "length": "184.1536", + "name": "line_ln6290240-2", + "phases": "ABCN", + "to": "r18245" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166386", + "length": "656.1756", + "name": "line_ln6261020-1", + "phases": "CN", + "to": "l2898515" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069564", + "length": "117.8675", + "name": "line_ln6290240-3", + "phases": "ABCN", + "to": "n1136363" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2879074", + "length": "242.9692", + "name": "line_ln5714050-1", + "phases": "AN", + "to": "l3122820" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047368", + "length": "208.7599", + "name": "line_ln6350548-1", + "phases": "BN", + "to": "l2748130" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069202", + "length": "69.2928", + "name": "line_ln6017296-1", + "phases": "CN", + "to": "l2785524" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3160103", + "length": "78.8841", + "name": "line_ln5744335-1", + "phases": "ABCN", + "to": "m1026950" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026670", + "length": "156.9190", + "name": "line_ln6380818-1", + "phases": "ABCN", + "to": "m1026662" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3231255", + "length": "84.3936", + "name": "line_ln5527264-8", + "phases": "ABCN", + "to": "n1144663" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1144663", + "length": "83.5482", + "name": "line_ln5527264-7", + "phases": "ABCN", + "to": "m1089215" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3254234", + "length": "271.8348", + "name": "line_ln6077802-1", + "phases": "BN", + "to": "l3104114" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2973150", + "length": "310.8869", + "name": "line_ln5774450-1", + "phases": "AN", + "to": "m1047733" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000705", + "length": "158.2381", + "name": "line_ln2000706-1", + "phases": "BN", + "to": "m2000706" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069310", + "length": "1.8394", + "name": "line_ln5486729-1", + "phases": "ABCN", + "to": "m1069311" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2785546", + "length": "390.6958", + "name": "line_ln6376200-2", + "phases": "CN", + "to": "m1026810" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1108380", + "length": "21.4618", + "name": "line_ln81048087-1", + "phases": "B", + "to": "p904452" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "d2000901_int", + "length": "158.2381", + "name": "line_ln2000902-1", + "phases": "CN", + "to": "m2000902" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2822865", + "length": "253.7941", + "name": "line_ln6411368-1", + "phases": "CN", + "to": "l2916606" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047750", + "length": "621.1769", + "name": "line_ln6349051-1", + "phases": "AN", + "to": "l2708293" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3082983", + "length": "75.8287", + "name": "line_ln6228303-1", + "phases": "BN", + "to": "m1069588" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089120", + "length": "190.0732", + "name": "line_ln5472360-1", + "phases": "ABCN", + "to": "m1089119" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "e206614", + "length": "76.2763", + "name": "line_ln6228303-2", + "phases": "BN", + "to": "l3082983" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001010", + "length": "158.2381", + "name": "line_ln2001011-1", + "phases": "BN", + "to": "m2001011" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166355", + "length": "367.4939", + "name": "line_ln6015891-1", + "phases": "AN", + "to": "l2858200" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009838", + "length": "133.9208", + "name": "line_ln6108121-1", + "phases": "BN", + "to": "l2804245" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108526", + "length": "31.5597", + "name": "line_ln6437384-1", + "phases": "CN", + "to": "p895075" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3729981", + "length": "109.9996", + "name": "line_ln6879075-2", + "phases": "AN", + "to": "l3632979" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069213", + "length": "516.1740", + "name": "line_ln6259999-1", + "phases": "ABCN", + "to": "m1069215" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026783", + "length": "96.2012", + "name": "line_ln6259999-2", + "phases": "AN", + "to": "n1140524" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1140524", + "length": "385.6779", + "name": "line_ln6259999-3", + "phases": "AN", + "to": "l3197641" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3066821", + "length": "208.2708", + "name": "line_ln5804812-1", + "phases": "AN", + "to": "m1009691" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026660", + "length": "1114.9021", + "name": "line_ln5895781-1", + "phases": "AN", + "to": "l3160106" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069384", + "length": "252.7979", + "name": "line_ln5683808-1", + "phases": "AN", + "to": "l2785514" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069208", + "length": "464.4419", + "name": "line_ln5593233-1", + "phases": "ABCN", + "to": "m1069213" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142880", + "length": "400.7440", + "name": "line_ln5803293-1", + "phases": "CN", + "to": "l2764411" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2764411", + "length": "180.1956", + "name": "line_ln5803293-2", + "phases": "CN", + "to": "l2767343" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026357", + "length": "191.9472", + "name": "line_ln5653492-1", + "phases": "CN", + "to": "l3178997" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026823", + "length": "214.1239", + "name": "line_ln6047598-1", + "phases": "CN", + "to": "l2879087" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m4122658", + "length": "5.4763", + "name": "line_ln5591731-3", + "phases": "ABCN", + "to": "l2933135" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108311", + "length": "291.4256", + "name": "line_ln6170302-1", + "phases": "ABCN", + "to": "d6170302-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2973151", + "length": "251.8477", + "name": "line_ln5472351-1", + "phases": "AN", + "to": "m1069187" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010015", + "length": "266.9984", + "name": "line_ln6409799-1", + "phases": "AN", + "to": "m1010014" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026972", + "length": "199.0720", + "name": "line_ln5926299-1", + "phases": "BN", + "to": "l2860483" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047471", + "length": "249.8715", + "name": "line_ln5532787-1", + "phases": "BN", + "to": "l2973180" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p829975", + "length": "40.8586", + "name": "line_ln6352834-1", + "phases": "CN", + "to": "l3160871" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108345", + "length": "127.0213", + "name": "line_ln5715018-1", + "phases": "CN", + "to": "m1108347" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr1/0_tpx_ln6229827-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027066", + "length": "40.200", + "name": "line_ln6229827-1", + "phases": "CN", + "to": "l2841645" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108535", + "length": "999.0619", + "name": "line_ln6167731-2", + "phases": "ABCN", + "to": "m1108534" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1139539", + "length": "387.1667", + "name": "line_ln5926309-3", + "phases": "AN", + "to": "l2710520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m3763623", + "length": "469.3288", + "name": "line_ln81353936-2", + "phases": "C", + "to": "l3645811" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3197631", + "length": "173.5395", + "name": "line_ln6047563-1", + "phases": "AN", + "to": "l2748127" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4_wpal_ln5686245-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "m1125919", + "length": "34.2754", + "name": "line_ln6171683-1", + "phases": "AN", + "to": "p829961" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l3645811", + "length": "18.7425", + "name": "line_ln81353936-3", + "phases": "C", + "to": "193-103041" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108534", + "length": "421.7653", + "name": "line_ln6167731-1", + "phases": "ABCN", + "to": "m1108526" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026656", + "length": "612.1344", + "name": "line_ln6322630-1", + "phases": "AN", + "to": "l2729428" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1137989", + "length": "118.0485", + "name": "line_ln5502526-3", + "phases": "CN", + "to": "l3122814" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047737", + "length": "38.6335", + "name": "line_ln5502526-2", + "phases": "CN", + "to": "n1137989" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1125974", + "length": "131.4407", + "name": "line_ln6260930-1", + "phases": "CN", + "to": "m1125979" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026925", + "length": "51.1042", + "name": "line_ln5986927-1", + "phases": "AN", + "to": "l2916599" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3027157", + "length": "362.4135", + "name": "line_ln6076346-1", + "phases": "ABCN", + "to": "l2973155" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069135", + "length": "94.7900", + "name": "line_ln5926309-2", + "phases": "AN", + "to": "n1139539" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000914", + "length": "158.2381", + "name": "line_ln2000915-1", + "phases": "CN", + "to": "m2000915" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_3w_cs_ln6043468-3", + "continuous_rating_B": "200.00", + "emergency_rating_B": "200.00", + "from": "n1142106", + "length": "85.9263", + "name": "line_ln6043468-3", + "phases": "BN", + "to": "l2936213" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_3w_cs_ln6043468-3", + "continuous_rating_B": "200.00", + "emergency_rating_B": "200.00", + "from": "p895082", + "length": "54.9478", + "name": "line_ln6043468-2", + "phases": "BN", + "to": "n1142106" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047338", + "length": "495.8364", + "name": "line_ln6169256-1", + "phases": "AN", + "to": "l2691953" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3254217", + "length": "202.9635", + "name": "line_ln6108143-1", + "phases": "ABCN", + "to": "m1026800" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108328", + "length": "119.5824", + "name": "line_ln6076248-1", + "phases": "CN", + "to": "l2767414" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069463", + "length": "7.6540", + "name": "line_ln5746549-1", + "phases": "BN", + "to": "m1069462" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009832", + "length": "118.2637", + "name": "line_ln6199505-1", + "phases": "BN", + "to": "l2860479" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1089113", + "length": "249.3881", + "name": "line_ln5835141-1", + "phases": "BN", + "to": "l2691946" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069565", + "length": "58.9521", + "name": "line_ln5472386-1", + "phases": "BN", + "to": "l3178988" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137003", + "length": "21.4357", + "name": "line_ln6229795-2", + "phases": "AN", + "to": "l2935555" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009784", + "length": "199.5001", + "name": "line_ln5501004-1", + "phases": "ABCN", + "to": "m1009770" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047713", + "length": "31.5486", + "name": "line_ln6229795-3", + "phases": "AN", + "to": "n1137003" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125978", + "length": "254.6899", + "name": "line_ln6286261-1", + "phases": "BN", + "to": "m1125982" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3197641", + "length": "427.7555", + "name": "line_ln5502539-1", + "phases": "AN", + "to": "l2973161" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3104155", + "length": "209.1141", + "name": "line_ln5562961-1", + "phases": "ABCN", + "to": "m1069456" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2973153", + "length": "34.5424", + "name": "line_ln6380809-2", + "phases": "ABCN", + "to": "n1136998" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125994", + "length": "349.3076", + "name": "line_ln5775438-1", + "phases": "ABCN", + "to": "m1125997" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069175", + "length": "251.0187", + "name": "line_ln5774463-1", + "phases": "CN", + "to": "l3197637" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047490", + "length": "237.7077", + "name": "line_ln6047576-1", + "phases": "ABCN", + "to": "l2726973" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026907", + "length": "270.2730", + "name": "line_ln5916435-1", + "phases": "BN", + "to": "p875742" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2990828", + "length": "700.7450", + "name": "line_ln8979259-1", + "phases": "ABCN", + "to": "l2841619" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026702", + "length": "163.7076", + "name": "line_ln5653470-1", + "phases": "ABCN", + "to": "l2729414" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p860843", + "length": "130.5385", + "name": "line_ln5957502-1", + "phases": "CN", + "to": "l3179682" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108335", + "length": "657.9772", + "name": "line_ln5625542-1", + "phases": "CN", + "to": "m1108340" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166393", + "length": "405.4388", + "name": "line_ln5894226-3", + "phases": "CN", + "to": "l2745811" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2727008", + "length": "614.1295", + "name": "line_ln6440071-1", + "phases": "BN", + "to": "m1069629" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125905", + "length": "431.2216", + "name": "line_ln6170292-1", + "phases": "BN", + "to": "l2917310" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047368", + "length": "138.7250", + "name": "line_ln5472373-1", + "phases": "BN", + "to": "l2785528" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1136998", + "length": "219.2522", + "name": "line_ln6380809-3", + "phases": "ABCN", + "to": "m1047669" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2745811", + "length": "178.5924", + "name": "line_ln6228316-5", + "phases": "CN", + "to": "m4122657" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047580", + "length": "22.8381", + "name": "line_ln5843536-1", + "phases": "ABCN", + "to": "p828362" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026344", + "length": "966.6990", + "name": "line_ln5804803-1", + "phases": "AN", + "to": "m1026364" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108302", + "length": "115.4989", + "name": "line_ln6164818-1", + "phases": "BN", + "to": "l3236011" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009771", + "length": "244.9402", + "name": "line_ln6167753-1", + "phases": "BN", + "to": "l2914323" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026363", + "length": "293.3935", + "name": "line_ln6229805-1", + "phases": "CN", + "to": "l2897779" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047346", + "length": "141.5543", + "name": "line_ln5865248-1", + "phases": "ABCN", + "to": "m1047345" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008753", + "length": "283.0691", + "name": "line_ln5623389-1", + "phases": "BN", + "to": "l3141390" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx1/0_tpx_ln5562952-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1069555", + "length": "148.6485", + "name": "line_ln5593246-1", + "phases": "BN", + "to": "m1069557" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2933135", + "length": "246.4160", + "name": "line_ln5591731-1", + "phases": "ABCN", + "to": "m1108484" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3083019", + "length": "94.2325", + "name": "line_ln6106658-1", + "phases": "AN", + "to": "m1027080" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142818", + "length": "305.6182", + "name": "line_ln6200532-1", + "phases": "ABCN", + "to": "l2955074" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008743", + "length": "216.4264", + "name": "line_ln5804780-1", + "phases": "BN", + "to": "l3104115" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069597", + "length": "333.5780", + "name": "line_ln6108165-1", + "phases": "BN", + "to": "l3197653" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2804283", + "length": "441.2577", + "name": "line_ln6017328-1", + "phases": "AN", + "to": "l2916627" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1136660", + "length": "129.9708", + "name": "line_ln5532752-3", + "phases": "AN", + "to": "l3010568" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047534", + "length": "32.5950", + "name": "line_ln5532752-2", + "phases": "AN", + "to": "n1136660" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3254218", + "length": "233.8074", + "name": "line_ln6199527-1", + "phases": "ABCN", + "to": "l2860490" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108356", + "length": "227.8037", + "name": "line_ln6139656-1", + "phases": "CN", + "to": "l2842390" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2804272", + "length": "260.7050", + "name": "line_ln6229818-1", + "phases": "BN", + "to": "l2841641" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m3327098", + "length": "655.5251", + "name": "line_ln6108130-6", + "phases": "BN", + "to": "l2691943" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3178974", + "length": "236.0199", + "name": "line_ln6108130-5", + "phases": "BN", + "to": "m3327098" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089158", + "length": "590.3205", + "name": "line_ln5956459-1", + "phases": "CN", + "to": "m1089162" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "d5712587-2_int", + "length": "308.5341", + "name": "line_ln5712587-2", + "phases": "AN", + "to": "l3083019" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027056", + "length": "104.1847", + "name": "line_ln5712587-3", + "phases": "AN", + "to": "n1144667" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069487", + "length": "224.9077", + "name": "line_ln6017287-1", + "phases": "CN", + "to": "l2954344" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009832", + "length": "312.9267", + "name": "line_ln5744326-1", + "phases": "BN", + "to": "m1009838" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1089213", + "length": "30.6809", + "name": "line_ln5861081-1", + "phases": "CN", + "to": "p895089" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089196", + "length": "350.5924", + "name": "line_ln5653452-1", + "phases": "ABCN", + "to": "m1089198" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047484", + "length": "193.8633", + "name": "line_ln6290205-1", + "phases": "ABCN", + "to": "l3010560" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089187", + "length": "180.2454", + "name": "line_ln6311089-1", + "phases": "ABCN", + "to": "m1089186" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1144668", + "length": "97.1474", + "name": "line_ln5965099-11", + "phases": "ABCN", + "to": "m4113347" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001210", + "length": "158.2381", + "name": "line_ln2001211-1", + "phases": "CN", + "to": "m2001211" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069350", + "length": "87.7562", + "name": "line_ln5965099-10", + "phases": "ABCN", + "to": "n1144668" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209758", + "length": "397.2803", + "name": "line_ln5624380-1", + "phases": "BN", + "to": "m1209753" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4_acsr_ln5589097-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "p895112", + "length": "84.0031", + "name": "line_ln5589097-1", + "phases": "AN", + "to": "l3048962" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089204", + "length": "176.4241", + "name": "line_ln5620694-1", + "phases": "AN", + "to": "l3157167" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2767340", + "length": "6.3565", + "name": "line_ln6506311-4", + "phases": "ABCN", + "to": "m3037449" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047766", + "length": "180.8842", + "name": "line_ln5683817-1", + "phases": "BN", + "to": "l3216344" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142851", + "length": "45.4595", + "name": "line_ln5558790-1", + "phases": "ABCN", + "to": "196-31070" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2991907", + "length": "187.6227", + "name": "line_ln6199514-1", + "phases": "AN", + "to": "m1069192" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069730", + "length": "117.5775", + "name": "line_ln5636753-1", + "phases": "BN", + "to": "l3159037" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108493", + "length": "122.0679", + "name": "line_ln6321372-3", + "phases": "ABCN", + "to": "n1142103" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p829986", + "length": "70.4096", + "name": "line_ln5837516-1", + "phases": "AN", + "to": "m1125904" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1142103", + "length": "36.7077", + "name": "line_ln6321372-2", + "phases": "ABCN", + "to": "l3104830" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166394", + "length": "216.4705", + "name": "line_ln6230698-1", + "phases": "CN", + "to": "m1166398" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3552667", + "length": "653.2207", + "name": "line_ln5987955-3", + "phases": "CN", + "to": "l3160862" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1142873", + "length": "181.4936", + "name": "line_ln5987955-2", + "phases": "CN", + "to": "l3552667" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2970845", + "length": "288.1765", + "name": "line_ln5501096-1", + "phases": "BN", + "to": "l2897771" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2955074", + "length": "292.5181", + "name": "line_ln5594239-1", + "phases": "ABCN", + "to": "l3030199" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047824", + "length": "1364.0031", + "name": "line_ln6350531-1", + "phases": "BN", + "to": "m1047834" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "m1047522", + "length": "29.5395", + "name": "line_ln6411386-2", + "phases": "AN", + "to": "n1136664" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069588", + "length": "37.5536", + "name": "line_ln6077796-1", + "phases": "BN", + "to": "l2804270" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "n1136664", + "length": "26.6857", + "name": "line_ln6411386-3", + "phases": "AN", + "to": "l3085401" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026931", + "length": "184.8143", + "name": "line_ln5472342-1", + "phases": "AN", + "to": "l3216337" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2804248", + "length": "194.8036", + "name": "line_ln5835128-1", + "phases": "BN", + "to": "m1027005" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3216348", + "length": "617.8429", + "name": "line_ln6320339-1", + "phases": "AN", + "to": "l2841627" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3047060", + "length": "266.5589", + "name": "line_ln6153059-1", + "phases": "ABCN", + "to": "l3048221" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4_wpal_ln5686245-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "l2692654", + "length": "7.7822", + "name": "line_ln5957492-1", + "phases": "AN", + "to": "m1125929" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069464", + "length": "263.5708", + "name": "line_ln5593251-1", + "phases": "ABCN", + "to": "m1069461" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_3w_cs_ln6043468-3", + "continuous_rating_B": "200.00", + "emergency_rating_B": "200.00", + "from": "m1108532", + "length": "35.7986", + "name": "line_ln5830952-1", + "phases": "BN", + "to": "p895082" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827506", + "length": "23.1305", + "name": "line_ln6171502-1", + "phases": "AN", + "to": "m1069469" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m3763619", + "length": "47.1994", + "name": "line_ln6896673-6", + "phases": "ABCN", + "to": "m3763624" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026877", + "length": "402.1833", + "name": "line_ln6138615-1", + "phases": "AN", + "to": "l2729413" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m3763624", + "length": "17.9002", + "name": "line_ln6896673-7", + "phases": "ABCN", + "to": "m3763618" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1137001", + "length": "162.8399", + "name": "line_ln5924696-3", + "phases": "AN", + "to": "l2929261" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000905", + "length": "158.2381", + "name": "line_ln2000906-1", + "phases": "CN", + "to": "m2000906" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047702", + "length": "139.9706", + "name": "line_ln5924696-2", + "phases": "AN", + "to": "n1137001" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047485", + "length": "645.7020", + "name": "line_ln5829831-1", + "phases": "ABCN", + "to": "l3122821" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1108395", + "length": "282.4792", + "name": "line_ln6364659-1", + "phases": "ABCN", + "to": "l2728247" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047835", + "length": "635.6389", + "name": "line_ln5926290-1", + "phases": "BN", + "to": "m1047836" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3195327", + "length": "226.1117", + "name": "line_ln6258471-1", + "phases": "AN", + "to": "l3139103" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p827575", + "length": "16.6823", + "name": "line_ln5776673-1", + "phases": "CN", + "to": "m1069437" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026463", + "length": "134.3368", + "name": "line_ln6380799-1", + "phases": "BN", + "to": "m1026468" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047309", + "length": "14.9972", + "name": "line_ln6049825-1", + "phases": "ABCN", + "to": "d6049825-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209788", + "length": "351.7394", + "name": "line_ln6351519-1", + "phases": "ABCN", + "to": "m1209787" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047335", + "length": "194.8645", + "name": "line_ln6077783-1", + "phases": "AN", + "to": "l2954354" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166400", + "length": "241.9037", + "name": "line_ln6103754-1", + "phases": "CN", + "to": "l3179637" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069376", + "length": "31.5847", + "name": "line_ln5867449-1", + "phases": "ABCN", + "to": "p827563" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l3645809", + "length": "484.3841", + "name": "line_ln81354564-8", + "phases": "C", + "to": "l3645810" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln6019479-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "l2914324", + "length": "351.8392", + "name": "line_ln6047585-1", + "phases": "CN", + "to": "m1026805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3104122", + "length": "289.7381", + "name": "line_ln5986962-1", + "phases": "AN", + "to": "l2804283" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m4113347", + "length": "49.2996", + "name": "line_ln7061777-3", + "phases": "CN", + "to": "n1138606" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827573", + "length": "69.0895", + "name": "line_ln6383061-1", + "phases": "BN", + "to": "l2710542" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p1121283", + "length": "10.6117", + "name": "line_ln81354564-4", + "phases": "C", + "to": "221-559682" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2991919", + "length": "279.8266", + "name": "line_ln5744339-1", + "phases": "AN", + "to": "m1026361" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089162", + "length": "354.6057", + "name": "line_ln6320326-1", + "phases": "CN", + "to": "l3197626" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1136671", + "length": "140.1646", + "name": "line_ln5752776-3", + "phases": "ABCN", + "to": "m1047593" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "p828362", + "length": "20.4457", + "name": "line_ln5752776-2", + "phases": "ABCN", + "to": "n1136671" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1136669", + "length": "198.7252", + "name": "line_ln6350544-3", + "phases": "ABCN", + "to": "l3103822" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047552", + "length": "94.0267", + "name": "line_ln6350544-2", + "phases": "ABCN", + "to": "n1136669" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2897779", + "length": "316.7869", + "name": "line_ln5714054-1", + "phases": "CN", + "to": "l2804261" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1089097", + "length": "468.9415", + "name": "line_ln5803267-1", + "phases": "BN", + "to": "m1108268" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1138606", + "length": "105.8303", + "name": "line_ln7061777-4", + "phases": "CN", + "to": "m1069335" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p827507", + "length": "36.8432", + "name": "line_ln6079949-2", + "phases": "CN", + "to": "n1137956" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3216346", + "length": "430.9737", + "name": "line_ln5621834-1", + "phases": "ABCN", + "to": "l2858163" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1137956", + "length": "166.6514", + "name": "line_ln6079949-3", + "phases": "CN", + "to": "l3141396" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l3645810", + "length": "32.1743", + "name": "line_ln81354564-9", + "phases": "C", + "to": "m3763623" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069457", + "length": "35.8999", + "name": "line_ln6352701-1", + "phases": "ABCN", + "to": "e182745" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001014", + "length": "158.2381", + "name": "line_ln2001015-1", + "phases": "BN", + "to": "m2001015" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2954348", + "length": "255.8138", + "name": "line_ln5562926-1", + "phases": "AN", + "to": "l2841615" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3066812", + "length": "227.1708", + "name": "line_ln5926300-1", + "phases": "AN", + "to": "l2841622" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089141", + "length": "362.7016", + "name": "line_ln6259995-1", + "phases": "ABCN", + "to": "l3160107" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069364", + "length": "151.5872", + "name": "line_ln6411364-1", + "phases": "CN", + "to": "m1069365" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047434", + "length": "275.1566", + "name": "line_ln5472364-1", + "phases": "AN", + "to": "m1047435" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2710514", + "length": "504.4597", + "name": "line_ln5623417-1", + "phases": "BN", + "to": "m1047787" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l2916625", + "length": "456.9982", + "name": "line_ln81048230-1", + "phases": "B", + "to": "l3139598" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026366", + "length": "196.5563", + "name": "line_ln6290218-1", + "phases": "AN", + "to": "l2860489" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p859135", + "length": "22.2726", + "name": "line_ln6288693-1", + "phases": "AN", + "to": "m1047702" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047737", + "length": "531.9166", + "name": "line_ln5742898-1", + "phases": "ABCN", + "to": "l3027157" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026777", + "length": "202.1688", + "name": "line_ln5773980-1", + "phases": "CN", + "to": "l3233353" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2001000", + "length": "421.2904", + "name": "line_ln2001100-1", + "phases": "ABCN", + "to": "m2001100" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089096", + "length": "286.9073", + "name": "line_ln5683804-1", + "phases": "CN", + "to": "m1089093" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l2763811", + "length": "330.7410", + "name": "line_ln81043320-2", + "phases": "A", + "to": "l2763812" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2952003", + "length": "351.8623", + "name": "line_ln5561437-1", + "phases": "ABCN", + "to": "m1108381" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l2763812", + "length": "607.6806", + "name": "line_ln81043320-3", + "phases": "A", + "to": "l2951995" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1069328", + "length": "629.7497", + "name": "line_ln81043320-1", + "phases": "A", + "to": "l2763811" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l2951995", + "length": "496.5919", + "name": "line_ln81043320-4", + "phases": "A", + "to": "l3101194" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026939", + "length": "80.6309", + "name": "line_ln5623398-1", + "phases": "BN", + "to": "l3104124" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_3", + "length": "2460.6299", + "name": "line_hvmv69s1s2-3", + "phases": "ABCN", + "to": "hvmv69s1s2_4" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_2", + "length": "2460.6299", + "name": "line_hvmv69s1s2-2", + "phases": "ABCN", + "to": "hvmv69s1s2_3" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_5", + "length": "6561.6798", + "name": "line_hvmv69s1s2-5", + "phases": "ABCN", + "to": "hvmv69s1s2_6" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_4", + "length": "6561.6798", + "name": "line_hvmv69s1s2-4", + "phases": "ABCN", + "to": "hvmv69s1s2_5" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_1", + "length": "3280.8399", + "name": "line_hvmv69s1s2-1", + "phases": "ABCN", + "to": "hvmv69s1s2_2" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "d2001001_int", + "length": "158.2381", + "name": "line_ln2001002-1", + "phases": "BN", + "to": "m2001002" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2691973", + "length": "111.7040", + "name": "line_ln5865270-1", + "phases": "AN", + "to": "m1026890" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2691944", + "length": "297.4028", + "name": "line_ln5472355-1", + "phases": "AN", + "to": "l2673312" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047420", + "length": "438.4849", + "name": "line_ln6411377-1", + "phases": "AN", + "to": "l2820556" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026347", + "length": "167.1517", + "name": "line_ln5623408-1", + "phases": "ABCN", + "to": "m1026341" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026760", + "length": "377.7376", + "name": "line_ln6229809-1", + "phases": "ABCN", + "to": "m1026744" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3048890", + "length": "203.4246", + "name": "line_ln6048525-1", + "phases": "CN", + "to": "m1166402" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m3036170", + "length": "53.3630", + "name": "line_ln6505950-1", + "phases": "ABCN", + "to": "m1026670" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186064", + "length": "16.8845", + "name": "line_ln5654480-1", + "phases": "ABCN", + "to": "m1186063" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069428", + "length": "251.5122", + "name": "line_ln6047604-1", + "phases": "ABCN", + "to": "m1069424" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108361", + "length": "417.5564", + "name": "line_ln6199558-1", + "phases": "CN", + "to": "m1089155" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2673326", + "length": "145.2524", + "name": "line_ln6320348-1", + "phases": "BN", + "to": "l2691938" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026848", + "length": "222.8653", + "name": "line_ln5653461-1", + "phases": "AN", + "to": "m1026847" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1209823", + "length": "302.2674", + "name": "line_ln5624291-1", + "phases": "ABCN", + "to": "m1209824" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3008279", + "length": "304.0445", + "name": "line_ln5712578-1", + "phases": "AN", + "to": "l2785537" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p901912", + "length": "122.7824", + "name": "line_ln6349077-1", + "phases": "BN", + "to": "l3195365" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_7", + "length": "3280.8399", + "name": "line_hvmv69s1s2-7", + "phases": "ABCN", + "to": "hvmv69s1s2_8" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_6", + "length": "6561.6798", + "name": "line_hvmv69s1s2-6", + "phases": "ABCN", + "to": "hvmv69s1s2_7" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1089132", + "length": "124.7876", + "name": "line_ln5956468-1", + "phases": "CN", + "to": "l2691950" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108489", + "length": "80.6557", + "name": "line_ln5533710-1", + "phases": "AN", + "to": "m1108492" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_9", + "length": "3280.8399", + "name": "line_hvmv69s1s2-9", + "phases": "ABCN", + "to": "hvmv69s1s2_10" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_8", + "length": "3280.8399", + "name": "line_hvmv69s1s2-8", + "phases": "ABCN", + "to": "hvmv69s1s2_9" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108490", + "length": "144.7282", + "name": "line_ln5927298-1", + "phases": "ABCN", + "to": "l3142049" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1139259", + "length": "116.8984", + "name": "line_ln5744370-3", + "phases": "CN", + "to": "l2710543" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1108501", + "length": "188.2163", + "name": "line_ln6137015-1", + "phases": "AN", + "to": "m1108499" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827554", + "length": "25.8487", + "name": "line_ln6258440-1", + "phases": "BN", + "to": "m1047769" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069437", + "length": "148.7518", + "name": "line_ln5744370-2", + "phases": "CN", + "to": "n1139259" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047403", + "length": "225.0011", + "name": "line_ln6207101-1", + "phases": "AN", + "to": "m1047404" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047497", + "length": "26.1309", + "name": "line_ln5682337-1", + "phases": "BN", + "to": "p901912" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3178971", + "length": "130.6121", + "name": "line_ln6138602-1", + "phases": "AN", + "to": "l2879067" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2691939", + "length": "204.2736", + "name": "line_ln5714041-1", + "phases": "BN", + "to": "l2860478" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6320366-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026792", + "length": "567.0685", + "name": "line_ln5652982-1", + "phases": "CN", + "to": "l2821010" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108295", + "length": "274.7327", + "name": "line_ln6109158-1", + "phases": "ABCN", + "to": "l2936279" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026662", + "length": "107.8891", + "name": "line_ln6199523-2", + "phases": "CN", + "to": "n1140831" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1140831", + "length": "400.8076", + "name": "line_ln6199523-3", + "phases": "CN", + "to": "l3141402" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026874", + "length": "341.4809", + "name": "line_ln6229799-1", + "phases": "AN", + "to": "l3197638" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3784018", + "length": "158.5263", + "name": "line_ln6077815-5", + "phases": "ABCN", + "to": "n1136028" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2973155", + "length": "209.9994", + "name": "line_ln6077815-4", + "phases": "ABCN", + "to": "l3784018" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l3214549", + "length": "26.2528", + "name": "line_ln81048110-3", + "phases": "A", + "to": "m1108393" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l2802481", + "length": "292.0375", + "name": "line_ln81048110-2", + "phases": "A", + "to": "l3214549" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1136028", + "length": "25.5993", + "name": "line_ln6077815-3", + "phases": "ABCN", + "to": "l2876797" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1136365", + "length": "97.8384", + "name": "line_ln5714063-2", + "phases": "ABCN", + "to": "m1069517" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069516", + "length": "168.6767", + "name": "line_ln5714063-3", + "phases": "ABCN", + "to": "n1136365" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1108423", + "length": "135.1265", + "name": "line_ln81048110-1", + "phases": "A", + "to": "l2802481" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1009698", + "length": "165.6349", + "name": "line_ln5773028-1", + "phases": "AN", + "to": "l3156034" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125982", + "length": "200.0005", + "name": "line_ln5588822-1", + "phases": "BN", + "to": "l3029055" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125944", + "length": "569.2057", + "name": "line_ln6348948-1", + "phases": "ABCN", + "to": "m1125947" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069613", + "length": "324.3558", + "name": "line_ln6290227-1", + "phases": "BN", + "to": "m1069597" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2842384", + "length": "222.3513", + "name": "line_ln5805762-1", + "phases": "ABCN", + "to": "m1149236" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000411", + "length": "158.2381", + "name": "line_ln2000412-1", + "phases": "AN", + "to": "m2000412" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3101827", + "length": "493.8388", + "name": "line_ln5591811-1", + "phases": "CN", + "to": "m1108540" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069169", + "length": "36.8585", + "name": "line_ln6413565-1", + "phases": "AN", + "to": "p827508" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1134476", + "length": "130.9107", + "name": "line_ln6247127-2", + "phases": "ABCN", + "to": "l3066814" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069499", + "length": "110.8892", + "name": "line_ln6247127-3", + "phases": "ABCN", + "to": "n1134476" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125940", + "length": "582.4009", + "name": "line_ln5775469-1", + "phases": "BN", + "to": "l3254915" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1125994", + "length": "11.1985", + "name": "line_ln5867591-1", + "phases": "ABCN", + "to": "d5867591-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "l3253570", + "length": "291.0369", + "name": "line_ln6359077-2", + "phases": "ABCN", + "to": "l2937757" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "l2937757", + "length": "265.2627", + "name": "line_ln6359077-1", + "phases": "ABCN", + "to": "l3067448" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008742", + "length": "91.2244", + "name": "line_ln5895768-1", + "phases": "BN", + "to": "l3029495" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047732", + "length": "39.2111", + "name": "line_ln5682448-2", + "phases": "CN", + "to": "n1137987" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1137987", + "length": "128.2705", + "name": "line_ln5682448-3", + "phases": "CN", + "to": "l3027156" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026941", + "length": "382.5806", + "name": "line_ln6077770-1", + "phases": "AN", + "to": "l3197618" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009726", + "length": "238.6456", + "name": "line_ln5833652-1", + "phases": "ABCN", + "to": "m1009724" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "196-29520", + "length": "212.1015", + "name": "line_ln5800830-1", + "phases": "ABCN", + "to": "l3160109" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069505", + "length": "102.7858", + "name": "line_ln5653479-1", + "phases": "ABCN", + "to": "m1069509" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p901941", + "length": "160.9522", + "name": "line_ln5651988-1", + "phases": "AN", + "to": "l3251799" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047826", + "length": "194.0111", + "name": "line_ln5742816-1", + "phases": "BN", + "to": "m1047825" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3036162", + "length": "189.5831", + "name": "line_ln5563909-2", + "phases": "BN", + "to": "l2879753" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2/0_acsr1/0_tpx_ln5866260-1", + "continuous_rating_C": "225.00", + "emergency_rating_C": "300.00", + "from": "m1142839", + "length": "137.9641", + "name": "line_ln5866260-1", + "phases": "CN", + "to": "l3067507" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2710508", + "length": "455.9082", + "name": "line_ln5562920-1", + "phases": "BN", + "to": "l2822860" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "d6138609-1_int", + "length": "213.3883", + "name": "line_ln6138609-1", + "phases": "ABCN", + "to": "l2691951" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026997", + "length": "69.2830", + "name": "line_ln5744360-1", + "phases": "BN", + "to": "l3216361" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5744357-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3178977", + "length": "195.6623", + "name": "line_ln5895777-1", + "phases": "AN", + "to": "l3160105" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1125905", + "length": "797.7942", + "name": "line_ln6505937-2", + "phases": "BN", + "to": "l3142079" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1138593", + "length": "134.7077", + "name": "line_ln6411394-3", + "phases": "AN", + "to": "l2804262" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026859", + "length": "55.9744", + "name": "line_ln6411394-2", + "phases": "AN", + "to": "n1138593" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108261", + "length": "160.2717", + "name": "line_ln6320323-1", + "phases": "BN", + "to": "m1108260" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026387", + "length": "309.9874", + "name": "line_ln5835147-1", + "phases": "AN", + "to": "l3085402" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1142819", + "length": "8.2335", + "name": "line_ln5625715-1", + "phases": "BN", + "to": "p829960" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3160123", + "length": "301.0830", + "name": "line_ln6199556-1", + "phases": "AN", + "to": "l2897805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069469", + "length": "70.0389", + "name": "line_ln5683813-1", + "phases": "AN", + "to": "m1069467" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1047612", + "length": "17.6235", + "name": "line_ln8961760-1", + "phases": "C", + "to": "p828360" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026872", + "length": "299.2513", + "name": "line_ln5502543-2", + "phases": "ABCN", + "to": "d5502543-2_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "p827530", + "length": "22.3769", + "name": "line_ln8945013-1", + "phases": "A", + "to": "221-240991" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3179678", + "length": "386.3635", + "name": "line_ln6079946-1", + "phases": "ABCN", + "to": "l2804249" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3195315", + "length": "276.1570", + "name": "line_ln6015788-2", + "phases": "AN", + "to": "m1069181" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209752", + "length": "516.5925", + "name": "line_ln6200528-1", + "phases": "BN", + "to": "m1209751" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089203", + "length": "183.0138", + "name": "line_ln5986921-1", + "phases": "ABCN", + "to": "m1089207" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069191", + "length": "155.4463", + "name": "line_ln6015788-1", + "phases": "AN", + "to": "l3195315" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2804250", + "length": "226.7636", + "name": "line_ln5531326-1", + "phases": "CN", + "to": "l2820583" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2804256", + "length": "177.0438", + "name": "line_ln6169250-1", + "phases": "ABCN", + "to": "m1026960" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1140819", + "length": "88.3550", + "name": "line_ln6347196-2", + "phases": "ABCN", + "to": "m1026700" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2955047", + "length": "156.3391", + "name": "line_ln5594212-1", + "phases": "ABCN", + "to": "l3179646" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p827501", + "length": "14.1267", + "name": "line_ln6231992-3", + "phases": "ABCN", + "to": "n1140516" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069564", + "length": "125.9561", + "name": "line_ln6041764-1", + "phases": "AN", + "to": "l3104144" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2973167", + "length": "226.3412", + "name": "line_ln6347196-3", + "phases": "ABCN", + "to": "n1140819" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1140516", + "length": "413.3409", + "name": "line_ln6231992-2", + "phases": "ABCN", + "to": "m1089176" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1108258", + "length": "149.9981", + "name": "line_ln5500978-1", + "phases": "BN", + "to": "l3195318" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047825", + "length": "282.3593", + "name": "line_ln5742816-2", + "phases": "BN", + "to": "m1069731" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3030203", + "length": "177.7100", + "name": "line_ln5957496-1", + "phases": "CN", + "to": "l3179673" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027013", + "length": "33.0816", + "name": "line_ln5863699-1", + "phases": "BN", + "to": "p901905" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001300", + "length": "158.2381", + "name": "line_ln2001301-1", + "phases": "AN", + "to": "m2001301" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2952007", + "length": "415.1787", + "name": "line_ln5894230-1", + "phases": "CN", + "to": "l2861158" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3104134", + "length": "152.5305", + "name": "line_ln5472369-1", + "phases": "ABCN", + "to": "m1047346" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m3037455", + "length": "233.9571", + "name": "line_ln5927379-2", + "phases": "CN", + "to": "l3217052" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069148", + "length": "90.2965", + "name": "line_ln5865231-1", + "phases": "CN", + "to": "l2785518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166395", + "length": "25.3822", + "name": "line_ln6142227-1", + "phases": "CN", + "to": "m1166396" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026854", + "length": "430.5370", + "name": "line_ln6380822-1", + "phases": "ABCN", + "to": "m1026852" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "d5653457-1_int", + "length": "281.1952", + "name": "line_ln5653457-1", + "phases": "ABCN", + "to": "m1026891" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069557", + "length": "231.7329", + "name": "line_ln5502556-1", + "phases": "BN", + "to": "m1069558" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1142099", + "length": "114.4182", + "name": "line_ln5920279-4", + "phases": "ABCN", + "to": "n1142100" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3178978", + "length": "545.1464", + "name": "line_ln5683826-1", + "phases": "AN", + "to": "m1047432" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089115", + "length": "235.6243", + "name": "line_ln6199521-1", + "phases": "CN", + "to": "l2991911" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1142100", + "length": "43.6121", + "name": "line_ln5920279-2", + "phases": "ABCN", + "to": "m1108490" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001202", + "length": "158.2381", + "name": "line_ln2001203-1", + "phases": "CN", + "to": "m2001203" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2730106", + "length": "73.3892", + "name": "line_ln5920279-5", + "phases": "ABCN", + "to": "n1142099" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p827576", + "length": "31.5525", + "name": "line_ln5746550-2", + "phases": "BN", + "to": "n1139256" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108402", + "length": "194.7087", + "name": "line_ln6422013-1", + "phases": "ABCN", + "to": "m1108403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026784", + "length": "51.5380", + "name": "line_ln5562933-3", + "phases": "CN", + "to": "n1140523" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1140523", + "length": "71.7126", + "name": "line_ln5562933-2", + "phases": "CN", + "to": "l2766724" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "n1139256", + "length": "208.8205", + "name": "line_ln5746550-3", + "phases": "BN", + "to": "l2973178" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5744357-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069213", + "length": "134.2713", + "name": "line_ln5623401-1", + "phases": "AN", + "to": "l3178977" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2973144", + "length": "550.6881", + "name": "line_ln5706733-1", + "phases": "CN", + "to": "l2724120" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1009720", + "length": "319.3397", + "name": "line_ln5804809-1", + "phases": "AN", + "to": "l3178982" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108368", + "length": "230.8129", + "name": "line_ln5926294-1", + "phases": "CN", + "to": "l3085393" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001313", + "length": "158.2381", + "name": "line_ln2001314-1", + "phases": "AN", + "to": "m2001314" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3235242", + "length": "451.5061", + "name": "line_ln5623391-1", + "phases": "CN", + "to": "m1089195" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2724120", + "length": "16.7527", + "name": "line_ln5706733-2", + "phases": "CN", + "to": "m1069149" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1108433", + "length": "438.1140", + "name": "line_ln81048090-1", + "phases": "B", + "to": "228-1048090-1_int" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001006", + "length": "158.2381", + "name": "line_ln2001007-1", + "phases": "BN", + "to": "m2001007" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010011", + "length": "265.9987", + "name": "line_ln6106584-1", + "phases": "AN", + "to": "m1010008" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1009809", + "length": "296.3194", + "name": "line_ln6077787-1", + "phases": "CN", + "to": "l2710525" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108507", + "length": "203.9994", + "name": "line_ln6206103-1", + "phases": "AN", + "to": "l3108449" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047442", + "length": "211.6151", + "name": "line_ln5472356-1", + "phases": "BN", + "to": "l3235250" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "150.00", + "continuous_rating_B": "150.00", + "continuous_rating_C": "150.00", + "emergency_rating_A": "150.00", + "emergency_rating_B": "150.00", + "emergency_rating_C": "150.00", + "from": "m1047672", + "length": "126.3833", + "name": "line_ln6411372-1", + "phases": "ABCN", + "to": "l2822866" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047728", + "length": "311.3993", + "name": "line_ln6108129-1", + "phases": "BN", + "to": "l2804255" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_2ph_h-2_acsrx2_acsr2_acsr_ln5637597-1", + "continuous_rating_A": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_C": "175.00", + "from": "m1069311", + "length": "271.5456", + "name": "line_ln5637597-1", + "phases": "ACN", + "to": "m1069285" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_wpalxx2_wpal_ln6409800-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1009726", + "length": "128.3298", + "name": "line_ln6409800-1", + "phases": "AN", + "to": "l3101789" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1069250", + "length": "67.4379", + "name": "line_ln8979371-1", + "phases": "C", + "to": "l2690868" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2690868", + "length": "37.6003", + "name": "line_ln8979371-2", + "phases": "C", + "to": "228-979371-2_int" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026330", + "length": "98.7141", + "name": "line_ln6047581-1", + "phases": "BN", + "to": "l2766726" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009840", + "length": "179.8843", + "name": "line_ln5502521-1", + "phases": "BN", + "to": "l2991901" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142863", + "length": "220.3141", + "name": "line_ln5836178-1", + "phases": "ABCN", + "to": "m1142865" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026925", + "length": "361.9230", + "name": "line_ln5926304-1", + "phases": "AN", + "to": "l3235249" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047722", + "length": "115.9987", + "name": "line_ln5863709-1", + "phases": "BN", + "to": "l3214064" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026949", + "length": "285.9999", + "name": "line_ln6259991-1", + "phases": "BN", + "to": "m1026951" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3104117", + "length": "412.6218", + "name": "line_ln5593218-1", + "phases": "CN", + "to": "m1069494" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000402", + "length": "158.2381", + "name": "line_ln2000403-1", + "phases": "AN", + "to": "m2000403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "630.00", + "continuous_rating_B": "630.00", + "continuous_rating_C": "630.00", + "emergency_rating_A": "630.00", + "emergency_rating_B": "630.00", + "emergency_rating_C": "630.00", + "from": "m1142843", + "length": "245.0563", + "name": "line_ln6381853-1", + "phases": "ABCN", + "to": "l2955077" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069412", + "length": "202.6285", + "name": "line_ln5502530-1", + "phases": "BN", + "to": "l3066813" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1147858", + "length": "173.5152", + "name": "line_ln5943422-4", + "phases": "CN", + "to": "l2991933" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2746587", + "length": "74.8762", + "name": "line_ln5943422-3", + "phases": "CN", + "to": "n1147858" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3216338", + "length": "192.1953", + "name": "line_ln6380800-1", + "phases": "BN", + "to": "l2973146" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p859694", + "length": "52.8032", + "name": "line_ln5943422-1", + "phases": "CN", + "to": "l2746587" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3198355", + "length": "363.5686", + "name": "line_ln6048642-1", + "phases": "BN", + "to": "l2805037" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026487", + "length": "31.3441", + "name": "line_ln5956476-1", + "phases": "BN", + "to": "l2897784" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009855", + "length": "384.1764", + "name": "line_ln6138618-1", + "phases": "BN", + "to": "l2991927" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5744357-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2860486", + "length": "331.2041", + "name": "line_ln6350540-1", + "phases": "AN", + "to": "l3141399" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1166377", + "length": "110.7603", + "name": "line_ln5992960-1", + "phases": "ABCN", + "to": "m1166376" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026726", + "length": "129.8445", + "name": "line_ln6286965-1", + "phases": "ABCN", + "to": "l2814529" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m3032980", + "length": "844.6338", + "name": "line_ln6504020-2", + "phases": "ABCN", + "to": "m3032977" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln6019479-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1026826", + "length": "274.2567", + "name": "line_ln6258470-1", + "phases": "CN", + "to": "l2952013" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3254206", + "length": "162.4430", + "name": "line_ln6259982-1", + "phases": "BN", + "to": "m1009827" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2729409", + "length": "284.6575", + "name": "line_ln5835138-1", + "phases": "BN", + "to": "l2841624" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047312", + "length": "49.7678", + "name": "line_ln6320367-3", + "phases": "ABCN", + "to": "n1137960" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047713", + "length": "361.5376", + "name": "line_ln6132680-1", + "phases": "ABCN", + "to": "m1047720" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1137960", + "length": "82.5199", + "name": "line_ln6320367-2", + "phases": "ABCN", + "to": "m1047309" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166362", + "length": "338.9136", + "name": "line_ln6078774-1", + "phases": "AN", + "to": "m1166355" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1138599", + "length": "207.3272", + "name": "line_ln6375549-3", + "phases": "ABCN", + "to": "l3181545" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649297", + "length": "208.8374", + "name": "line_ln6900591-6", + "phases": "AN", + "to": "l3649298" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069376", + "length": "72.1641", + "name": "line_ln6375549-4", + "phases": "ABCN", + "to": "n1138599" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1138603", + "length": "72.4415", + "name": "line_ln6375549-5", + "phases": "ABCN", + "to": "l3125349" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2991914", + "length": "116.9621", + "name": "line_ln5651975-1", + "phases": "ABCN", + "to": "m1047503" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186der480-1", + "length": "1640.4199", + "name": "line_ln1186der-1", + "phases": "ABCN", + "to": "m1186der-1" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3181545", + "length": "257.6932", + "name": "line_ln6375549-6", + "phases": "ABCN", + "to": "n1138603" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026906", + "length": "603.8226", + "name": "line_ln5683857-1", + "phases": "AN", + "to": "l2691973" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649298", + "length": "212.0840", + "name": "line_ln6900591-8", + "phases": "AN", + "to": "l3649299" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186der480-1", + "length": "1640.4199", + "name": "line_ln1186der-2", + "phases": "ABCN", + "to": "m1186der-2" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186der480-1", + "length": "1640.4199", + "name": "line_ln1186der-3", + "phases": "ABCN", + "to": "m1186der-3" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1047371", + "length": "8.0701", + "name": "line_ln8968081-1", + "phases": "B", + "to": "p841985" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026997", + "length": "197.8808", + "name": "line_ln5653488-1", + "phases": "ABCN", + "to": "m1027000" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000709", + "length": "158.2381", + "name": "line_ln2000710-1", + "phases": "BN", + "to": "m2000710" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069526", + "length": "126.3206", + "name": "line_ln5562946-1", + "phases": "BN", + "to": "l2673331" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089173", + "length": "275.8782", + "name": "line_ln5714045-1", + "phases": "CN", + "to": "l2673307" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2897790", + "length": "231.0816", + "name": "line_ln5744351-1", + "phases": "CN", + "to": "l2935566" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2861218", + "length": "522.7618", + "name": "line_ln5958866-1", + "phases": "ABCN", + "to": "d5958866-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026364", + "length": "196.0519", + "name": "line_ln5895786-1", + "phases": "AN", + "to": "l3010570" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026357", + "length": "97.0941", + "name": "line_ln5532791-1", + "phases": "ABCN", + "to": "m1026356" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2783231", + "length": "498.4894", + "name": "line_ln5985355-1", + "phases": "BN", + "to": "l3254227" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "196-29521", + "length": "33.6241", + "name": "line_ln5985355-4", + "phases": "BN", + "to": "n1136355" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026786", + "length": "12.6962", + "name": "line_ln5770318-1", + "phases": "ABCN", + "to": "m1026785" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047424", + "length": "213.0033", + "name": "line_ln5683822-1", + "phases": "ABCN", + "to": "l2691949" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1136355", + "length": "237.7126", + "name": "line_ln5985355-3", + "phases": "BN", + "to": "l2783231" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2684420", + "length": "273.7943", + "name": "line_ln5532738-1", + "phases": "BN", + "to": "m1047824" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der480-2", + "length": "164.0420", + "name": "line_ln2001der-5", + "phases": "ABCN", + "to": "m2001der-5" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026646", + "length": "645.2267", + "name": "line_ln5986930-1", + "phases": "AN", + "to": "l3178978" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2841620", + "length": "786.4903", + "name": "line_ln6320332-1", + "phases": "BN", + "to": "l2785520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3104118", + "length": "261.7321", + "name": "line_ln5774448-1", + "phases": "CN", + "to": "l2748126" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027027", + "length": "141.4624", + "name": "line_ln6137083-1", + "phases": "CN", + "to": "l3270853" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047568", + "length": "52.2934", + "name": "line_ln6383059-1", + "phases": "ABCN", + "to": "p827527" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3197661", + "length": "222.9381", + "name": "line_ln6229832-2", + "phases": "CN", + "to": "l3122848" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026898", + "length": "9.5487", + "name": "line_ln6229832-1", + "phases": "CN", + "to": "l3197661" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108534", + "length": "20.8795", + "name": "line_ln5863718-1", + "phases": "AN", + "to": "p901934" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der480-1", + "length": "164.0420", + "name": "line_ln2001der-2", + "phases": "ABCN", + "to": "m2001der-2" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der480-1", + "length": "164.0420", + "name": "line_ln2001der-1", + "phases": "ABCN", + "to": "m2001der-1" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026847", + "length": "199.3449", + "name": "line_ln5804799-1", + "phases": "AN", + "to": "l2673311" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1139258", + "length": "133.4013", + "name": "line_ln5956498-3", + "phases": "CN", + "to": "l3066810" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der480-2", + "length": "164.0420", + "name": "line_ln2001der-4", + "phases": "ABCN", + "to": "m2001der-4" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069437", + "length": "36.9406", + "name": "line_ln5956498-2", + "phases": "CN", + "to": "n1139258" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der480-1", + "length": "164.0420", + "name": "line_ln2001der-3", + "phases": "ABCN", + "to": "m2001der-3" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125957", + "length": "124.2129", + "name": "line_ln5982822-1", + "phases": "CN", + "to": "l2936211" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1126005", + "length": "228.4898", + "name": "line_ln6381764-1", + "phases": "AN", + "to": "l2767342" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "p862322", + "length": "17.0721", + "name": "line_ln8979251-1", + "phases": "ABC", + "to": "221-308718" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108540", + "length": "80.6036", + "name": "line_ln6078689-1", + "phases": "CN", + "to": "l2955006" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069497", + "length": "50.1280", + "name": "line_ln6138595-1", + "phases": "ABCN", + "to": "m1069495" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "221-308718", + "length": "110.4897", + "name": "line_ln8979251-2", + "phases": "ABC", + "to": "l2803199" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026699", + "length": "304.0888", + "name": "line_ln5993742-1", + "phases": "BN", + "to": "m1026722" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3177894", + "length": "301.9982", + "name": "line_ln5486878-2", + "phases": "AN", + "to": "l3082993" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010004", + "length": "817.9995", + "name": "line_ln5486878-1", + "phases": "AN", + "to": "l3177894" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2876797", + "length": "161.9968", + "name": "line_ln6258439-1", + "phases": "ABCN", + "to": "r18241" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx1/0_tpx_ln6138596-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026942", + "length": "13.9425", + "name": "line_ln6228279-2", + "phases": "AN", + "to": "l3141389" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx1/0_tpx_ln6138596-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026941", + "length": "70.5666", + "name": "line_ln6228279-1", + "phases": "AN", + "to": "m1026942" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p829979", + "length": "106.8486", + "name": "line_ln5746706-2", + "phases": "BN", + "to": "m3036172" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "r18242", + "length": "124.2330", + "name": "line_ln6199530-1", + "phases": "ABCN", + "to": "l3254218" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209805", + "length": "346.3260", + "name": "line_ln5775442-1", + "phases": "ABCN", + "to": "l2823592" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1126020", + "length": "415.6890", + "name": "line_ln5651997-1", + "phases": "AN", + "to": "m1126025" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1209828", + "length": "131.7993", + "name": "line_ln5873976-1", + "phases": "ABCN", + "to": "l3253570" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026377", + "length": "417.4933", + "name": "line_ln5653466-1", + "phases": "AN", + "to": "l3048210" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125955", + "length": "22.3954", + "name": "line_ln5740283-1", + "phases": "CN", + "to": "m1125957" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069521", + "length": "163.7328", + "name": "line_ln6380835-1", + "phases": "AN", + "to": "l3254231" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2766718", + "length": "301.1730", + "name": "line_ln5956463-1", + "phases": "ABCN", + "to": "l3048206" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047386", + "length": "438.7305", + "name": "line_ln5562924-1", + "phases": "BN", + "to": "m1047388" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026745", + "length": "298.6107", + "name": "line_ln5841919-1", + "phases": "BN", + "to": "l3029183" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3142049", + "length": "277.7893", + "name": "line_ln5889821-1", + "phases": "ABCN", + "to": "m1108493" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3216347", + "length": "282.0301", + "name": "line_ln6138605-1", + "phases": "CN", + "to": "l2785523" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3235946", + "length": "573.5413", + "name": "line_ln5836089-1", + "phases": "AN", + "to": "m1126005" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010004", + "length": "54.9990", + "name": "line_ln6198053-1", + "phases": "AN", + "to": "m1010003" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089131", + "length": "314.2059", + "name": "line_ln6290212-1", + "phases": "ABCN", + "to": "l3029502" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "190-8593", + "length": "26.3387", + "name": "line_ln5860423-3", + "phases": "ABCN", + "to": "d5860423-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "q14733", + "length": "49.0914", + "name": "line_ln5860423-4", + "phases": "ABCN", + "to": "m1047568" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3029505", + "length": "326.700", + "name": "line_ln6411385-1", + "phases": "CN", + "to": "l2673318" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142819", + "length": "199.4670", + "name": "line_ln5684859-1", + "phases": "BN", + "to": "l2861219" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142874", + "length": "180.3117", + "name": "line_ln5987954-1", + "phases": "ABCN", + "to": "m1142875" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108274", + "length": "173.3900", + "name": "line_ln5472347-1", + "phases": "BN", + "to": "m1108276" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2841632", + "length": "82.4335", + "name": "line_ln5860423-1", + "phases": "ABCN", + "to": "d5860450-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1008758", + "length": "146.2914", + "name": "line_ln5835125-1", + "phases": "BN", + "to": "l2822859" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047592", + "length": "11.9952", + "name": "line_ln5565092-1", + "phases": "CN", + "to": "p827512" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026979", + "length": "252.7146", + "name": "line_ln5865240-1", + "phases": "BN", + "to": "l2748152" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047480", + "length": "373.9578", + "name": "line_ln6077774-1", + "phases": "ABCN", + "to": "m1069483" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047575", + "length": "29.1779", + "name": "line_ln5860423-2", + "phases": "ABCN", + "to": "regxfmr_190-8593" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047340", + "length": "212.5868", + "name": "line_ln6411390-1", + "phases": "AN", + "to": "l2991923" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln6019479-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "p827536", + "length": "41.1314", + "name": "line_ln6440002-3", + "phases": "CN", + "to": "n1137999" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2954361", + "length": "177.7903", + "name": "line_ln6320354-1", + "phases": "BN", + "to": "m1069627" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln6019479-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "d6440002-2_int", + "length": "264.7575", + "name": "line_ln6440002-2", + "phases": "CN", + "to": "l2876813" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m3032980", + "length": "84.9058", + "name": "line_ln0504020-1", + "phases": "ABCN", + "to": "m3032981" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026339", + "length": "237.5256", + "name": "line_ln5774466-1", + "phases": "BN", + "to": "l2766727" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "l2730108", + "length": "276.7673", + "name": "line_ln5896731-1", + "phases": "ABCN", + "to": "l2786204" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142832", + "length": "220.0777", + "name": "line_ln6018331-1", + "phases": "ABCN", + "to": "l3160865" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027036", + "length": "70.3821", + "name": "line_ln5744364-1", + "phases": "BN", + "to": "l3010580" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000700", + "length": "158.2381", + "name": "line_ln2000701-1", + "phases": "BN", + "to": "m2000701" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p860892", + "length": "35.2094", + "name": "line_ln6108138-2", + "phases": "CN", + "to": "n1139543" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1139543", + "length": "162.8453", + "name": "line_ln6108138-3", + "phases": "CN", + "to": "l2727795" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2692655", + "length": "175.6027", + "name": "line_ln5896825-1", + "phases": "ABCN", + "to": "m1142821" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2955077", + "length": "197.7215", + "name": "line_ln6413954-1", + "phases": "ABCN", + "to": "m1142851" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3214112", + "length": "339.3827", + "name": "line_ln5803984-2", + "phases": "BN", + "to": "l3160104" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3254214", + "length": "273.9079", + "name": "line_ln5803984-1", + "phases": "BN", + "to": "l3214112" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1137958", + "length": "291.0776", + "name": "line_ln5958702-3", + "phases": "CN", + "to": "m1047478" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1089145", + "length": "117.9983", + "name": "line_ln6028890-1", + "phases": "ABCN", + "to": "l3215385" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3030197", + "length": "231.4216", + "name": "line_ln6381844-1", + "phases": "ABCN", + "to": "m1142868" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026485", + "length": "216.2311", + "name": "line_ln6290243-1", + "phases": "BN", + "to": "m1026492" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p827505", + "length": "15.0179", + "name": "line_ln5958702-2", + "phases": "CN", + "to": "n1137958" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142880", + "length": "324.5371", + "name": "line_ln5591718-1", + "phases": "CN", + "to": "l2891575" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026468", + "length": "31.6182", + "name": "line_ln6167715-1", + "phases": "BN", + "to": "p901909" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2748130", + "length": "236.7777", + "name": "line_ln5895773-1", + "phases": "BN", + "to": "l3254212" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2897773", + "length": "398.2518", + "name": "line_ln5532747-1", + "phases": "AN", + "to": "l3197631" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026970", + "length": "205.1592", + "name": "line_ln6380813-1", + "phases": "ABCN", + "to": "m1026977" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1144666", + "length": "102.8843", + "name": "line_ln6318745-2", + "phases": "CN", + "to": "m1027041" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2861197", + "length": "241.4746", + "name": "line_ln6292461-1", + "phases": "CN", + "to": "l3160896" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3234185", + "length": "326.2019", + "name": "line_ln6121686-1", + "phases": "BN", + "to": "l3065750" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2897769", + "length": "180.8482", + "name": "line_ln5986925-2", + "phases": "CN", + "to": "l3778577" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1136362", + "length": "89.8397", + "name": "line_ln6409781-3", + "phases": "AN", + "to": "l3197652" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3778577", + "length": "209.7532", + "name": "line_ln5986925-3", + "phases": "CN", + "to": "l3141395" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069563", + "length": "62.6215", + "name": "line_ln6409781-2", + "phases": "AN", + "to": "n1136362" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1027042", + "length": "76.8770", + "name": "line_ln6318745-3", + "phases": "CN", + "to": "n1144666" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2841645", + "length": "98.4813", + "name": "line_ln6077810-1", + "phases": "CN", + "to": "l3066829" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3327098", + "length": "260.9987", + "name": "line_ln6660514-2", + "phases": "BN", + "to": "m3327097" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069582", + "length": "80.9746", + "name": "line_ln6231996-1", + "phases": "BN", + "to": "d6231996-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3159645", + "length": "312.3154", + "name": "line_ln5511594-2", + "phases": "AN", + "to": "l2983432" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3085402", + "length": "48.1460", + "name": "line_ln6169254-1", + "phases": "AN", + "to": "m1026394" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047515", + "length": "369.7093", + "name": "line_ln5593236-6", + "phases": "ABCN", + "to": "m1047513" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047707", + "length": "7.6842", + "name": "line_ln5511594-1", + "phases": "AN", + "to": "l3159645" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026855", + "length": "121.4666", + "name": "line_ln5623410-1", + "phases": "ABCN", + "to": "m1026861" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026356", + "length": "127.1115", + "name": "line_ln5895818-1", + "phases": "ABCN", + "to": "m1026354" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001304", + "length": "158.2381", + "name": "line_ln2001305-1", + "phases": "AN", + "to": "m2001305" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1166374", + "length": "221.9383", + "name": "line_ln6412355-1", + "phases": "ABCN", + "to": "l2786266" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1186078", + "length": "271.6133", + "name": "line_ln6254100-1", + "phases": "CN", + "to": "l2806553" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2748780", + "length": "227.0885", + "name": "line_ln6291152-1", + "phases": "AN", + "to": "l2823544" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3235945", + "length": "104.9336", + "name": "line_ln6200439-1", + "phases": "CN", + "to": "l2842330" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089118", + "length": "530.5390", + "name": "line_ln5835143-1", + "phases": "ABCN", + "to": "m1089115" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3156034", + "length": "195.1084", + "name": "line_ln5739003-1", + "phases": "AN", + "to": "l3066821" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1108403", + "length": "485.3304", + "name": "line_ln6422017-1", + "phases": "B", + "to": "m1108407" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001206", + "length": "158.2381", + "name": "line_ln2001207-1", + "phases": "CN", + "to": "m2001207" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108328", + "length": "684.8549", + "name": "line_ln5621860-1", + "phases": "CN", + "to": "l3160878" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3235255", + "length": "168.0069", + "name": "line_ln5714080-1", + "phases": "ABCN", + "to": "m1047316" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1136996", + "length": "45.5437", + "name": "line_ln5867683-3", + "phases": "ABCN", + "to": "m1047649" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p895080", + "length": "274.8686", + "name": "line_ln6195470-1", + "phases": "AN", + "to": "l2917333" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3216123", + "length": "342.0485", + "name": "line_ln5867683-2", + "phases": "ABCN", + "to": "n1136996" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2841621", + "length": "113.3906", + "name": "line_ln5865235-2", + "phases": "ABCN", + "to": "n1137986" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6320366-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026805", + "length": "296.9883", + "name": "line_ln6106580-1", + "phases": "CN", + "to": "l3120502" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1137986", + "length": "141.2823", + "name": "line_ln5865235-3", + "phases": "ABCN", + "to": "m1047732" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2933165", + "length": "420.7509", + "name": "line_ln5863825-1", + "phases": "BN", + "to": "l3235273" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1009651", + "length": "172.9994", + "name": "line_ln5774488-1", + "phases": "CN", + "to": "l2879092" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p828360", + "length": "103.3396", + "name": "line_ln8961799-1", + "phases": "C", + "to": "l2729206" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2729207", + "length": "40.0028", + "name": "line_ln8961799-3", + "phases": "C", + "to": "228-961799-3_int" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p827532", + "length": "23.9262", + "name": "line_ln6201699-1", + "phases": "AN", + "to": "m1047326" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089155", + "length": "239.3236", + "name": "line_ln6047559-2", + "phases": "CN", + "to": "m3037540" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2729206", + "length": "961.5595", + "name": "line_ln8961799-2", + "phases": "C", + "to": "l2729207" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2785527", + "length": "237.2403", + "name": "line_ln5744342-1", + "phases": "AN", + "to": "l2766729" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108524", + "length": "123.1716", + "name": "line_ln5649361-1", + "phases": "CN", + "to": "m1108520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108520", + "length": "176.8171", + "name": "line_ln5649361-2", + "phases": "CN", + "to": "l2804277" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3048228", + "length": "297.7465", + "name": "line_ln6260030-1", + "phases": "CN", + "to": "l2991940" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3235257", + "length": "362.4646", + "name": "line_ln5804805-1", + "phases": "ABCN", + "to": "l2822871" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2992656", + "length": "195.1540", + "name": "line_ln5533838-1", + "phases": "AN", + "to": "m1166356" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047752", + "length": "234.0867", + "name": "line_ln5926298-1", + "phases": "AN", + "to": "m1047750" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e206217", + "length": "183.5830", + "name": "line_ln6318767-1", + "phases": "ABCN", + "to": "m1125969" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089215", + "length": "289.8554", + "name": "line_ln6108125-4", + "phases": "ABCN", + "to": "m1089220" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089215", + "length": "149.8210", + "name": "line_ln6108125-3", + "phases": "ABCN", + "to": "n1134474" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1134474", + "length": "186.3653", + "name": "line_ln6108125-2", + "phases": "ABCN", + "to": "m1069496" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m3037452", + "length": "390.0956", + "name": "line_ln6320341-2", + "phases": "AN", + "to": "m1026387" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3217064", + "length": "753.5136", + "name": "line_ln6315098-1", + "phases": "BN", + "to": "l3200222" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l3232301", + "length": "48.4164", + "name": "line_ln81037792-1", + "phases": "A", + "to": "m1069328" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2710511", + "length": "220.7415", + "name": "line_ln5502525-1", + "phases": "AN", + "to": "l2766719" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "q14412", + "length": "111.3681", + "name": "line_ln5926308-2", + "phases": "ABCN", + "to": "m1047325" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2860491", + "length": "112.6780", + "name": "line_ln5926308-3", + "phases": "ABCN", + "to": "d5926308-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p860847", + "length": "248.9151", + "name": "line_ln5472401-1", + "phases": "AN", + "to": "m1026880" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026891", + "length": "286.3286", + "name": "line_ln6017292-1", + "phases": "ABCN", + "to": "l3160102" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009742", + "length": "39.2541", + "name": "line_ln6076268-1", + "phases": "ABCN", + "to": "p901972" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_dpx_ln6506308-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1026726", + "length": "215.9070", + "name": "line_ln6506308-1", + "phases": "BN", + "to": "l2916610" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3254237", + "length": "460.0012", + "name": "line_ln6425615-1", + "phases": "ABCN", + "to": "m1108387" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m3036167", + "length": "240.6005", + "name": "line_ln6505946-1", + "phases": "ABCN", + "to": "l3085391" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000406", + "length": "158.2381", + "name": "line_ln2000407-1", + "phases": "AN", + "to": "m2000407" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1136368", + "length": "23.1710", + "name": "line_ln5776669-3", + "phases": "AN", + "to": "l2897792" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108514", + "length": "320.0007", + "name": "line_ln5735714-1", + "phases": "CN", + "to": "m1108508" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827548", + "length": "25.1910", + "name": "line_ln5776669-2", + "phases": "AN", + "to": "n1136368" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047374", + "length": "723.3373", + "name": "line_ln5835134-1", + "phases": "BN", + "to": "l3197629" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3254870", + "length": "1568.1469", + "name": "line_ln6030576-1", + "phases": "CN", + "to": "m1125943" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047432", + "length": "150.3908", + "name": "line_ln5502534-1", + "phases": "AN", + "to": "m1047433" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089093", + "length": "198.8770", + "name": "line_ln5593214-1", + "phases": "CN", + "to": "m1089094" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3197624", + "length": "455.1837", + "name": "line_ln6380804-1", + "phases": "BN", + "to": "m1027101" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l3027671", + "length": "438.7701", + "name": "line_ln81048108-2", + "phases": "A", + "to": "m1108423" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1108462", + "length": "390.3665", + "name": "line_ln81048108-1", + "phases": "A", + "to": "l3027671" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026693", + "length": "333.9055", + "name": "line_ln5956472-1", + "phases": "BN", + "to": "l2991916" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000909", + "length": "158.2381", + "name": "line_ln2000910-1", + "phases": "CN", + "to": "m2000910" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "d5534967-1_int", + "length": "348.0490", + "name": "line_ln5534967-1", + "phases": "ABCN", + "to": "p827501" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "p901945", + "length": "18.9474", + "name": "line_ln6228311-1", + "phases": "ABCN", + "to": "m1125988" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026902", + "length": "326.1111", + "name": "line_ln5985039-1", + "phases": "ABCN", + "to": "m1026905" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2935568", + "length": "604.5797", + "name": "line_ln5895805-1", + "phases": "BN", + "to": "l3235246" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2911069", + "length": "725.4830", + "name": "line_ln6506317-2", + "phases": "BN", + "to": "l2948732" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3160862", + "length": "433.6122", + "name": "line_ln6412346-1", + "phases": "CN", + "to": "l3104850" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2897801", + "length": "179.1460", + "name": "line_ln5683853-1", + "phases": "AN", + "to": "m1069384" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069390", + "length": "143.3637", + "name": "line_ln5865266-1", + "phases": "AN", + "to": "l2897801" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047316", + "length": "218.6250", + "name": "line_ln6138640-1", + "phases": "AN", + "to": "l2785527" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "d5774457-1_int", + "length": "134.0110", + "name": "line_ln5774457-1", + "phases": "ABCN", + "to": "m1026920" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069181", + "length": "325.5628", + "name": "line_ln5593249-1", + "phases": "AN", + "to": "l2748146" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026323", + "length": "143.2690", + "name": "line_ln6108147-1", + "phases": "BN", + "to": "l2991917" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069202", + "length": "297.3697", + "name": "line_ln5714049-1", + "phases": "CN", + "to": "l3104126" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000713", + "length": "158.2381", + "name": "line_ln2000714-1", + "phases": "BN", + "to": "m2000714" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2973162", + "length": "174.3787", + "name": "line_ln6017302-1", + "phases": "ABCN", + "to": "m1026333" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1166375", + "length": "317.6957", + "name": "line_ln5896834-1", + "phases": "ABCN", + "to": "l2842383" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2973163", + "length": "281.7672", + "name": "line_ln5895782-1", + "phases": "BN", + "to": "m1026309" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2801896", + "length": "248.3697", + "name": "line_ln5532734-1", + "phases": "BN", + "to": "m1009839" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010007", + "length": "524.4936", + "name": "line_ln6102293-1", + "phases": "AN", + "to": "m1010004" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166387", + "length": "280.2922", + "name": "line_ln5624374-1", + "phases": "CN", + "to": "l3048946" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108360", + "length": "180.3697", + "name": "line_ln5624387-1", + "phases": "CN", + "to": "l3048968" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026328", + "length": "15.5178", + "name": "line_ln6140778-1", + "phases": "BN", + "to": "d6140778-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069192", + "length": "267.5248", + "name": "line_ln6077778-1", + "phases": "AN", + "to": "l3235253" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069504", + "length": "350.0465", + "name": "line_ln6290230-1", + "phases": "ABCN", + "to": "m1069500" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1149235", + "length": "20.5020", + "name": "line_ln5989329-1", + "phases": "CN", + "to": "p829975" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "m1108387", + "length": "10.7692", + "name": "line_ln8979255-1", + "phases": "ABC", + "to": "p850080" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047292", + "length": "191.0345", + "name": "line_ln6199561-1", + "phases": "CN", + "to": "l2766750" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1141480", + "length": "20.4502", + "name": "line_ln5528574-3", + "phases": "CN", + "to": "p895113" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047358", + "length": "298.3989", + "name": "line_ln5986934-1", + "phases": "AN", + "to": "l2897781" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108372", + "length": "261.2420", + "name": "line_ln5624289-1", + "phases": "BN", + "to": "l3216988" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1147857", + "length": "179.6358", + "name": "line_ln5531255-3", + "phases": "ABCN", + "to": "m1009742" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_tpx_ln5804795-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1047386", + "length": "180.3879", + "name": "line_ln5804795-1", + "phases": "BN", + "to": "l3254211" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142863", + "length": "15.1088", + "name": "line_ln5528574-2", + "phases": "CN", + "to": "n1141480" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069487", + "length": "446.8440", + "name": "line_ln6138599-1", + "phases": "CN", + "to": "m1069488" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027068", + "length": "298.4033", + "name": "line_ln5956494-1", + "phases": "CN", + "to": "l3235268" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166373", + "length": "33.6693", + "name": "line_ln5594243-1", + "phases": "AN", + "to": "m1166369" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p827523", + "length": "115.9341", + "name": "line_ln5837355-1", + "phases": "ABCN", + "to": "l2879076" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2801950", + "length": "107.9364", + "name": "line_ln6137087-1", + "phases": "ABCN", + "to": "m1069224" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047702", + "length": "62.1370", + "name": "line_ln6258435-2", + "phases": "AN", + "to": "n1137002" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2860490", + "length": "207.8671", + "name": "line_ln5683831-1", + "phases": "ABCN", + "to": "l3104134" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1137002", + "length": "303.4152", + "name": "line_ln6258435-3", + "phases": "AN", + "to": "m1047707" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3104859", + "length": "370.3232", + "name": "line_ln5742901-1", + "phases": "BN", + "to": "l2970845" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1142811", + "length": "261.1304", + "name": "line_ln6321458-1", + "phases": "AN", + "to": "l2917330" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009770", + "length": "26.3917", + "name": "line_ln5531255-2", + "phases": "ABCN", + "to": "n1147857" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2954344", + "length": "167.0633", + "name": "line_ln6229791-1", + "phases": "CN", + "to": "l2897767" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209750", + "length": "27.9721", + "name": "line_ln6351512-1", + "phases": "BN", + "to": "m1209749" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4/0_tpx_ln6103927-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "m1142860", + "length": "21.6015", + "name": "line_ln6103927-1", + "phases": "AN", + "to": "p895114" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2710517", + "length": "160.1356", + "name": "line_ln5865244-1", + "phases": "AN", + "to": "m1026646" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2879072", + "length": "755.7369", + "name": "line_ln6047568-1", + "phases": "BN", + "to": "m1047441" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2786273", + "length": "354.3113", + "name": "line_ln6018340-1", + "phases": "BN", + "to": "m1108278" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047766", + "length": "155.8307", + "name": "line_ln6108169-1", + "phases": "BN", + "to": "m1047768" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026948", + "length": "29.6163", + "name": "line_ln5593227-1", + "phases": "BN", + "to": "m1026949" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069438", + "length": "223.1525", + "name": "line_ln5502569-1", + "phases": "ABCN", + "to": "l2766749" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108340", + "length": "229.5993", + "name": "line_ln5744333-1", + "phases": "CN", + "to": "m1108344" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e182729", + "length": "25.0043", + "name": "line_ln5863714-2", + "phases": "ABCN", + "to": "m1069503" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1134478", + "length": "36.8855", + "name": "line_ln5863714-3", + "phases": "ABCN", + "to": "m1069505" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026986", + "length": "498.8567", + "name": "line_ln6260021-1", + "phases": "ABCN", + "to": "m1026997" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069503", + "length": "79.1886", + "name": "line_ln5863714-4", + "phases": "ABCN", + "to": "n1134478" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069468", + "length": "27.9336", + "name": "line_ln5898057-1", + "phases": "AN", + "to": "p827506" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "196-29519", + "length": "112.2456", + "name": "line_ln6383460-1", + "phases": "ABCN", + "to": "l3066815" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3104133", + "length": "418.7163", + "name": "line_ln5532756-1", + "phases": "AN", + "to": "m1047323" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1126017", + "length": "150.7892", + "name": "line_ln6018242-1", + "phases": "AN", + "to": "l2748781" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e182724", + "length": "305.1032", + "name": "line_ln5806919-1", + "phases": "ABCN", + "to": "m1069169" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2991912", + "length": "368.7581", + "name": "line_ln6411381-1", + "phases": "AN", + "to": "l3104128" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047819", + "length": "234.1256", + "name": "line_ln6199508-1", + "phases": "BN", + "to": "l2916603" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p827525", + "length": "325.1113", + "name": "line_ln5686079-1", + "phases": "ABCN", + "to": "m1026902" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "d5621886-1_int", + "length": "841.5384", + "name": "line_ln5621886-1", + "phases": "ABCN", + "to": "m1009784" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069420", + "length": "25.2099", + "name": "line_ln6201694-1", + "phases": "AN", + "to": "p827499" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069535", + "length": "332.7017", + "name": "line_ln5714062-1", + "phases": "BN", + "to": "l2804271" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026307", + "length": "410.7347", + "name": "line_ln5981121-1", + "phases": "BN", + "to": "l3085388" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m3036165", + "length": "647.8154", + "name": "line_ln5774462-2", + "phases": "ABCN", + "to": "l3197636" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166369", + "length": "13.6831", + "name": "line_ln6049964-1", + "phases": "AN", + "to": "p829978" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3139086", + "length": "220.6385", + "name": "line_ln5472406-1", + "phases": "BN", + "to": "l3029520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1089113", + "length": "1447.2934", + "name": "line_ln6046042-1", + "phases": "BN", + "to": "m1089103" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047513", + "length": "228.0833", + "name": "line_ln6047577-1", + "phases": "ABCN", + "to": "m1047507" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089197", + "length": "309.7714", + "name": "line_ln6290198-1", + "phases": "ABCN", + "to": "m1089196" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026807", + "length": "60.1946", + "name": "line_ln6073575-2", + "phases": "ABCN", + "to": "n1140521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3030204", + "length": "220.4711", + "name": "line_ln5866268-1", + "phases": "ABCN", + "to": "m1186072" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1140521", + "length": "117.8455", + "name": "line_ln6073575-3", + "phases": "ABCN", + "to": "l3254217" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3949157", + "length": "206.9161", + "name": "line_ln6991378-3", + "phases": "AN", + "to": "l3727709" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "d6017316-1_int", + "length": "356.4345", + "name": "line_ln6017316-1", + "phases": "BN", + "to": "l2766742" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2785530", + "length": "378.8578", + "name": "line_ln5835151-1", + "phases": "AN", + "to": "l2822868" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3727709", + "length": "237.1944", + "name": "line_ln6991378-5", + "phases": "AN", + "to": "l3727710" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1069247", + "length": "402.8709", + "name": "line_ln8979367-1", + "phases": "A", + "to": "m1069248" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3122849", + "length": "275.5296", + "name": "line_ln5956503-1", + "phases": "ABCN", + "to": "m1026357" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1139542", + "length": "70.8509", + "name": "line_ln6292465-3", + "phases": "ABCN", + "to": "p827523" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2766716", + "length": "225.3106", + "name": "line_ln6229792-1", + "phases": "CN", + "to": "l3235245" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2691951", + "length": "75.8457", + "name": "line_ln6292465-2", + "phases": "ABCN", + "to": "n1139542" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026chp-2", + "length": "408.4581", + "name": "line_ln5002chp-1", + "phases": "ABCN", + "to": "m1026chp-3" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125969", + "length": "21.7525", + "name": "line_ln6103926-1", + "phases": "BN", + "to": "p895102" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1126031", + "length": "435.9819", + "name": "line_ln5957412-1", + "phases": "CN", + "to": "l2730107" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026665", + "length": "278.8758", + "name": "line_ln6229802-1", + "phases": "AN", + "to": "m1026660" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026697", + "length": "202.8895", + "name": "line_ln5865249-1", + "phases": "ABCN", + "to": "m1026690" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108529", + "length": "81.3941", + "name": "line_ln5473349-1", + "phases": "ABCN", + "to": "m1108532" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069155", + "length": "353.2070", + "name": "line_ln5744334-1", + "phases": "CN", + "to": "l3254210" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069504", + "length": "148.7936", + "name": "line_ln6138623-1", + "phases": "AN", + "to": "l3197654" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3027116", + "length": "226.0073", + "name": "line_ln5774497-1", + "phases": "ABCN", + "to": "m1047300" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047574", + "length": "39.4479", + "name": "line_ln6380817-1", + "phases": "ABCN", + "to": "l2841632" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001011", + "length": "158.2381", + "name": "line_ln2001012-1", + "phases": "BN", + "to": "m2001012" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166361", + "length": "55.1820", + "name": "line_ln6015890-1", + "phases": "AN", + "to": "l2989600" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000704", + "length": "158.2381", + "name": "line_ln2000705-1", + "phases": "BN", + "to": "m2000705" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026876", + "length": "344.8937", + "name": "line_ln5894238-2", + "phases": "ABCN", + "to": "m1026866" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000900", + "length": "158.2381", + "name": "line_ln2000901-1", + "phases": "CN", + "to": "m2000901" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008752", + "length": "260.2435", + "name": "line_ln5804781-1", + "phases": "BN", + "to": "m1008746" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089143", + "length": "312.1977", + "name": "line_ln5472361-1", + "phases": "AN", + "to": "l3141400" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026866", + "length": "441.3043", + "name": "line_ln5894238-1", + "phases": "ABCN", + "to": "m1026844" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3216342", + "length": "203.0221", + "name": "line_ln6411367-1", + "phases": "BN", + "to": "l2879063" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047424", + "length": "154.0260", + "name": "line_ln5562929-1", + "phases": "BN", + "to": "l3104127" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047792", + "length": "1213.3654", + "name": "line_ln6349052-1", + "phases": "BN", + "to": "l2876846" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2936213", + "length": "285.1097", + "name": "line_ln5533709-1", + "phases": "BN", + "to": "m1108527" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1139540", + "length": "274.3890", + "name": "line_ln5806918-3", + "phases": "AN", + "to": "l2991907" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827508", + "length": "29.6228", + "name": "line_ln5806918-2", + "phases": "AN", + "to": "n1139540" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047836", + "length": "966.1595", + "name": "line_ln5926289-1", + "phases": "BN", + "to": "l3254203" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1069226", + "length": "27.3351", + "name": "line_ln5712486-1", + "phases": "CN", + "to": "d5712486-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2806553", + "length": "2063.2990", + "name": "line_ln6435650-1", + "phases": "CN", + "to": "m1166391" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx1/0_tpx_ln5562952-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1008746", + "length": "133.1792", + "name": "line_ln6017284-1", + "phases": "BN", + "to": "l2954339" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "221-559682", + "length": "43.8021", + "name": "line_ln81354564-10", + "phases": "C", + "to": "n1140525" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "n1140525", + "length": "209.6262", + "name": "line_ln81354564-11", + "phases": "C", + "to": "l3645809" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2673312", + "length": "545.4504", + "name": "line_ln6350536-1", + "phases": "AN", + "to": "l3235247" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069451", + "length": "673.1938", + "name": "line_ln5744369-1", + "phases": "ABCN", + "to": "l2804282" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1142815", + "length": "59.5738", + "name": "line_ln6048681-1", + "phases": "AN", + "to": "l2917359" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1142107", + "length": "364.7522", + "name": "line_ln5712584-3", + "phases": "CN", + "to": "l3101827" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069488", + "length": "186.9206", + "name": "line_ln6047555-1", + "phases": "CN", + "to": "l2748125" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1027041", + "length": "229.2448", + "name": "line_ln5623399-1", + "phases": "CN", + "to": "l2916607" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p829796", + "length": "88.3173", + "name": "line_ln5712584-2", + "phases": "CN", + "to": "n1142107" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3010565", + "length": "462.0274", + "name": "line_ln5593232-1", + "phases": "CN", + "to": "l2897775" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1125987", + "length": "15.8048", + "name": "line_ln5621864-1", + "phases": "ABCN", + "to": "p901945" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1108464", + "length": "352.5445", + "name": "line_ln81048109-1", + "phases": "B", + "to": "l3102286" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l3102286", + "length": "128.1097", + "name": "line_ln81048109-2", + "phases": "B", + "to": "m1108433" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3037537", + "length": "9.5158", + "name": "line_ln6506316-6", + "phases": "BN", + "to": "l2911069" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1069284", + "length": "30.1745", + "name": "line_ln8979345-1", + "phases": "A", + "to": "p850401" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827515", + "length": "215.1570", + "name": "line_ln5534968-1", + "phases": "AN", + "to": "l2991909" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027091", + "length": "129.6678", + "name": "line_ln6409798-1", + "phases": "AN", + "to": "l2764412" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2991901", + "length": "1529.9997", + "name": "line_ln6506316-3", + "phases": "BN", + "to": "m3037537" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047483", + "length": "261.1153", + "name": "line_ln6259987-1", + "phases": "ABCN", + "to": "m1047480" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069149", + "length": "203.1106", + "name": "line_ln5532742-1", + "phases": "CN", + "to": "m1069148" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3216367", + "length": "135.6523", + "name": "line_ln5835173-1", + "phases": "ABCN", + "to": "m1069468" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047319", + "length": "243.0128", + "name": "line_ln5623409-1", + "phases": "CN", + "to": "m1047318" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "m1186052", + "length": "19.1571", + "name": "line_ln8978752-1", + "phases": "ABC", + "to": "198-5320" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089205", + "length": "47.3969", + "name": "line_ln6167732-2", + "phases": "AN", + "to": "n1134472" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027114", + "length": "204.6812", + "name": "line_ln5803300-1", + "phases": "AN", + "to": "l2876812" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1134472", + "length": "631.8925", + "name": "line_ln6167732-3", + "phases": "AN", + "to": "l2973148" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125916", + "length": "117.0334", + "name": "line_ln5563935-1", + "phases": "BN", + "to": "m1125913" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1136658", + "length": "140.7334", + "name": "line_ln5716230-3", + "phases": "ABCN", + "to": "m1047566" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209776", + "length": "218.1065", + "name": "line_ln5533797-1", + "phases": "ABCN", + "to": "m1209775" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000913", + "length": "158.2381", + "name": "line_ln2000914-1", + "phases": "CN", + "to": "m2000914" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1209824", + "length": "824.1896", + "name": "line_ln6139544-1", + "phases": "ABCN", + "to": "m1209828" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "p827527", + "length": "20.1495", + "name": "line_ln5716230-2", + "phases": "ABCN", + "to": "n1136658" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026915", + "length": "10.0032", + "name": "line_ln5502529-1", + "phases": "BN", + "to": "m1026916" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047763", + "length": "15.2269", + "name": "line_ln5776665-1", + "phases": "BN", + "to": "p827509" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1126016", + "length": "219.0485", + "name": "line_ln5531242-1", + "phases": "AN", + "to": "l3195321" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2841636", + "length": "169.7904", + "name": "line_ln6260000-1", + "phases": "BN", + "to": "m1026324" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2935551", + "length": "105.1192", + "name": "line_ln5746546-1", + "phases": "ABCN", + "to": "d5746546-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069393", + "length": "362.1980", + "name": "line_ln6505942-2", + "phases": "ABCN", + "to": "l3029501" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026320", + "length": "220.6522", + "name": "line_ln6017303-1", + "phases": "BN", + "to": "l2879079" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3176661", + "length": "252.7557", + "name": "line_ln6348954-1", + "phases": "CN", + "to": "l2970804" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2916627", + "length": "254.8547", + "name": "line_ln5804835-1", + "phases": "AN", + "to": "l2673310" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047430", + "length": "547.2258", + "name": "line_ln5479790-1", + "phases": "AN", + "to": "l2916234" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2879773", + "length": "304.0401", + "name": "line_ln6321427-1", + "phases": "ABCN", + "to": "m1108298" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027114", + "length": "239.9990", + "name": "line_ln5501003-1", + "phases": "AN", + "to": "l3195327" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047751", + "length": "30.5371", + "name": "line_ln5865236-1", + "phases": "AN", + "to": "l2973154" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1144665", + "length": "89.8573", + "name": "line_ln6138610-2", + "phases": "ABCN", + "to": "m1047515" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "190-8581", + "length": "27.4004", + "name": "line_ln5587291-3", + "phases": "ABCN", + "to": "d5587291-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2822869", + "length": "310.9686", + "name": "line_ln5502538-1", + "phases": "ABCN", + "to": "m1026808" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2897777", + "length": "88.9644", + "name": "line_ln6138610-3", + "phases": "ABCN", + "to": "n1144665" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026969", + "length": "298.5116", + "name": "line_ln6380808-1", + "phases": "BN", + "to": "l2879066" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2692633", + "length": "131.1356", + "name": "line_ln5587291-1", + "phases": "ABCN", + "to": "d5578300-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108334", + "length": "128.5511", + "name": "line_ln5957501-1", + "phases": "CN", + "to": "l2692664" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047793", + "length": "20.0022", + "name": "line_ln5928546-1", + "phases": "BN", + "to": "p827555" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000200", + "length": "463.8770", + "name": "line_ln2000300-1", + "phases": "ABCN", + "to": "m2000300" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "226-23745", + "length": "1709.3225", + "name": "line_ln6109068-1", + "phases": "ABCN", + "to": "m1209822" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125959", + "length": "226.0757", + "name": "line_ln5924709-1", + "phases": "CN", + "to": "l2861197" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "q14734", + "length": "182.0291", + "name": "line_ln5587291-4", + "phases": "ABCN", + "to": "m1108529" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "l2729406", + "length": "639.0177", + "name": "line_ln5804790-1", + "phases": "CN", + "to": "l2897768" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142810", + "length": "61.2206", + "name": "line_ln5894225-1", + "phases": "BN", + "to": "m1142808" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026834", + "length": "29.2536", + "name": "line_ln5487004-6", + "phases": "CN", + "to": "n1147860" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1147860", + "length": "60.7478", + "name": "line_ln5487004-7", + "phases": "CN", + "to": "l3177881" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3122827", + "length": "191.9471", + "name": "line_ln5472374-1", + "phases": "AN", + "to": "l2954355" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "m1108381", + "length": "24.2609", + "name": "line_ln8989758-1", + "phases": "ABC", + "to": "p862322" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069382", + "length": "36.9636", + "name": "line_ln6049822-1", + "phases": "AN", + "to": "d6049822-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026977", + "length": "196.1792", + "name": "line_ln6199517-1", + "phases": "ABCN", + "to": "m1026978" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026858", + "length": "160.0845", + "name": "line_ln5804804-1", + "phases": "ABCN", + "to": "m1026854" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2916234", + "length": "850.3986", + "name": "line_ln5479790-2", + "phases": "AN", + "to": "m1047423" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026829", + "length": "34.1922", + "name": "line_ln6167754-2", + "phases": "BN", + "to": "n1147859" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1147859", + "length": "22.2186", + "name": "line_ln6167754-3", + "phases": "BN", + "to": "p827573" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108489", + "length": "47.3109", + "name": "line_ln5837496-3", + "phases": "AN", + "to": "n1142101" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1142101", + "length": "121.2179", + "name": "line_ln5837496-4", + "phases": "AN", + "to": "l2936214" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p829798", + "length": "0.8525", + "name": "line_ln5837496-1", + "phases": "AN", + "to": "m1108489" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069156", + "length": "409.9835", + "name": "line_ln5774453-1", + "phases": "ABCN", + "to": "m1069155" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069632", + "length": "274.5454", + "name": "line_ln5593245-1", + "phases": "BN", + "to": "l2954361" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069224", + "length": "404.1378", + "name": "line_ln6077801-1", + "phases": "CN", + "to": "m1069226" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047319", + "length": "118.9971", + "name": "line_ln6350549-1", + "phases": "CN", + "to": "l2991921" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047497", + "length": "75.8955", + "name": "line_ln6134514-1", + "phases": "ABCN", + "to": "l3104136" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108331", + "length": "323.9899", + "name": "line_ln6139655-1", + "phases": "CN", + "to": "m1108334" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3160109", + "length": "236.0120", + "name": "line_ln6134514-2", + "phases": "ABCN", + "to": "m1047497" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2691967", + "length": "150.0208", + "name": "line_ln5653480-1", + "phases": "ABCN", + "to": "m1069504" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026960", + "length": "260.6159", + "name": "line_ln6017293-1", + "phases": "ABCN", + "to": "m1026970" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209774", + "length": "205.1555", + "name": "line_ln6381858-1", + "phases": "ABCN", + "to": "l3123509" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125989", + "length": "16.0851", + "name": "line_ln5807070-1", + "phases": "ABCN", + "to": "m1125990" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1108506", + "length": "258.9301", + "name": "line_ln5565240-1", + "phases": "AN", + "to": "m1108501" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3123452", + "length": "218.3128", + "name": "line_ln6198039-1", + "phases": "ABCN", + "to": "d6198039-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137993", + "length": "211.0393", + "name": "line_ln6140774-2", + "phases": "AN", + "to": "l2860482" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827502", + "length": "76.4748", + "name": "line_ln6140774-3", + "phases": "AN", + "to": "n1137993" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047507", + "length": "130.8015", + "name": "line_ln5742811-1", + "phases": "ABCN", + "to": "l2820531" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2785514", + "length": "214.3984", + "name": "line_ln5683809-1", + "phases": "AN", + "to": "l3235244" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2820531", + "length": "122.7704", + "name": "line_ln5742811-3", + "phases": "ABCN", + "to": "d5742811-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1137992", + "length": "14.8934", + "name": "line_ln5742811-4", + "phases": "ABCN", + "to": "196-29520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "q14414", + "length": "260.9642", + "name": "line_ln6047599-3", + "phases": "ABCN", + "to": "l2691952" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1209828", + "length": "241.7631", + "name": "line_ln5775370-1", + "phases": "CN", + "to": "l2861157" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047457", + "length": "131.6258", + "name": "line_ln5653493-1", + "phases": "BN", + "to": "l2710546" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2860478", + "length": "208.7905", + "name": "line_ln5744325-1", + "phases": "BN", + "to": "l2822858" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3198358", + "length": "348.6653", + "name": "line_ln6170303-1", + "phases": "BN", + "to": "l3104859" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069428", + "length": "31.2008", + "name": "line_ln5958707-1", + "phases": "BN", + "to": "p827576" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3010560", + "length": "106.9941", + "name": "line_ln6169246-1", + "phases": "ABCN", + "to": "m1047483" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m3763618", + "length": "12.4152", + "name": "line_ln81354561-2", + "phases": "C", + "to": "p1121282" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108500", + "length": "83.4259", + "name": "line_ln5503544-1", + "phases": "ABCN", + "to": "m1108505" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027038", + "length": "340.7628", + "name": "line_ln5472396-1", + "phases": "BN", + "to": "m1027036" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069428", + "length": "54.0570", + "name": "line_ln5532786-2", + "phases": "BN", + "to": "n1139257" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "n1139257", + "length": "89.4306", + "name": "line_ln5532786-3", + "phases": "BN", + "to": "l3029518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027091", + "length": "90.5298", + "name": "line_ln6348967-1", + "phases": "AN", + "to": "m1027092" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047831", + "length": "263.7188", + "name": "line_ln6290208-1", + "phases": "BN", + "to": "l3178974" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1126031", + "length": "109.2904", + "name": "line_ln5896727-1", + "phases": "CN", + "to": "l3179608" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108355", + "length": "286.5117", + "name": "line_ln5715019-1", + "phases": "CN", + "to": "m1108352" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1144664", + "length": "216.4742", + "name": "line_ln5986926-3", + "phases": "CN", + "to": "l3178972" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "p873801", + "length": "23.9456", + "name": "line_ln81018878-2", + "phases": "A", + "to": "n1138608" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069607", + "length": "125.9248", + "name": "line_ln5895801-1", + "phases": "BN", + "to": "l2916617" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069227", + "length": "327.7225", + "name": "line_ln6019478-1", + "phases": "CN", + "to": "l2748133" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047688", + "length": "50.7776", + "name": "line_ln5986926-2", + "phases": "CN", + "to": "n1144664" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "n1138608", + "length": "275.6792", + "name": "line_ln81018878-3", + "phases": "A", + "to": "l3232301" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026951", + "length": "218.4411", + "name": "line_ln6047564-1", + "phases": "BN", + "to": "l2954347" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2935553", + "length": "429.8725", + "name": "line_ln5593223-1", + "phases": "BN", + "to": "m1026987" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l3047073", + "length": "697.3183", + "name": "line_ln8979358-3", + "phases": "C", + "to": "m1069250" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2803194", + "length": "289.8126", + "name": "line_ln8979358-2", + "phases": "C", + "to": "l3047073" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1069249", + "length": "194.9453", + "name": "line_ln8979358-1", + "phases": "C", + "to": "l2803194" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827537", + "length": "228.7663", + "name": "line_ln6079950-1", + "phases": "AN", + "to": "l3122827" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069335", + "length": "38.7523", + "name": "line_ln6231997-1", + "phases": "CN", + "to": "p827564" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069461", + "length": "160.8152", + "name": "line_ln6258443-1", + "phases": "ABCN", + "to": "l2876798" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e206209", + "length": "408.6547", + "name": "line_ln6108142-1", + "phases": "ABCN", + "to": "l2897777" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027055", + "length": "22.0209", + "name": "line_ln6228328-1", + "phases": "AN", + "to": "m1027056" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069494", + "length": "199.9999", + "name": "line_ln6076247-1", + "phases": "CN", + "to": "l2745806" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "d5712477-3_int", + "length": "338.2957", + "name": "line_ln5712477-3", + "phases": "CN", + "to": "m1069174" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2841615", + "length": "132.3679", + "name": "line_ln6199504-1", + "phases": "AN", + "to": "m1026931" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p827520", + "length": "21.0143", + "name": "line_ln5712477-2", + "phases": "CN", + "to": "n1139545" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125940", + "length": "110.0780", + "name": "line_ln5957491-1", + "phases": "BN", + "to": "l3048963" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2991908", + "length": "330.8007", + "name": "line_ln6229796-1", + "phases": "AN", + "to": "l3178973" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026647", + "length": "345.3250", + "name": "line_ln6047573-2", + "phases": "AN", + "to": "m3036169" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx1/0_3w_cs_ln5686244-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "m1209791", + "length": "11.0551", + "name": "line_ln5686244-1", + "phases": "AN", + "to": "p903354" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2766744", + "length": "175.1901", + "name": "line_ln5895810-1", + "phases": "BN", + "to": "m1027038" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000904", + "length": "158.2381", + "name": "line_ln2000905-1", + "phases": "CN", + "to": "m2000905" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3179650", + "length": "139.7566", + "name": "line_ln5591710-2", + "phases": "ABCN", + "to": "l3232902" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3232902", + "length": "127.6094", + "name": "line_ln5591710-3", + "phases": "ABCN", + "to": "m4122658" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p903490", + "length": "8.2162", + "name": "line_ln6137794-1", + "phases": "CN", + "to": "m1125961" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047725", + "length": "287.6655", + "name": "line_ln5738651-1", + "phases": "BN", + "to": "m1047728" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p829962", + "length": "20.1075", + "name": "line_ln5807087-1", + "phases": "CN", + "to": "m1142835" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000410", + "length": "158.2381", + "name": "line_ln2000411-1", + "phases": "AN", + "to": "m2000411" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089197", + "length": "39.5377", + "name": "line_ln5867448-1", + "phases": "AN", + "to": "p827498" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1139538", + "length": "114.1778", + "name": "line_ln6383060-3", + "phases": "BN", + "to": "l3066818" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827533", + "length": "30.7170", + "name": "line_ln6383060-2", + "phases": "BN", + "to": "n1139538" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p903360", + "length": "31.8685", + "name": "line_ln6413566-1", + "phases": "AN", + "to": "m1047430" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026312", + "length": "175.4824", + "name": "line_ln5744338-1", + "phases": "BN", + "to": "l2973163" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2748128", + "length": "570.6542", + "name": "line_ln6320327-1", + "phases": "CN", + "to": "m1089170" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2954354", + "length": "189.4181", + "name": "line_ln6229806-1", + "phases": "AN", + "to": "l2673321" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2897792", + "length": "309.4213", + "name": "line_ln6260017-1", + "phases": "AN", + "to": "l2785538" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1140829", + "length": "18.3405", + "name": "line_ln5621833-3", + "phases": "CN", + "to": "m1026703" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026705", + "length": "23.0099", + "name": "line_ln5621833-2", + "phases": "CN", + "to": "n1140829" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p895107", + "length": "287.4650", + "name": "line_ln5740282-1", + "phases": "CN", + "to": "l3030126" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047386", + "length": "311.9474", + "name": "line_ln5774493-1", + "phases": "BN", + "to": "m1047379" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026690", + "length": "316.1544", + "name": "line_ln6290217-1", + "phases": "ABCN", + "to": "l2879078" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026940", + "length": "215.9216", + "name": "line_ln5562925-1", + "phases": "BN", + "to": "m1026939" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209811", + "length": "402.2457", + "name": "line_ln5714974-1", + "phases": "ABCN", + "to": "m1209807" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2897789", + "length": "200.7313", + "name": "line_ln6350554-1", + "phases": "BN", + "to": "m1069662" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2879076", + "length": "79.5410", + "name": "line_ln5532751-1", + "phases": "ABCN", + "to": "m1089122" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000708", + "length": "158.2381", + "name": "line_ln2000709-1", + "phases": "BN", + "to": "m2000709" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008758", + "length": "135.1973", + "name": "line_ln5895769-1", + "phases": "BN", + "to": "l2673300" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3254227", + "length": "155.6866", + "name": "line_ln6108164-1", + "phases": "BN", + "to": "m1069550" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1089097", + "length": "272.7132", + "name": "line_ln6077773-1", + "phases": "BN", + "to": "m1108270" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_wpal_ln6259996-1", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047521", + "length": "137.7578", + "name": "line_ln6259996-1", + "phases": "ABCN", + "to": "m1047526" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2822868", + "length": "193.0094", + "name": "line_ln5472365-1", + "phases": "AN", + "to": "l2766723" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047733", + "length": "340.4195", + "name": "line_ln6411363-1", + "phases": "AN", + "to": "l3066804" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3122825", + "length": "199.6921", + "name": "line_ln6199526-1", + "phases": "AN", + "to": "l2991920" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2766738", + "length": "181.9563", + "name": "line_ln5623418-1", + "phases": "ABCN", + "to": "m1069513" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069517", + "length": "80.5233", + "name": "line_ln6229819-1", + "phases": "ABCN", + "to": "m1069518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s2s3_1", + "length": "14763.7795", + "name": "line_hvmv69s2s3-1", + "phases": "ABCN", + "to": "hvmv69s2s3_2" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1108269", + "length": "237.9491", + "name": "line_ln5956458-1", + "phases": "BN", + "to": "l2729405" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3141396", + "length": "526.1914", + "name": "line_ln6017288-1", + "phases": "CN", + "to": "l3066808" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027005", + "length": "127.3645", + "name": "line_ln5653453-1", + "phases": "BN", + "to": "l3160100" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p827500", + "length": "322.1691", + "name": "line_ln6110365-1", + "phases": "AN", + "to": "l2822861" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1089144", + "length": "8.5031", + "name": "line_ln6352700-1", + "phases": "AN", + "to": "p827522" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069567", + "length": "501.8222", + "name": "line_ln5774480-1", + "phases": "BN", + "to": "m1069582" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "d5623395-1_int", + "length": "355.5194", + "name": "line_ln5623395-1", + "phases": "BN", + "to": "l2879068" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001002", + "length": "158.2381", + "name": "line_ln2001003-1", + "phases": "BN", + "to": "m2001003" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001211", + "length": "158.2381", + "name": "line_ln2001212-1", + "phases": "CN", + "to": "m2001212" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027101", + "length": "537.7496", + "name": "line_ln6259983-1", + "phases": "BN", + "to": "l2860480" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166407", + "length": "1228.6008", + "name": "line_ln6318771-1", + "phases": "CN", + "to": "l3064514" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047688", + "length": "224.7488", + "name": "line_ln5472352-1", + "phases": "ABCN", + "to": "m1047699" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166398", + "length": "230.3660", + "name": "line_ln6048526-1", + "phases": "CN", + "to": "l3142050" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001309", + "length": "158.2381", + "name": "line_ln2001310-1", + "phases": "AN", + "to": "m2001310" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069217", + "length": "13.3473", + "name": "line_ln6411376-1", + "phases": "ABCN", + "to": "l2841626" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142869", + "length": "97.9326", + "name": "line_ln5715002-1", + "phases": "ABCN", + "to": "m1142871" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026378", + "length": "294.3394", + "name": "line_ln6506312-2", + "phases": "AN", + "to": "l2897778" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026660", + "length": "325.9950", + "name": "line_ln5623405-1", + "phases": "AN", + "to": "m1026657" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026954", + "length": "691.4081", + "name": "line_ln5683818-1", + "phases": "ABCN", + "to": "l2804256" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047478", + "length": "139.4813", + "name": "line_ln6199513-1", + "phases": "CN", + "to": "l2766716" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv_sub1_48332", + "length": "63.7665", + "name": "line_ln5710794-3", + "phases": "ABCN", + "to": "d5710794-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5683000-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2691949", + "length": "506.5679", + "name": "line_ln5683000-1", + "phases": "AN", + "to": "l2692000" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108499", + "length": "204.0005", + "name": "line_ln6417942-1", + "phases": "AN", + "to": "m1108507" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr1/0_tpx_ln6229827-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1125974", + "length": "2.1608", + "name": "line_ln5927299-1", + "phases": "CN", + "to": "l3104796" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069384", + "length": "131.6854", + "name": "line_ln6350532-1", + "phases": "AN", + "to": "l3066805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069556", + "length": "296.9676", + "name": "line_ln5894212-2", + "phases": "ABCN", + "to": "m1069564" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069549", + "length": "194.1824", + "name": "line_ln5894212-1", + "phases": "ABCN", + "to": "m1069556" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026333", + "length": "151.3151", + "name": "line_ln6198013-2", + "phases": "ABCN", + "to": "m1026331" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026331", + "length": "186.2342", + "name": "line_ln6198013-1", + "phases": "ABCN", + "to": "m1026330" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027087", + "length": "297.0002", + "name": "line_ln6015811-1", + "phases": "AN", + "to": "l2726983" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3047058", + "length": "495.1403", + "name": "line_ln6153058-1", + "phases": "ABCN", + "to": "l3047059" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069565", + "length": "267.2170", + "name": "line_ln5472387-1", + "phases": "BN", + "to": "m1069572" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1140832", + "length": "85.7112", + "name": "line_ln5683827-3", + "phases": "CN", + "to": "l2841631" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108352", + "length": "302.5568", + "name": "line_ln6230805-1", + "phases": "CN", + "to": "m1108356" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026662", + "length": "29.1314", + "name": "line_ln5683827-2", + "phases": "CN", + "to": "n1140832" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2692660", + "length": "487.6130", + "name": "line_ln5473438-1", + "phases": "AN", + "to": "l2955076" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108260", + "length": "116.9874", + "name": "line_ln6078744-1", + "phases": "BN", + "to": "m1108259" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3065665", + "length": "356.1330", + "name": "line_ln5775433-3", + "phases": "AN", + "to": "l3235946" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069135", + "length": "232.9077", + "name": "line_ln6138614-1", + "phases": "ABCN", + "to": "r18242" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089213", + "length": "264.2370", + "name": "line_ln5799408-1", + "phases": "ABCN", + "to": "l3118855" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3254869", + "length": "235.9296", + "name": "line_ln5644788-1", + "phases": "BN", + "to": "l2798067" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069563", + "length": "127.3109", + "name": "line_ln5924705-2", + "phases": "AN", + "to": "n1136360" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026657", + "length": "19.7194", + "name": "line_ln5655683-1", + "phases": "AN", + "to": "m1026656" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047615", + "length": "6.5023", + "name": "line_ln6298585-2", + "phases": "ABCN", + "to": "l3216123" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047593", + "length": "428.3360", + "name": "line_ln6298585-1", + "phases": "ABCN", + "to": "m1047615" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1136360", + "length": "146.7622", + "name": "line_ln5924705-3", + "phases": "AN", + "to": "l2729424" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "p904452", + "length": "20.8247", + "name": "line_ln81048100-6", + "phases": "B", + "to": "221-282818" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "n1230123", + "length": "183.0816", + "name": "line_ln81048100-5", + "phases": "B", + "to": "l2708744" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "221-282818", + "length": "21.2881", + "name": "line_ln81048100-7", + "phases": "B", + "to": "n1230123" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2804957", + "length": "195.6736", + "name": "line_ln5957460-1", + "phases": "CN", + "to": "l3048937" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047568", + "length": "297.1146", + "name": "line_ln5804800-1", + "phases": "ABCN", + "to": "m1047558" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026774", + "length": "391.3442", + "name": "line_ln6077782-1", + "phases": "ABCN", + "to": "m1026769" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069619", + "length": "8.7989", + "name": "line_ln6290226-1", + "phases": "BN", + "to": "m1069620" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047293", + "length": "65.9258", + "name": "line_ln6047605-1", + "phases": "ABCN", + "to": "m1047292" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2898515", + "length": "195.5573", + "name": "line_ln6018326-1", + "phases": "CN", + "to": "m1166387" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2804261", + "length": "319.0817", + "name": "line_ln6047582-1", + "phases": "CN", + "to": "l3178980" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108361", + "length": "107.7460", + "name": "line_ln5986961-1", + "phases": "CN", + "to": "l3048228" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2673323", + "length": "234.7150", + "name": "line_ln6199535-1", + "phases": "CN", + "to": "m1009809" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p829963", + "length": "21.9034", + "name": "line_ln5535142-1", + "phases": "BN", + "to": "m1125916" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3027156", + "length": "373.3943", + "name": "line_ln5773136-1", + "phases": "CN", + "to": "l2860481" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e183473", + "length": "21.1388", + "name": "line_ln5576174-3", + "phases": "ABCN", + "to": "r20703" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l2708744", + "length": "312.6824", + "name": "line_ln81048100-2", + "phases": "B", + "to": "l2690187" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1209800", + "length": "179.7399", + "name": "line_ln6198133-1", + "phases": "CN", + "to": "l2839332" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2859403", + "length": "124.5329", + "name": "line_ln5576174-2", + "phases": "ABCN", + "to": "l2973791" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026323", + "length": "386.3576", + "name": "line_ln5714053-1", + "phases": "BN", + "to": "m1026320" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l2690187", + "length": "293.8702", + "name": "line_ln81048100-3", + "phases": "B", + "to": "m1108412" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3029506", + "length": "290.2646", + "name": "line_ln6350545-1", + "phases": "BN", + "to": "m1047518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2820556", + "length": "129.5582", + "name": "line_ln6017297-1", + "phases": "AN", + "to": "m1047410" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000400", + "length": "503.8947", + "name": "line_ln2000500-1", + "phases": "ABCN", + "to": "m2000500" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "r20703", + "length": "140.3046", + "name": "line_ln5576174-4", + "phases": "ABCN", + "to": "l2859403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069515", + "length": "150.1989", + "name": "line_ln5835160-1", + "phases": "ABCN", + "to": "m1069514" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "d2000401_int", + "length": "158.2381", + "name": "line_ln2000402-1", + "phases": "AN", + "to": "m2000402" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026767", + "length": "144.6877", + "name": "line_ln5500957-1", + "phases": "ABCN", + "to": "l3216346" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2822862", + "length": "212.0336", + "name": "line_ln5744329-1", + "phases": "CN", + "to": "l3066806" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2954346", + "length": "575.0969", + "name": "line_ln6320336-1", + "phases": "BN", + "to": "m1047831" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069533", + "length": "389.5949", + "name": "line_ln6047595-2", + "phases": "ABCN", + "to": "n1136356" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2767341", + "length": "96.2097", + "name": "line_ln6260929-1", + "phases": "ABCN", + "to": "m1125968" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026953", + "length": "99.9999", + "name": "line_ln5651966-1", + "phases": "BN", + "to": "l2764399" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3235241", + "length": "505.8775", + "name": "line_ln5683805-1", + "phases": "CN", + "to": "l2691941" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027109", + "length": "219.7670", + "name": "line_ln6379372-1", + "phases": "AN", + "to": "l3101788" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047409", + "length": "418.4975", + "name": "line_ln6138636-1", + "phases": "AN", + "to": "l2841648" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1009828", + "length": "135.7214", + "name": "line_ln6138591-1", + "phases": "BN", + "to": "l3254206" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1136356", + "length": "84.6741", + "name": "line_ln6047595-3", + "phases": "ABCN", + "to": "m1069549" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2876814", + "length": "261.9987", + "name": "line_ln6001653-2", + "phases": "ABCN", + "to": "m1026834" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2897800", + "length": "86.9148", + "name": "line_ln5532782-1", + "phases": "BN", + "to": "m1047809" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3019248", + "length": "299.9992", + "name": "line_ln6495088-1", + "phases": "BN", + "to": "m3021569" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026844", + "length": "9.7449", + "name": "line_ln6001653-3", + "phases": "ABCN", + "to": "l2876814" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047572", + "length": "114.8210", + "name": "line_ln5631690-1", + "phases": "ABCN", + "to": "m1047580" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026854", + "length": "19.4377", + "name": "line_ln5682327-1", + "phases": "AN", + "to": "p901894" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026834", + "length": "177.1741", + "name": "line_ln6001653-1", + "phases": "ABCN", + "to": "m1026829" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m3036170", + "length": "169.5723", + "name": "line_ln6505951-1", + "phases": "CN", + "to": "l3197642" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026354", + "length": "235.6899", + "name": "line_ln5865271-1", + "phases": "ABCN", + "to": "l3235275" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2766499", + "length": "27.1196", + "name": "line_ln8961800-3", + "phases": "C", + "to": "m1047633" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2879767", + "length": "230.3393", + "name": "line_ln6109148-1", + "phases": "BN", + "to": "l2767407" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "l2786204", + "length": "236.3634", + "name": "line_ln5589094-1", + "phases": "ABCN", + "to": "m1209819" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069465", + "length": "249.4192", + "name": "line_ln6047560-1", + "phases": "AN", + "to": "l3010561" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2673308", + "length": "369.4543", + "name": "line_ln6199557-1", + "phases": "ABCN", + "to": "l2991939" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p828359", + "length": "582.3726", + "name": "line_ln8961800-1", + "phases": "C", + "to": "l2878848" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2878848", + "length": "474.0810", + "name": "line_ln8961800-2", + "phases": "C", + "to": "l2766499" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p895111", + "length": "229.1842", + "name": "line_ln5591834-1", + "phases": "CN", + "to": "l2895496" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026648", + "length": "317.8778", + "name": "line_ln5653462-1", + "phases": "AN", + "to": "l2973159" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2804282", + "length": "267.0625", + "name": "line_ln5714075-1", + "phases": "ABCN", + "to": "l3104154" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1209782", + "length": "127.1404", + "name": "line_ln6048633-1", + "phases": "AN", + "to": "l3217057" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069202", + "length": "398.8543", + "name": "line_ln5956467-1", + "phases": "ABCN", + "to": "l2879073" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2710513", + "length": "620.8249", + "name": "line_ln5625550-1", + "phases": "BN", + "to": "p827553" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1142098", + "length": "170.0548", + "name": "line_ln5805676-3", + "phases": "AN", + "to": "l2936212" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108483", + "length": "22.0663", + "name": "line_ln5805676-2", + "phases": "AN", + "to": "n1142098" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026343", + "length": "30.8785", + "name": "line_ln6411389-1", + "phases": "AN", + "to": "m1026344" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2804254", + "length": "43.6442", + "name": "line_ln6138601-1", + "phases": "AN", + "to": "m1047752" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009838", + "length": "155.0878", + "name": "line_ln5472343-1", + "phases": "BN", + "to": "l2801896" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3160871", + "length": "293.5436", + "name": "line_ln5957495-1", + "phases": "CN", + "to": "l3030203" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2897765", + "length": "374.7407", + "name": "line_ln5835129-1", + "phases": "BN", + "to": "m1047819" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e192201", + "length": "182.6842", + "name": "line_ln6321409-1", + "phases": "ABCN", + "to": "m1209800" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069363", + "length": "303.8930", + "name": "line_ln6290239-1", + "phases": "CN", + "to": "m1069364" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m4118754", + "length": "444.3335", + "name": "line_ln6380821-3", + "phases": "BN", + "to": "m1026312" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3030126", + "length": "157.4342", + "name": "line_ln6260928-1", + "phases": "CN", + "to": "l3254870" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001203", + "length": "158.2381", + "name": "line_ln2001204-1", + "phases": "CN", + "to": "m2001204" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2954338", + "length": "292.4521", + "name": "line_ln5774447-1", + "phases": "BN", + "to": "m1009828" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p901933", + "length": "27.0691", + "name": "line_ln6288699-1", + "phases": "AN", + "to": "m1069563" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069565", + "length": "337.8521", + "name": "line_ln5501089-1", + "phases": "BN", + "to": "l2989596" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6320366-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026798", + "length": "80.5107", + "name": "line_ln5803299-1", + "phases": "CN", + "to": "l2952014" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027109", + "length": "205.3368", + "name": "line_ln6379373-1", + "phases": "AN", + "to": "m1027114" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000908", + "length": "158.2381", + "name": "line_ln2000909-1", + "phases": "CN", + "to": "m2000909" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047480", + "length": "41.3036", + "name": "line_ln5504712-1", + "phases": "AN", + "to": "p827504" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047410", + "length": "306.8765", + "name": "line_ln5623402-1", + "phases": "AN", + "to": "m1047409" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3066810", + "length": "425.3221", + "name": "line_ln5623392-1", + "phases": "CN", + "to": "l2897769" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2860504", + "length": "683.6655", + "name": "line_ln6108172-1", + "phases": "AN", + "to": "l2860493" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1149236", + "length": "14.0555", + "name": "line_ln6232159-1", + "phases": "AN", + "to": "p829974" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2991906", + "length": "211.0557", + "name": "line_ln6138598-1", + "phases": "AN", + "to": "l2879054" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089170", + "length": "256.8719", + "name": "line_ln5926293-1", + "phases": "CN", + "to": "l3085392" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "n1139252", + "length": "20.4742", + "name": "line_ln5621837-3", + "phases": "BN", + "to": "l3122812" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001007", + "length": "158.2381", + "name": "line_ln2001008-1", + "phases": "BN", + "to": "m2001008" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000414", + "length": "158.2381", + "name": "line_ln2000415-1", + "phases": "AN", + "to": "m2000415" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal1/0_tpx_ln6411371-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047649", + "length": "79.0974", + "name": "line_ln6411371-1", + "phases": "ABCN", + "to": "l2973153" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027100", + "length": "229.9990", + "name": "line_ln6122719-1", + "phases": "AN", + "to": "l3140238" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166391", + "length": "348.3422", + "name": "line_ln6048523-1", + "phases": "CN", + "to": "l3254873" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2822867", + "length": "12.3683", + "name": "line_ln5472357-1", + "phases": "BN", + "to": "m1069412" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx2_wpal_ln5496577-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1125913", + "length": "130.2641", + "name": "line_ln5496577-1", + "phases": "BN", + "to": "l3068944" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026393", + "length": "87.4701", + "name": "line_ln5653467-1", + "phases": "AN", + "to": "l2804252" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "221-240988", + "length": "134.7809", + "name": "line_ln8939784-1", + "phases": "C", + "to": "l3141411" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027101", + "length": "11.8843", + "name": "line_ln6229788-1", + "phases": "BN", + "to": "l2710508" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p901910", + "length": "22.2087", + "name": "line_ln5621837-2", + "phases": "BN", + "to": "n1139252" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2785523", + "length": "327.0579", + "name": "line_ln5926303-1", + "phases": "CN", + "to": "l3141388" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125905", + "length": "280.6758", + "name": "line_ln5836177-1", + "phases": "BN", + "to": "l2748839" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137985", + "length": "811.9327", + "name": "line_ln5803264-3", + "phases": "AN", + "to": "l3176656" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047722", + "length": "31.5895", + "name": "line_ln5803264-2", + "phases": "AN", + "to": "n1137985" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047520", + "length": "170.7420", + "name": "line_ln5562932-1", + "phases": "ABCN", + "to": "m1047521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1027043", + "length": "144.9393", + "name": "line_ln5956466-1", + "phases": "ABCN", + "to": "m1027055" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069590", + "length": "443.9831", + "name": "line_ln5591702-1", + "phases": "BN", + "to": "m1069595" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx1/0_tpx_ln6138596-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089148", + "length": "158.8097", + "name": "line_ln6259992-1", + "phases": "AN", + "to": "l2766721" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069483", + "length": "27.3050", + "name": "line_ln5898056-1", + "phases": "CN", + "to": "p827503" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2673316", + "length": "175.2488", + "name": "line_ln6077777-1", + "phases": "AN", + "to": "m1089138" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2858163", + "length": "529.3433", + "name": "line_ln5833611-1", + "phases": "ABCN", + "to": "l2766747" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047441", + "length": "138.2927", + "name": "line_ln5865241-1", + "phases": "BN", + "to": "m1047442" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026852", + "length": "26.5131", + "name": "line_ln5774469-1", + "phases": "CN", + "to": "l2785529" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1125944", + "length": "28.7524", + "name": "line_ln5651987-1", + "phases": "AN", + "to": "p901941" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108354", + "length": "256.3779", + "name": "line_ln6379351-1", + "phases": "CN", + "to": "m1108350" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089143", + "length": "450.6489", + "name": "line_ln5502533-1", + "phases": "ABCN", + "to": "m1089141" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108299", + "length": "22.2995", + "name": "line_ln5686247-1", + "phases": "BN", + "to": "m1108300" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2766732", + "length": "45.0560", + "name": "line_ln5926316-1", + "phases": "BN", + "to": "m1026485" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3029502", + "length": "280.5672", + "name": "line_ln6138608-3", + "phases": "ABCN", + "to": "d6138608-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "q14404", + "length": "15.0822", + "name": "line_ln6138608-2", + "phases": "ABCN", + "to": "regxfmr_190-7361" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069738", + "length": "323.7003", + "name": "line_ln6212942-1", + "phases": "BN", + "to": "l2690941" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2727795", + "length": "105.1792", + "name": "line_ln5895778-1", + "phases": "CN", + "to": "l2972704" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026700", + "length": "72.5888", + "name": "line_ln6286966-3", + "phases": "BN", + "to": "n1140820" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1140820", + "length": "135.6907", + "name": "line_ln6286966-2", + "phases": "BN", + "to": "l3189189" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3142079", + "length": "8.2369", + "name": "line_ln6505938-4", + "phases": "BN", + "to": "m3036162" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2823611", + "length": "273.9171", + "name": "line_ln5473440-1", + "phases": "ABCN", + "to": "l3030204" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069411", + "length": "184.8419", + "name": "line_ln6290202-1", + "phases": "AN", + "to": "l2991905" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3064514", + "length": "204.5053", + "name": "line_ln5591715-1", + "phases": "CN", + "to": "l3048888" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108258", + "length": "141.9639", + "name": "line_ln5894220-1", + "phases": "BN", + "to": "m1108257" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3214069", + "length": "166.0049", + "name": "line_ln6137009-1", + "phases": "ABCN", + "to": "m1125960" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108356", + "length": "204.5835", + "name": "line_ln5503584-1", + "phases": "CN", + "to": "l2674052" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125952", + "length": "41.8933", + "name": "line_ln6137009-2", + "phases": "ABCN", + "to": "l3214069" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108259", + "length": "151.6662", + "name": "line_ln5894220-2", + "phases": "BN", + "to": "m1108258" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m3036164", + "length": "156.6655", + "name": "line_ln5835135-2", + "phases": "BN", + "to": "l2935553" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2691954", + "length": "210.6527", + "name": "line_ln6320368-1", + "phases": "ABCN", + "to": "l3122849" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3048200", + "length": "220.1672", + "name": "line_ln5986920-1", + "phases": "BN", + "to": "m1008733" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089131", + "length": "165.6768", + "name": "line_ln6409869-1", + "phases": "AN", + "to": "l3270854" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2989600", + "length": "326.1218", + "name": "line_ln5591813-1", + "phases": "AN", + "to": "m1166362" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1026661", + "length": "16.6482", + "name": "line_ln8945012-1", + "phases": "A", + "to": "p827530" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2804252", + "length": "205.3900", + "name": "line_ln5683814-1", + "phases": "AN", + "to": "l3195310" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142819", + "length": "246.0130", + "name": "line_ln5745348-1", + "phases": "ABCN", + "to": "m1142818" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "221-306687", + "length": "436.3281", + "name": "line_ln8968082-2", + "phases": "B", + "to": "l2916625" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "p841985", + "length": "5.6226", + "name": "line_ln8968082-1", + "phases": "B", + "to": "221-306687" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2001300", + "length": "436.0067", + "name": "line_ln2001400-1", + "phases": "ABCN", + "to": "m2001400" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1142815", + "length": "79.3849", + "name": "line_ln6291288-3", + "phases": "AN", + "to": "n1141477" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx2_wpal_ln5561444-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "m1125988", + "length": "154.7468", + "name": "line_ln5561444-1", + "phases": "AN", + "to": "l2898457" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1141477", + "length": "92.9323", + "name": "line_ln6291288-2", + "phases": "AN", + "to": "l2879794" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2876846", + "length": "954.6560", + "name": "line_ln5531325-1", + "phases": "BN", + "to": "l3048203" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln6019479-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "l2785531", + "length": "299.9911", + "name": "line_ln5956488-1", + "phases": "CN", + "to": "l3216358" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047577", + "length": "337.9466", + "name": "line_ln5619489-1", + "phases": "ABCN", + "to": "m1047592" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108315", + "length": "236.8860", + "name": "line_ln6291253-1", + "phases": "ABCN", + "to": "m1108311" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069607", + "length": "107.6571", + "name": "line_ln5744350-1", + "phases": "BN", + "to": "m1069619" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "d2001301_int", + "length": "158.2381", + "name": "line_ln2001302-1", + "phases": "AN", + "to": "m2001302" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108286", + "length": "260.1462", + "name": "line_ln5955063-1", + "phases": "ABCN", + "to": "l2933164" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "l2936216", + "length": "307.2721", + "name": "line_ln5473351-1", + "phases": "ABCN", + "to": "226-23745" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108387", + "length": "100.0005", + "name": "line_ln5728479-1", + "phases": "ABCN", + "to": "m1108398" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047773", + "length": "221.5927", + "name": "line_ln6320333-1", + "phases": "BN", + "to": "l2973152" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069201", + "length": "473.8642", + "name": "line_ln6199520-1", + "phases": "CN", + "to": "l3010565" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166364", + "length": "244.8668", + "name": "line_ln5805804-1", + "phases": "CN", + "to": "m1166358" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026905", + "length": "18.1094", + "name": "line_ln6383058-1", + "phases": "AN", + "to": "p827515" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "e182744", + "length": "199.9987", + "name": "line_ln5803255-1", + "phases": "BN", + "to": "l2801895" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069398", + "length": "339.5027", + "name": "line_ln5653454-1", + "phases": "AN", + "to": "l3010559" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108401", + "length": "434.6776", + "name": "line_ln6422012-1", + "phases": "ABCN", + "to": "m1108402" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001212", + "length": "158.2381", + "name": "line_ln2001213-1", + "phases": "CN", + "to": "m2001213" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001310", + "length": "158.2381", + "name": "line_ln2001311-1", + "phases": "AN", + "to": "m2001311" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1134471", + "length": "243.6564", + "name": "line_ln6137084-2", + "phases": "AN", + "to": "l2839331" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108347", + "length": "300.4353", + "name": "line_ln5684869-1", + "phases": "CN", + "to": "m1108355" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027080", + "length": "73.1785", + "name": "line_ln6137084-3", + "phases": "AN", + "to": "n1134471" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1108393", + "length": "5.8961", + "name": "line_ln81048093-1", + "phases": "A", + "to": "193-51796" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx6_wpal6_wpal_ln6108128-2", + "continuous_rating_C": "115.00", + "emergency_rating_C": "115.00", + "from": "m1047649", + "length": "20.0682", + "name": "line_ln6108128-2", + "phases": "CN", + "to": "n1136997" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026857", + "length": "28.0186", + "name": "line_ln6228278-1", + "phases": "AN", + "to": "m1026859" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2766746", + "length": "362.4657", + "name": "line_ln6077809-1", + "phases": "CN", + "to": "m1027073" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr1/0_tpx_ln6229827-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1125917", + "length": "27.0313", + "name": "line_ln7064337-2", + "phases": "CN", + "to": "p1197121" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069627", + "length": "162.9672", + "name": "line_ln6380834-1", + "phases": "BN", + "to": "l3254228" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1108527", + "length": "12.6755", + "name": "line_ln5804787-1", + "phases": "BN", + "to": "l3141394" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009720", + "length": "93.7123", + "name": "line_ln5714057-1", + "phases": "ABCN", + "to": "m1009715" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx6_wpal6_wpal_ln6108128-2", + "continuous_rating_C": "115.00", + "emergency_rating_C": "115.00", + "from": "n1136997", + "length": "82.9683", + "name": "line_ln6108128-3", + "phases": "CN", + "to": "l3104123" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089173", + "length": "97.0016", + "name": "line_ln5562923-1", + "phases": "ABCN", + "to": "m1089174" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2785517", + "length": "328.1981", + "name": "line_ln6506309-1", + "phases": "CN", + "to": "l3066809" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2766722", + "length": "172.7240", + "name": "line_ln6290211-1", + "phases": "BN", + "to": "l2879071" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000405", + "length": "158.2381", + "name": "line_ln2000406-1", + "phases": "AN", + "to": "m2000406" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2933164", + "length": "221.4275", + "name": "line_ln6440069-1", + "phases": "ABCN", + "to": "l3029498" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026824", + "length": "623.7895", + "name": "line_ln5985378-1", + "phases": "ABCN", + "to": "m1009807" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009698", + "length": "264.9150", + "name": "line_ln6258429-1", + "phases": "ABCN", + "to": "m1026767" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089162", + "length": "846.4428", + "name": "line_ln5472348-1", + "phases": "CN", + "to": "m1089165" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3160104", + "length": "366.0667", + "name": "line_ln6411384-1", + "phases": "BN", + "to": "m1047471" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "e182727", + "length": "20.0645", + "name": "line_ln6439975-1", + "phases": "CN", + "to": "m1027042" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047303", + "length": "325.8324", + "name": "line_ln6380847-1", + "phases": "ABCN", + "to": "l3254238" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3179646", + "length": "253.8216", + "name": "line_ln5805728-1", + "phases": "ABCN", + "to": "l2674027" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3160872", + "length": "190.3807", + "name": "line_ln6321420-1", + "phases": "ABCN", + "to": "m1142860" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3160115", + "length": "263.7184", + "name": "line_ln6320355-1", + "phases": "BN", + "to": "l2935567" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000600", + "length": "372.3127", + "name": "line_ln2000700-1", + "phases": "ABCN", + "to": "m2000700" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2820590", + "length": "181.8499", + "name": "line_ln5531334-1", + "phases": "CN", + "to": "m1108328" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209749", + "length": "666.6055", + "name": "line_ln5896826-1", + "phases": "BN", + "to": "l2748840" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069133", + "length": "59.6443", + "name": "line_ln5742808-1", + "phases": "AN", + "to": "l2710521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l3027670", + "length": "472.5929", + "name": "line_ln81048103-2", + "phases": "B", + "to": "m1108459" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx2_wpal_ln5496577-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "l3068944", + "length": "7.2842", + "name": "line_ln5708136-1", + "phases": "BN", + "to": "m1125911" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166361", + "length": "226.6312", + "name": "line_ln6198041-1", + "phases": "AN", + "to": "l2692661" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3160107", + "length": "353.7660", + "name": "line_ln6350541-1", + "phases": "ABCN", + "to": "l3104125" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2936270", + "length": "198.8142", + "name": "line_ln6351517-1", + "phases": "AN", + "to": "l3086078" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2935559", + "length": "124.2438", + "name": "line_ln6411397-1", + "phases": "AN", + "to": "l3048214" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026851", + "length": "98.5616", + "name": "line_ln5502542-1", + "phases": "ABCN", + "to": "l3235257" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047303", + "length": "926.0535", + "name": "line_ln5986964-1", + "phases": "CN", + "to": "l3048230" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047756", + "length": "18.3622", + "name": "line_ln6380812-1", + "phases": "AN", + "to": "m1047755" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3119793", + "length": "141.3341", + "name": "line_ln6102834-2", + "phases": "BN", + "to": "m1047371" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047322", + "length": "243.9281", + "name": "line_ln5835148-1", + "phases": "AN", + "to": "l3048211" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p901909", + "length": "67.7247", + "name": "line_ln6379342-1", + "phases": "BN", + "to": "m1026472" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047379", + "length": "170.6674", + "name": "line_ln6102834-1", + "phases": "BN", + "to": "l3119793" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2860506", + "length": "821.2778", + "name": "line_ln5653489-1", + "phases": "BN", + "to": "m1027019" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3216368", + "length": "90.8688", + "name": "line_ln5683858-2", + "phases": "ABCN", + "to": "n1140827" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209775", + "length": "531.7275", + "name": "line_ln6078775-1", + "phases": "ABCN", + "to": "m1209774" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1140827", + "length": "56.6568", + "name": "line_ln5683858-3", + "phases": "ABCN", + "to": "m1026726" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125955", + "length": "370.2767", + "name": "line_ln5625527-1", + "phases": "CN", + "to": "l3236004" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026701", + "length": "200.6493", + "name": "line_ln6411407-1", + "phases": "ABCN", + "to": "m1026697" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1108412", + "length": "196.3753", + "name": "line_ln81048103-1", + "phases": "B", + "to": "l3027670" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p895117", + "length": "16.9985", + "name": "line_ln6409780-1", + "phases": "BN", + "to": "m1069532" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3949154", + "length": "12.4230", + "name": "line_ln6991381-2", + "phases": "AN", + "to": "l3728038" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069467", + "length": "51.6392", + "name": "line_ln5714044-1", + "phases": "AN", + "to": "m1069466" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3728038", + "length": "259.5434", + "name": "line_ln6991381-4", + "phases": "AN", + "to": "l3728039" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2991943", + "length": "254.2215", + "name": "line_ln5532790-1", + "phases": "CN", + "to": "m1047319" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1108499", + "length": "118.9067", + "name": "line_ln5833633-4", + "phases": "AN", + "to": "l3065665" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026329", + "length": "112.0985", + "name": "line_ln5895787-1", + "phases": "ABCN", + "to": "m1026328" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3768670", + "length": "14.6639", + "name": "line_ln6900590-2", + "phases": "AN", + "to": "p1123251" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089119", + "length": "258.8058", + "name": "line_ln5683823-1", + "phases": "ABCN", + "to": "m1089118" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3048889", + "length": "286.9790", + "name": "line_ln6137018-1", + "phases": "CN", + "to": "m1166407" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108331", + "length": "6.6651", + "name": "line_ln5712492-1", + "phases": "CN", + "to": "l3045895" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3728039", + "length": "197.9911", + "name": "line_ln6991381-6", + "phases": "AN", + "to": "l3728040" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3045895", + "length": "293.9298", + "name": "line_ln5712492-2", + "phases": "CN", + "to": "m1108329" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069544", + "length": "10.4787", + "name": "line_ln5623415-1", + "phases": "BN", + "to": "m1069543" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3728040", + "length": "124.9685", + "name": "line_ln6991381-8", + "phases": "AN", + "to": "l3728041" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047724", + "length": "139.0173", + "name": "line_ln5773040-1", + "phases": "ABCN", + "to": "m1047722" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069532", + "length": "192.1886", + "name": "line_ln6046046-1", + "phases": "BN", + "to": "l2785534" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047722", + "length": "353.9081", + "name": "line_ln5773040-2", + "phases": "ABCN", + "to": "l2841621" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026857", + "length": "273.7427", + "name": "line_ln5651961-1", + "phases": "AN", + "to": "l2973165" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001207", + "length": "158.2381", + "name": "line_ln2001208-1", + "phases": "CN", + "to": "m2001208" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_tpx_ln5742835-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1009770", + "length": "182.7023", + "name": "line_ln5742835-1", + "phases": "ABCN", + "to": "l2689691" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m3037538", + "length": "237.1998", + "name": "line_ln5501001-2", + "phases": "CN", + "to": "l2857591" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2689726", + "length": "446.4914", + "name": "line_ln5647724-1", + "phases": "AN", + "to": "m1047400" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026701", + "length": "16.9465", + "name": "line_ln5837358-1", + "phases": "AN", + "to": "p827560" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3216351", + "length": "103.9953", + "name": "line_ln5986937-1", + "phases": "AN", + "to": "l2879081" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5593235-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3141399", + "length": "252.2085", + "name": "line_ln5593235-1", + "phases": "AN", + "to": "m1069210" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142871", + "length": "19.4870", + "name": "line_ln5989326-1", + "phases": "CN", + "to": "p829956" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2897780", + "length": "142.9531", + "name": "line_ln5744341-1", + "phases": "ABCN", + "to": "l3235255" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047794", + "length": "289.2147", + "name": "line_ln5502559-1", + "phases": "BN", + "to": "m1047792" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009715", + "length": "263.6724", + "name": "line_ln6380825-1", + "phases": "ABCN", + "to": "m1009705" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2841639", + "length": "145.4316", + "name": "line_ln5804806-1", + "phases": "AN", + "to": "m1026877" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2973152", + "length": "56.7954", + "name": "line_ln5804796-1", + "phases": "BN", + "to": "m1047777" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047623", + "length": "207.5506", + "name": "line_ln5956497-1", + "phases": "AN", + "to": "l2748157" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "p829965", + "length": "91.6011", + "name": "line_ln5928744-1", + "phases": "ABCN", + "to": "l2936271" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069558", + "length": "126.8093", + "name": "line_ln6017312-1", + "phases": "BN", + "to": "l3254229" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx4_tpx_ln6169266-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "200.00", + "from": "m1069597", + "length": "111.5238", + "name": "line_ln6169266-1", + "phases": "BN", + "to": "l2785535" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047342", + "length": "241.7915", + "name": "line_ln5683832-1", + "phases": "AN", + "to": "l3197645" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069156", + "length": "68.8429", + "name": "line_ln5926297-1", + "phases": "CN", + "to": "l2710510" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209790", + "length": "193.9492", + "name": "line_ln5594242-1", + "phases": "ABCN", + "to": "m1209788" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3142078", + "length": "442.0581", + "name": "line_ln6230759-1", + "phases": "BN", + "to": "l2879752" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142860", + "length": "165.9460", + "name": "line_ln6139646-1", + "phases": "ABCN", + "to": "m1142863" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108505", + "length": "179.0075", + "name": "line_ln5624342-1", + "phases": "ABCN", + "to": "l2955047" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2989566", + "length": "283.4381", + "name": "line_ln6318768-1", + "phases": "ABCN", + "to": "m1108378" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186067", + "length": "164.5040", + "name": "line_ln6504019-5", + "phases": "ABCN", + "to": "m3032980" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089148", + "length": "516.6344", + "name": "line_ln5865245-1", + "phases": "AN", + "to": "l2991906" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3197646", + "length": "323.8198", + "name": "line_ln6320342-1", + "phases": "ABCN", + "to": "m1026851" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2691942", + "length": "245.7255", + "name": "line_ln5502524-1", + "phases": "BN", + "to": "m1047374" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5683000-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2841000", + "length": "196.2395", + "name": "line_ln6128000-1", + "phases": "AN", + "to": "l2841648" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6504019-6_int", + "length": "526.2791", + "name": "line_ln6504019-6", + "phases": "ABCN", + "to": "m1186065" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027036", + "length": "263.4325", + "name": "line_ln5714070-1", + "phases": "BN", + "to": "l2785543" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5744357-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069218", + "length": "296.1215", + "name": "line_ln6047569-1", + "phases": "AN", + "to": "l2954351" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009824", + "length": "217.2309", + "name": "line_ln6350528-1", + "phases": "BN", + "to": "l2691939" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2925506", + "length": "102.5315", + "name": "line_ln5472402-1", + "phases": "ABCN", + "to": "m1069438" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3159037", + "length": "162.1578", + "name": "line_ln5727681-1", + "phases": "BN", + "to": "m1069738" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3235266", + "length": "260.5275", + "name": "line_ln6046144-1", + "phases": "ABCN", + "to": "l2801950" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p895106", + "length": "131.7627", + "name": "line_ln5952393-1", + "phases": "BN", + "to": "l3048887" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026655", + "length": "206.9838", + "name": "line_ln6260020-1", + "phases": "ABCN", + "to": "m1009651" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal1/0_tpx_ln5956462-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1108344", + "length": "129.3679", + "name": "line_ln5956462-1", + "phases": "CN", + "to": "l2804250" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108520", + "length": "320.0004", + "name": "line_ln5524067-1", + "phases": "CN", + "to": "m1108514" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2935549", + "length": "315.0343", + "name": "line_ln5835131-1", + "phases": "ABCN", + "to": "m1069420" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069174", + "length": "191.1439", + "name": "line_ln5742813-1", + "phases": "CN", + "to": "l2841629" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e192860", + "length": "64.2826", + "name": "line_ln5815900-1", + "phases": "ABCN", + "to": "m1209817" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1186061", + "length": "119.6550", + "name": "line_ln6230800-1", + "phases": "BN", + "to": "l2861223" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3066816", + "length": "398.4986", + "name": "line_ln5774465-1", + "phases": "AN", + "to": "m1026667" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2688692", + "length": "16.7214", + "name": "line_ln5527400-1", + "phases": "ABCN", + "to": "m1108286" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p893163", + "length": "12.8809", + "name": "line_ln5741249-1", + "phases": "AN", + "to": "m1047314" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2879077", + "length": "392.6912", + "name": "line_ln5502537-1", + "phases": "BN", + "to": "m1026693" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026931", + "length": "161.3726", + "name": "line_ln5714039-1", + "phases": "AN", + "to": "l3216336" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089122", + "length": "249.6044", + "name": "line_ln6108137-1", + "phases": "ABCN", + "to": "m1089132" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047836", + "length": "460.9661", + "name": "line_ln6380803-1", + "phases": "BN", + "to": "l3048199" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p827495", + "length": "54.9327", + "name": "line_ln5534964-1", + "phases": "BN", + "to": "m1026466" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "d5863704-2_int", + "length": "291.5319", + "name": "line_ln5863704-2", + "phases": "ABCN", + "to": "n1136667" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1136667", + "length": "115.3725", + "name": "line_ln5863704-3", + "phases": "ABCN", + "to": "196-29519" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089200", + "length": "88.0921", + "name": "line_ln6169244-1", + "phases": "AN", + "to": "l2916602" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125962", + "length": "19.0035", + "name": "line_ln6289479-1", + "phases": "CN", + "to": "p903490" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027087", + "length": "76.0140", + "name": "line_ln5924721-1", + "phases": "AN", + "to": "m1027091" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1209795", + "length": "205.1412", + "name": "line_ln6381845-1", + "phases": "CN", + "to": "l2936268" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069419", + "length": "159.0934", + "name": "line_ln5683810-1", + "phases": "ABCN", + "to": "m1069418" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026797", + "length": "8.3705", + "name": "line_ln5649275-1", + "phases": "ABCN", + "to": "m1026796" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2879068", + "length": "317.5824", + "name": "line_ln5895774-1", + "phases": "BN", + "to": "m1047773" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal1/0_tpx_ln6411371-1", + "continuous_rating_A": "150.00", + "continuous_rating_B": "150.00", + "continuous_rating_C": "150.00", + "emergency_rating_A": "150.00", + "emergency_rating_B": "150.00", + "emergency_rating_C": "150.00", + "from": "l2822866", + "length": "106.9255", + "name": "line_ln5532746-1", + "phases": "ABCN", + "to": "m1047688" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3029518", + "length": "302.9064", + "name": "line_ln6320364-1", + "phases": "BN", + "to": "l2897807" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047794", + "length": "435.2080", + "name": "line_ln5593248-1", + "phases": "BN", + "to": "m1047796" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3236011", + "length": "372.8639", + "name": "line_ln5866274-1", + "phases": "BN", + "to": "l3198358" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000712", + "length": "158.2381", + "name": "line_ln2000713-1", + "phases": "BN", + "to": "m2000713" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069548", + "length": "67.5869", + "name": "line_ln5561440-2", + "phases": "CN", + "to": "n1136358" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047721", + "length": "312.8201", + "name": "line_ln5986924-1", + "phases": "AN", + "to": "m1047723" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1136358", + "length": "62.3526", + "name": "line_ln5561440-3", + "phases": "CN", + "to": "l2729423" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p829797", + "length": "19.1484", + "name": "line_ln6262430-1", + "phases": "AN", + "to": "m1108483" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4_acsr_ln5589097-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "m1142865", + "length": "28.6412", + "name": "line_ln5800724-1", + "phases": "AN", + "to": "p895112" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001305", + "length": "158.2381", + "name": "line_ln2001306-1", + "phases": "AN", + "to": "m2001306" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3036162", + "length": "141.2795", + "name": "line_ln6048598-2", + "phases": "BN", + "to": "l2955055" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1186063", + "length": "12.8481", + "name": "line_ln6322801-1", + "phases": "BN", + "to": "p829979" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2973791", + "length": "211.9683", + "name": "line_ln5684838-1", + "phases": "ABCN", + "to": "l3179650" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026709", + "length": "192.2961", + "name": "line_ln6290233-1", + "phases": "ABCN", + "to": "m1026701" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069225", + "length": "211.3958", + "name": "line_ln5591696-1", + "phases": "CN", + "to": "l3122819" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2989564", + "length": "348.9539", + "name": "line_ln6076245-1", + "phases": "BN", + "to": "l2897789" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "d5504876-1_int", + "length": "221.3697", + "name": "line_ln5504876-1", + "phases": "ABCN", + "to": "p829965" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166356", + "length": "266.7313", + "name": "line_ln5715051-1", + "phases": "AN", + "to": "l3104856" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069147", + "length": "119.4135", + "name": "line_ln6138589-1", + "phases": "CN", + "to": "l3066801" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2785520", + "length": "440.7660", + "name": "line_ln5865232-1", + "phases": "BN", + "to": "m1047386" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069408", + "length": "122.0087", + "name": "line_ln5653458-1", + "phases": "BN", + "to": "l2897774" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108403", + "length": "1062.6553", + "name": "line_ln6422016-1", + "phases": "ABCN", + "to": "m1108406" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026341", + "length": "30.6328", + "name": "line_ln6140777-1", + "phases": "AN", + "to": "p827531" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047435", + "length": "151.1237", + "name": "line_ln5863824-1", + "phases": "AN", + "to": "l2970841" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p827512", + "length": "52.7476", + "name": "line_ln6201696-2", + "phases": "CN", + "to": "n1136994" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1136994", + "length": "128.0348", + "name": "line_ln6201696-3", + "phases": "CN", + "to": "l2785521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089183", + "length": "170.8605", + "name": "line_ln8979256-1", + "phases": "ABCN", + "to": "l2990826" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1089195", + "length": "369.8621", + "name": "line_ln6047556-1", + "phases": "CN", + "to": "l3141393" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089201", + "length": "13.1633", + "name": "line_ln5679696-1", + "phases": "ABCN", + "to": "m1089202" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125968", + "length": "131.1754", + "name": "line_ln5624288-1", + "phases": "ABCN", + "to": "m1125976" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e206211", + "length": "490.9394", + "name": "line_ln5833624-2", + "phases": "ABCN", + "to": "n1134480" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001314", + "length": "158.2381", + "name": "line_ln2001315-1", + "phases": "AN", + "to": "m2001315" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1134480", + "length": "62.4852", + "name": "line_ln5833624-3", + "phases": "ABCN", + "to": "m1069519" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2692635", + "length": "27.6863", + "name": "line_ln5587295-1", + "phases": "ABCN", + "to": "regxfmr_190-8581" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047339", + "length": "271.9089", + "name": "line_ln5472370-1", + "phases": "ABCN", + "to": "l2860491" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069224", + "length": "763.5976", + "name": "line_ln6137088-1", + "phases": "ABCN", + "to": "m1069230" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "221-311359", + "length": "158.0726", + "name": "line_ln8978753-2", + "phases": "ABC", + "to": "l3234149" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "198-5320", + "length": "12.7691", + "name": "line_ln8978753-1", + "phases": "ABC", + "to": "221-311359" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2748144", + "length": "387.4846", + "name": "line_ln5532768-1", + "phases": "ABCN", + "to": "m1069533" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089118", + "length": "282.9783", + "name": "line_ln6411380-1", + "phases": "CN", + "to": "l2973158" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2766741", + "length": "200.5805", + "name": "line_ln6380838-1", + "phases": "ABCN", + "to": "m1069382" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026987", + "length": "156.0327", + "name": "line_ln6108124-1", + "phases": "BN", + "to": "m1026989" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2955081", + "length": "310.6459", + "name": "line_ln6018341-1", + "phases": "ABCN", + "to": "m1108315" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2935555", + "length": "164.8861", + "name": "line_ln5593226-1", + "phases": "AN", + "to": "l2897773" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069535", + "length": "289.0493", + "name": "line_ln5986946-1", + "phases": "BN", + "to": "m1069530" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2916606", + "length": "202.4228", + "name": "line_ln5744332-1", + "phases": "CN", + "to": "l2822864" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3101788", + "length": "179.9939", + "name": "line_ln6198050-1", + "phases": "AN", + "to": "l3101787" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069565", + "length": "606.9908", + "name": "line_ln5804819-1", + "phases": "BN", + "to": "l2785536" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m3036169", + "length": "8.5239", + "name": "line_ln6505947-4", + "phases": "AN", + "to": "l2673317" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026960", + "length": "35.8708", + "name": "line_ln5776666-1", + "phases": "AN", + "to": "m1026961" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010016", + "length": "266.9993", + "name": "line_ln6076267-1", + "phases": "AN", + "to": "m1010015" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047409", + "length": "216.9670", + "name": "line_ln5682375-1", + "phases": "AN", + "to": "l3082992" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p829976", + "length": "179.7946", + "name": "line_ln6413711-1", + "phases": "AN", + "to": "l2955078" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047401", + "length": "144.9974", + "name": "line_ln5691535-1", + "phases": "AN", + "to": "m1047403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142839", + "length": "239.4759", + "name": "line_ln5503575-1", + "phases": "ABCN", + "to": "m1142832" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108540", + "length": "280.5899", + "name": "line_ln6018243-1", + "phases": "CN", + "to": "l3235945" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3086079", + "length": "239.8468", + "name": "line_ln6506305-2", + "phases": "BN", + "to": "l2936276" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047711", + "length": "285.4290", + "name": "line_ln5683841-1", + "phases": "AN", + "to": "m1047718" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3179674", + "length": "393.3859", + "name": "line_ln6381854-1", + "phases": "BN", + "to": "m1209758" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p893610", + "length": "289.0775", + "name": "line_ln6103662-1", + "phases": "BN", + "to": "m1108302" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010014", + "length": "191.7763", + "name": "line_ln6440003-1", + "phases": "AN", + "to": "m1010011" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2876798", + "length": "332.7694", + "name": "line_ln5803273-1", + "phases": "ABCN", + "to": "d5803273-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3215549", + "length": "471.1427", + "name": "line_ln5744367-1", + "phases": "BN", + "to": "l2897800" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000703", + "length": "158.2381", + "name": "line_ln2000704-1", + "phases": "BN", + "to": "m2000704" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l3252336", + "length": "556.8654", + "name": "line_ln81048107-3", + "phases": "B", + "to": "l3233413" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l2802480", + "length": "263.7792", + "name": "line_ln81048107-2", + "phases": "B", + "to": "l3252336" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166370", + "length": "155.8783", + "name": "line_ln5927421-1", + "phases": "CN", + "to": "m1166364" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "d5956471-2_int", + "length": "349.2330", + "name": "line_ln5956471-2", + "phases": "ABCN", + "to": "m1047572" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047548", + "length": "59.7600", + "name": "line_ln5956471-3", + "phases": "ABCN", + "to": "n1136670" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l3233413", + "length": "151.9706", + "name": "line_ln81048107-4", + "phases": "B", + "to": "m1108464" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069524", + "length": "3.8768", + "name": "line_ln5985347-2", + "phases": "AN", + "to": "l3254230" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m3037540", + "length": "10.9671", + "name": "line_ln6506318-4", + "phases": "CN", + "to": "l2710509" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1108459", + "length": "271.0441", + "name": "line_ln81048107-1", + "phases": "B", + "to": "l2802480" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026679", + "length": "29.1645", + "name": "line_ln5958703-1", + "phases": "AN", + "to": "p827537" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069521", + "length": "322.0244", + "name": "line_ln5985347-1", + "phases": "AN", + "to": "m1069524" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125997", + "length": "10.9609", + "name": "line_ln5535139-1", + "phases": "ABCN", + "to": "d5535139-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026906", + "length": "320.9614", + "name": "line_ln6411393-1", + "phases": "AN", + "to": "l3048212" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "e182725", + "length": "408.1424", + "name": "line_ln6292464-1", + "phases": "BN", + "to": "m1026948" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069533", + "length": "61.0444", + "name": "line_ln5898408-1", + "phases": "BN", + "to": "196-29521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1126020", + "length": "94.2641", + "name": "line_ln5712496-1", + "phases": "AN", + "to": "m1126023" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026989", + "length": "635.9156", + "name": "line_ln5865267-1", + "phases": "BN", + "to": "l2673343" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "196-35541", + "length": "245.8313", + "name": "line_ln6141147-1", + "phases": "CN", + "to": "d6141147-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1126020", + "length": "248.3289", + "name": "line_ln5742826-1", + "phases": "AN", + "to": "l3101782" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1027041", + "length": "231.1468", + "name": "line_ln5774456-1", + "phases": "CN", + "to": "l3010564" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026767", + "length": "485.1240", + "name": "line_ln6318742-1", + "phases": "AN", + "to": "l3029500" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3197643", + "length": "133.5978", + "name": "line_ln6108146-1", + "phases": "BN", + "to": "m1026339" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047453", + "length": "228.3554", + "name": "line_ln6380816-1", + "phases": "BN", + "to": "l2691948" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2673315", + "length": "408.3552", + "name": "line_ln5714048-1", + "phases": "AN", + "to": "m1089148" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069130", + "length": "63.5425", + "name": "line_ln5651970-1", + "phases": "AN", + "to": "m1069133" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000800", + "length": "624.7518", + "name": "line_ln2000900-1", + "phases": "ABCN", + "to": "m2000900" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2955005", + "length": "105.1807", + "name": "line_ln5533708-1", + "phases": "BN", + "to": "m1108372" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2766723", + "length": "187.5267", + "name": "line_ln6169253-1", + "phases": "AN", + "to": "l3122822" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3160102", + "length": "201.0296", + "name": "line_ln6231993-1", + "phases": "ABCN", + "to": "p827514" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186063", + "length": "200.3729", + "name": "line_ln6412356-1", + "phases": "ABCN", + "to": "m1209776" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3235256", + "length": "114.4806", + "name": "line_ln5593239-1", + "phases": "ABCN", + "to": "m1069136" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx1/0_tpx_ln5562952-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1069730", + "length": "151.6182", + "name": "line_ln5532733-1", + "phases": "BN", + "to": "l2748124" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026309", + "length": "1283.5831", + "name": "line_ln5895783-1", + "phases": "BN", + "to": "l2860488" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3141388", + "length": "128.6907", + "name": "line_ln5926284-2", + "phases": "CN", + "to": "l3626914" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3626914", + "length": "141.7783", + "name": "line_ln5926284-3", + "phases": "CN", + "to": "m1089102" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3066815", + "length": "145.6488", + "name": "line_ln5835144-1", + "phases": "ABCN", + "to": "m1047548" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1089141", + "length": "22.6455", + "name": "line_ln5679773-1", + "phases": "AN", + "to": "p895105" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1136666", + "length": "97.6816", + "name": "line_ln6422809-4", + "phases": "ABCN", + "to": "m1047528" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2861157", + "length": "398.1260", + "name": "line_ln5594152-1", + "phases": "CN", + "to": "p901951" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3216370", + "length": "330.9733", + "name": "line_ln6199560-1", + "phases": "ABCN", + "to": "m1047312" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047419", + "length": "157.4607", + "name": "line_ln6316403-1", + "phases": "AN", + "to": "l2973157" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047528", + "length": "15.8571", + "name": "line_ln6422809-2", + "phases": "ABCN", + "to": "l2858166" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008742", + "length": "338.9340", + "name": "line_ln6138590-1", + "phases": "BN", + "to": "l2804247" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047526", + "length": "36.6677", + "name": "line_ln6422809-3", + "phases": "ABCN", + "to": "n1136666" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069456", + "length": "206.9229", + "name": "line_ln6138635-1", + "phases": "CN", + "to": "l2897806" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069408", + "length": "262.6830", + "name": "line_ln5593231-1", + "phases": "BN", + "to": "l2822867" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000900", + "length": "540.7130", + "name": "line_ln2001000-1", + "phases": "ABCN", + "to": "m2001000" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2764412", + "length": "472.2083", + "name": "line_ln6409797-4", + "phases": "AN", + "to": "n1134470" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047558", + "length": "179.8968", + "name": "line_ln5956470-1", + "phases": "ABCN", + "to": "m1047550" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln6411379-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069210", + "length": "266.2414", + "name": "line_ln6411379-1", + "phases": "AN", + "to": "l3085400" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1134470", + "length": "295.4180", + "name": "line_ln6409797-3", + "phases": "AN", + "to": "l3251808" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3066814", + "length": "46.8120", + "name": "line_ln5534969-3", + "phases": "ABCN", + "to": "n1134477" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1134477", + "length": "74.1832", + "name": "line_ln5534969-2", + "phases": "ABCN", + "to": "d5534969-2_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3251808", + "length": "195.1227", + "name": "line_ln6409797-1", + "phases": "AN", + "to": "m1027100" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m3036172", + "length": "8.8690", + "name": "line_ln6505952-4", + "phases": "BN", + "to": "l3086079" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3048205", + "length": "642.8287", + "name": "line_ln5835174-1", + "phases": "CN", + "to": "m1108361" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069148", + "length": "351.8178", + "name": "line_ln6259988-1", + "phases": "CN", + "to": "l2673309" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3048230", + "length": "226.8025", + "name": "line_ln5532789-1", + "phases": "CN", + "to": "l2991943" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026486", + "length": "42.3425", + "name": "line_ln5895792-1", + "phases": "BN", + "to": "m1026487" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m4362177", + "length": "214.9096", + "name": "line_ln7167521-1", + "phases": "ABCN", + "to": "m1186052" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026927", + "length": "16.8664", + "name": "line_ln6292826-1", + "phases": "ABCN", + "to": "196-29518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1142108", + "length": "241.7277", + "name": "line_ln5715016-3", + "phases": "AN", + "to": "l2674051" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1125904", + "length": "48.1054", + "name": "line_ln5715016-2", + "phases": "AN", + "to": "n1142108" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027092", + "length": "247.5995", + "name": "line_ln5894313-1", + "phases": "AN", + "to": "l2689727" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026734", + "length": "220.1102", + "name": "line_ln6061814-1", + "phases": "AN", + "to": "l3065696" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2745848", + "length": "188.8270", + "name": "line_ln5833717-1", + "phases": "ABCN", + "to": "l2673308" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026331", + "length": "199.9981", + "name": "line_ln6409762-1", + "phases": "CN", + "to": "l3214055" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026830", + "length": "172.1633", + "name": "line_ln5502528-1", + "phases": "ABCN", + "to": "l2879070" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6108145-1_int", + "length": "195.5159", + "name": "line_ln6108145-1", + "phases": "ABCN", + "to": "m1026681" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1009855", + "length": "214.9691", + "name": "line_ln5774474-1", + "phases": "BN", + "to": "l2748139" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069582", + "length": "86.0416", + "name": "line_ln5895802-1", + "phases": "BN", + "to": "l2973171" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026920", + "length": "308.1406", + "name": "line_ln6047565-1", + "phases": "ABCN", + "to": "m1026926" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125969", + "length": "85.6137", + "name": "line_ln5927296-1", + "phases": "ABCN", + "to": "l2767341" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047769", + "length": "345.1952", + "name": "line_ln6379347-1", + "phases": "BN", + "to": "l2710514" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069135", + "length": "36.4699", + "name": "line_ln5716231-1", + "phases": "BN", + "to": "p827533" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3104130", + "length": "251.1204", + "name": "line_ln6288856-1", + "phases": "BN", + "to": "l2763072" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827531", + "length": "20.3620", + "name": "line_ln5746547-1", + "phases": "AN", + "to": "m1026343" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089176", + "length": "227.4480", + "name": "line_ln6138600-1", + "phases": "ABCN", + "to": "m1089179" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1125903", + "length": "50.9865", + "name": "line_ln5894215-1", + "phases": "AN", + "to": "l2989565" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3197647", + "length": "5.3174", + "name": "line_ln6017304-1", + "phases": "AN", + "to": "m1026778" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1145954", + "length": "18.8581", + "name": "line_ln6262266-13", + "phases": "ABCN", + "to": "p827580" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047303", + "length": "13.7083", + "name": "line_ln6262266-12", + "phases": "ABCN", + "to": "n1145954" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069564", + "length": "70.3820", + "name": "line_ln5472384-2", + "phases": "AN", + "to": "n1136361" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047300", + "length": "206.2078", + "name": "line_ln5804836-1", + "phases": "ABCN", + "to": "m1047299" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1136361", + "length": "163.6956", + "name": "line_ln5472384-3", + "phases": "AN", + "to": "l3160114" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010014", + "length": "42.1135", + "name": "line_ln5803301-1", + "phases": "AN", + "to": "m1010013" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069483", + "length": "167.1698", + "name": "line_ln6229793-1", + "phases": "ABCN", + "to": "m1069481" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125976", + "length": "25.9569", + "name": "line_ln6255845-1", + "phases": "BN", + "to": "p895106" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047724", + "length": "11.2334", + "name": "line_ln5981120-1", + "phases": "BN", + "to": "m1047725" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827504", + "length": "30.2500", + "name": "line_ln6201695-2", + "phases": "AN", + "to": "n1137957" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3160117", + "length": "319.6348", + "name": "line_ln5895815-1", + "phases": "BN", + "to": "l3215549" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137957", + "length": "144.4681", + "name": "line_ln6201695-3", + "phases": "AN", + "to": "l3104119" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p850083", + "length": "19.3509", + "name": "line_ln8979257-1", + "phases": "ABCN", + "to": "221-312488" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2822863", + "length": "1096.7223", + "name": "line_ln6380807-1", + "phases": "ABCN", + "to": "m1089187" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln6411379-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3160105", + "length": "274.9774", + "name": "line_ln5774461-1", + "phases": "AN", + "to": "l3235251" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "221-312488", + "length": "44.3464", + "name": "line_ln8979257-2", + "phases": "ABCN", + "to": "m1089183" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2897784", + "length": "149.6060", + "name": "line_ln5653472-1", + "phases": "BN", + "to": "m1026496" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2841635", + "length": "195.1017", + "name": "line_ln6047578-1", + "phases": "ABCN", + "to": "l2822869" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1142814", + "length": "207.6147", + "name": "line_ln5957500-1", + "phases": "ABCN", + "to": "m1142813" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "196-35813", + "length": "24.4937", + "name": "line_ln5621841-2", + "phases": "ABCN", + "to": "n1140519" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2763072", + "length": "239.0731", + "name": "line_ln6288856-3", + "phases": "BN", + "to": "m4118754" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000912", + "length": "158.2381", + "name": "line_ln2000913-1", + "phases": "CN", + "to": "m2000913" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047763", + "length": "59.5168", + "name": "line_ln6409775-3", + "phases": "AN", + "to": "n1136027" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108331", + "length": "542.9187", + "name": "line_ln5896843-1", + "phases": "CN", + "to": "m1108335" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "d6409775-4_int", + "length": "213.5366", + "name": "line_ln6409775-4", + "phases": "AN", + "to": "l2876796" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln6138606-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069206", + "length": "498.9717", + "name": "line_ln5986929-1", + "phases": "BN", + "to": "l2841625" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047345", + "length": "285.6130", + "name": "line_ln5472371-1", + "phases": "AN", + "to": "m1047340" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2876796", + "length": "167.5168", + "name": "line_ln6409775-2", + "phases": "AN", + "to": "m1047756" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125911", + "length": "345.9300", + "name": "line_ln5563934-1", + "phases": "BN", + "to": "l2711224" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2970842", + "length": "235.8186", + "name": "line_ln6409873-1", + "phases": "BN", + "to": "m1089113" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2710519", + "length": "162.9337", + "name": "line_ln5804801-1", + "phases": "AN", + "to": "m1047344" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047316", + "length": "112.8863", + "name": "line_ln5956502-1", + "phases": "CN", + "to": "l2766728" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026808", + "length": "15.4419", + "name": "line_ln6229803-2", + "phases": "CN", + "to": "n1140520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1140520", + "length": "74.5636", + "name": "line_ln6229803-3", + "phases": "CN", + "to": "l2729410" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3197652", + "length": "100.1531", + "name": "line_ln6138622-1", + "phases": "AN", + "to": "l2748143" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3235275", + "length": "282.0623", + "name": "line_ln5774496-1", + "phases": "ABCN", + "to": "m1026347" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2804270", + "length": "291.6884", + "name": "line_ln5593244-1", + "phases": "BN", + "to": "l3104145" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1047613", + "length": "14.8440", + "name": "line_ln8961758-1", + "phases": "C", + "to": "p828359" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "e182723", + "length": "161.5835", + "name": "line_ln5806917-1", + "phases": "ABCN", + "to": "m1089177" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026783", + "length": "58.7806", + "name": "line_ln5532754-1", + "phases": "ABCN", + "to": "m1026780" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr1/0_tpx_ln6229827-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047346", + "length": "134.2847", + "name": "line_ln6199529-1", + "phases": "CN", + "to": "l3254219" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3254229", + "length": "145.8403", + "name": "line_ln6229816-1", + "phases": "BN", + "to": "m1069565" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108378", + "length": "34.7722", + "name": "line_ln6077443-1", + "phases": "ABCN", + "to": "m1108379" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047729", + "length": "240.2533", + "name": "line_ln5835130-1", + "phases": "AN", + "to": "l2973150" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047453", + "length": "272.9995", + "name": "line_ln6013613-1", + "phases": "BN", + "to": "l2913406" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026905", + "length": "413.9725", + "name": "line_ln6350537-1", + "phases": "ABCN", + "to": "m1026907" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2748140", + "length": "256.7701", + "name": "line_ln5774487-1", + "phases": "AN", + "to": "l3141412" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "r18245", + "length": "105.1596", + "name": "line_ln6231998-1", + "phases": "ABCN", + "to": "e182746" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089102", + "length": "556.2095", + "name": "line_ln5744324-1", + "phases": "CN", + "to": "m1089096" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3157167", + "length": "411.4348", + "name": "line_ln5499793-1", + "phases": "AN", + "to": "l2785511" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "221-311583", + "length": "13.1528", + "name": "line_ln8979346-4", + "phases": "A", + "to": "n1139250" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l2821770", + "length": "246.4828", + "name": "line_ln8979346-3", + "phases": "A", + "to": "m1069247" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027073", + "length": "268.0103", + "name": "line_ln5804827-1", + "phases": "CN", + "to": "l3104118" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "p850401", + "length": "13.7120", + "name": "line_ln8979346-1", + "phases": "A", + "to": "221-311583" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089173", + "length": "199.6642", + "name": "line_ln5532741-1", + "phases": "ABCN", + "to": "l2935551" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2991902", + "length": "295.0766", + "name": "line_ln5562919-1", + "phases": "BN", + "to": "m1008758" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069398", + "length": "219.0808", + "name": "line_ln6169245-1", + "phases": "AN", + "to": "l2785513" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069412", + "length": "270.0332", + "name": "line_ln6108132-1", + "phases": "BN", + "to": "l2879061" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2897778", + "length": "6.5120", + "name": "line_ln6506313-4", + "phases": "AN", + "to": "m3037452" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "n1139250", + "length": "431.9277", + "name": "line_ln8979346-5", + "phases": "A", + "to": "l2821770" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069155", + "length": "180.6823", + "name": "line_ln6290207-1", + "phases": "AN", + "to": "l3085395" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142800", + "length": "306.1118", + "name": "line_ln6321415-1", + "phases": "BN", + "to": "m1142799" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026808", + "length": "16.5010", + "name": "line_ln5558792-1", + "phases": "ABCN", + "to": "m1026807" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1027011", + "length": "331.7154", + "name": "line_ln5683819-1", + "phases": "ABCN", + "to": "m1027013" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026466", + "length": "20.4437", + "name": "line_ln5865224-1", + "phases": "BN", + "to": "d5865224-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p1164481", + "length": "174.1164", + "name": "line_ln6991377-9", + "phases": "AN", + "to": "l3729297" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "221-306686", + "length": "112.9021", + "name": "line_ln81018877-1", + "phases": "A", + "to": "l2970258" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "p873800", + "length": "15.7145", + "name": "line_ln81018877-2", + "phases": "A", + "to": "221-306686" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3122837", + "length": "494.6796", + "name": "line_ln5744359-1", + "phases": "CN", + "to": "l3048222" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1027043", + "length": "30.0085", + "name": "line_ln6019477-1", + "phases": "CN", + "to": "d6019477-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3010556", + "length": "348.4062", + "name": "line_ln5593222-1", + "phases": "ABCN", + "to": "l2766718" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001306", + "length": "158.2381", + "name": "line_ln2001307-1", + "phases": "AN", + "to": "m2001307" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108267", + "length": "626.7009", + "name": "line_ln5472340-1", + "phases": "BN", + "to": "m1108266" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3029501", + "length": "6.1212", + "name": "line_ln6505943-3", + "phases": "ABCN", + "to": "m3036165" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p901951", + "length": "575.6150", + "name": "line_ln6078691-1", + "phases": "CN", + "to": "m1186078" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001208", + "length": "158.2381", + "name": "line_ln2001209-1", + "phases": "CN", + "to": "m2001209" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e182748", + "length": "209.8419", + "name": "line_ln6171508-1", + "phases": "ABCN", + "to": "l2673346" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1027023", + "length": "246.8572", + "name": "line_ln5865237-1", + "phases": "BN", + "to": "l3122815" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1125929", + "length": "528.5016", + "name": "line_ln6018332-1", + "phases": "AN", + "to": "l2842379" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026690", + "length": "38.5862", + "name": "line_ln5986938-2", + "phases": "AN", + "to": "n1140830" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000903", + "length": "158.2381", + "name": "line_ln2000904-1", + "phases": "CN", + "to": "m2000904" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1141478", + "length": "408.7294", + "name": "line_ln5928743-3", + "phases": "BN", + "to": "m1142826" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3101787", + "length": "127.6164", + "name": "line_ln5621885-1", + "phases": "AN", + "to": "l3027132" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108329", + "length": "500.6620", + "name": "line_ln6262235-1", + "phases": "CN", + "to": "l2935552" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p829960", + "length": "58.0111", + "name": "line_ln5928743-2", + "phases": "BN", + "to": "n1141478" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069169", + "length": "240.6688", + "name": "line_ln5804791-1", + "phases": "ABCN", + "to": "l3010556" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p827564", + "length": "201.7061", + "name": "line_ln6049823-1", + "phases": "CN", + "to": "m1069348" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1138598", + "length": "48.6271", + "name": "line_ln6229829-3", + "phases": "ABCN", + "to": "m1069376" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026948", + "length": "160.4084", + "name": "line_ln6199516-1", + "phases": "BN", + "to": "m1026947" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125905", + "length": "83.7127", + "name": "line_ln6139645-1", + "phases": "BN", + "to": "l3142098" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln6198049-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3120502", + "length": "414.6715", + "name": "line_ln6198049-1", + "phases": "CN", + "to": "m1026792" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "n1140526", + "length": "1596.4202", + "name": "line_ln81354562-7", + "phases": "C", + "to": "m3763620" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "221-559681", + "length": "43.5385", + "name": "line_ln81354562-6", + "phases": "C", + "to": "n1140526" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p1121282", + "length": "10.1558", + "name": "line_ln81354562-4", + "phases": "C", + "to": "221-559681" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108340", + "length": "43.5061", + "name": "line_ln5774452-1", + "phases": "CN", + "to": "l2916605" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108298", + "length": "33.3908", + "name": "line_ln6195132-1", + "phases": "BN", + "to": "p893610" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2673320", + "length": "215.4413", + "name": "line_ln5744337-1", + "phases": "BN", + "to": "l3048209" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "m1108398", + "length": "10.0950", + "name": "line_ln8979248-1", + "phases": "ABC", + "to": "p850072" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047792", + "length": "313.4731", + "name": "line_ln5653481-1", + "phases": "BN", + "to": "l2860500" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009705", + "length": "155.0904", + "name": "line_ln5894192-1", + "phases": "ABCN", + "to": "m1009698" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2748131", + "length": "183.2082", + "name": "line_ln6077800-1", + "phases": "BN", + "to": "l2729427" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2767409", + "length": "305.9659", + "name": "line_ln6412352-1", + "phases": "BN", + "to": "m1142800" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1089122", + "length": "102.8439", + "name": "line_ln5544392-1", + "phases": "CN", + "to": "p860892" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000707", + "length": "158.2381", + "name": "line_ln2000708-1", + "phases": "BN", + "to": "m2000708" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1009807", + "length": "328.8760", + "name": "line_ln5894237-1", + "phases": "CN", + "to": "l2673323" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047432", + "length": "341.2746", + "name": "line_ln5472362-1", + "phases": "AN", + "to": "p903360" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1140830", + "length": "28.6734", + "name": "line_ln5986938-3", + "phases": "AN", + "to": "l3216351" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1027000", + "length": "219.3140", + "name": "line_ln6017294-1", + "phases": "ABCN", + "to": "l2916608" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069356", + "length": "219.3033", + "name": "line_ln6260025-1", + "phases": "CN", + "to": "m1069363" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1108413", + "length": "479.3149", + "name": "line_ln81048089-1", + "phases": "A", + "to": "m1108460" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2785538", + "length": "214.6805", + "name": "line_ln6047596-1", + "phases": "AN", + "to": "l2897793" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2001100", + "length": "568.4991", + "name": "line_ln2001200-1", + "phases": "ABCN", + "to": "m2001200" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1166366", + "length": "135.0662", + "name": "line_ln5957526-1", + "phases": "ABCN", + "to": "m1166368" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047828", + "length": "320.4542", + "name": "line_ln5623396-1", + "phases": "BN", + "to": "l2710513" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047311", + "length": "34.5032", + "name": "line_ln6138639-1", + "phases": "AN", + "to": "l2748158" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026896", + "length": "102.5640", + "name": "line_ln5695520-1", + "phases": "AN", + "to": "p860847" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069468", + "length": "239.9032", + "name": "line_ln5532785-1", + "phases": "ABCN", + "to": "m1069464" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001003", + "length": "158.2381", + "name": "line_ln2001004-1", + "phases": "BN", + "to": "m2001004" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047550", + "length": "327.2390", + "name": "line_ln6350542-1", + "phases": "ABCN", + "to": "m1047534" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3160098", + "length": "349.0061", + "name": "line_ln6259984-1", + "phases": "ABCN", + "to": "m1089213" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047441", + "length": "190.6389", + "name": "line_ln6411375-1", + "phases": "BN", + "to": "l2804258" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089170", + "length": "557.8271", + "name": "line_ln6320328-1", + "phases": "CN", + "to": "d6320328-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047831", + "length": "337.7850", + "name": "line_ln5472353-1", + "phases": "BN", + "to": "l2710505" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026682", + "length": "301.5594", + "name": "line_ln5623406-1", + "phases": "AN", + "to": "l3066816" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1009827", + "length": "499.9987", + "name": "line_ln6495087-1", + "phases": "BN", + "to": "m3019248" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047303", + "length": "236.8957", + "name": "line_ln5865272-1", + "phases": "ABCN", + "to": "l3027116" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069154", + "length": "583.0295", + "name": "line_ln6047561-1", + "phases": "ABCN", + "to": "l3197630" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125966", + "length": "223.3853", + "name": "line_ln5896728-1", + "phases": "BN", + "to": "l2955005" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l3645812", + "length": "974.0039", + "name": "line_ln81353934-4", + "phases": "C", + "to": "228-1353934-4_int" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2822877", + "length": "76.3544", + "name": "line_ln6229829-2", + "phases": "ABCN", + "to": "n1138598" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m3763620", + "length": "146.3642", + "name": "line_ln81353934-3", + "phases": "C", + "to": "l3645812" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3123509", + "length": "299.0830", + "name": "line_ln6078776-1", + "phases": "ABCN", + "to": "m1209772" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_2ph_h-2_acsrx2_acsr2_acsr_ln5637597-1", + "continuous_rating_A": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_C": "175.00", + "from": "m1069285", + "length": "5.6414", + "name": "line_ln5698090-2", + "phases": "ACN", + "to": "m4113348" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026695", + "length": "62.0934", + "name": "line_ln5774470-3", + "phases": "AN", + "to": "n1138594" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_2ph_h-2_acsrx2_acsr2_acsr_ln5637597-1", + "continuous_rating_A": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_C": "175.00", + "from": "m4113348", + "length": "4.7729", + "name": "line_ln5698090-3", + "phases": "ACN", + "to": "m1069284" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "d5774470-2_int", + "length": "460.3480", + "name": "line_ln5774470-2", + "phases": "AN", + "to": "m1026679" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047518", + "length": "283.9236", + "name": "line_ln5653463-1", + "phases": "BN", + "to": "l2973160" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2673346", + "length": "423.8209", + "name": "line_ln6350577-1", + "phases": "ABCN", + "to": "l3254238" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026907", + "length": "184.0030", + "name": "line_ln6138604-1", + "phases": "ABCN", + "to": "l3085398" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027071", + "length": "48.3406", + "name": "line_ln5714043-1", + "phases": "CN", + "to": "l3235241" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047521", + "length": "66.6264", + "name": "line_ln6108141-1", + "phases": "ABCN", + "to": "d6108141-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p827561", + "length": "22.1624", + "name": "line_ln6198014-1", + "phases": "CN", + "to": "m1026705" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166362", + "length": "226.2194", + "name": "line_ln5563943-1", + "phases": "AN", + "to": "l2898522" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089185", + "length": "23.6818", + "name": "line_ln81098881-1", + "phases": "ABCN", + "to": "p850083" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069549", + "length": "18.2762", + "name": "line_ln5894211-1", + "phases": "CN", + "to": "p901931" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3085410", + "length": "257.0573", + "name": "line_ln5472388-1", + "phases": "BN", + "to": "l2860499" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln6138606-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2841625", + "length": "285.7569", + "name": "line_ln5835139-1", + "phases": "BN", + "to": "l3010566" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2973154", + "length": "210.2678", + "name": "line_ln6229797-1", + "phases": "AN", + "to": "l2879069" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089187", + "length": "635.8418", + "name": "line_ln6301089-1", + "phases": "ABCN", + "to": "m1089188" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1166368", + "length": "162.0912", + "name": "line_ln5988007-1", + "phases": "AN", + "to": "l3086098" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1136661", + "length": "89.2163", + "name": "line_ln6047574-3", + "phases": "CN", + "to": "l3029505" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047534", + "length": "25.9381", + "name": "line_ln6047574-2", + "phases": "CN", + "to": "n1136661" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "f739845", + "length": "100.000", + "name": "line_293471", + "phases": "ABCN", + "to": "293471" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000409", + "length": "158.2381", + "name": "line_ln2000410-1", + "phases": "AN", + "to": "m2000410" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2897793", + "length": "83.9444", + "name": "line_ln6290229-1", + "phases": "AN", + "to": "m1069521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3139121", + "length": "246.0995", + "name": "line_ln6379462-2", + "phases": "ABCN", + "to": "l2763153" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026954", + "length": "15.0053", + "name": "line_ln5655682-1", + "phases": "BN", + "to": "d5655682-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2763153", + "length": "158.6196", + "name": "line_ln6379462-3", + "phases": "ABCN", + "to": "m1047293" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1145956", + "length": "128.7045", + "name": "line_ln5562937-3", + "phases": "AN", + "to": "l2729412" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026722", + "length": "233.5590", + "name": "line_ln6206281-1", + "phases": "BN", + "to": "m1026736" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047299", + "length": "147.6042", + "name": "line_ln6379462-1", + "phases": "ABCN", + "to": "l3139121" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026347", + "length": "33.2441", + "name": "line_ln5562937-2", + "phases": "AN", + "to": "n1145956" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069519", + "length": "27.0299", + "name": "line_ln6348946-1", + "phases": "BN", + "to": "p901927" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026724", + "length": "21.6052", + "name": "line_ln5472375-1", + "phases": "ABCN", + "to": "r18243" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p829956", + "length": "201.5469", + "name": "line_ln5807086-1", + "phases": "CN", + "to": "l3160861" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2841648", + "length": "300.6761", + "name": "line_ln5623428-1", + "phases": "AN", + "to": "l2710544" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m3036172", + "length": "402.0095", + "name": "line_ln6321419-2", + "phases": "BN", + "to": "m1209763" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026877", + "length": "748.7459", + "name": "line_ln5593240-1", + "phases": "AN", + "to": "m1026906" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m3037538", + "length": "8.2780", + "name": "line_ln6167751-6", + "phases": "CN", + "to": "l3027133" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m3037453", + "length": "22.4666", + "name": "line_ln5679261-2", + "phases": "CN", + "to": "m1026812" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3197630", + "length": "392.7320", + "name": "line_ln6229807-1", + "phases": "ABCN", + "to": "l3235256" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3141403", + "length": "195.7589", + "name": "line_ln6167751-3", + "phases": "CN", + "to": "m3037538" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1139541", + "length": "49.1036", + "name": "line_ln6413567-3", + "phases": "ABCN", + "to": "d6413567-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069557", + "length": "178.0855", + "name": "line_ln6260016-1", + "phases": "BN", + "to": "m1069554" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3125349", + "length": "197.8358", + "name": "line_ln5517002-3", + "phases": "ABCN", + "to": "n1138604" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069175", + "length": "142.9991", + "name": "line_ln6413567-2", + "phases": "ABCN", + "to": "n1139541" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1138604", + "length": "256.3194", + "name": "line_ln5517002-9", + "phases": "ABCN", + "to": "l3143999" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m4122657", + "length": "724.3549", + "name": "line_ln6258460-3", + "phases": "CN", + "to": "l3027124" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069662", + "length": "200.7092", + "name": "line_ln6350555-1", + "phases": "BN", + "to": "l2935547" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3143999", + "length": "9.6809", + "name": "line_ln5517002-2", + "phases": "ABCN", + "to": "m1069350" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3254213", + "length": "209.5194", + "name": "line_ln5532750-1", + "phases": "ABCN", + "to": "m1027039" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209807", + "length": "144.8817", + "name": "line_ln5896798-1", + "phases": "ABCN", + "to": "m1209805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008746", + "length": "254.2832", + "name": "line_ln6077772-1", + "phases": "BN", + "to": "m1008743" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069560", + "length": "289.0837", + "name": "line_ln6198036-1", + "phases": "BN", + "to": "l3176660" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m3037452", + "length": "234.4219", + "name": "line_ln6199525-2", + "phases": "AN", + "to": "l2973164" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047821", + "length": "64.8418", + "name": "line_ln5744328-1", + "phases": "BN", + "to": "l2684420" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026916", + "length": "35.4405", + "name": "line_ln6320337-1", + "phases": "BN", + "to": "l3197634" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx2_wpal_ln5561444-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "m1047339", + "length": "25.3928", + "name": "line_ln6073648-1", + "phases": "AN", + "to": "p895104" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3030199", + "length": "96.1114", + "name": "line_ln6078767-1", + "phases": "ABCN", + "to": "m1125934" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m4277837", + "length": "226.2745", + "name": "line_ln6350533-5", + "phases": "ABCN", + "to": "m1069419" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1138597", + "length": "157.0877", + "name": "line_ln5956457-3", + "phases": "ABCN", + "to": "m1069411" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069417", + "length": "104.2445", + "name": "line_ln5956457-2", + "phases": "ABCN", + "to": "n1138597" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047821", + "length": "676.5494", + "name": "line_ln6017285-1", + "phases": "BN", + "to": "l2785512" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069420", + "length": "559.3368", + "name": "line_ln6350533-4", + "phases": "ABCN", + "to": "m4277837" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069147", + "length": "195.8968", + "name": "line_ln5653450-1", + "phases": "CN", + "to": "l2879055" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3235267", + "length": "209.6888", + "name": "line_ln6380842-1", + "phases": "CN", + "to": "m1027068" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069424", + "length": "290.6703", + "name": "line_ln6290203-1", + "phases": "ABCN", + "to": "l2935549" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047432", + "length": "158.6794", + "name": "line_ln5895779-1", + "phases": "AN", + "to": "l2879075" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026891", + "length": "30.9474", + "name": "line_ln6169249-2", + "phases": "CN", + "to": "n1147863" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1147863", + "length": "14.4209", + "name": "line_ln6169249-3", + "phases": "CN", + "to": "l3122817" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p895075", + "length": "17.7674", + "name": "line_ln5589095-1", + "phases": "CN", + "to": "m1108524" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026713", + "length": "179.2896", + "name": "line_ln5804823-1", + "phases": "AN", + "to": "l2785530" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142833", + "length": "171.2490", + "name": "line_ln6109147-1", + "phases": "CN", + "to": "l2767408" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047720", + "length": "299.1076", + "name": "line_ln5496764-1", + "phases": "CN", + "to": "l2954345" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089177", + "length": "451.9027", + "name": "line_ln6199512-1", + "phases": "CN", + "to": "l2729406" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr4_acsr4_acsr_ln5655838-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "p829977", + "length": "245.2879", + "name": "line_ln5655838-1", + "phases": "ABCN", + "to": "m1186061" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m4118755", + "length": "144.7875", + "name": "line_ln6015889-4", + "phases": "AN", + "to": "m1209782" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125919", + "length": "131.2232", + "name": "line_ln5745347-1", + "phases": "ABCN", + "to": "m1125917" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069533", + "length": "28.1262", + "name": "line_ln6407207-1", + "phases": "BN", + "to": "p895117" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "d5746703-1_int", + "length": "541.1684", + "name": "line_ln5746703-1", + "phases": "ABCN", + "to": "l3160863" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3104121", + "length": "108.0011", + "name": "line_ln5683815-1", + "phases": "AN", + "to": "l3104113" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069489", + "length": "242.2622", + "name": "line_ln5865228-1", + "phases": "CN", + "to": "l2933120" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026785", + "length": "97.5781", + "name": "line_ln6255773-1", + "phases": "ABCN", + "to": "m1026783" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069620", + "length": "65.3158", + "name": "line_ln6074369-1", + "phases": "BN", + "to": "m1069610" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6048634-1_int", + "length": "138.3656", + "name": "line_ln6048634-1", + "phases": "ABCN", + "to": "m1186067" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069610", + "length": "150.3002", + "name": "line_ln6074369-2", + "phases": "BN", + "to": "l2991929" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069590", + "length": "355.1812", + "name": "line_ln5926320-1", + "phases": "BN", + "to": "l3122835" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009832", + "length": "154.8759", + "name": "line_ln5472344-1", + "phases": "BN", + "to": "m1009834" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "m1026361", + "length": "60.5901", + "name": "line_ln6411388-1", + "phases": "AN", + "to": "l3122825" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr4_acsr_ln5898194-1", + "continuous_rating_A": "300.00", + "continuous_rating_B": "300.00", + "continuous_rating_C": "300.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1186065", + "length": "302.8978", + "name": "line_ln5898194-1", + "phases": "ABCN", + "to": "p829977" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2766747", + "length": "116.4582", + "name": "line_ln6153057-1", + "phases": "ABCN", + "to": "m1026732" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3082981", + "length": "523.0011", + "name": "line_ln5985351-2", + "phases": "CN", + "to": "m1108368" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089162", + "length": "373.4171", + "name": "line_ln6326286-1", + "phases": "CN", + "to": "l2991640" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026732", + "length": "266.3666", + "name": "line_ln6153057-2", + "phases": "ABCN", + "to": "l3047058" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3216343", + "length": "244.2841", + "name": "line_ln5985351-1", + "phases": "CN", + "to": "l3082981" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089160", + "length": "274.9991", + "name": "line_ln6326286-3", + "phases": "CN", + "to": "m1089163" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1142814", + "length": "987.2773", + "name": "line_ln5957494-1", + "phases": "ABCN", + "to": "m1142810" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2991640", + "length": "336.7198", + "name": "line_ln6326286-2", + "phases": "CN", + "to": "m1089160" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108263", + "length": "387.3582", + "name": "line_ln5686078-2", + "phases": "BN", + "to": "n1142112" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026327", + "length": "343.5980", + "name": "line_ln5683828-1", + "phases": "BN", + "to": "l2841636" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026866", + "length": "36.8061", + "name": "line_ln6341781-2", + "phases": "AN", + "to": "n1147862" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1147862", + "length": "293.1960", + "name": "line_ln6341781-3", + "phases": "AN", + "to": "l2685805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1142112", + "length": "40.7082", + "name": "line_ln5686078-3", + "phases": "BN", + "to": "p827496" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026327", + "length": "125.7892", + "name": "line_ln6380820-1", + "phases": "BN", + "to": "l3122823" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009843", + "length": "271.4745", + "name": "line_ln5502550-1", + "phases": "BN", + "to": "m1009855" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1142843", + "length": "260.3967", + "name": "line_ln5473439-1", + "phases": "AN", + "to": "l2692660" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000907", + "length": "158.2381", + "name": "line_ln2000908-1", + "phases": "CN", + "to": "m2000908" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047507", + "length": "167.4266", + "name": "line_ln5682339-1", + "phases": "ABCN", + "to": "196-35813" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047326", + "length": "127.8249", + "name": "line_ln6138613-1", + "phases": "AN", + "to": "m1047322" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047486", + "length": "327.1902", + "name": "line_ln6012046-1", + "phases": "ABCN", + "to": "m1047484" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1149236", + "length": "136.3488", + "name": "line_ln6018336-1", + "phases": "ABCN", + "to": "m1149235" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047486", + "length": "33.5172", + "name": "line_ln5928543-1", + "phases": "AN", + "to": "p827502" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p827542", + "length": "15.2900", + "name": "line_ln6171504-1", + "phases": "BN", + "to": "m1026486" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047316", + "length": "48.2165", + "name": "line_ln5593253-1", + "phases": "ABCN", + "to": "l3216370" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142871", + "length": "125.1729", + "name": "line_ln6139641-1", + "phases": "ABCN", + "to": "m1142874" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1140818", + "length": "35.0690", + "name": "line_ln6108150-2", + "phases": "ABCN", + "to": "l2973167" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026695", + "length": "207.3910", + "name": "line_ln6108150-3", + "phases": "ABCN", + "to": "n1140818" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3086078", + "length": "242.0043", + "name": "line_ln6015889-3", + "phases": "AN", + "to": "m4118755" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047534", + "length": "376.4293", + "name": "line_ln6077781-2", + "phases": "ABCN", + "to": "n1136663" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1136663", + "length": "155.2154", + "name": "line_ln6077781-3", + "phases": "ABCN", + "to": "d6077791-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2991922", + "length": "236.9027", + "name": "line_ln6047583-1", + "phases": "ABCN", + "to": "m1047339" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3120376", + "length": "293.0858", + "name": "line_ln5772710-2", + "phases": "AN", + "to": "m1026925" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3178997", + "length": "108.0865", + "name": "line_ln6047606-1", + "phases": "CN", + "to": "m1026363" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069495", + "length": "36.8091", + "name": "line_ln6320324-1", + "phases": "ABCN", + "to": "m1069498" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026906", + "length": "350.4979", + "name": "line_ln5772710-1", + "phases": "AN", + "to": "l3120376" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026713", + "length": "43.6243", + "name": "line_ln5653485-1", + "phases": "AN", + "to": "l2860504" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047325", + "length": "30.1303", + "name": "line_ln6350546-1", + "phases": "ABCN", + "to": "m1047324" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2841627", + "length": "350.7360", + "name": "line_ln6017298-1", + "phases": "AN", + "to": "l3254216" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166399", + "length": "274.1150", + "name": "line_ln6200441-1", + "phases": "CN", + "to": "l3048890" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047558", + "length": "53.4088", + "name": "line_ln5714052-2", + "phases": "AN", + "to": "n1136659" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1136659", + "length": "304.7400", + "name": "line_ln5714052-3", + "phases": "AN", + "to": "l3104129" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_wpal_ln6291244-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3160865", + "length": "428.4819", + "name": "line_ln6291244-1", + "phases": "ABCN", + "to": "m1142828" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001012", + "length": "158.2381", + "name": "line_ln2001013-1", + "phases": "BN", + "to": "m2001013" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026769", + "length": "28.0543", + "name": "line_ln6290216-1", + "phases": "ABCN", + "to": "l2841633" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1136354", + "length": "36.5515", + "name": "line_ln5561439-2", + "phases": "ABCN", + "to": "l2748144" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069519", + "length": "496.2582", + "name": "line_ln5561439-3", + "phases": "ABCN", + "to": "n1136354" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047444", + "length": "498.1972", + "name": "line_ln5562928-1", + "phases": "BN", + "to": "m1047447" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026308", + "length": "310.7369", + "name": "line_ln5472366-1", + "phases": "BN", + "to": "l2991902" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2991915", + "length": "195.5908", + "name": "line_ln6259997-1", + "phases": "BN", + "to": "l2673320" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3048196", + "length": "903.5561", + "name": "line_ln6411366-1", + "phases": "BN", + "to": "m1089097" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108490", + "length": "30.1595", + "name": "line_ln6292600-1", + "phases": "AN", + "to": "p829798" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166366", + "length": "29.2992", + "name": "line_ln6140925-1", + "phases": "CN", + "to": "p830058" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000400", + "length": "158.2381", + "name": "line_ln2000401-1", + "phases": "AN", + "to": "m2000401" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln6198049-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026773", + "length": "386.7213", + "name": "line_ln6199040-1", + "phases": "CN", + "to": "l3195751" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "190-7361", + "length": "19.0960", + "name": "line_ln5502532-1", + "phases": "ABCN", + "to": "d5472350-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026486", + "length": "35.4435", + "name": "line_ln5926315-1", + "phases": "BN", + "to": "m1026488" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026732", + "length": "221.3403", + "name": "line_ln5758684-1", + "phases": "AN", + "to": "m1026734" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026880", + "length": "113.3993", + "name": "line_ln5623425-1", + "phases": "AN", + "to": "l2766748" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3048199", + "length": "278.1680", + "name": "line_ln6259980-1", + "phases": "BN", + "to": "m1047837" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "n1230122", + "length": "416.6198", + "name": "line_ln81048102-4", + "phases": "A", + "to": "l3233412" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026886", + "length": "5.9633", + "name": "line_ln5526906-2", + "phases": "ABCN", + "to": "l3120484" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1027027", + "length": "551.2739", + "name": "line_ln6290201-1", + "phases": "CN", + "to": "m1027014" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "221-282819", + "length": "18.4090", + "name": "line_ln81048102-6", + "phases": "A", + "to": "n1230122" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3120484", + "length": "339.5389", + "name": "line_ln5526906-1", + "phases": "ABCN", + "to": "m1026896" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "p904451", + "length": "18.0480", + "name": "line_ln81048102-5", + "phases": "A", + "to": "221-282819" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1140518", + "length": "131.8875", + "name": "line_ln5651977-4", + "phases": "AN", + "to": "l2764403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827549", + "length": "72.3934", + "name": "line_ln5651977-3", + "phases": "AN", + "to": "n1140518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137988", + "length": "134.1902", + "name": "line_ln5835136-3", + "phases": "AN", + "to": "l2991908" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "221-242079", + "length": "186.1664", + "name": "line_ln8940663-1", + "phases": "ABC", + "to": "l3011293" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047737", + "length": "64.6378", + "name": "line_ln5835136-2", + "phases": "AN", + "to": "n1137988" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2710537", + "length": "269.3974", + "name": "line_ln6047602-1", + "phases": "BN", + "to": "m1008752" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6320366-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026805", + "length": "276.1817", + "name": "line_ln5683859-1", + "phases": "CN", + "to": "l3010585" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026764", + "length": "300.2488", + "name": "line_ln5774459-1", + "phases": "AN", + "to": "l3178976" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2764403", + "length": "193.1124", + "name": "line_ln5651977-2", + "phases": "AN", + "to": "m1047623" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089155", + "length": "261.9101", + "name": "line_ln6199510-1", + "phases": "CN", + "to": "l2935550" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l3233412", + "length": "56.6344", + "name": "line_ln81048102-2", + "phases": "A", + "to": "m1108413" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108328", + "length": "69.7742", + "name": "line_ln5803287-1", + "phases": "CN", + "to": "l2875754" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3235246", + "length": "253.2882", + "name": "line_ln5714047-1", + "phases": "BN", + "to": "l2710512" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx1/0_3w_cs_ln5775368-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "l3048887", + "length": "99.2932", + "name": "line_ln5775368-1", + "phases": "BN", + "to": "m1125966" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026852", + "length": "338.6963", + "name": "line_ln5895788-1", + "phases": "ABCN", + "to": "l3197646" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1209822", + "length": "338.1840", + "name": "line_ln5866186-1", + "phases": "AN", + "to": "l2992556" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p827522", + "length": "34.3217", + "name": "line_ln5504713-2", + "phases": "AN", + "to": "n1142111" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1142111", + "length": "171.5302", + "name": "line_ln5504713-3", + "phases": "AN", + "to": "l2991912" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027019", + "length": "673.5960", + "name": "line_ln5924800-1", + "phases": "BN", + "to": "l2801949" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069731", + "length": "564.9633", + "name": "line_ln5774446-1", + "phases": "BN", + "to": "m1069730" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089118", + "length": "148.6123", + "name": "line_ln6047570-1", + "phases": "AN", + "to": "l3048208" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047777", + "length": "357.8500", + "name": "line_ln6320334-1", + "phases": "BN", + "to": "l2748131" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p901931", + "length": "15.9281", + "name": "line_ln5621849-1", + "phases": "CN", + "to": "m1069548" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027100", + "length": "558.6263", + "name": "line_ln6379374-1", + "phases": "AN", + "to": "m1027109" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069199", + "length": "235.4954", + "name": "line_ln5986932-1", + "phases": "CN", + "to": "l2785525" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2689678", + "length": "1302.0741", + "name": "line_ln5561432-2", + "phases": "BN", + "to": "m1026463" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026726", + "length": "239.1128", + "name": "line_ln5833721-1", + "phases": "BN", + "to": "l2876847" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047374", + "length": "292.0716", + "name": "line_ln5561432-1", + "phases": "BN", + "to": "l2689678" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1089103", + "length": "210.0714", + "name": "line_ln6138597-1", + "phases": "BN", + "to": "l3048196" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx2_wpal_ln5561444-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "n1139537", + "length": "343.4551", + "name": "line_ln5528572-3", + "phases": "AN", + "to": "l3122826" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108278", + "length": "217.6137", + "name": "line_ln5594245-1", + "phases": "BN", + "to": "l2805036" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx2_wpal_ln5561444-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "p895104", + "length": "46.6901", + "name": "line_ln5528572-2", + "phases": "AN", + "to": "n1139537" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p827555", + "length": "26.0702", + "name": "line_ln5806921-1", + "phases": "BN", + "to": "m1047794" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3254873", + "length": "111.2883", + "name": "line_ln6381766-1", + "phases": "CN", + "to": "m1166393" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026984", + "length": "236.2387", + "name": "line_ln5593229-1", + "phases": "ABCN", + "to": "m1026986" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p901894", + "length": "24.5774", + "name": "line_ln5682325-1", + "phases": "AN", + "to": "m1026857" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026665", + "length": "477.4857", + "name": "line_ln6137085-1", + "phases": "AN", + "to": "l3232933" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000413", + "length": "158.2381", + "name": "line_ln2000414-1", + "phases": "AN", + "to": "m2000414" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069532", + "length": "225.5912", + "name": "line_ln5924702-1", + "phases": "BN", + "to": "l2691965" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108266", + "length": "452.2859", + "name": "line_ln5835123-1", + "phases": "BN", + "to": "m1108265" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2879071", + "length": "262.0272", + "name": "line_ln5865242-1", + "phases": "BN", + "to": "l3029504" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047323", + "length": "131.6118", + "name": "line_ln5653468-1", + "phases": "AN", + "to": "l3010569" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069398", + "length": "303.6814", + "name": "line_ln6229789-1", + "phases": "AN", + "to": "l3160101" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr1/0_tpx_ln6229827-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p1197121", + "length": "158.0192", + "name": "line_ln7064338-3", + "phases": "CN", + "to": "l2805031" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2841622", + "length": "881.5843", + "name": "line_ln5956465-1", + "phases": "AN", + "to": "l2804254" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3048207", + "length": "9.5848", + "name": "line_ln6505939-4", + "phases": "BN", + "to": "m3036164" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2785524", + "length": "68.5582", + "name": "line_ln6138607-1", + "phases": "CN", + "to": "m1069201" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009838", + "length": "281.6019", + "name": "line_ln6350551-1", + "phases": "BN", + "to": "m1009843" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026783", + "length": "26.7434", + "name": "line_ln6290214-1", + "phases": "CN", + "to": "m1026784" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1139255", + "length": "12.3006", + "name": "line_ln5898055-3", + "phases": "AN", + "to": "p827500" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2804269", + "length": "203.6500", + "name": "line_ln5591703-1", + "phases": "BN", + "to": "l2989564" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069424", + "length": "34.9972", + "name": "line_ln5898055-2", + "phases": "AN", + "to": "n1139255" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p827525", + "length": "413.2954", + "name": "line_ln5000chp-1", + "phases": "ABCN", + "to": "m1026chp-1" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3029495", + "length": "169.1207", + "name": "line_ln5565090-1", + "phases": "BN", + "to": "d5565090-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3235254", + "length": "332.1264", + "name": "line_ln6411383-1", + "phases": "ABCN", + "to": "m1026855" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5744357-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069218", + "length": "11.5077", + "name": "line_ln6077776-1", + "phases": "AN", + "to": "l2860486" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3179682", + "length": "90.9744", + "name": "line_ln5654484-1", + "phases": "CN", + "to": "l2786274" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3216361", + "length": "306.7484", + "name": "line_ln5683846-1", + "phases": "BN", + "to": "l2729434" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx1/0_3w_cs_ln5686244-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "p903354", + "length": "147.2496", + "name": "line_ln5686246-1", + "phases": "AN", + "to": "l2936270" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1108492", + "length": "23.9946", + "name": "line_ln5503478-2", + "phases": "AN", + "to": "n1142102" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1142102", + "length": "172.3470", + "name": "line_ln5503478-3", + "phases": "AN", + "to": "l2804956" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069572", + "length": "280.4772", + "name": "line_ln5653477-1", + "phases": "BN", + "to": "l3066826" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089165", + "length": "415.8776", + "name": "line_ln5562922-1", + "phases": "CN", + "to": "l3197627" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2989432", + "length": "268.7833", + "name": "line_ln6318427-2", + "phases": "BN", + "to": "l3066830" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1009763", + "length": "271.2832", + "name": "line_ln6019480-1", + "phases": "ABCN", + "to": "e182733" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125916", + "length": "227.5494", + "name": "line_ln5896827-1", + "phases": "BN", + "to": "l2879767" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2710515", + "length": "454.8416", + "name": "line_ln5895775-1", + "phases": "CN", + "to": "m1027027" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027071", + "length": "218.1548", + "name": "line_ln5562957-1", + "phases": "CN", + "to": "l3235267" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3048888", + "length": "362.7475", + "name": "line_ln5591716-1", + "phases": "CN", + "to": "m1149249" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2785516", + "length": "495.8910", + "name": "line_ln5683811-1", + "phases": "BN", + "to": "m1108274" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1125902", + "length": "31.2133", + "name": "line_ln5595583-1", + "phases": "AN", + "to": "p829986" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209753", + "length": "507.6622", + "name": "line_ln6351518-1", + "phases": "BN", + "to": "m1209752" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln6019479-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "l2876813", + "length": "262.1360", + "name": "line_ln6015809-1", + "phases": "CN", + "to": "l2785531" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1136032", + "length": "305.5016", + "name": "line_ln5958700-3", + "phases": "AN", + "to": "m1089204" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827498", + "length": "105.3386", + "name": "line_ln5958700-2", + "phases": "AN", + "to": "n1136032" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047809", + "length": "240.7436", + "name": "line_ln6318427-1", + "phases": "BN", + "to": "l2989432" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026393", + "length": "212.3187", + "name": "line_ln5865251-1", + "phases": "AN", + "to": "l2935559" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166370", + "length": "806.9534", + "name": "line_ln6261048-1", + "phases": "CN", + "to": "l3067506" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1125904", + "length": "62.5290", + "name": "line_ln6439987-1", + "phases": "AN", + "to": "m1125903" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026329", + "length": "299.2141", + "name": "line_ln5502541-1", + "phases": "AN", + "to": "l3104135" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2710512", + "length": "476.4333", + "name": "line_ln6380811-1", + "phases": "BN", + "to": "m1047828" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026330", + "length": "118.3042", + "name": "line_ln5835149-1", + "phases": "ABCN", + "to": "m1026329" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108317", + "length": "219.0668", + "name": "line_ln5591814-1", + "phases": "CN", + "to": "l2820590" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p827528", + "length": "20.9632", + "name": "line_ln8945011-1", + "phases": "C", + "to": "221-240988" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026820", + "length": "294.5283", + "name": "line_ln6411406-1", + "phases": "CN", + "to": "m1026823" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p895087", + "length": "27.1523", + "name": "line_ln5621858-1", + "phases": "AN", + "to": "m1089205" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027068", + "length": "430.8037", + "name": "line_ln6138629-1", + "phases": "CN", + "to": "m1027066" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069411", + "length": "285.9482", + "name": "line_ln5956487-1", + "phases": "ABCN", + "to": "l2766741" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "226-23751", + "length": "137.5970", + "name": "line_ln6291252-2", + "phases": "ABCN", + "to": "l2955081" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047825", + "length": "229.9986", + "name": "line_ln6076240-1", + "phases": "BN", + "to": "l2726975" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3728042", + "length": "216.9247", + "name": "line_ln6991380-4", + "phases": "AN", + "to": "l3728043" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125902", + "length": "248.9134", + "name": "line_ln6291252-1", + "phases": "ABCN", + "to": "226-23751" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2729428", + "length": "241.8547", + "name": "line_ln5926324-1", + "phases": "AN", + "to": "m1026648" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3949154", + "length": "240.1711", + "name": "line_ln6991380-2", + "phases": "AN", + "to": "l3728042" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069509", + "length": "222.2092", + "name": "line_ln6077798-1", + "phases": "ABCN", + "to": "l2766738" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_tpx_ln5531226-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1027042", + "length": "226.7467", + "name": "line_ln5531226-1", + "phases": "CN", + "to": "l3235248" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069500", + "length": "688.9363", + "name": "line_ln5623416-1", + "phases": "ABCN", + "to": "m1047574" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3226771", + "length": "531.0953", + "name": "line_ln6196270-2", + "phases": "AN", + "to": "l3189190" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069595", + "length": "461.5781", + "name": "line_ln6046049-1", + "phases": "BN", + "to": "m1069607" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3029503", + "length": "206.7842", + "name": "line_ln5683824-1", + "phases": "ABCN", + "to": "m1069202" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001200", + "length": "158.2381", + "name": "line_ln2001201-1", + "phases": "CN", + "to": "m2001201" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3195356", + "length": "237.1567", + "name": "line_ln5501088-1", + "phases": "ABCN", + "to": "m1069189" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108340", + "length": "282.1691", + "name": "line_ln5653455-1", + "phases": "CN", + "to": "l2822865" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3037441", + "length": "106.4225", + "name": "line_ln6196270-4", + "phases": "AN", + "to": "n1140824" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108400", + "length": "753.7509", + "name": "line_ln6422011-1", + "phases": "ABCN", + "to": "m1108401" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1140824", + "length": "653.5979", + "name": "line_ln6196270-5", + "phases": "AN", + "to": "l3226771" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2822872", + "length": "304.5404", + "name": "line_ln6169261-1", + "phases": "ABCN", + "to": "m1047490" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026308", + "length": "347.1012", + "name": "line_ln5562935-1", + "phases": "BN", + "to": "l2897764" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3086002", + "length": "282.2043", + "name": "line_ln6048520-1", + "phases": "CN", + "to": "m1126031" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069154", + "length": "128.8048", + "name": "line_ln5623393-1", + "phases": "AN", + "to": "l2804251" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3029498", + "length": "287.7736", + "name": "line_ln5623403-1", + "phases": "ABCN", + "to": "m1089143" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026361", + "length": "229.5418", + "name": "line_ln5744340-1", + "phases": "AN", + "to": "m1026366" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108508", + "length": "299.9993", + "name": "line_ln5675121-1", + "phases": "CN", + "to": "l3097861" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1108274", + "length": "201.0763", + "name": "line_ln5926292-1", + "phases": "BN", + "to": "m1108269" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001213", + "length": "158.2381", + "name": "line_ln2001214-1", + "phases": "CN", + "to": "m2001214" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2860493", + "length": "287.4330", + "name": "line_ln6077785-1", + "phases": "AN", + "to": "l3085403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2710516", + "length": "280.5846", + "name": "line_ln6411374-1", + "phases": "AN", + "to": "l2691944" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001311", + "length": "158.2381", + "name": "line_ln2001312-1", + "phases": "AN", + "to": "m2001312" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2895496", + "length": "165.8834", + "name": "line_ln6440079-1", + "phases": "CN", + "to": "m1142873" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001004", + "length": "158.2381", + "name": "line_ln2001005-1", + "phases": "BN", + "to": "m2001005" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069205", + "length": "119.0997", + "name": "line_ln5472358-1", + "phases": "ABCN", + "to": "m1069208" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2711226", + "length": "256.4569", + "name": "line_ln5654471-1", + "phases": "ABCN", + "to": "m1142819" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx1/0_tpx_ln6138596-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069187", + "length": "177.3964", + "name": "line_ln6108127-1", + "phases": "AN", + "to": "l2785519" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026926", + "length": "19.0510", + "name": "line_ln5532749-2", + "phases": "AN", + "to": "n1138000" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108532", + "length": "305.0665", + "name": "line_ln5563853-1", + "phases": "ABCN", + "to": "m1108535" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142826", + "length": "299.8254", + "name": "line_ln6018329-1", + "phases": "BN", + "to": "l3160864" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1138000", + "length": "164.0063", + "name": "line_ln5532749-3", + "phases": "AN", + "to": "l2766720" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2804262", + "length": "245.0043", + "name": "line_ln6320343-1", + "phases": "AN", + "to": "l2841639" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "221-240991", + "length": "660.3915", + "name": "line_ln8939783-1", + "phases": "A", + "to": "l3066817" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142875", + "length": "860.4262", + "name": "line_ln6318761-1", + "phases": "ABCN", + "to": "m1125944" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027073", + "length": "314.3905", + "name": "line_ln6077808-1", + "phases": "CN", + "to": "m1027071" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069365", + "length": "268.4995", + "name": "line_ln5804788-1", + "phases": "CN", + "to": "l3235243" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1139551", + "length": "74.1116", + "name": "line_ln5714056-2", + "phases": "ABCN", + "to": "m1026695" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026702", + "length": "422.3578", + "name": "line_ln5714056-3", + "phases": "ABCN", + "to": "n1139551" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2898495", + "length": "454.3282", + "name": "line_ln6411010-1", + "phases": "ABCN", + "to": "m1108400" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1027023", + "length": "145.5857", + "name": "line_ln5926302-1", + "phases": "ABCN", + "to": "l3254213" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069213", + "length": "316.7901", + "name": "line_ln6259993-1", + "phases": "ABCN", + "to": "m1069217" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e193509", + "length": "204.7514", + "name": "line_ln5594236-1", + "phases": "ABCN", + "to": "m1142839" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000404", + "length": "158.2381", + "name": "line_ln2000405-1", + "phases": "AN", + "to": "m2000405" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1149225", + "length": "223.2941", + "name": "line_ln6381851-1", + "phases": "BN", + "to": "l2767409" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069488", + "length": "240.6090", + "name": "line_ln6380802-1", + "phases": "CN", + "to": "m1069489" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1126016", + "length": "116.5975", + "name": "line_ln5531333-1", + "phases": "AN", + "to": "l3120534" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1089188", + "length": "248.4597", + "name": "line_ln5835132-1", + "phases": "CN", + "to": "l2673306" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047593", + "length": "32.2077", + "name": "line_ln5661951-2", + "phases": "AN", + "to": "n1136993" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1136993", + "length": "70.5968", + "name": "line_ln5661951-3", + "phases": "AN", + "to": "l2972930" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108298", + "length": "35.2943", + "name": "line_ln5807090-1", + "phases": "BN", + "to": "m1108299" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p901972", + "length": "295.5487", + "name": "line_ln5954983-1", + "phases": "ABCN", + "to": "m1009726" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1141475", + "length": "26.1401", + "name": "line_ln5502536-3", + "phases": "CN", + "to": "m1009655" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026655", + "length": "33.9177", + "name": "line_ln5502536-2", + "phases": "CN", + "to": "n1141475" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026736", + "length": "350.5986", + "name": "line_ln6418150-1", + "phases": "BN", + "to": "m1026745" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026779", + "length": "299.7982", + "name": "line_ln5956474-1", + "phases": "AN", + "to": "l2973169" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008758", + "length": "392.6162", + "name": "line_ln5804829-1", + "phases": "BN", + "to": "l2710537" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l2990098", + "length": "161.7583", + "name": "line_ln81048106-3", + "phases": "A", + "to": "m1108462" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1139254", + "length": "90.5841", + "name": "line_ln5534965-3", + "phases": "AN", + "to": "l3122811" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827499", + "length": "20.9188", + "name": "line_ln5534965-2", + "phases": "AN", + "to": "n1139254" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2729429", + "length": "388.5133", + "name": "line_ln5895807-1", + "phases": "AN", + "to": "l3197647" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047834", + "length": "181.4304", + "name": "line_ln6169243-1", + "phases": "BN", + "to": "m1047835" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l2821087", + "length": "322.2531", + "name": "line_ln81048106-2", + "phases": "A", + "to": "l2990098" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2710509", + "length": "338.4291", + "name": "line_ln6506319-2", + "phases": "CN", + "to": "m1108364" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1108460", + "length": "138.2598", + "name": "line_ln81048106-1", + "phases": "A", + "to": "l2821087" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2820583", + "length": "505.6169", + "name": "line_ln5561521-1", + "phases": "CN", + "to": "m1108354" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1108505", + "length": "12.0758", + "name": "line_ln5500985-1", + "phases": "AN", + "to": "p901946" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m3037455", + "length": "287.9590", + "name": "line_ln5624376-2", + "phases": "CN", + "to": "l3086074" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166395", + "length": "265.2825", + "name": "line_ln5960126-1", + "phases": "CN", + "to": "m1166400" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1139260", + "length": "335.3192", + "name": "line_ln5865268-3", + "phases": "ABCN", + "to": "l2925506" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047672", + "length": "52.5814", + "name": "line_ln5774455-2", + "phases": "AN", + "to": "n1136999" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1136999", + "length": "28.9228", + "name": "line_ln5774455-3", + "phases": "AN", + "to": "m1047671" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069457", + "length": "22.4344", + "name": "line_ln5865268-2", + "phases": "ABCN", + "to": "n1139260" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069588", + "length": "362.3322", + "name": "line_ln5803283-1", + "phases": "BN", + "to": "m1069590" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3216344", + "length": "101.9772", + "name": "line_ln5593247-1", + "phases": "BN", + "to": "l2860501" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047795", + "length": "180.4526", + "name": "line_ln5744353-1", + "phases": "BN", + "to": "l3160117" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3122826", + "length": "340.1375", + "name": "line_ln6108149-1", + "phases": "AN", + "to": "m1047358" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000711", + "length": "158.2381", + "name": "line_ln2000712-1", + "phases": "BN", + "to": "m2000712" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047401", + "length": "183.9115", + "name": "line_ln6388581-2", + "phases": "AN", + "to": "l2748132" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3254216", + "length": "109.9871", + "name": "line_ln6388581-1", + "phases": "AN", + "to": "m1047401" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069189", + "length": "285.3908", + "name": "line_ln6017300-1", + "phases": "CN", + "to": "l2860487" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069208", + "length": "76.8777", + "name": "line_ln5683820-1", + "phases": "CN", + "to": "l2691945" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx1/0_tpx_ln5895784-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "l3010569", + "length": "173.0722", + "name": "line_ln5895784-1", + "phases": "AN", + "to": "m1047335" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108315", + "length": "29.8847", + "name": "line_ln6351523-3", + "phases": "CN", + "to": "n1230121" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3160878", + "length": "638.4642", + "name": "line_ln5745360-1", + "phases": "CN", + "to": "l2917336" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1230121", + "length": "49.4345", + "name": "line_ln6351523-2", + "phases": "CN", + "to": "m1108316" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108344", + "length": "408.0521", + "name": "line_ln5472349-1", + "phases": "CN", + "to": "m1108353" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009807", + "length": "202.2666", + "name": "line_ln5742836-1", + "phases": "ABCN", + "to": "m1009805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209800", + "length": "247.3910", + "name": "line_ln5654466-1", + "phases": "ABCN", + "to": "m1209797" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026343", + "length": "174.1151", + "name": "line_ln5986936-1", + "phases": "AN", + "to": "l2748135" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009839", + "length": "212.9986", + "name": "line_ln5647725-1", + "phases": "BN", + "to": "l2673326" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1009691", + "length": "98.4289", + "name": "line_ln5562940-1", + "phases": "AN", + "to": "l2748140" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047699", + "length": "23.4358", + "name": "line_ln6392124-1", + "phases": "AN", + "to": "p859135" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069187", + "length": "283.7266", + "name": "line_ln6320330-1", + "phases": "AN", + "to": "l2748129" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047786", + "length": "207.1650", + "name": "line_ln5804797-1", + "phases": "BN", + "to": "m1026969" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2842383", + "length": "173.7486", + "name": "line_ln6023352-1", + "phases": "ABCN", + "to": "d6023352-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108300", + "length": "233.2926", + "name": "line_ln6412366-1", + "phases": "BN", + "to": "l2711234" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069131", + "length": "28.7297", + "name": "line_ln5625548-1", + "phases": "AN", + "to": "p827534" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3178981", + "length": "711.2781", + "name": "line_ln5683833-1", + "phases": "BN", + "to": "m1047368" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr1/0_tpx_ln6229827-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1125959", + "length": "212.6504", + "name": "line_ln5651995-1", + "phases": "CN", + "to": "m1125974" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166369", + "length": "195.4769", + "name": "line_ln6046058-1", + "phases": "AN", + "to": "l2839305" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142821", + "length": "5.3590", + "name": "line_ln6351510-1", + "phases": "ABCN", + "to": "l2711226" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026655", + "length": "16.3975", + "name": "line_ln5865246-2", + "phases": "AN", + "to": "n1141474" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1141474", + "length": "77.7460", + "name": "line_ln5865246-3", + "phases": "AN", + "to": "l2710518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2860483", + "length": "249.5101", + "name": "line_ln5593225-1", + "phases": "BN", + "to": "l3141397" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m3032977", + "length": "1009.2343", + "name": "line_ln6504018-1", + "phases": "ABCN", + "to": "m1166366" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089199", + "length": "266.5853", + "name": "line_ln6350529-1", + "phases": "ABCN", + "to": "m1089197" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr4_dpx_ln5744331-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "200.00", + "from": "m1047478", + "length": "99.0711", + "name": "line_ln5744331-1", + "phases": "CN", + "to": "l3254209" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "e182730", + "length": "78.8197", + "name": "line_ln5898059-3", + "phases": "AN", + "to": "n1142109" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1209819", + "length": "163.9624", + "name": "line_ln5952392-1", + "phases": "ABCN", + "to": "l2936216" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108340", + "length": "335.9584", + "name": "line_ln5956461-1", + "phases": "CN", + "to": "l3085394" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1142109", + "length": "229.6139", + "name": "line_ln5898059-2", + "phases": "AN", + "to": "l2729429" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026979", + "length": "232.0751", + "name": "line_ln6290210-1", + "phases": "ABCN", + "to": "m1026984" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2673343", + "length": "355.0624", + "name": "line_ln5591805-1", + "phases": "BN", + "to": "l2764436" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125934", + "length": "207.9275", + "name": "line_ln5503576-1", + "phases": "ABCN", + "to": "l2730163" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "q14413", + "length": "342.0545", + "name": "line_ln5532758-3", + "phases": "ABCN", + "to": "m1026886" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3082992", + "length": "195.5266", + "name": "line_ln6167748-1", + "phases": "AN", + "to": "m1047406" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142801", + "length": "329.6649", + "name": "line_ln6139658-1", + "phases": "BN", + "to": "l3217064" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047768", + "length": "13.5736", + "name": "line_ln5565094-1", + "phases": "BN", + "to": "p827554" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010017", + "length": "593.1978", + "name": "line_ln5768778-1", + "phases": "AN", + "to": "m1010016" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1147861", + "length": "200.7999", + "name": "line_ln6440004-3", + "phases": "CN", + "to": "l3122818" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010016", + "length": "463.6448", + "name": "line_ln5768778-2", + "phases": "AN", + "to": "l3251807" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3016088", + "length": "153.0002", + "name": "line_ln6492184-2", + "phases": "AN", + "to": "l3312692" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026844", + "length": "24.9060", + "name": "line_ln6440004-2", + "phases": "CN", + "to": "n1147861" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026496", + "length": "151.0435", + "name": "line_ln6229812-1", + "phases": "BN", + "to": "l2691959" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2955006", + "length": "196.5469", + "name": "line_ln5714915-1", + "phases": "CN", + "to": "l2692600" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069136", + "length": "159.2685", + "name": "line_ln5774468-1", + "phases": "CN", + "to": "l2841638" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2822870", + "length": "209.0943", + "name": "line_ln6047579-1", + "phases": "CN", + "to": "l2766725" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069189", + "length": "84.7397", + "name": "line_ln6108136-1", + "phases": "ABCN", + "to": "m1069184" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "196-29518", + "length": "296.7137", + "name": "line_ln5959087-1", + "phases": "ABCN", + "to": "l3122816" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108264", + "length": "328.0653", + "name": "line_ln5714038-1", + "phases": "BN", + "to": "m1108263" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069348", + "length": "317.9078", + "name": "line_ln5744366-1", + "phases": "CN", + "to": "m1069356" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000702", + "length": "158.2381", + "name": "line_ln2000703-1", + "phases": "BN", + "to": "m2000703" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047720", + "length": "6.2970", + "name": "line_ln5894206-1", + "phases": "ABCN", + "to": "l2895449" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2729427", + "length": "148.5835", + "name": "line_ln5472393-1", + "phases": "BN", + "to": "m1047786" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1137005", + "length": "45.3769", + "name": "line_ln5894206-4", + "phases": "ABCN", + "to": "m1047724" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2895449", + "length": "292.3263", + "name": "line_ln5894206-3", + "phases": "ABCN", + "to": "n1137005" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047787", + "length": "242.8218", + "name": "line_ln5985348-1", + "phases": "BN", + "to": "l3157710" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3157710", + "length": "167.7749", + "name": "line_ln5985348-2", + "phases": "BN", + "to": "m1047793" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2970811", + "length": "197.2126", + "name": "line_ln5924720-2", + "phases": "AN", + "to": "m1027121" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026969", + "length": "126.1654", + "name": "line_ln5532745-1", + "phases": "BN", + "to": "m1026972" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027121", + "length": "102.1165", + "name": "line_ln5924720-1", + "phases": "AN", + "to": "m1027123" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1139264", + "length": "153.2880", + "name": "line_ln5895771-3", + "phases": "AN", + "to": "m1069465" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069466", + "length": "84.2943", + "name": "line_ln5895771-2", + "phases": "AN", + "to": "n1139264" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047368", + "length": "406.5792", + "name": "line_ln6411392-1", + "phases": "BN", + "to": "l2841620" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827496", + "length": "14.9981", + "name": "line_ln6292463-1", + "phases": "BN", + "to": "m1108262" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026880", + "length": "241.0539", + "name": "line_ln6290241-1", + "phases": "AN", + "to": "m1026874" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3103822", + "length": "384.1112", + "name": "line_ln6163390-1", + "phases": "ABCN", + "to": "m1047577" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr2_acsr_ln5741170-3", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1026700", + "length": "36.5829", + "name": "line_ln5741170-3", + "phases": "CN", + "to": "n1140821" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr2_acsr_ln5741170-3", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "n1140821", + "length": "52.0171", + "name": "line_ln5741170-2", + "phases": "CN", + "to": "l3189188" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3066813", + "length": "282.6291", + "name": "line_ln6380815-1", + "phases": "BN", + "to": "l2991910" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1027004", + "length": "478.6856", + "name": "line_ln5986923-1", + "phases": "BN", + "to": "l2897765" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069226", + "length": "34.3085", + "name": "line_ln6231994-1", + "phases": "CN", + "to": "m1069227" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1009651", + "length": "29.6267", + "name": "line_ln5800693-1", + "phases": "ABCN", + "to": "m1009650" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069543", + "length": "221.6746", + "name": "line_ln5956483-1", + "phases": "BN", + "to": "m1069535" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047548", + "length": "63.5141", + "name": "line_ln6169252-1", + "phases": "ABCN", + "to": "m1047552" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001302", + "length": "158.2381", + "name": "line_ln2001303-1", + "phases": "AN", + "to": "m2001303" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1140825", + "length": "66.9421", + "name": "line_ln5895816-3", + "phases": "ABCN", + "to": "l3216368" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026706", + "length": "49.6115", + "name": "line_ln5895816-2", + "phases": "ABCN", + "to": "n1140825" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "e206210", + "length": "15.1001", + "name": "line_ln5591697-1", + "phases": "CN", + "to": "m1069225" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1166368", + "length": "344.7777", + "name": "line_ln5715052-1", + "phases": "ABCN", + "to": "l2973833" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr1/0_acsr_ln5852082-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1026824", + "length": "22.1400", + "name": "line_ln5852082-1", + "phases": "CN", + "to": "p859694" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026704", + "length": "537.8642", + "name": "line_ln5835145-1", + "phases": "BN", + "to": "l2841634" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1089138", + "length": "323.3217", + "name": "line_ln5653459-1", + "phases": "AN", + "to": "l2841628" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089112", + "length": "128.9074", + "name": "line_ln5863823-1", + "phases": "ABCN", + "to": "l3195356" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "l3067448", + "length": "835.0036", + "name": "line_ln6073916-1", + "phases": "ABCN", + "to": "l2763407" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047744", + "length": "2.7631", + "name": "line_ln5865233-1", + "phases": "AN", + "to": "l3178971" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2767414", + "length": "478.0245", + "name": "line_ln6015795-1", + "phases": "CN", + "to": "m1108331" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108402", + "length": "423.1454", + "name": "line_ln6422015-1", + "phases": "ABCN", + "to": "m1108405" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001204", + "length": "158.2381", + "name": "line_ln2001205-1", + "phases": "CN", + "to": "m2001205" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000408", + "length": "158.2381", + "name": "line_ln2000409-1", + "phases": "AN", + "to": "m2000409" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026792", + "length": "179.6169", + "name": "line_ln5501000-1", + "phases": "CN", + "to": "l2895461" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026344", + "length": "423.7401", + "name": "line_ln5593238-1", + "phases": "AN", + "to": "l2991919" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026896", + "length": "47.3277", + "name": "line_ln6201697-1", + "phases": "ABCN", + "to": "p827525" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2897554", + "length": "393.6651", + "name": "line_ln8961797-2", + "phases": "C", + "to": "193-46661" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069496", + "length": "195.3666", + "name": "line_ln6047557-2", + "phases": "ABCN", + "to": "n1134475" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1134475", + "length": "109.3349", + "name": "line_ln6047557-3", + "phases": "ABCN", + "to": "m1069497" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1140828", + "length": "39.9354", + "name": "line_ln5472403-2", + "phases": "ABCN", + "to": "m1026708" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1047633", + "length": "590.0089", + "name": "line_ln8961797-1", + "phases": "C", + "to": "l2897554" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009724", + "length": "149.4031", + "name": "line_ln5744344-1", + "phases": "ABCN", + "to": "m1009720" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026706", + "length": "391.3713", + "name": "line_ln5472403-3", + "phases": "ABCN", + "to": "n1140828" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026700", + "length": "121.4181", + "name": "line_ln6438273-2", + "phases": "ABCN", + "to": "n1140823" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1140823", + "length": "198.3470", + "name": "line_ln6438273-3", + "phases": "ABCN", + "to": "l2851933" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089202", + "length": "206.7328", + "name": "line_ln5679695-1", + "phases": "ABCN", + "to": "m1089203" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125990", + "length": "208.8994", + "name": "line_ln06534433_sw", + "phases": "ABCN", + "to": "l3067478" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln6019479-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "l3216358", + "length": "150.1893", + "name": "line_ln6350560-1", + "phases": "CN", + "to": "m1026826" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2876812", + "length": "233.9652", + "name": "line_ln6106582-1", + "phases": "AN", + "to": "l2970811" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108265", + "length": "3179.5518", + "name": "line_ln5926296-1", + "phases": "BN", + "to": "m1108264" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3160868", + "length": "87.5592", + "name": "line_ln6139649-1", + "phases": "BN", + "to": "l3082988" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2710510", + "length": "198.8522", + "name": "line_ln6411370-1", + "phases": "CN", + "to": "l3197628" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125962", + "length": "404.8174", + "name": "line_ln6381820-1", + "phases": "ABCN", + "to": "l3123452" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001008", + "length": "158.2381", + "name": "line_ln2001009-1", + "phases": "BN", + "to": "m2001009" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108398", + "length": "223.1818", + "name": "line_ln6061815-1", + "phases": "ABCN", + "to": "m1108395" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142835", + "length": "35.5482", + "name": "line_ln6321412-1", + "phases": "CN", + "to": "m1142833" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3048221", + "length": "223.3741", + "name": "line_ln5835167-6", + "phases": "ABCN", + "to": "d5835167-6_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089163", + "length": "297.6993", + "name": "line_ln5502523-1", + "phases": "CN", + "to": "l3066807" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047813", + "length": "220.2650", + "name": "line_ln6108123-1", + "phases": "BN", + "to": "l2973149" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3104128", + "length": "382.1091", + "name": "line_ln5926306-1", + "phases": "AN", + "to": "l2673315" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047522", + "length": "167.4292", + "name": "line_ln5562931-1", + "phases": "ABCN", + "to": "m1047520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069629", + "length": "321.6106", + "name": "line_ln5986945-1", + "phases": "BN", + "to": "m1069632" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1137996", + "length": "23.9043", + "name": "line_ln5562931-3", + "phases": "CN", + "to": "l3178979" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047558", + "length": "19.9400", + "name": "line_ln5562931-2", + "phases": "CN", + "to": "n1137996" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2989596", + "length": "290.7327", + "name": "line_ln6046143-1", + "phases": "BN", + "to": "l2822873" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047767", + "length": "358.2564", + "name": "line_ln6017290-1", + "phases": "BN", + "to": "l2860484" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027123", + "length": "81.7029", + "name": "line_ln6076266-1", + "phases": "AN", + "to": "l3008248" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2673317", + "length": "327.0882", + "name": "line_ln6505948-2", + "phases": "AN", + "to": "l2710517" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1209788", + "length": "247.1335", + "name": "line_ln6381855-1", + "phases": "CN", + "to": "m1209795" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026354", + "length": "504.8260", + "name": "line_ln2000000-1", + "phases": "ABCN", + "to": "m2000100" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2897791", + "length": "9.4781", + "name": "line_ln5683842-1", + "phases": "BN", + "to": "m1069613" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "l2851933", + "length": "77.4945", + "name": "line_ln6506306-2", + "phases": "ABCN", + "to": "l3207907" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089112", + "length": "15.1953", + "name": "line_ln5776667-1", + "phases": "CN", + "to": "p827520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2689691", + "length": "272.9084", + "name": "line_ln5712507-1", + "phases": "ABCN", + "to": "m1009763" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125978", + "length": "338.3628", + "name": "line_ln6134418-1", + "phases": "BN", + "to": "l3254869" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "e183472", + "length": "512.2680", + "name": "line_ln5985361-1", + "phases": "ABCN", + "to": "l2989566" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m4350438", + "length": "310.6807", + "name": "line_ln6409872-3", + "phases": "BN", + "to": "l2935568" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3010564", + "length": "405.4772", + "name": "line_ln5865238-1", + "phases": "CN", + "to": "l2710515" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047318", + "length": "1265.9929", + "name": "line_ln6138612-1", + "phases": "CN", + "to": "l3254205" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p827503", + "length": "101.2816", + "name": "line_ln5928544-2", + "phases": "CN", + "to": "n1137994" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2990826", + "length": "521.4686", + "name": "line_ln8979258-1", + "phases": "ABCN", + "to": "l2990827" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1137994", + "length": "184.9440", + "name": "line_ln5928544-3", + "phases": "CN", + "to": "m1069484" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3235244", + "length": "206.3512", + "name": "line_ln6380806-1", + "phases": "AN", + "to": "m1069398" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2748132", + "length": "840.8238", + "name": "line_ln6440070-1", + "phases": "AN", + "to": "l2689726" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000911", + "length": "158.2381", + "name": "line_ln2000912-1", + "phases": "CN", + "to": "m2000912" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026849", + "length": "3.8780", + "name": "line_ln6077780-1", + "phases": "AN", + "to": "m1026848" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2785519", + "length": "107.0855", + "name": "line_ln5804792-1", + "phases": "AN", + "to": "l3104122" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047326", + "length": "335.7198", + "name": "line_ln5472372-1", + "phases": "AN", + "to": "m1047338" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026709", + "length": "18.8611", + "name": "line_ln5655685-1", + "phases": "CN", + "to": "p827561" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108311", + "length": "80.9517", + "name": "line_ln5896844-1", + "phases": "CN", + "to": "l2898526" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047447", + "length": "323.1349", + "name": "line_ln6199519-1", + "phases": "BN", + "to": "l2766722" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108379", + "length": "131.7255", + "name": "line_ln6411005-1", + "phases": "ABCN", + "to": "m1108380" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108380", + "length": "280.5297", + "name": "line_ln6411005-2", + "phases": "ABCN", + "to": "l2898495" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "d2000100_int", + "length": "175.8104", + "name": "line_ln2000200-1", + "phases": "ABCN", + "to": "m2000200" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069136", + "length": "246.6429", + "name": "line_ln5804802-1", + "phases": "ABCN", + "to": "m1069135" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3046854", + "length": "172.3268", + "name": "line_ln6407748-2", + "phases": "BN", + "to": "m1047453" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3029504", + "length": "193.6558", + "name": "line_ln6407748-1", + "phases": "BN", + "to": "l3046854" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "d6017295-1_int", + "length": "381.6331", + "name": "line_ln6017295-1", + "phases": "ABCN", + "to": "m1069393" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3254219", + "length": "210.5291", + "name": "line_ln6350547-1", + "phases": "CN", + "to": "l3254220" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3197636", + "length": "296.2708", + "name": "line_ln5714051-1", + "phases": "ABCN", + "to": "m1047424" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3066809", + "length": "208.7462", + "name": "line_ln5774451-1", + "phases": "CN", + "to": "m1069487" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2691936", + "length": "240.0595", + "name": "line_ln5623388-1", + "phases": "AN", + "to": "m1026941" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026488", + "length": "17.9223", + "name": "line_ln6047588-1", + "phases": "BN", + "to": "d6047588-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1108378", + "length": "22.9770", + "name": "line_ln81048088-1", + "phases": "A", + "to": "p904451" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "196-36167", + "length": "267.5600", + "name": "line_ln6106511-1", + "phases": "ABCN", + "to": "l3011298" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5895780-3_int", + "length": "184.0295", + "name": "line_ln5895780-3", + "phases": "ABCN", + "to": "l2991914" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142828", + "length": "1.000", + "name": "line_ln5473436-1", + "phases": "ABCN", + "to": "l2674047" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2674047", + "length": "199.6421", + "name": "line_ln5473436-2", + "phases": "ABCN", + "to": "l2692655" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "r20185", + "length": "69.8178", + "name": "line_ln5513564-1", + "phases": "ABCN", + "to": "d5513564-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026769", + "length": "22.6748", + "name": "line_ln6140776-1", + "phases": "AN", + "to": "d6140776-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027038", + "length": "195.1262", + "name": "line_ln5829253-1", + "phases": "BN", + "to": "l2731712" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108483", + "length": "104.2077", + "name": "line_ln5594151-1", + "phases": "AN", + "to": "m1108486" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "f739844", + "length": "100.000", + "name": "line_ln247171", + "phases": "BN", + "to": "l0247171" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142865", + "length": "201.9363", + "name": "line_ln5533786-1", + "phases": "ABCN", + "to": "l3030197" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089094", + "length": "200.7587", + "name": "line_ln5744323-1", + "phases": "CN", + "to": "m1069147" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026708", + "length": "2.4013", + "name": "line_ln5472394-1", + "phases": "ABCN", + "to": "m1026709" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1209782", + "length": "241.7224", + "name": "line_ln5927382-1", + "phases": "AN", + "to": "l3217056" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009770", + "length": "28.1828", + "name": "line_ln5863746-1", + "phases": "BN", + "to": "m1009771" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108262", + "length": "14.9988", + "name": "line_ln5562918-1", + "phases": "BN", + "to": "m1108261" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1140822", + "length": "147.2658", + "name": "line_ln5532788-3", + "phases": "CN", + "to": "l2935560" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3104136", + "length": "467.6420", + "name": "line_ln5895793-1", + "phases": "ABCN", + "to": "l2822872" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "e182726", + "length": "245.6062", + "name": "line_ln5958705-1", + "phases": "BN", + "to": "l2766744" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2879070", + "length": "292.9818", + "name": "line_ln6169248-1", + "phases": "ABCN", + "to": "l3216345" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1125994", + "length": "72.7043", + "name": "line_ln5503546-1", + "phases": "ABCN", + "to": "l2730149" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026700", + "length": "280.5128", + "name": "line_ln5650219-1", + "phases": "ABCN", + "to": "m1026706" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069524", + "length": "199.9989", + "name": "line_ln6198028-1", + "phases": "AN", + "to": "l2820533" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026706", + "length": "36.5052", + "name": "line_ln5532788-2", + "phases": "CN", + "to": "n1140822" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108350", + "length": "227.4743", + "name": "line_ln5715017-1", + "phases": "CN", + "to": "l3198356" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2936279", + "length": "333.6831", + "name": "line_ln5473449-1", + "phases": "ABCN", + "to": "l3179678" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209748", + "length": "263.3435", + "name": "line_ln6230793-1", + "phases": "BN", + "to": "l3142099" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026795", + "length": "242.0107", + "name": "line_ln6108144-1", + "phases": "ABCN", + "to": "m1026786" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069550", + "length": "305.0457", + "name": "line_ln5895803-1", + "phases": "BN", + "to": "m1069544" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2991910", + "length": "148.4577", + "name": "line_ln5986928-1", + "phases": "BN", + "to": "l2879072" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026703", + "length": "239.6001", + "name": "line_ln5744358-1", + "phases": "CN", + "to": "l2973166" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069484", + "length": "408.5933", + "name": "line_ln5593221-1", + "phases": "CN", + "to": "l2785517" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010008", + "length": "7.4660", + "name": "line_ln6344714-1", + "phases": "AN", + "to": "m1010007" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m3768670", + "length": "243.8353", + "name": "line_ln5653460-6", + "phases": "ABCN", + "to": "l3235254" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "f739841", + "length": "100.000", + "name": "line_ln247160", + "phases": "BN", + "to": "l0247160" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142808", + "length": "301.2134", + "name": "line_ln5798823-1", + "phases": "BN", + "to": "l3160868" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3216345", + "length": "248.7033", + "name": "line_ln5653460-5", + "phases": "ABCN", + "to": "m3768670" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2673313", + "length": "214.8932", + "name": "line_ln6047566-1", + "phases": "ABCN", + "to": "m1027011" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2/0_acsrxx2_acsr_ln6129680-2", + "continuous_rating_A": "300.00", + "emergency_rating_A": "300.00", + "from": "m1047521", + "length": "36.8290", + "name": "line_ln6129680-2", + "phases": "AN", + "to": "n1136665" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "f739842", + "length": "100.000", + "name": "line_ln247162", + "phases": "BN", + "to": "l0247162" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2/0_acsrxx2_acsr_ln6129680-2", + "continuous_rating_A": "300.00", + "emergency_rating_A": "300.00", + "from": "n1136665", + "length": "98.1706", + "name": "line_ln6129680-3", + "phases": "AN", + "to": "l2685809" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069464", + "length": "20.4578", + "name": "line_ln5859996-1", + "phases": "BN", + "to": "p873787" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142799", + "length": "330.6393", + "name": "line_ln5896831-1", + "phases": "BN", + "to": "m1142798" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108486", + "length": "46.3101", + "name": "line_ln6230695-1", + "phases": "AN", + "to": "l3067447" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "221-703009", + "length": "111.5356", + "name": "line_ln8976560-3", + "phases": "C", + "to": "l3150961" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1125943", + "length": "17.0734", + "name": "line_ln8976560-2", + "phases": "C", + "to": "221-703009" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3021569", + "length": "519.9970", + "name": "line_ln6496337-2", + "phases": "BN", + "to": "l3315860" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209814", + "length": "350.8814", + "name": "line_ln5473414-1", + "phases": "ABCN", + "to": "m1209811" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069417", + "length": "14.1565", + "name": "line_ln5712475-1", + "phases": "BN", + "to": "p901910" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln6411379-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069311", + "length": "86.8468", + "name": "line_ln5970852-1", + "phases": "AN", + "to": "m1069312" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2673310", + "length": "258.0781", + "name": "line_ln6229794-1", + "phases": "AN", + "to": "l3104121" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3198356", + "length": "199.6995", + "name": "line_ln5805767-1", + "phases": "CN", + "to": "m1108345" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166356", + "length": "201.1904", + "name": "line_ln6258530-1", + "phases": "AN", + "to": "l2727019" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1139544", + "length": "87.2786", + "name": "line_ln5803270-3", + "phases": "CN", + "to": "l2897776" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2673322", + "length": "162.0024", + "name": "line_ln5818176-1", + "phases": "BN", + "to": "l2859391" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1069225", + "length": "40.0904", + "name": "line_ln5803270-2", + "phases": "CN", + "to": "n1139544" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069382", + "length": "127.0725", + "name": "line_ln5895812-1", + "phases": "ABCN", + "to": "l2822877" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047566", + "length": "19.9972", + "name": "line_ln6047575-2", + "phases": "AN", + "to": "n1137995" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209751", + "length": "12.6315", + "name": "line_ln6018333-1", + "phases": "BN", + "to": "m1209750" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000902", + "length": "158.2381", + "name": "line_ln2000903-1", + "phases": "CN", + "to": "m2000903" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137995", + "length": "83.9895", + "name": "line_ln6047575-3", + "phases": "AN", + "to": "l3141401" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1166376", + "length": "17.2145", + "name": "line_ln5508630-1", + "phases": "ABCN", + "to": "l2842384" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2711224", + "length": "223.6213", + "name": "line_ln6170291-1", + "phases": "BN", + "to": "m1125905" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3067506", + "length": "174.8903", + "name": "line_ln5866266-1", + "phases": "CN", + "to": "m1166386" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1069312", + "length": "23.1124", + "name": "line_ln81018876-1", + "phases": "A", + "to": "p873801" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047299", + "length": "180.6085", + "name": "line_ln5956501-1", + "phases": "CN", + "to": "l3104157" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089203", + "length": "20.8937", + "name": "line_ln6103924-1", + "phases": "AN", + "to": "p895087" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2860488", + "length": "175.7184", + "name": "line_ln6229804-1", + "phases": "BN", + "to": "m1026308" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125960", + "length": "41.2722", + "name": "line_ln6286109-1", + "phases": "ABCN", + "to": "m1125962" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026704", + "length": "180.3028", + "name": "line_ln5865247-1", + "phases": "BN", + "to": "l2991915" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1147866", + "length": "103.1191", + "name": "line_ln6201702-2", + "phases": "AN", + "to": "m1026713" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m3763624", + "length": "32.6906", + "name": "line_ln81354563-2", + "phases": "C", + "to": "p1121283" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1027013", + "length": "323.5708", + "name": "line_ln5744336-1", + "phases": "ABCN", + "to": "m1027023" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047471", + "length": "313.2535", + "name": "line_ln6380819-1", + "phases": "BN", + "to": "l2879077" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069500", + "length": "15.0017", + "name": "line_ln6413568-1", + "phases": "AN", + "to": "p827549" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047490", + "length": "119.4666", + "name": "line_ln6987572-4", + "phases": "AN", + "to": "p1164481" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008753", + "length": "969.2507", + "name": "line_ln6163394-1", + "phases": "BN", + "to": "m1026307" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069481", + "length": "88.1566", + "name": "line_ln6106657-1", + "phases": "ABCN", + "to": "l2745848" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009763", + "length": "105.5630", + "name": "line_ln5502549-1", + "phases": "BN", + "to": "l2673322" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069438", + "length": "32.9875", + "name": "line_ln6352702-1", + "phases": "CN", + "to": "p827575" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "221-311609", + "length": "136.5770", + "name": "line_ln8979249-2", + "phases": "ABC", + "to": "l2915542" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "p850072", + "length": "13.3275", + "name": "line_ln8979249-1", + "phases": "ABC", + "to": "221-311609" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000706", + "length": "158.2381", + "name": "line_ln2000707-1", + "phases": "BN", + "to": "m2000707" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2748143", + "length": "220.0003", + "name": "line_ln5531956-1", + "phases": "AN", + "to": "l3251854" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001009", + "length": "158.2381", + "name": "line_ln2001010-1", + "phases": "BN", + "to": "m2001010" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069595", + "length": "164.2832", + "name": "line_ln6228304-1", + "phases": "BN", + "to": "l2916619" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2785518", + "length": "250.4992", + "name": "line_ln6411369-1", + "phases": "CN", + "to": "l2766717" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047433", + "length": "300.0985", + "name": "line_ln5472363-1", + "phases": "AN", + "to": "m1047434" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3122821", + "length": "452.4689", + "name": "line_ln5532753-1", + "phases": "ABCN", + "to": "m1047486" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069498", + "length": "322.3273", + "name": "line_ln5761784-1", + "phases": "ABCN", + "to": "m1069499" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069640", + "length": "331.8406", + "name": "line_ln6106559-1", + "phases": "BN", + "to": "l2804269" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166358", + "length": "201.8157", + "name": "line_ln6170336-1", + "phases": "CN", + "to": "l3030205" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026387", + "length": "232.5032", + "name": "line_ln6290219-1", + "phases": "AN", + "to": "l3104132" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047358", + "length": "67.3649", + "name": "line_ln6199528-1", + "phases": "AN", + "to": "l3197644" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026960", + "length": "85.0001", + "name": "line_ln6879074-1", + "phases": "AN", + "to": "m3729981" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069544", + "length": "51.7366", + "name": "line_ln6229817-1", + "phases": "BN", + "to": "l2804272" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026820", + "length": "194.3325", + "name": "line_ln5774486-1", + "phases": "CN", + "to": "l3141403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142868", + "length": "177.0388", + "name": "line_ln6048626-1", + "phases": "ABCN", + "to": "m1142869" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089115", + "length": "300.2087", + "name": "line_ln5593234-1", + "phases": "ABCN", + "to": "m1089112" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026950", + "length": "345.7933", + "name": "line_ln6350538-1", + "phases": "ABCN", + "to": "m1026954" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125968", + "length": "27.7281", + "name": "line_ln5861084-1", + "phases": "CN", + "to": "p895107" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx2_acsr_ln5472350-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1069154", + "length": "210.7422", + "name": "line_ln5472350-1", + "phases": "BN", + "to": "l3104120" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1089170", + "length": "155.3860", + "name": "line_ln5532740-1", + "phases": "CN", + "to": "l3029497" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009840", + "length": "305.4828", + "name": "line_ln6017282-1", + "phases": "BN", + "to": "l3216338" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2916608", + "length": "284.0062", + "name": "line_ln6108131-1", + "phases": "ABCN", + "to": "m1027002" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3048206", + "length": "196.5001", + "name": "line_ln6320329-1", + "phases": "ABCN", + "to": "m1069156" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2767408", + "length": "148.7871", + "name": "line_ln6506314-2", + "phases": "CN", + "to": "l3217053" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "l3160863", + "length": "1019.5548", + "name": "line_ln6201670-1", + "phases": "ABCN", + "to": "l2730108" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "r18241", + "length": "226.5406", + "name": "line_ln6259989-1", + "phases": "ABCN", + "to": "m1047763" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047453", + "length": "252.7781", + "name": "line_ln5835175-1", + "phases": "BN", + "to": "l2785547" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2879075", + "length": "195.0644", + "name": "line_ln5894312-1", + "phases": "AN", + "to": "l3251830" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1009824", + "length": "175.9835", + "name": "line_ln5865225-1", + "phases": "BN", + "to": "l2822857" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "e182731", + "length": "141.6482", + "name": "line_ln5716232-1", + "phases": "BN", + "to": "m1026327" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047796", + "length": "400.9391", + "name": "line_ln5502527-1", + "phases": "BN", + "to": "l3010562" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001307", + "length": "158.2381", + "name": "line_ln2001308-1", + "phases": "AN", + "to": "m2001308" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e182732", + "length": "30.1193", + "name": "line_ln5746548-1", + "phases": "ABCN", + "to": "m1026760" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1138595", + "length": "386.8395", + "name": "line_ln6505944-3", + "phases": "ABCN", + "to": "m3036167" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026810", + "length": "444.6293", + "name": "line_ln6260002-1", + "phases": "CN", + "to": "l2914324" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827534", + "length": "16.2537", + "name": "line_ln5985339-1", + "phases": "AN", + "to": "m1069130" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p827563", + "length": "22.0364", + "name": "line_ln6505944-2", + "phases": "ABCN", + "to": "n1138595" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069130", + "length": "258.4847", + "name": "line_ln5985339-2", + "phases": "AN", + "to": "l3085396" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1142815", + "length": "483.6907", + "name": "line_ln5684911-1", + "phases": "ABCN", + "to": "m1142814" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026861", + "length": "534.5932", + "name": "line_ln6169257-1", + "phases": "ABCN", + "to": "m1026858" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2879073", + "length": "205.1442", + "name": "line_ln5835140-1", + "phases": "ABCN", + "to": "m1069205" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069567", + "length": "269.1826", + "name": "line_ln5472385-1", + "phases": "BN", + "to": "l2691966" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026492", + "length": "175.8592", + "name": "line_ln5804837-1", + "phases": "BN", + "to": "l3048231" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1209822", + "length": "186.9522", + "name": "line_ln6078692-1", + "phases": "ABCN", + "to": "m1209823" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010003", + "length": "195.000", + "name": "line_ln5803302-1", + "phases": "AN", + "to": "l2989571" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026394", + "length": "141.9797", + "name": "line_ln5683829-1", + "phases": "AN", + "to": "m1026393" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p873787", + "length": "48.4679", + "name": "line_ln6163946-1", + "phases": "BN", + "to": "m1069463" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009763", + "length": "81.6749", + "name": "line_ln6138616-1", + "phases": "BN", + "to": "l2766730" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069174", + "length": "306.0783", + "name": "line_ln5924697-1", + "phases": "CN", + "to": "l2841630" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069514", + "length": "40.1729", + "name": "line_ln6290228-2", + "phases": "ABCN", + "to": "n1136657" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069600", + "length": "190.0005", + "name": "line_ln5831676-1", + "phases": "BN", + "to": "l3102793" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026705", + "length": "114.9670", + "name": "line_ln5803257-1", + "phases": "CN", + "to": "l2710532" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "r42246", + "length": "139.2668", + "name": "line_ln6290228-5", + "phases": "ABCN", + "to": "l2691967" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026377", + "length": "190.5045", + "name": "line_ln5562936-1", + "phases": "AN", + "to": "m1026378" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m3037453", + "length": "11.2274", + "name": "line_ln6436903-4", + "phases": "CN", + "to": "l2785546" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1136657", + "length": "174.6514", + "name": "line_ln6290228-6", + "phases": "ABCN", + "to": "d6290228-6_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2898495", + "length": "461.4899", + "name": "line_ln6409778-1", + "phases": "ABCN", + "to": "l2952003" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "q16642_cap", + "length": "14.8983", + "name": "line_ln6290228-7", + "phases": "ABCN", + "to": "r42246" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p827574", + "length": "199.9018", + "name": "line_ln5776672-1", + "phases": "AN", + "to": "l3160123" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3178976", + "length": "297.1361", + "name": "line_ln6108153-1", + "phases": "AN", + "to": "m1026779" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2879081", + "length": "184.4732", + "name": "line_ln5472376-1", + "phases": "AN", + "to": "m1026682" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069461", + "length": "28.5005", + "name": "line_ln6049824-1", + "phases": "AN", + "to": "p827574" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047828", + "length": "66.9504", + "name": "line_ln6199515-1", + "phases": "BN", + "to": "l2954346" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166407", + "length": "493.7524", + "name": "line_ln5985365-1", + "phases": "CN", + "to": "l2952007" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2822871", + "length": "197.3244", + "name": "line_ln6077784-1", + "phases": "ABCN", + "to": "m1026872" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2785547", + "length": "129.0966", + "name": "line_ln6047607-1", + "phases": "BN", + "to": "m1047457" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047345", + "length": "179.2233", + "name": "line_ln6047584-1", + "phases": "ABCN", + "to": "l2991922" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "q1301", + "length": "46.3509", + "name": "line_ln5861005-3", + "phases": "ABCN", + "to": "l3160872" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "196-31070", + "length": "20.1474", + "name": "line_ln5861005-2", + "phases": "ABCN", + "to": "d5861005-2_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166391", + "length": "283.3100", + "name": "line_ln6200442-1", + "phases": "CN", + "to": "m1166394" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1147867", + "length": "19.4111", + "name": "line_ln5837361-8", + "phases": "ABCN", + "to": "d5837361-8_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2991933", + "length": "273.2062", + "name": "line_ln5653486-1", + "phases": "CN", + "to": "l3122837" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027027", + "length": "384.5177", + "name": "line_ln6077807-1", + "phases": "CN", + "to": "l2766746" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069184", + "length": "209.5686", + "name": "line_ln6017299-1", + "phases": "ABCN", + "to": "m1069175" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047344", + "length": "232.9696", + "name": "line_ln5714055-1", + "phases": "AN", + "to": "l2897772" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3081380", + "length": "302.2330", + "name": "line_ln5799561-2", + "phases": "ABCN", + "to": "d5799561-2_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142843", + "length": "362.8248", + "name": "line_ln5799561-1", + "phases": "ABCN", + "to": "l3081380" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e184626", + "length": "33.8509", + "name": "line_ln6326450-1", + "phases": "ABCN", + "to": "m1166377" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069456", + "length": "74.3772", + "name": "line_ln5837361-7", + "phases": "ABCN", + "to": "n1147867" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p895089", + "length": "198.5139", + "name": "line_ln6134414-1", + "phases": "CN", + "to": "l3235242" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1142826", + "length": "940.4608", + "name": "line_ln5654470-1", + "phases": "BN", + "to": "m1125940" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000300", + "length": "473.3272", + "name": "line_ln2000400-1", + "phases": "ABCN", + "to": "m2000400" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2786266", + "length": "113.4009", + "name": "line_ln5745355-1", + "phases": "ABCN", + "to": "m1166375" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047718", + "length": "178.6656", + "name": "line_ln5683807-1", + "phases": "AN", + "to": "m1047721" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047834", + "length": "308.9107", + "name": "line_ln5744327-1", + "phases": "BN", + "to": "l3197624" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026920", + "length": "79.5162", + "name": "line_ln6320338-1", + "phases": "BN", + "to": "l2729408" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "q16483_cap", + "length": "17.2556", + "name": "line_ln5563942-5", + "phases": "ABCN", + "to": "r42247" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047420", + "length": "41.3833", + "name": "line_ln6195664-1", + "phases": "AN", + "to": "m1047419" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047580", + "length": "34.7410", + "name": "line_ln6025724-2", + "phases": "CN", + "to": "n1136672" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p895102", + "length": "32.5571", + "name": "line_ln6376708-1", + "phases": "BN", + "to": "m1125978" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047314", + "length": "73.2220", + "name": "line_ln5756001-1", + "phases": "AN", + "to": "m1047311" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108368", + "length": "230.9165", + "name": "line_ln6290206-1", + "phases": "CN", + "to": "l2897770" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2748125", + "length": "176.9719", + "name": "line_ln6138593-1", + "phases": "CN", + "to": "l2673303" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026662", + "length": "468.6803", + "name": "line_ln6350543-1", + "phases": "ABCN", + "to": "l2673319" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2804249", + "length": "232.9644", + "name": "line_ln6256144-4", + "phases": "ABCN", + "to": "n1139547" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2673319", + "length": "109.2091", + "name": "line_ln5591284-1", + "phases": "ABCN", + "to": "m1026658" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026658", + "length": "234.2658", + "name": "line_ln5591284-2", + "phases": "ABCN", + "to": "m1026655" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125976", + "length": "567.3386", + "name": "line_ln5745257-1", + "phases": "ABCN", + "to": "m1125987" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1139547", + "length": "278.9562", + "name": "line_ln6256144-3", + "phases": "ABCN", + "to": "l2688693" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2688693", + "length": "128.5395", + "name": "line_ln6256144-1", + "phases": "ABCN", + "to": "l2688692" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p827560", + "length": "45.3782", + "name": "line_ln6201702-3", + "phases": "AN", + "to": "n1147866" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166355", + "length": "214.1133", + "name": "line_ln5624381-1", + "phases": "AN", + "to": "l2805035" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1166375", + "length": "32.0261", + "name": "line_ln5589096-1", + "phases": "AN", + "to": "p895080" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142832", + "length": "15.0477", + "name": "line_ln6292614-1", + "phases": "CN", + "to": "p829962" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3082988", + "length": "226.8580", + "name": "line_ln6230797-1", + "phases": "BN", + "to": "m1149225" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008733", + "length": "272.3492", + "name": "line_ln6229785-1", + "phases": "BN", + "to": "l3216339" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047777", + "length": "300.3130", + "name": "line_ln6047562-1", + "phases": "BN", + "to": "m1047780" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026324", + "length": "182.4078", + "name": "line_ln5502540-1", + "phases": "BN", + "to": "m1026323" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1140517", + "length": "332.1830", + "name": "line_ln5621857-3", + "phases": "AN", + "to": "l3157718" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3067478", + "length": "343.4016", + "name": "line_ln6170256-1", + "phases": "ABCN", + "to": "m1125994" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2972704", + "length": "174.5399", + "name": "line_ln5956469-1", + "phases": "CN", + "to": "l3263051" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1209763", + "length": "344.8824", + "name": "line_ln6048635-1", + "phases": "BN", + "to": "l2936275" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p901934", + "length": "46.9376", + "name": "line_ln5621857-2", + "phases": "AN", + "to": "n1140517" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026308", + "length": "61.5745", + "name": "line_ln5653464-1", + "phases": "BN", + "to": "l2991918" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026812", + "length": "284.7709", + "name": "line_ln6255312-1", + "phases": "CN", + "to": "l3122847" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1147865", + "length": "395.5819", + "name": "line_ln6379450-3", + "phases": "AN", + "to": "l2895489" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209750", + "length": "378.4411", + "name": "line_ln5987956-1", + "phases": "BN", + "to": "l3086075" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026946", + "length": "421.8171", + "name": "line_ln6138603-1", + "phases": "BN", + "to": "m1026940" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047824", + "length": "256.2380", + "name": "line_ln5714042-1", + "phases": "BN", + "to": "l3122810" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026662", + "length": "45.6942", + "name": "line_ln6108140-2", + "phases": "AN", + "to": "n1141473" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1141473", + "length": "135.3284", + "name": "line_ln6108140-3", + "phases": "AN", + "to": "l3216350" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027055", + "length": "55.0365", + "name": "line_ln6379450-2", + "phases": "AN", + "to": "n1147865" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047521", + "length": "38.9734", + "name": "line_ln6411387-1", + "phases": "AN", + "to": "l2954353" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "r42247", + "length": "130.4082", + "name": "line_ln5563942-3", + "phases": "ABCN", + "to": "m1149233" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1149235", + "length": "102.1435", + "name": "line_ln5563942-4", + "phases": "ABCN", + "to": "d5563942-4_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026472", + "length": "20.6871", + "name": "line_ln5472341-1", + "phases": "BN", + "to": "d5472341-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1027001", + "length": "301.3936", + "name": "line_ln5835127-1", + "phases": "BN", + "to": "m1027004" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125917", + "length": "298.4022", + "name": "line_ln5957493-1", + "phases": "ABCN", + "to": "m1125914" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108350", + "length": "780.1370", + "name": "line_ln5833631-1", + "phases": "CN", + "to": "m1108360" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2691950", + "length": "232.8535", + "name": "line_ln6047571-1", + "phases": "CN", + "to": "l2916609" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026330", + "length": "356.1885", + "name": "line_ln6199524-1", + "phases": "BN", + "to": "l2785526" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047777", + "length": "1797.6689", + "name": "line_ln6229798-1", + "phases": "BN", + "to": "l3178975" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000906", + "length": "158.2381", + "name": "line_ln2000907-1", + "phases": "CN", + "to": "m2000907" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069517", + "length": "94.1423", + "name": "line_ln6350556-2", + "phases": "ABCN", + "to": "n1136367" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1136367", + "length": "126.3069", + "name": "line_ln6350556-3", + "phases": "ABCN", + "to": "m1069515" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3122820", + "length": "194.9105", + "name": "line_ln5774460-1", + "phases": "AN", + "to": "l3141398" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1108395", + "length": "606.4067", + "name": "line_ln6061820-1", + "phases": "B", + "to": "m1108410" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047457", + "length": "219.9410", + "name": "line_ln5926332-1", + "phases": "BN", + "to": "l3139086" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000412", + "length": "158.2381", + "name": "line_ln2000413-1", + "phases": "AN", + "to": "m2000413" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209787", + "length": "407.9844", + "name": "line_ln6261021-1", + "phases": "ABCN", + "to": "l2823611" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026335", + "length": "229.2830", + "name": "line_ln6229808-1", + "phases": "AN", + "to": "l2804259" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047723", + "length": "303.1876", + "name": "line_ln6320325-1", + "phases": "AN", + "to": "m1047729" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2841626", + "length": "306.9153", + "name": "line_ln6260019-1", + "phases": "ABCN", + "to": "l3235266" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2991939", + "length": "307.5968", + "name": "line_ln5774495-1", + "phases": "ABCN", + "to": "l3216367" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3141389", + "length": "248.9193", + "name": "line_ln5895767-1", + "phases": "AN", + "to": "l2860477" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001013", + "length": "158.2381", + "name": "line_ln2001014-1", + "phases": "BN", + "to": "m2001014" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026780", + "length": "351.2907", + "name": "line_ln6290215-1", + "phases": "ABCN", + "to": "m1026774" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047442", + "length": "225.8185", + "name": "line_ln5562927-1", + "phases": "BN", + "to": "m1047444" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108257", + "length": "1436.0718", + "name": "line_ln5866235-1", + "phases": "BN", + "to": "l3142078" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1149249", + "length": "761.7737", + "name": "line_ln6258463-1", + "phases": "CN", + "to": "m1142880" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3029510", + "length": "354.8084", + "name": "line_ln5804811-1", + "phases": "BN", + "to": "l2729409" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx1/0_tpx_ln6077771-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1009824", + "length": "100.7711", + "name": "line_ln6077771-1", + "phases": "BN", + "to": "l2954338" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1136672", + "length": "39.9036", + "name": "line_ln6025724-5", + "phases": "CN", + "to": "l3253995" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2822861", + "length": "676.6774", + "name": "line_ln6411365-1", + "phases": "AN", + "to": "l2841616" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026795", + "length": "44.4800", + "name": "line_ln6259998-2", + "phases": "CN", + "to": "n1140522" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1140522", + "length": "51.6825", + "name": "line_ln6259998-3", + "phases": "CN", + "to": "l2822870" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047318", + "length": "240.2929", + "name": "line_ln5472367-1", + "phases": "CN", + "to": "l2841637" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069393", + "length": "229.0093", + "name": "line_ln5593230-1", + "phases": "BN", + "to": "m1069408" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6320366-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2821010", + "length": "357.5965", + "name": "line_ln6349988-1", + "phases": "CN", + "to": "m1026773" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069530", + "length": "87.7733", + "name": "line_ln6199546-1", + "phases": "BN", + "to": "m1069526" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2785512", + "length": "386.9641", + "name": "line_ln6017286-1", + "phases": "BN", + "to": "m1047813" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047374", + "length": "392.8781", + "name": "line_ln6350534-1", + "phases": "BN", + "to": "l2879065" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047755", + "length": "240.3642", + "name": "line_ln5623397-1", + "phases": "AN", + "to": "m1047751" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026990", + "length": "836.1619", + "name": "line_ln5956456-1", + "phases": "BN", + "to": "m1027001" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "m1209774", + "length": "14.2222", + "name": "line_ln8940662-1", + "phases": "ABC", + "to": "221-242079" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "n1140817", + "length": "51.8058", + "name": "line_ln5926310-3", + "phases": "ABCN", + "to": "l3235258" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001209", + "length": "158.2381", + "name": "line_ln2001210-1", + "phases": "CN", + "to": "m2001210" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2916619", + "length": "314.2763", + "name": "line_ln6228396-1", + "phases": "BN", + "to": "l2727008" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2897776", + "length": "476.7774", + "name": "line_ln6411378-1", + "phases": "CN", + "to": "l3254215" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4_acsr_ln5589097-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "m1047486", + "length": "59.9987", + "name": "line_ln6437757-1", + "phases": "AN", + "to": "l3177665" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026744", + "length": "96.9044", + "name": "line_ln5926310-2", + "phases": "ABCN", + "to": "n1140817" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001000", + "length": "158.2381", + "name": "line_ln2001001-1", + "phases": "BN", + "to": "m2001001" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1027039", + "length": "88.7418", + "name": "line_ln5472354-1", + "phases": "ABCN", + "to": "m1027043" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2841619", + "length": "382.1263", + "name": "line_ln6259985-1", + "phases": "CN", + "to": "l2785515" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2896685", + "length": "78.8398", + "name": "line_ln6274208-2", + "phases": "ABCN", + "to": "m1089185" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2767343", + "length": "221.4451", + "name": "line_ln6048524-1", + "phases": "CN", + "to": "l2804957" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108395", + "length": "310.8379", + "name": "line_ln6274208-1", + "phases": "ABCN", + "to": "l2896685" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026339", + "length": "289.7604", + "name": "line_ln5623407-1", + "phases": "BN", + "to": "l3029507" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1125988", + "length": "236.9342", + "name": "line_ln6506310-2", + "phases": "ABCN", + "to": "l2767340" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2897767", + "length": "426.8282", + "name": "line_ln6199511-1", + "phases": "CN", + "to": "l3254208" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1186061", + "length": "461.4646", + "name": "line_ln5622467-1", + "phases": "ABCN", + "to": "l3139366" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p895113", + "length": "225.9369", + "name": "line_ln6407206-1", + "phases": "CN", + "to": "l2711225" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047699", + "length": "263.1622", + "name": "line_ln5683816-1", + "phases": "ABCN", + "to": "l2935554" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026987", + "length": "187.1850", + "name": "line_ln5865229-1", + "phases": "BN", + "to": "m1026990" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108298", + "length": "128.8297", + "name": "line_ln5531195-1", + "phases": "ABCN", + "to": "196-36167" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2842330", + "length": "187.4760", + "name": "line_ln5927297-1", + "phases": "CN", + "to": "l3086002" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "l3139366", + "length": "379.2851", + "name": "line_ln5622467-4", + "phases": "ABCN", + "to": "m4362177" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047809", + "length": "267.2585", + "name": "line_ln6350569-1", + "phases": "BN", + "to": "m1047812" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p829978", + "length": "181.9136", + "name": "line_ln5989332-1", + "phases": "AN", + "to": "l2992656" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047312", + "length": "13.5979", + "name": "line_ln6014135-1", + "phases": "AN", + "to": "p893163" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026890", + "length": "168.5518", + "name": "line_ln5744371-1", + "phases": "AN", + "to": "l2954357" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2954339", + "length": "205.8702", + "name": "line_ln5986919-1", + "phases": "BN", + "to": "l3048200" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026773", + "length": "101.2386", + "name": "line_ln5652983-1", + "phases": "CN", + "to": "m1026777" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125914", + "length": "137.7981", + "name": "line_ln6078768-1", + "phases": "ABCN", + "to": "l2917328" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3254230", + "length": "310.5497", + "name": "line_ln5472389-1", + "phases": "AN", + "to": "m1047711" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2841633", + "length": "349.6128", + "name": "line_ln5534970-1", + "phases": "ABCN", + "to": "d5534970-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047786", + "length": "228.0444", + "name": "line_ln6505940-2", + "phases": "BN", + "to": "l3048207" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166393", + "length": "215.3849", + "name": "line_ln5717630-1", + "phases": "CN", + "to": "m1166395" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085398b", + "length": "50.000", + "name": "tpx_tpx355777b0", + "phases": "BS", + "to": "sx3085398b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3179646b", + "length": "50.000", + "name": "tpx_tpx328365b0", + "phases": "BS", + "to": "sx3179646b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766716c", + "length": "50.000", + "name": "tpx_tpx337713c0", + "phases": "CS", + "to": "sx2766716c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122835b", + "length": "50.000", + "name": "tpx_tpx339008b0", + "phases": "BS", + "to": "sx3122835b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235253a", + "length": "50.000", + "name": "tpx_tpx138573a0", + "phases": "AS", + "to": "sx3235253a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048210a", + "length": "50.000", + "name": "tpx_tpx302412a0", + "phases": "AS", + "to": "sx3048210a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104115b", + "length": "50.000", + "name": "tpx_tpx391738b0", + "phases": "BS", + "to": "sx3104115b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2925506c", + "length": "50.000", + "name": "tpx_tpx225533703c0", + "phases": "CS", + "to": "sx2925506c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3784018a", + "length": "50.000", + "name": "tpx_tpx2224500658a0", + "phases": "AS", + "to": "sx3784018a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048231b", + "length": "50.000", + "name": "tpx_tpx21400215b0", + "phases": "BS", + "to": "sx3048231b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2935550c", + "length": "50.000", + "name": "tpx_tpx274999c0", + "phases": "CS", + "to": "sx2935550c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748144a", + "length": "50.000", + "name": "tpx_tpx338984a0", + "phases": "AS", + "to": "sx2748144a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3233413b", + "length": "50.000", + "name": "tpx_tpx226308727b0", + "phases": "BS", + "to": "sx3233413b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2748125c", + "length": "50.000", + "name": "tpx_tpx338962c0", + "phases": "CS", + "to": "sx2748125c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160114a", + "length": "50.000", + "name": "tpx_tpx339019a0", + "phases": "AS", + "to": "sx3160114a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3448661b", + "length": "50.000", + "name": "tpx_tpx2223878647b0", + "phases": "BS", + "to": "sx3448661b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2729207c", + "length": "50.000", + "name": "tpx_tpx2212168874c0", + "phases": "CS", + "to": "sx2729207c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2767341c", + "length": "50.000", + "name": "tpx_tpx260577c0", + "phases": "CS", + "to": "sx2767341c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122827a", + "length": "50.000", + "name": "tpx_tpx293673a0", + "phases": "AS", + "to": "sx3122827a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216351a", + "length": "50.000", + "name": "tpx_tpx21398815a0", + "phases": "AS", + "to": "sx3216351a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2860487c", + "length": "50.000", + "name": "tpx_tpx138586c0", + "phases": "CS", + "to": "sx2860487c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3159645a", + "length": "50.000", + "name": "tpx_tpx228446184a0", + "phases": "AS", + "to": "sx3159645a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973154a", + "length": "50.000", + "name": "tpx_tpx338897a0", + "phases": "AS", + "to": "sx2973154a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2673310a", + "length": "50.000", + "name": "tpx_tpx138562a0", + "phases": "AS", + "to": "sx2673310a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000711b", + "length": "50.000", + "name": "tpx_tpx2000711b0", + "phases": "BS", + "to": "sx2000711b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710519a", + "length": "50.000", + "name": "tpx_tpx302676a0", + "phases": "AS", + "to": "sx2710519a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3120502a", + "length": "50.000", + "name": "tpx_tpx294812a0", + "phases": "CS", + "to": "sx3120502a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254217c", + "length": "50.000", + "name": "tpx_tpx21399112c0", + "phases": "CS", + "to": "sx3254217c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691943b", + "length": "50.000", + "name": "tpx_tpx323400b0", + "phases": "BS", + "to": "sx2691943b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897807b", + "length": "50.000", + "name": "tpx_tpx21386771b0", + "phases": "BS", + "to": "sx2897807b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197618a", + "length": "50.000", + "name": "tpx_tpx356008a0", + "phases": "AS", + "to": "sx3197618a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3179673c", + "length": "50.000", + "name": "tpx_tpx260640c0", + "phases": "CS", + "to": "sx3179673c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2690187b", + "length": "50.000", + "name": "tpx_tpx226308716b0", + "phases": "BS", + "to": "sx2690187b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000406a", + "length": "50.000", + "name": "tpx_tpx2000406a0", + "phases": "AS", + "to": "sx2000406a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2955055b", + "length": "50.000", + "name": "tpx_tpx21249647b0", + "phases": "BS", + "to": "sx2955055b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001208c", + "length": "50.000", + "name": "tpx_tpx2001208c0", + "phases": "CS", + "to": "sx2001208c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766722b", + "length": "50.000", + "name": "tpx_tpx337700b0", + "phases": "BS", + "to": "sx2766722b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2858166a", + "length": "50.000", + "name": "tpx_tpx226192994a0", + "phases": "AS", + "to": "sx2858166a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748143a", + "length": "50.000", + "name": "tpx_tpx28121368a0", + "phases": "AS", + "to": "sx2748143a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254873c", + "length": "50.000", + "name": "tpx_tpx251862c0", + "phases": "CS", + "to": "sx3254873c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104134c", + "length": "50.000", + "name": "tpx_tpx138718c0", + "phases": "CS", + "to": "sx3104134c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2730108b", + "length": "50.000", + "name": "tpx_tpx223661b0", + "phases": "BS", + "to": "sx2730108b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3195327a", + "length": "50.000", + "name": "tpx_tpx225901711a0", + "phases": "AS", + "to": "sx3195327a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3011293c", + "length": "50.000", + "name": "tpx_tpx28129466c0", + "phases": "CS", + "to": "sx3011293c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2842330c", + "length": "50.000", + "name": "tpx_tpx356795c0", + "phases": "CS", + "to": "sx2842330c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691938b", + "length": "50.000", + "name": "tpx_tpx355600b0", + "phases": "BS", + "to": "sx2691938b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2711234b", + "length": "50.000", + "name": "tpx_tpx207287b0", + "phases": "BS", + "to": "sx2711234b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2973144c", + "length": "50.000", + "name": "tpx_tpx138466c0", + "phases": "CS", + "to": "sx2973144c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2955074a", + "length": "50.000", + "name": "tpx_tpx260479a0", + "phases": "AS", + "to": "sx2955074a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860499b", + "length": "50.000", + "name": "tpx_tpx338997b0", + "phases": "BS", + "to": "sx2860499b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001315a", + "length": "50.000", + "name": "tpx_tpx2001315a0", + "phases": "AS", + "to": "sx2001315a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897770c", + "length": "50.000", + "name": "tpx_tpx337628c0", + "phases": "CS", + "to": "sx2897770c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728042a", + "length": "50.000", + "name": "tpx_tpx2224387113a0", + "phases": "AS", + "to": "sx3728042a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766744b", + "length": "50.000", + "name": "tpx_tpx28127319b0", + "phases": "BS", + "to": "sx2766744b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2955076a", + "length": "50.000", + "name": "tpx_tpx21243817a0", + "phases": "AS", + "to": "sx2955076a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3179637c", + "length": "50.000", + "name": "tpx_tpx21386442c0", + "phases": "CS", + "to": "sx3179637c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3178980c", + "length": "50.000", + "name": "tpx_tpx302510c0", + "phases": "CS", + "to": "sx3178980c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3123509c", + "length": "50.000", + "name": "tpx_tpx28129923c0", + "phases": "CS", + "to": "sx3123509c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879061b", + "length": "50.000", + "name": "tpx_tpx337692b0", + "phases": "BS", + "to": "sx2879061b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254915b", + "length": "50.000", + "name": "tpx_tpx260520b0", + "phases": "BS", + "to": "sx3254915b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3045895c", + "length": "50.000", + "name": "tpx_tpx351020c0", + "phases": "CS", + "to": "sx3045895c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3214071c", + "length": "50.000", + "name": "tpx_tpx226194419c0", + "phases": "CS", + "to": "sx3214071c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197639a", + "length": "50.000", + "name": "tpx_tpx310569a0", + "phases": "AS", + "to": "sx3197639a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122817c", + "length": "50.000", + "name": "tpx_tpx355779c0", + "phases": "CS", + "to": "sx3122817c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973157a", + "length": "50.000", + "name": "tpx_tpx337722a0", + "phases": "AS", + "to": "sx2973157a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048199b", + "length": "50.000", + "name": "tpx_tpx323237b0", + "phases": "BS", + "to": "sx3048199b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804259a", + "length": "50.000", + "name": "tpx_tpx28127372a0", + "phases": "AS", + "to": "sx2804259a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122814c", + "length": "50.000", + "name": "tpx_tpx338899c0", + "phases": "CS", + "to": "sx3122814c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2876797a", + "length": "50.000", + "name": "tpx_tpx226193345a0", + "phases": "AS", + "to": "sx2876797a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991918b", + "length": "50.000", + "name": "tpx_tpx391749b0", + "phases": "BS", + "to": "sx2991918b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3011293b", + "length": "50.000", + "name": "tpx_tpx28129466b0", + "phases": "BS", + "to": "sx3011293b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104132a", + "length": "50.000", + "name": "tpx_tpx302469a0", + "phases": "AS", + "to": "sx3104132a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2691951c", + "length": "50.000", + "name": "tpx_tpx138379c0", + "phases": "CS", + "to": "sx2691951c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x1108404c", + "length": "50.000", + "name": "tpx_tpx2221108404c0", + "phases": "CS", + "to": "sx1108404c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3085394c", + "length": "50.000", + "name": "tpx_tpx274988c0", + "phases": "CS", + "to": "sx3085394c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748157a", + "length": "50.000", + "name": "tpx_tpx338973a0", + "phases": "AS", + "to": "sx2748157a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001304a", + "length": "50.000", + "name": "tpx_tpx2001304a0", + "phases": "AS", + "to": "sx2001304a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3085396a", + "length": "50.000", + "name": "tpx_tpx138684a0", + "phases": "AS", + "to": "sx3085396a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785515c", + "length": "50.000", + "name": "tpx_tpx293609c0", + "phases": "CS", + "to": "sx2785515c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3195321a", + "length": "50.000", + "name": "tpx_tpx356805a0", + "phases": "AS", + "to": "sx3195321a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2933135a", + "length": "50.000", + "name": "tpx_tpx226197070a0", + "phases": "AS", + "to": "sx2933135a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2955078a", + "length": "50.000", + "name": "tpx_tpx260542a0", + "phases": "AS", + "to": "sx2955078a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897775c", + "length": "50.000", + "name": "tpx_tpx138342c0", + "phases": "CS", + "to": "sx2897775c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2936213b", + "length": "50.000", + "name": "tpx_tpx328363b0", + "phases": "BS", + "to": "sx2936213b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029183b", + "length": "50.000", + "name": "tpx_tpx228580047b0", + "phases": "BS", + "to": "sx3029183b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916610b", + "length": "50.000", + "name": "tpx_tpx293660b0", + "phases": "BS", + "to": "sx2916610b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991913a", + "length": "50.000", + "name": "tpx_tpx138571a0", + "phases": "AS", + "to": "sx2991913a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860485b", + "length": "50.000", + "name": "tpx_tpx321855b0", + "phases": "BS", + "to": "sx2860485b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235268c", + "length": "50.000", + "name": "tpx_tpx28099529c0", + "phases": "CS", + "to": "sx3235268c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2972704c", + "length": "50.000", + "name": "tpx_tpx228445756c0", + "phases": "CS", + "to": "sx2972704c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3011293a", + "length": "50.000", + "name": "tpx_tpx28129466a0", + "phases": "AS", + "to": "sx3011293a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104131a", + "length": "50.000", + "name": "tpx_tpx302410a0", + "phases": "AS", + "to": "sx3104131a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000702b", + "length": "50.000", + "name": "tpx_tpx2000702b0", + "phases": "BS", + "to": "sx2000702b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048228c", + "length": "50.000", + "name": "tpx_tpx274997c0", + "phases": "CS", + "to": "sx3048228c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991920a", + "length": "50.000", + "name": "tpx_tpx28118822a0", + "phases": "AS", + "to": "sx2991920a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2876813a", + "length": "50.000", + "name": "tpx_tpx355842a0", + "phases": "CS", + "to": "sx2876813a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2802480b", + "length": "50.000", + "name": "tpx_tpx226308725b0", + "phases": "BS", + "to": "sx2802480b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897767c", + "length": "50.000", + "name": "tpx_tpx338960c0", + "phases": "CS", + "to": "sx2897767c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048887b", + "length": "50.000", + "name": "tpx_tpx260586b0", + "phases": "BS", + "to": "sx3048887b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104113a", + "length": "50.000", + "name": "tpx_tpx138560a0", + "phases": "AS", + "to": "sx3104113a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000408a", + "length": "50.000", + "name": "tpx_tpx2000408a0", + "phases": "AS", + "to": "sx2000408a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710530b", + "length": "50.000", + "name": "tpx_tpx21381118b0", + "phases": "BS", + "to": "sx2710530b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2936216c", + "length": "50.000", + "name": "tpx_tpx223663c0", + "phases": "CS", + "to": "sx2936216c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2673321a", + "length": "50.000", + "name": "tpx_tpx302674a0", + "phases": "AS", + "to": "sx2673321a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3217057a", + "length": "50.000", + "name": "tpx_tpx218475a0", + "phases": "AS", + "to": "sx3217057a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000713b", + "length": "50.000", + "name": "tpx_tpx2000713b0", + "phases": "BS", + "to": "sx2000713b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860478b", + "length": "50.000", + "name": "tpx_tpx355590b0", + "phases": "BS", + "to": "sx2860478b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2730187a", + "length": "50.000", + "name": "tpx_tpx260464a0", + "phases": "AS", + "to": "sx2730187a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216367b", + "length": "50.000", + "name": "tpx_tpx337648b0", + "phases": "BS", + "to": "sx3216367b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785534b", + "length": "50.000", + "name": "tpx_tpx338982b0", + "phases": "BS", + "to": "sx2785534b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001206c", + "length": "50.000", + "name": "tpx_tpx2001206c0", + "phases": "CS", + "to": "sx2001206c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3251799a", + "length": "50.000", + "name": "tpx_tpx260562a0", + "phases": "AS", + "to": "sx3251799a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729408b", + "length": "50.000", + "name": "tpx_tpx355768b0", + "phases": "BS", + "to": "sx2729408b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691954b", + "length": "50.000", + "name": "tpx_tpx21399361b0", + "phases": "BS", + "to": "sx2691954b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029504b", + "length": "50.000", + "name": "tpx_tpx337702b0", + "phases": "BS", + "to": "sx3029504b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3108449a", + "length": "50.000", + "name": "tpx_tpx228622562a0", + "phases": "AS", + "to": "sx3108449a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2955006c", + "length": "50.000", + "name": "tpx_tpx356797c0", + "phases": "CS", + "to": "sx2955006c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841626c", + "length": "50.000", + "name": "tpx_tpx302808c0", + "phases": "CS", + "to": "sx2841626c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000911c", + "length": "50.000", + "name": "tpx_tpx2000911c0", + "phases": "CS", + "to": "sx2000911c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3251806b", + "length": "50.000", + "name": "tpx_tpx355602b0", + "phases": "BS", + "to": "sx3251806b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254219c", + "length": "50.000", + "name": "tpx_tpx138716c0", + "phases": "CS", + "to": "sx3254219c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879067a", + "length": "50.000", + "name": "tpx_tpx21380616a0", + "phases": "AS", + "to": "sx2879067a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3102793b", + "length": "50.000", + "name": "tpx_tpx227734175b0", + "phases": "BS", + "to": "sx3102793b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066801c", + "length": "50.000", + "name": "tpx_tpx138464c0", + "phases": "CS", + "to": "sx3066801c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001313a", + "length": "50.000", + "name": "tpx_tpx2001313a0", + "phases": "AS", + "to": "sx2001313a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3216343c", + "length": "50.000", + "name": "tpx_tpx337626c0", + "phases": "CS", + "to": "sx3216343c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2748133c", + "length": "50.000", + "name": "tpx_tpx302861c0", + "phases": "CS", + "to": "sx2748133c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254227b", + "length": "50.000", + "name": "tpx_tpx338995b0", + "phases": "BS", + "to": "sx3254227b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2861219b", + "length": "50.000", + "name": "tpx_tpx21389761b0", + "phases": "BS", + "to": "sx2861219b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3215549b", + "length": "50.000", + "name": "tpx_tpx228219458b0", + "phases": "BS", + "to": "sx3215549b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2711225c", + "length": "50.000", + "name": "tpx_tpx260553c0", + "phases": "CS", + "to": "sx2711225c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104127b", + "length": "50.000", + "name": "tpx_tpx337690b0", + "phases": "BS", + "to": "sx3104127b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2862616c", + "length": "50.000", + "name": "tpx_tpx227447984c0", + "phases": "AS", + "to": "sx2862616c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879075a", + "length": "50.000", + "name": "tpx_tpx337724a0", + "phases": "AS", + "to": "sx2879075a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254216a", + "length": "50.000", + "name": "tpx_tpx21398563a0", + "phases": "AS", + "to": "sx3254216a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897773a", + "length": "50.000", + "name": "tpx_tpx338918a0", + "phases": "AS", + "to": "sx2897773a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2822865c", + "length": "50.000", + "name": "tpx_tpx274986c0", + "phases": "CS", + "to": "sx2822865c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2842379a", + "length": "50.000", + "name": "tpx_tpx260488a0", + "phases": "AS", + "to": "sx2842379a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001302a", + "length": "50.000", + "name": "tpx_tpx2001302a0", + "phases": "AS", + "to": "sx2001302a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860493a", + "length": "50.000", + "name": "tpx_tpx21397645a0", + "phases": "AS", + "to": "sx2860493a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001008b", + "length": "50.000", + "name": "tpx_tpx2001008b0", + "phases": "BS", + "to": "sx2001008b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2823545a", + "length": "50.000", + "name": "tpx_tpx356807a0", + "phases": "AS", + "to": "sx2823545a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197643b", + "length": "50.000", + "name": "tpx_tpx302369b0", + "phases": "BS", + "to": "sx3197643b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254869b", + "length": "50.000", + "name": "tpx_tpx260575b0", + "phases": "BS", + "to": "sx3254869b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785527a", + "length": "50.000", + "name": "tpx_tpx293522a0", + "phases": "AS", + "to": "sx2785527a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2972930a", + "length": "50.000", + "name": "tpx_tpx338927a0", + "phases": "AS", + "to": "sx2972930a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3232902a", + "length": "50.000", + "name": "tpx_tpx226194826a0", + "phases": "AS", + "to": "sx3232902a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2916599a", + "length": "50.000", + "name": "tpx_tpx356015a0", + "phases": "AS", + "to": "sx2916599a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673320b", + "length": "50.000", + "name": "tpx_tpx392037b0", + "phases": "BS", + "to": "sx2673320b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001215c", + "length": "50.000", + "name": "tpx_tpx2001215c0", + "phases": "CS", + "to": "sx2001215c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2711224b", + "length": "50.000", + "name": "tpx_tpx260500b0", + "phases": "BS", + "to": "sx2711224b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897554c", + "length": "50.000", + "name": "tpx_tpx2212168870c0", + "phases": "CS", + "to": "sx2897554c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3067507c", + "length": "50.000", + "name": "tpx_tpx260535c0", + "phases": "CS", + "to": "sx3067507c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3082981c", + "length": "50.000", + "name": "tpx_tpx226193737c0", + "phases": "CS", + "to": "sx3082981c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3252336b", + "length": "50.000", + "name": "tpx_tpx226308723b0", + "phases": "BS", + "to": "sx3252336b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766730b", + "length": "50.000", + "name": "tpx_tpx355359b0", + "phases": "BS", + "to": "sx2766730b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2729414c", + "length": "50.000", + "name": "tpx_tpx293655c0", + "phases": "CS", + "to": "sx2729414c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2730106c", + "length": "50.000", + "name": "tpx_tpx356814c0", + "phases": "CS", + "to": "sx2730106c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973164a", + "length": "50.000", + "name": "tpx_tpx302514a0", + "phases": "AS", + "to": "sx2973164a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2992556a", + "length": "50.000", + "name": "tpx_tpx346639a0", + "phases": "AS", + "to": "sx2992556a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3270814a", + "length": "50.000", + "name": "tpx_tpx226191850a0", + "phases": "AS", + "to": "sx3270814a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2805036b", + "length": "50.000", + "name": "tpx_tpx275248b0", + "phases": "BS", + "to": "sx2805036b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235243c", + "length": "50.000", + "name": "tpx_tpx275008c0", + "phases": "CS", + "to": "sx3235243c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2691953a", + "length": "50.000", + "name": "tpx_tpx302732a0", + "phases": "AS", + "to": "sx2691953a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197636b", + "length": "50.000", + "name": "tpx_tpx28148580b0", + "phases": "BS", + "to": "sx3197636b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991909a", + "length": "50.000", + "name": "tpx_tpx355773a0", + "phases": "AS", + "to": "sx2991909a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2688693c", + "length": "50.000", + "name": "tpx_tpx225918936c0", + "phases": "CS", + "to": "sx2688693c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3086078a", + "length": "50.000", + "name": "tpx_tpx218473a0", + "phases": "AS", + "to": "sx3086078a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197633a", + "length": "50.000", + "name": "tpx_tpx338893a0", + "phases": "AS", + "to": "sx3197633a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860489a", + "length": "50.000", + "name": "tpx_tpx302405a0", + "phases": "AS", + "to": "sx2860489a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3178981b", + "length": "50.000", + "name": "tpx_tpx21396331b0", + "phases": "BS", + "to": "sx3178981b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2822863c", + "length": "50.000", + "name": "tpx_tpx337635c0", + "phases": "CS", + "to": "sx2822863c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3178973a", + "length": "50.000", + "name": "tpx_tpx21149420a0", + "phases": "AS", + "to": "sx3178973a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879063b", + "length": "50.000", + "name": "tpx_tpx337646b0", + "phases": "BS", + "to": "sx2879063b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001204c", + "length": "50.000", + "name": "tpx_tpx2001204c0", + "phases": "CS", + "to": "sx2001204c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729414b", + "length": "50.000", + "name": "tpx_tpx293655b0", + "phases": "BS", + "to": "sx2729414b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3178976a", + "length": "50.000", + "name": "tpx_tpx21397721a0", + "phases": "AS", + "to": "sx3178976a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000402a", + "length": "50.000", + "name": "tpx_tpx2000402a0", + "phases": "AS", + "to": "sx2000402a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048206a", + "length": "50.000", + "name": "tpx_tpx138649a0", + "phases": "AS", + "to": "sx3048206a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2935559a", + "length": "50.000", + "name": "tpx_tpx21400185a0", + "phases": "AS", + "to": "sx2935559a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3181545c", + "length": "50.000", + "name": "tpx_tpx226193702c0", + "phases": "CS", + "to": "sx3181545c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3216358a", + "length": "50.000", + "name": "tpx_tpx21399826a0", + "phases": "CS", + "to": "sx3216358a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235267c", + "length": "50.000", + "name": "tpx_tpx321892c0", + "phases": "CS", + "to": "sx3235267c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2767343c", + "length": "50.000", + "name": "tpx_tpx356791c0", + "phases": "CS", + "to": "sx2767343c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216346a", + "length": "50.000", + "name": "tpx_tpx391991a0", + "phases": "AS", + "to": "sx3216346a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2876796a", + "length": "50.000", + "name": "tpx_tpx226193338a0", + "phases": "AS", + "to": "sx2876796a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748781a", + "length": "50.000", + "name": "tpx_tpx21382813a0", + "phases": "AS", + "to": "sx2748781a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3157718a", + "length": "50.000", + "name": "tpx_tpx226194093a0", + "phases": "AS", + "to": "sx3157718a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001400c", + "length": "50.000", + "name": "tpx_tpx2001400c0", + "phases": "CS", + "to": "sx2001400c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3067447a", + "length": "50.000", + "name": "tpx_tpx21386157a0", + "phases": "AS", + "to": "sx3067447a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3178982a", + "length": "50.000", + "name": "tpx_tpx294843a0", + "phases": "AS", + "to": "sx3178982a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3066811b", + "length": "50.000", + "name": "tpx_tpx28126875b0", + "phases": "BS", + "to": "sx3066811b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2991921c", + "length": "50.000", + "name": "tpx_tpx28129399c0", + "phases": "CS", + "to": "sx2991921c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066807c", + "length": "50.000", + "name": "tpx_tpx337624c0", + "phases": "CS", + "to": "sx3066807c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104125b", + "length": "50.000", + "name": "tpx_tpx138264b0", + "phases": "BS", + "to": "sx3104125b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2917359a", + "length": "50.000", + "name": "tpx_tpx21482431a0", + "phases": "AS", + "to": "sx2917359a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2915542c", + "length": "50.000", + "name": "tpx_tpx227921427c0", + "phases": "CS", + "to": "sx2915542c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2917336c", + "length": "50.000", + "name": "tpx_tpx260513c0", + "phases": "CS", + "to": "sx2917336c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804272b", + "length": "50.000", + "name": "tpx_tpx338993b0", + "phases": "BS", + "to": "sx2804272b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001311a", + "length": "50.000", + "name": "tpx_tpx2001311a0", + "phases": "AS", + "to": "sx2001311a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x0247160b", + "length": "50.000", + "name": "tpx_tpx247160b0", + "phases": "BS", + "to": "sx0247160b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000413a", + "length": "50.000", + "name": "tpx_tpx2000413a0", + "phases": "AS", + "to": "sx2000413a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766750c", + "length": "50.000", + "name": "tpx_tpx293424c0", + "phases": "CS", + "to": "sx2766750c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2858175a", + "length": "50.000", + "name": "tpx_tpx225668688a0", + "phases": "AS", + "to": "sx2858175a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3081380a", + "length": "50.000", + "name": "tpx_tpx225700953a0", + "phases": "AS", + "to": "sx3081380a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254203b", + "length": "50.000", + "name": "tpx_tpx323233b0", + "phases": "BS", + "to": "sx3254203b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3235246b", + "length": "50.000", + "name": "tpx_tpx323279b0", + "phases": "BS", + "to": "sx3235246b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710516a", + "length": "50.000", + "name": "tpx_tpx321839a0", + "phases": "AS", + "to": "sx2710516a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2955047a", + "length": "50.000", + "name": "tpx_tpx21469911a0", + "phases": "AS", + "to": "sx2955047a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3312692a", + "length": "50.000", + "name": "tpx_tpx2223661373a0", + "phases": "AS", + "to": "sx3312692a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000909c", + "length": "50.000", + "name": "tpx_tpx2000909c0", + "phases": "CS", + "to": "sx2000909c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2726973a", + "length": "50.000", + "name": "tpx_tpx226192926a0", + "phases": "AS", + "to": "sx2726973a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3198347c", + "length": "50.000", + "name": "tpx_tpx260622c0", + "phases": "CS", + "to": "sx3198347c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3118855c", + "length": "50.000", + "name": "tpx_tpx339052c0", + "phases": "CS", + "to": "sx3118855c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2915542b", + "length": "50.000", + "name": "tpx_tpx227921427b0", + "phases": "BS", + "to": "sx2915542b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066810c", + "length": "50.000", + "name": "tpx_tpx337659c0", + "phases": "CS", + "to": "sx3066810c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710521a", + "length": "50.000", + "name": "tpx_tpx138680a0", + "phases": "AS", + "to": "sx2710521a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3253570c", + "length": "50.000", + "name": "tpx_tpx228314460c0", + "phases": "CS", + "to": "sx3253570c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3189190a", + "length": "50.000", + "name": "tpx_tpx227100753a0", + "phases": "AS", + "to": "sx3189190a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2673316a", + "length": "50.000", + "name": "tpx_tpx28120855a0", + "phases": "AS", + "to": "sx2673316a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001006b", + "length": "50.000", + "name": "tpx_tpx2001006b0", + "phases": "BS", + "to": "sx2001006b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897801a", + "length": "50.000", + "name": "tpx_tpx21470405a0", + "phases": "AS", + "to": "sx2897801a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2936279c", + "length": "50.000", + "name": "tpx_tpx247184c0", + "phases": "CS", + "to": "sx2936279c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2710532c", + "length": "50.000", + "name": "tpx_tpx293666c0", + "phases": "CS", + "to": "sx2710532c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3011229a", + "length": "50.000", + "name": "tpx_tpx356801a0", + "phases": "AS", + "to": "sx3011229a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649300a", + "length": "50.000", + "name": "tpx_tpx2224237546a0", + "phases": "AS", + "to": "sx3649300a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254213b", + "length": "50.000", + "name": "tpx_tpx321859b0", + "phases": "BS", + "to": "sx3254213b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860488b", + "length": "50.000", + "name": "tpx_tpx391751b0", + "phases": "BS", + "to": "sx2860488b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2933120c", + "length": "50.000", + "name": "tpx_tpx226192890c0", + "phases": "CS", + "to": "sx2933120c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048207b", + "length": "50.000", + "name": "tpx_tpx323248b0", + "phases": "BS", + "to": "sx3048207b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729430b", + "length": "50.000", + "name": "tpx_tpx21248901b0", + "phases": "BS", + "to": "sx2729430b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2685805a", + "length": "50.000", + "name": "tpx_tpx225533531a0", + "phases": "AS", + "to": "sx2685805a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254211b", + "length": "50.000", + "name": "tpx_tpx247084b0", + "phases": "BS", + "to": "sx3254211b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710511a", + "length": "50.000", + "name": "tpx_tpx21357515a0", + "phases": "AS", + "to": "sx2710511a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2954348a", + "length": "50.000", + "name": "tpx_tpx356013a0", + "phases": "AS", + "to": "sx2954348a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104135a", + "length": "50.000", + "name": "tpx_tpx21399508a0", + "phases": "AS", + "to": "sx3104135a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973153a", + "length": "50.000", + "name": "tpx_tpx338925a0", + "phases": "AS", + "to": "sx2973153a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001213c", + "length": "50.000", + "name": "tpx_tpx2001213c0", + "phases": "CS", + "to": "sx2001213c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748139b", + "length": "50.000", + "name": "tpx_tpx21400108b0", + "phases": "BS", + "to": "sx2748139b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048962a", + "length": "50.000", + "name": "tpx_tpx260555a0", + "phases": "AS", + "to": "sx3048962a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3207907b", + "length": "50.000", + "name": "tpx_tpx293664b0", + "phases": "BS", + "to": "sx3207907b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048200b", + "length": "50.000", + "name": "tpx_tpx391740b0", + "phases": "BS", + "to": "sx3048200b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085390b", + "length": "50.000", + "name": "tpx_tpx321848b0", + "phases": "BS", + "to": "sx3085390b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2691952a", + "length": "50.000", + "name": "tpx_tpx391980a0", + "phases": "AS", + "to": "sx2691952a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3010585a", + "length": "50.000", + "name": "tpx_tpx294810a0", + "phases": "CS", + "to": "sx3010585a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649302a", + "length": "50.000", + "name": "tpx_tpx2224237653a0", + "phases": "AS", + "to": "sx3649302a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3029499a", + "length": "50.000", + "name": "tpx_tpx302678a0", + "phases": "AS", + "to": "sx3029499a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104118c", + "length": "50.000", + "name": "tpx_tpx321890c0", + "phases": "CS", + "to": "sx3104118c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2820528c", + "length": "50.000", + "name": "tpx_tpx226191778c0", + "phases": "CS", + "to": "sx2820528c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2729406c", + "length": "50.000", + "name": "tpx_tpx337633c0", + "phases": "CS", + "to": "sx2729406c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3086079b", + "length": "50.000", + "name": "tpx_tpx260457b0", + "phases": "BS", + "to": "sx3086079b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2763811c", + "length": "50.000", + "name": "tpx_tpx21459629c0", + "phases": "AS", + "to": "sx2763811c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2935568b", + "length": "50.000", + "name": "tpx_tpx28119958b0", + "phases": "BS", + "to": "sx2935568b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001202c", + "length": "50.000", + "name": "tpx_tpx2001202c0", + "phases": "CS", + "to": "sx2001202c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000404a", + "length": "50.000", + "name": "tpx_tpx2000404a0", + "phases": "AS", + "to": "sx2000404a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2990098a", + "length": "50.000", + "name": "tpx_tpx226308721a0", + "phases": "AS", + "to": "sx2990098a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2915534a", + "length": "50.000", + "name": "tpx_tpx227917122a0", + "phases": "AS", + "to": "sx2915534a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2991943c", + "length": "50.000", + "name": "tpx_tpx21399619c0", + "phases": "CS", + "to": "sx2991943c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x0247171b", + "length": "50.000", + "name": "tpx_tpx247171b0", + "phases": "BS", + "to": "sx0247171b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3225319b", + "length": "50.000", + "name": "tpx_tpx225533675b0", + "phases": "BS", + "to": "sx3225319b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2708744b", + "length": "50.000", + "name": "tpx_tpx226308710b0", + "phases": "BS", + "to": "sx2708744b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3207907a", + "length": "50.000", + "name": "tpx_tpx293664a0", + "phases": "AS", + "to": "sx3207907a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3179608c", + "length": "50.000", + "name": "tpx_tpx356793c0", + "phases": "CS", + "to": "sx3179608c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3156034a", + "length": "50.000", + "name": "tpx_tpx391993a0", + "phases": "AS", + "to": "sx3156034a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649306a", + "length": "50.000", + "name": "tpx_tpx2224238167a0", + "phases": "AS", + "to": "sx3649306a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2786266a", + "length": "50.000", + "name": "tpx_tpx260631a0", + "phases": "AS", + "to": "sx2786266a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2798067b", + "length": "50.000", + "name": "tpx_tpx225533237b0", + "phases": "BS", + "to": "sx2798067b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010563a", + "length": "50.000", + "name": "tpx_tpx294845a0", + "phases": "AS", + "to": "sx3010563a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2710525c", + "length": "50.000", + "name": "tpx_tpx355437c0", + "phases": "CS", + "to": "sx2710525c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2804277c", + "length": "50.000", + "name": "tpx_tpx339043c0", + "phases": "CS", + "to": "sx2804277c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066816a", + "length": "50.000", + "name": "tpx_tpx21398676a0", + "phases": "AS", + "to": "sx3066816a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048211a", + "length": "50.000", + "name": "tpx_tpx21396015a0", + "phases": "AS", + "to": "sx3048211a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2914324a", + "length": "50.000", + "name": "tpx_tpx226196642a0", + "phases": "CS", + "to": "sx2914324a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691942b", + "length": "50.000", + "name": "tpx_tpx247105b0", + "phases": "BS", + "to": "sx2691942b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710544a", + "length": "50.000", + "name": "tpx_tpx21482279a0", + "phases": "AS", + "to": "sx2710544a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785522b", + "length": "50.000", + "name": "tpx_tpx28127681b0", + "phases": "BS", + "to": "sx2785522b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2876814a", + "length": "50.000", + "name": "tpx_tpx225806974a0", + "phases": "AS", + "to": "sx2876814a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3214069c", + "length": "50.000", + "name": "tpx_tpx226194421c0", + "phases": "CS", + "to": "sx3214069c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000415a", + "length": "50.000", + "name": "tpx_tpx2000415a0", + "phases": "AS", + "to": "sx2000415a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3047073c", + "length": "50.000", + "name": "tpx_tpx227917133c0", + "phases": "CS", + "to": "sx3047073c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160878c", + "length": "50.000", + "name": "tpx_tpx260511c0", + "phases": "CS", + "to": "sx3160878c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3178997c", + "length": "50.000", + "name": "tpx_tpx293422c0", + "phases": "CS", + "to": "sx3178997c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841648a", + "length": "50.000", + "name": "tpx_tpx337720a0", + "phases": "AS", + "to": "sx2841648a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2673312a", + "length": "50.000", + "name": "tpx_tpx321837a0", + "phases": "AS", + "to": "sx2673312a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197624b", + "length": "50.000", + "name": "tpx_tpx323235b0", + "phases": "BS", + "to": "sx3197624b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104830c", + "length": "50.000", + "name": "tpx_tpx328367c0", + "phases": "CS", + "to": "sx3104830c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3029503c", + "length": "50.000", + "name": "tpx_tpx138373c0", + "phases": "CS", + "to": "sx3029503c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3097861c", + "length": "50.000", + "name": "tpx_tpx225533215c0", + "phases": "CS", + "to": "sx3097861c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3251854a", + "length": "50.000", + "name": "tpx_tpx226881700a0", + "phases": "AS", + "to": "sx3251854a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3067506c", + "length": "50.000", + "name": "tpx_tpx260620c0", + "phases": "CS", + "to": "sx3067506c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104136b", + "length": "50.000", + "name": "tpx_tpx338949b0", + "phases": "BS", + "to": "sx3104136b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991906a", + "length": "50.000", + "name": "tpx_tpx247060a0", + "phases": "AS", + "to": "sx2991906a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3141397b", + "length": "50.000", + "name": "tpx_tpx21396796b0", + "phases": "BS", + "to": "sx3141397b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822871b", + "length": "50.000", + "name": "tpx_tpx355840b0", + "phases": "BS", + "to": "sx2822871b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010559a", + "length": "50.000", + "name": "tpx_tpx337679a0", + "phases": "AS", + "to": "sx3010559a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729411a", + "length": "50.000", + "name": "tpx_tpx138769a0", + "phases": "AS", + "to": "sx2729411a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3029502a", + "length": "50.000", + "name": "tpx_tpx138262a0", + "phases": "AS", + "to": "sx3029502a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001004b", + "length": "50.000", + "name": "tpx_tpx2001004b0", + "phases": "BS", + "to": "sx2001004b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2935549b", + "length": "50.000", + "name": "tpx_tpx337668b0", + "phases": "BS", + "to": "sx2935549b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3101194c", + "length": "50.000", + "name": "tpx_tpx21459660c0", + "phases": "AS", + "to": "sx3101194c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2842329c", + "length": "50.000", + "name": "tpx_tpx260568c0", + "phases": "CS", + "to": "sx2842329c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3067448c", + "length": "50.000", + "name": "tpx_tpx262075c0", + "phases": "CS", + "to": "sx3067448c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3207907c", + "length": "50.000", + "name": "tpx_tpx293664c0", + "phases": "CS", + "to": "sx3207907c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748780a", + "length": "50.000", + "name": "tpx_tpx356803a0", + "phases": "AS", + "to": "sx2748780a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3645810c", + "length": "50.000", + "name": "tpx_tpx2224230651c0", + "phases": "CS", + "to": "sx3645810c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3142049c", + "length": "50.000", + "name": "tpx_tpx356810c0", + "phases": "CS", + "to": "sx3142049c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_750_triplex_12", + "continuous_rating_B": "580.00", + "emergency_rating_B": "725.00", + "from": "x2691959b", + "length": "50.000", + "name": "tpx_tpx21400253b0", + "phases": "BS", + "to": "sx2691959b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729412a", + "length": "50.000", + "name": "tpx_tpx28150189a0", + "phases": "AS", + "to": "sx2729412a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973163b", + "length": "50.000", + "name": "tpx_tpx391753b0", + "phases": "BS", + "to": "sx2973163b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3626914c", + "length": "50.000", + "name": "tpx_tpx2224179616c0", + "phases": "CS", + "to": "sx3626914c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2842384c", + "length": "50.000", + "name": "tpx_tpx260637c0", + "phases": "CS", + "to": "sx2842384c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122810b", + "length": "50.000", + "name": "tpx_tpx323242b0", + "phases": "BS", + "to": "sx3122810b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2911069b", + "length": "50.000", + "name": "tpx_tpx225571871b0", + "phases": "BS", + "to": "sx2911069b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2989566b", + "length": "50.000", + "name": "tpx_tpx260602b0", + "phases": "BS", + "to": "sx2989566b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3632979a", + "length": "50.000", + "name": "tpx_tpx2224192013a0", + "phases": "AS", + "to": "sx3632979a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2726983a", + "length": "50.000", + "name": "tpx_tpx226109079a0", + "phases": "AS", + "to": "sx2726983a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000708b", + "length": "50.000", + "name": "tpx_tpx2000708b0", + "phases": "BS", + "to": "sx2000708b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001015b", + "length": "50.000", + "name": "tpx_tpx2001015b0", + "phases": "BS", + "to": "sx2001015b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001211c", + "length": "50.000", + "name": "tpx_tpx2001211c0", + "phases": "CS", + "to": "sx2001211c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160865a", + "length": "50.000", + "name": "tpx_tpx260515a0", + "phases": "AS", + "to": "sx3160865a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991908a", + "length": "50.000", + "name": "tpx_tpx338900a0", + "phases": "AS", + "to": "sx2991908a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104123c", + "length": "50.000", + "name": "tpx_tpx338924c0", + "phases": "CS", + "to": "sx3104123c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879753b", + "length": "50.000", + "name": "tpx_tpx21249674b0", + "phases": "BS", + "to": "sx2879753b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_750_triplex_12", + "continuous_rating_A": "580.00", + "emergency_rating_A": "725.00", + "from": "x3234149a", + "length": "50.000", + "name": "tpx_tpx227944551a0", + "phases": "AS", + "to": "sx3234149a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2954349b", + "length": "50.000", + "name": "tpx_tpx337699b0", + "phases": "BS", + "to": "sx2954349b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973160b", + "length": "50.000", + "name": "tpx_tpx338935b0", + "phases": "BS", + "to": "sx2973160b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3150961c", + "length": "50.000", + "name": "tpx_tpx223400157c0", + "phases": "CS", + "to": "sx3150961c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2935560c", + "length": "50.000", + "name": "tpx_tpx293659c0", + "phases": "CS", + "to": "sx2935560c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104154c", + "length": "50.000", + "name": "tpx_tpx337642c0", + "phases": "CS", + "to": "sx3104154c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216337a", + "length": "50.000", + "name": "tpx_tpx356011a0", + "phases": "AS", + "to": "sx3216337a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841630c", + "length": "50.000", + "name": "tpx_tpx138404c0", + "phases": "CS", + "to": "sx2841630c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673308b", + "length": "50.000", + "name": "tpx_tpx337653b0", + "phases": "BS", + "to": "sx2673308b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879077b", + "length": "50.000", + "name": "tpx_tpx337709b0", + "phases": "BS", + "to": "sx2879077b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766742b", + "length": "50.000", + "name": "tpx_tpx355585b0", + "phases": "BS", + "to": "sx2766742b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710518a", + "length": "50.000", + "name": "tpx_tpx21209868a0", + "phases": "AS", + "to": "sx2710518a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710520a", + "length": "50.000", + "name": "tpx_tpx138679a0", + "phases": "AS", + "to": "sx2710520a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2710515c", + "length": "50.000", + "name": "tpx_tpx321884c0", + "phases": "CS", + "to": "sx2710515c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3139086b", + "length": "50.000", + "name": "tpx_tpx226192846b0", + "phases": "BS", + "to": "sx3139086b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000410a", + "length": "50.000", + "name": "tpx_tpx2000410a0", + "phases": "AS", + "to": "sx2000410a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3177881c", + "length": "50.000", + "name": "tpx_tpx227896008c0", + "phases": "CS", + "to": "sx3177881c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897779c", + "length": "50.000", + "name": "tpx_tpx302508c0", + "phases": "CS", + "to": "sx2897779c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2764403a", + "length": "50.000", + "name": "tpx_tpx226193078a0", + "phases": "AS", + "to": "sx2764403a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2731712b", + "length": "50.000", + "name": "tpx_tpx21426205b0", + "phases": "BS", + "to": "sx2731712b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048201b", + "length": "50.000", + "name": "tpx_tpx391742b0", + "phases": "BS", + "to": "sx3048201b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3179682c", + "length": "50.000", + "name": "tpx_tpx207292c0", + "phases": "CS", + "to": "sx3179682c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2879092c", + "length": "50.000", + "name": "tpx_tpx21399326c0", + "phases": "CS", + "to": "sx2879092c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2879087a", + "length": "50.000", + "name": "tpx_tpx21399762a0", + "phases": "CS", + "to": "sx2879087a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973152b", + "length": "50.000", + "name": "tpx_tpx323253b0", + "phases": "BS", + "to": "sx2973152b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000904c", + "length": "50.000", + "name": "tpx_tpx2000904c0", + "phases": "CS", + "to": "sx2000904c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3198356c", + "length": "50.000", + "name": "tpx_tpx350993c0", + "phases": "CS", + "to": "sx3198356c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254218a", + "length": "50.000", + "name": "tpx_tpx138720a0", + "phases": "AS", + "to": "sx3254218a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785520b", + "length": "50.000", + "name": "tpx_tpx138755b0", + "phases": "BS", + "to": "sx2785520b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029501b", + "length": "50.000", + "name": "tpx_tpx337688b0", + "phases": "BS", + "to": "sx3029501b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3178969b", + "length": "50.000", + "name": "tpx_tpx355596b0", + "phases": "BS", + "to": "sx3178969b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2954346b", + "length": "50.000", + "name": "tpx_tpx323397b0", + "phases": "BS", + "to": "sx2954346b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3029497c", + "length": "50.000", + "name": "tpx_tpx337631c0", + "phases": "CS", + "to": "sx3029497c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728039a", + "length": "50.000", + "name": "tpx_tpx2224387053a0", + "phases": "AS", + "to": "sx3728039a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3120503a", + "length": "50.000", + "name": "tpx_tpx225869139a0", + "phases": "AS", + "to": "sx3120503a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673319c", + "length": "50.000", + "name": "tpx_tpx391973c0", + "phases": "CS", + "to": "sx2673319c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2860492c", + "length": "50.000", + "name": "tpx_tpx21395720c0", + "phases": "CS", + "to": "sx2860492c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748140a", + "length": "50.000", + "name": "tpx_tpx391995a0", + "phases": "AS", + "to": "sx2748140a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197647a", + "length": "50.000", + "name": "tpx_tpx294787a0", + "phases": "AS", + "to": "sx3197647a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197638a", + "length": "50.000", + "name": "tpx_tpx21396959a0", + "phases": "AS", + "to": "sx3197638a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2814529c", + "length": "50.000", + "name": "tpx_tpx28120126c0", + "phases": "CS", + "to": "sx2814529c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2820556a", + "length": "50.000", + "name": "tpx_tpx226196648a0", + "phases": "AS", + "to": "sx2820556a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2804250c", + "length": "50.000", + "name": "tpx_tpx274992c0", + "phases": "CS", + "to": "sx2804250c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048890c", + "length": "50.000", + "name": "tpx_tpx28128517c0", + "phases": "CS", + "to": "sx3048890c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216344b", + "length": "50.000", + "name": "tpx_tpx323264b0", + "phases": "BS", + "to": "sx3216344b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2767408c", + "length": "50.000", + "name": "tpx_tpx260517c0", + "phases": "CS", + "to": "sx2767408c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804255b", + "length": "50.000", + "name": "tpx_tpx338913b0", + "phases": "BS", + "to": "sx2804255b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3727709a", + "length": "50.000", + "name": "tpx_tpx2224386842a0", + "phases": "AS", + "to": "sx3727709a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2916598a", + "length": "50.000", + "name": "tpx_tpx355933a0", + "phases": "AS", + "to": "sx2916598a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3157710b", + "length": "50.000", + "name": "tpx_tpx226193361b0", + "phases": "BS", + "to": "sx3157710b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160862c", + "length": "50.000", + "name": "tpx_tpx21386143c0", + "phases": "CS", + "to": "sx3160862c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2898522a", + "length": "50.000", + "name": "tpx_tpx260648a0", + "phases": "AS", + "to": "sx2898522a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804251a", + "length": "50.000", + "name": "tpx_tpx138646a0", + "phases": "AS", + "to": "sx2804251a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254870c", + "length": "50.000", + "name": "tpx_tpx260581c0", + "phases": "CS", + "to": "sx3254870c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2929261a", + "length": "50.000", + "name": "tpx_tpx225533337a0", + "phases": "AS", + "to": "sx2929261a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879773a", + "length": "50.000", + "name": "tpx_tpx207290a0", + "phases": "AS", + "to": "sx2879773a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3068944b", + "length": "50.000", + "name": "tpx_tpx260494b0", + "phases": "BS", + "to": "sx3068944b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254215c", + "length": "50.000", + "name": "tpx_tpx302859c0", + "phases": "CS", + "to": "sx3254215c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197660b", + "length": "50.000", + "name": "tpx_tpx323275b0", + "phases": "BS", + "to": "sx3197660b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673343b", + "length": "50.000", + "name": "tpx_tpx21470122b0", + "phases": "BS", + "to": "sx2673343b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691966b", + "length": "50.000", + "name": "tpx_tpx339010b0", + "phases": "BS", + "to": "sx2691966b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3010580b", + "length": "50.000", + "name": "tpx_tpx21451973b0", + "phases": "BS", + "to": "sx3010580b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2861158c", + "length": "50.000", + "name": "tpx_tpx251858c0", + "phases": "CS", + "to": "sx2861158c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197652a", + "length": "50.000", + "name": "tpx_tpx339021a0", + "phases": "AS", + "to": "sx3197652a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3010567c", + "length": "50.000", + "name": "tpx_tpx302813c0", + "phases": "CS", + "to": "sx3010567c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2801909c", + "length": "50.000", + "name": "tpx_tpx226195333c0", + "phases": "CS", + "to": "sx2801909c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3217052c", + "length": "50.000", + "name": "tpx_tpx260528c0", + "phases": "CS", + "to": "sx3217052c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141396c", + "length": "50.000", + "name": "tpx_tpx337655c0", + "phases": "CS", + "to": "sx3141396c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029518b", + "length": "50.000", + "name": "tpx_tpx337666b0", + "phases": "BS", + "to": "sx3029518b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3729297a", + "length": "50.000", + "name": "tpx_tpx2224386592a0", + "phases": "AS", + "to": "sx3729297a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2954344c", + "length": "50.000", + "name": "tpx_tpx338959c0", + "phases": "CS", + "to": "sx2954344c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001002b", + "length": "50.000", + "name": "tpx_tpx2001002b0", + "phases": "BS", + "to": "sx2001002b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804254a", + "length": "50.000", + "name": "tpx_tpx323418a0", + "phases": "AS", + "to": "sx2804254a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785513a", + "length": "50.000", + "name": "tpx_tpx337677a0", + "phases": "AS", + "to": "sx2785513a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841637c", + "length": "50.000", + "name": "tpx_tpx293492c0", + "phases": "CS", + "to": "sx2841637c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3251807a", + "length": "50.000", + "name": "tpx_tpx225673440a0", + "phases": "AS", + "to": "sx3251807a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804248b", + "length": "50.000", + "name": "tpx_tpx323244b0", + "phases": "BS", + "to": "sx2804248b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104130b", + "length": "50.000", + "name": "tpx_tpx391755b0", + "phases": "BS", + "to": "sx3104130b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2820533a", + "length": "50.000", + "name": "tpx_tpx226193298a0", + "phases": "AS", + "to": "sx2820533a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122837c", + "length": "50.000", + "name": "tpx_tpx355432c0", + "phases": "CS", + "to": "sx3122837c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2935566c", + "length": "50.000", + "name": "tpx_tpx441854c0", + "phases": "CS", + "to": "sx2935566c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3178979c", + "length": "50.000", + "name": "tpx_tpx338968c0", + "phases": "CS", + "to": "sx3178979c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001013b", + "length": "50.000", + "name": "tpx_tpx2001013b0", + "phases": "BS", + "to": "sx2001013b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2915542a", + "length": "50.000", + "name": "tpx_tpx227921427a0", + "phases": "AS", + "to": "sx2915542a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216345b", + "length": "50.000", + "name": "tpx_tpx338933b0", + "phases": "BS", + "to": "sx3216345b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3066814b", + "length": "50.000", + "name": "tpx_tpx338979b0", + "phases": "BS", + "to": "sx3066814b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2861157c", + "length": "50.000", + "name": "tpx_tpx251867c0", + "phases": "CS", + "to": "sx2861157c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3234185b", + "length": "50.000", + "name": "tpx_tpx323388b0", + "phases": "BS", + "to": "sx3234185b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3253995c", + "length": "50.000", + "name": "tpx_tpx21396815c0", + "phases": "CS", + "to": "sx3253995c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804258b", + "length": "50.000", + "name": "tpx_tpx337697b0", + "phases": "BS", + "to": "sx2804258b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104114b", + "length": "50.000", + "name": "tpx_tpx355587b0", + "phases": "BS", + "to": "sx3104114b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197646b", + "length": "50.000", + "name": "tpx_tpx355944b0", + "phases": "BS", + "to": "sx3197646b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000412a", + "length": "50.000", + "name": "tpx_tpx2000412a0", + "phases": "AS", + "to": "sx2000412a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785526b", + "length": "50.000", + "name": "tpx_tpx302374b0", + "phases": "BS", + "to": "sx2785526b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748839b", + "length": "50.000", + "name": "tpx_tpx260502b0", + "phases": "BS", + "to": "sx2748839b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2916607c", + "length": "50.000", + "name": "tpx_tpx321882c0", + "phases": "CS", + "to": "sx2916607c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860484b", + "length": "50.000", + "name": "tpx_tpx323255b0", + "phases": "BS", + "to": "sx2860484b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710537b", + "length": "50.000", + "name": "tpx_tpx391744b0", + "phases": "BS", + "to": "sx2710537b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2674051a", + "length": "50.000", + "name": "tpx_tpx21389831a0", + "phases": "AS", + "to": "sx2674051a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000906c", + "length": "50.000", + "name": "tpx_tpx2000906c0", + "phases": "CS", + "to": "sx2000906c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2674027b", + "length": "50.000", + "name": "tpx_tpx21380325b0", + "phases": "BS", + "to": "sx2674027b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3065696a", + "length": "50.000", + "name": "tpx_tpx227921416a0", + "phases": "AS", + "to": "sx3065696a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2859403a", + "length": "50.000", + "name": "tpx_tpx228001810a0", + "phases": "AS", + "to": "sx2859403a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3178974b", + "length": "50.000", + "name": "tpx_tpx323399b0", + "phases": "BS", + "to": "sx3178974b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748130b", + "length": "50.000", + "name": "tpx_tpx138753b0", + "phases": "BS", + "to": "sx2748130b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973148a", + "length": "50.000", + "name": "tpx_tpx339047a0", + "phases": "AS", + "to": "sx2973148a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3179699b", + "length": "50.000", + "name": "tpx_tpx21393454b0", + "phases": "BS", + "to": "sx3179699b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3216347c", + "length": "50.000", + "name": "tpx_tpx138413c0", + "phases": "CS", + "to": "sx3216347c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066806c", + "length": "50.000", + "name": "tpx_tpx275002c0", + "phases": "CS", + "to": "sx3066806c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804245b", + "length": "50.000", + "name": "tpx_tpx355598b0", + "phases": "BS", + "to": "sx2804245b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785516b", + "length": "50.000", + "name": "tpx_tpx138294b0", + "phases": "BS", + "to": "sx2785516b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3085403a", + "length": "50.000", + "name": "tpx_tpx293668a0", + "phases": "AS", + "to": "sx3085403a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3189189b", + "length": "50.000", + "name": "tpx_tpx293657b0", + "phases": "BS", + "to": "sx3189189b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2991940c", + "length": "50.000", + "name": "tpx_tpx28148060c0", + "phases": "CS", + "to": "sx2991940c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2992657a", + "length": "50.000", + "name": "tpx_tpx21475841a0", + "phases": "AS", + "to": "sx2992657a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197632b", + "length": "50.000", + "name": "tpx_tpx323266b0", + "phases": "BS", + "to": "sx3197632b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010556a", + "length": "50.000", + "name": "tpx_tpx138655a0", + "phases": "AS", + "to": "sx3010556a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2857591a", + "length": "50.000", + "name": "tpx_tpx226101460a0", + "phases": "CS", + "to": "sx2857591a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2895461a", + "length": "50.000", + "name": "tpx_tpx294789a0", + "phases": "CS", + "to": "sx2895461a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141403a", + "length": "50.000", + "name": "tpx_tpx21399707a0", + "phases": "CS", + "to": "sx3141403a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3178988b", + "length": "50.000", + "name": "tpx_tpx339001b0", + "phases": "BS", + "to": "sx3178988b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_750_triplex_12", + "continuous_rating_C": "580.00", + "emergency_rating_C": "725.00", + "from": "x3234149c", + "length": "50.000", + "name": "tpx_tpx227944551c0", + "phases": "CS", + "to": "sx3234149c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2841634b", + "length": "50.000", + "name": "tpx_tpx392038b0", + "phases": "BS", + "to": "sx2841634b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729414a", + "length": "50.000", + "name": "tpx_tpx293655a0", + "phases": "AS", + "to": "sx2729414a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3195318b", + "length": "50.000", + "name": "tpx_tpx226194280b0", + "phases": "BS", + "to": "sx3195318b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973159a", + "length": "50.000", + "name": "tpx_tpx21398536a0", + "phases": "AS", + "to": "sx2973159a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3179678b", + "length": "50.000", + "name": "tpx_tpx247185b0", + "phases": "BS", + "to": "sx3179678b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3179674b", + "length": "50.000", + "name": "tpx_tpx157716b0", + "phases": "BS", + "to": "sx3179674b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991923a", + "length": "50.000", + "name": "tpx_tpx302735a0", + "phases": "AS", + "to": "sx2991923a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3315860b", + "length": "50.000", + "name": "tpx_tpx2223664050b0", + "phases": "BS", + "to": "sx3315860b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897800b", + "length": "50.000", + "name": "tpx_tpx323277b0", + "phases": "BS", + "to": "sx2897800b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197630a", + "length": "50.000", + "name": "tpx_tpx138644a0", + "phases": "AS", + "to": "sx3197630a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216988b", + "length": "50.000", + "name": "tpx_tpx260590b0", + "phases": "BS", + "to": "sx3216988b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973165a", + "length": "50.000", + "name": "tpx_tpx355942a0", + "phases": "AS", + "to": "sx2973165a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2767414c", + "length": "50.000", + "name": "tpx_tpx351019c0", + "phases": "CS", + "to": "sx2767414c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728040a", + "length": "50.000", + "name": "tpx_tpx2224387062a0", + "phases": "AS", + "to": "sx3728040a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2730163c", + "length": "50.000", + "name": "tpx_tpx260481c0", + "phases": "CS", + "to": "sx2730163c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973171b", + "length": "50.000", + "name": "tpx_tpx339012b0", + "phases": "BS", + "to": "sx2973171b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048946c", + "length": "50.000", + "name": "tpx_tpx260624c0", + "phases": "CS", + "to": "sx3048946c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748132a", + "length": "50.000", + "name": "tpx_tpx302637a0", + "phases": "AS", + "to": "sx2748132a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160105c", + "length": "50.000", + "name": "tpx_tpx302811c0", + "phases": "AS", + "to": "sx3160105c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822866b", + "length": "50.000", + "name": "tpx_tpx338922b0", + "phases": "BS", + "to": "sx2822866b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235254c", + "length": "50.000", + "name": "tpx_tpx441331c0", + "phases": "CS", + "to": "sx3235254c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048888c", + "length": "50.000", + "name": "tpx_tpx251856c0", + "phases": "CS", + "to": "sx3048888c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_750_triplex_12", + "continuous_rating_B": "580.00", + "emergency_rating_B": "725.00", + "from": "x3234149b", + "length": "50.000", + "name": "tpx_tpx227944551b0", + "phases": "BS", + "to": "sx3234149b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785514a", + "length": "50.000", + "name": "tpx_tpx337675a0", + "phases": "AS", + "to": "sx2785514a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785517c", + "length": "50.000", + "name": "tpx_tpx338957c0", + "phases": "CS", + "to": "sx2785517c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729429a", + "length": "50.000", + "name": "tpx_tpx293644a0", + "phases": "AS", + "to": "sx2729429a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649305a", + "length": "50.000", + "name": "tpx_tpx2224237718a0", + "phases": "AS", + "to": "sx3649305a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048230c", + "length": "50.000", + "name": "tpx_tpx293490c0", + "phases": "CS", + "to": "sx3048230c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2913406b", + "length": "50.000", + "name": "tpx_tpx225940756b0", + "phases": "BS", + "to": "sx2913406b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785543b", + "length": "50.000", + "name": "tpx_tpx321860b0", + "phases": "BS", + "to": "sx2785543b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2673311a", + "length": "50.000", + "name": "tpx_tpx21397029a0", + "phases": "AS", + "to": "sx2673311a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785525c", + "length": "50.000", + "name": "tpx_tpx21396606c0", + "phases": "CS", + "to": "sx2785525c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3235255b", + "length": "50.000", + "name": "tpx_tpx293519b0", + "phases": "BS", + "to": "sx3235255b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785547b", + "length": "50.000", + "name": "tpx_tpx337705b0", + "phases": "BS", + "to": "sx2785547b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160113b", + "length": "50.000", + "name": "tpx_tpx323284b0", + "phases": "BS", + "to": "sx3160113b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991917b", + "length": "50.000", + "name": "tpx_tpx391757b0", + "phases": "BS", + "to": "sx2991917b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000704b", + "length": "50.000", + "name": "tpx_tpx2000704b0", + "phases": "BS", + "to": "sx2000704b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3086075b", + "length": "50.000", + "name": "tpx_tpx260463b0", + "phases": "BS", + "to": "sx3086075b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2917330a", + "length": "50.000", + "name": "tpx_tpx260474a0", + "phases": "AS", + "to": "sx2917330a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2822869a", + "length": "50.000", + "name": "tpx_tpx338942a0", + "phases": "AS", + "to": "sx2822869a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254231a", + "length": "50.000", + "name": "tpx_tpx338988a0", + "phases": "AS", + "to": "sx3254231a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3142050c", + "length": "50.000", + "name": "tpx_tpx251865c0", + "phases": "CS", + "to": "sx3142050c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3029505c", + "length": "50.000", + "name": "tpx_tpx338966c0", + "phases": "CS", + "to": "sx3029505c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001011b", + "length": "50.000", + "name": "tpx_tpx2001011b0", + "phases": "BS", + "to": "sx2001011b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916620b", + "length": "50.000", + "name": "tpx_tpx338977b0", + "phases": "BS", + "to": "sx2916620b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841627a", + "length": "50.000", + "name": "tpx_tpx337716a0", + "phases": "AS", + "to": "sx2841627a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235241c", + "length": "50.000", + "name": "tpx_tpx321888c0", + "phases": "CS", + "to": "sx3235241c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673313b", + "length": "50.000", + "name": "tpx_tpx321853b0", + "phases": "BS", + "to": "sx2673313b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879072b", + "length": "50.000", + "name": "tpx_tpx337695b0", + "phases": "BS", + "to": "sx2879072b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2767409b", + "length": "50.000", + "name": "tpx_tpx21391242b0", + "phases": "BS", + "to": "sx2767409b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2804249c", + "length": "50.000", + "name": "tpx_tpx21389962c0", + "phases": "CS", + "to": "sx2804249c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x1108406b", + "length": "50.000", + "name": "tpx_tpx2221108406b0", + "phases": "BS", + "to": "sx1108406b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3195751a", + "length": "50.000", + "name": "tpx_tpx293681a0", + "phases": "CS", + "to": "sx3195751a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3778577c", + "length": "50.000", + "name": "tpx_tpx2224490448c0", + "phases": "CS", + "to": "sx3778577c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104850c", + "length": "50.000", + "name": "tpx_tpx260561c0", + "phases": "CS", + "to": "sx3104850c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2935556b", + "length": "50.000", + "name": "tpx_tpx356064b0", + "phases": "BS", + "to": "sx2935556b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2917328b", + "length": "50.000", + "name": "tpx_tpx21389092b0", + "phases": "BS", + "to": "sx2917328b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766723a", + "length": "50.000", + "name": "tpx_tpx391986a0", + "phases": "AS", + "to": "sx2766723a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085388b", + "length": "50.000", + "name": "tpx_tpx391746b0", + "phases": "BS", + "to": "sx3085388b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785519a", + "length": "50.000", + "name": "tpx_tpx138566a0", + "phases": "AS", + "to": "sx2785519a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3065665a", + "length": "50.000", + "name": "tpx_tpx227895952a0", + "phases": "AS", + "to": "sx3065665a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000715b", + "length": "50.000", + "name": "tpx_tpx2000715b0", + "phases": "BS", + "to": "sx2000715b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001309a", + "length": "50.000", + "name": "tpx_tpx2001309a0", + "phases": "AS", + "to": "sx2001309a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2674052c", + "length": "50.000", + "name": "tpx_tpx21393570c0", + "phases": "CS", + "to": "sx2674052c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048937c", + "length": "50.000", + "name": "tpx_tpx356789c0", + "phases": "CS", + "to": "sx3048937c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2879062c", + "length": "50.000", + "name": "tpx_tpx21385192c0", + "phases": "CS", + "to": "sx2879062c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3177665a", + "length": "50.000", + "name": "tpx_tpx227731863a0", + "phases": "AS", + "to": "sx3177665a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785521c", + "length": "50.000", + "name": "tpx_tpx338931c0", + "phases": "CS", + "to": "sx2785521c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3198358b", + "length": "50.000", + "name": "tpx_tpx138797b0", + "phases": "BS", + "to": "sx3198358b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2822861a", + "length": "50.000", + "name": "tpx_tpx21015829a0", + "phases": "AS", + "to": "sx2822861a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2916620c", + "length": "50.000", + "name": "tpx_tpx338977c0", + "phases": "CS", + "to": "sx2916620c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2916602a", + "length": "50.000", + "name": "tpx_tpx339049a0", + "phases": "AS", + "to": "sx2916602a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254206b", + "length": "50.000", + "name": "tpx_tpx355592b0", + "phases": "BS", + "to": "sx3254206b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3066818b", + "length": "50.000", + "name": "tpx_tpx138751b0", + "phases": "BS", + "to": "sx3066818b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2710509c", + "length": "50.000", + "name": "tpx_tpx275000c0", + "phases": "CS", + "to": "sx2710509c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x1108406a", + "length": "50.000", + "name": "tpx_tpx2221108406a0", + "phases": "AS", + "to": "sx1108406a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2729206c", + "length": "50.000", + "name": "tpx_tpx2212168866c0", + "phases": "CS", + "to": "sx2729206c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3123452c", + "length": "50.000", + "name": "tpx_tpx260574c0", + "phases": "CS", + "to": "sx3123452c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2673315a", + "length": "50.000", + "name": "tpx_tpx247058a0", + "phases": "AS", + "to": "sx2673315a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3027122a", + "length": "50.000", + "name": "tpx_tpx226194865a0", + "phases": "AS", + "to": "sx3027122a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3029498c", + "length": "50.000", + "name": "tpx_tpx247036c0", + "phases": "CS", + "to": "sx3029498c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3066826b", + "length": "50.000", + "name": "tpx_tpx339003b0", + "phases": "BS", + "to": "sx3066826b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2841624b", + "length": "50.000", + "name": "tpx_tpx355604b0", + "phases": "BS", + "to": "sx2841624b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000913c", + "length": "50.000", + "name": "tpx_tpx2000913c0", + "phases": "CS", + "to": "sx2000913c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197631a", + "length": "50.000", + "name": "tpx_tpx338920a0", + "phases": "AS", + "to": "sx3197631a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3010560b", + "length": "50.000", + "name": "tpx_tpx338955b0", + "phases": "BS", + "to": "sx3010560b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197640c", + "length": "50.000", + "name": "tpx_tpx338944c0", + "phases": "CS", + "to": "sx3197640c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3159448a", + "length": "50.000", + "name": "tpx_tpx337684a0", + "phases": "AS", + "to": "sx3159448a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2954361b", + "length": "50.000", + "name": "tpx_tpx21383494b0", + "phases": "BS", + "to": "sx2954361b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3215385c", + "length": "50.000", + "name": "tpx_tpx21384099c0", + "phases": "CS", + "to": "sx3215385c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841639a", + "length": "50.000", + "name": "tpx_tpx355937a0", + "phases": "AS", + "to": "sx2841639a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3120504a", + "length": "50.000", + "name": "tpx_tpx225897846a0", + "phases": "AS", + "to": "sx3120504a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3027124c", + "length": "50.000", + "name": "tpx_tpx226195194c0", + "phases": "CS", + "to": "sx3027124c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748135a", + "length": "50.000", + "name": "tpx_tpx28150172a0", + "phases": "AS", + "to": "sx2748135a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235256a", + "length": "50.000", + "name": "tpx_tpx138642a0", + "phases": "AS", + "to": "sx3235256a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3101787a", + "length": "50.000", + "name": "tpx_tpx321877a0", + "phases": "AS", + "to": "sx3101787a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3141400a", + "length": "50.000", + "name": "tpx_tpx138313a0", + "phases": "AS", + "to": "sx3141400a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916603b", + "length": "50.000", + "name": "tpx_tpx323403b0", + "phases": "BS", + "to": "sx2916603b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141395c", + "length": "50.000", + "name": "tpx_tpx28149184c0", + "phases": "CS", + "to": "sx3141395c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122818c", + "length": "50.000", + "name": "tpx_tpx28120183c0", + "phases": "CS", + "to": "sx3122818c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2916620a", + "length": "50.000", + "name": "tpx_tpx338977a0", + "phases": "AS", + "to": "sx2916620a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3030205c", + "length": "50.000", + "name": "tpx_tpx21390038c0", + "phases": "CS", + "to": "sx3030205c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254228b", + "length": "50.000", + "name": "tpx_tpx325474b0", + "phases": "BS", + "to": "sx3254228b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2895449c", + "length": "50.000", + "name": "tpx_tpx226193134c0", + "phases": "CS", + "to": "sx2895449c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2955081a", + "length": "50.000", + "name": "tpx_tpx260508a0", + "phases": "AS", + "to": "sx2955081a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2859391b", + "length": "50.000", + "name": "tpx_tpx227989724b0", + "phases": "BS", + "to": "sx2859391b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3215385b", + "length": "50.000", + "name": "tpx_tpx21384099b0", + "phases": "BS", + "to": "sx3215385b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3008232b", + "length": "50.000", + "name": "tpx_tpx226192492b0", + "phases": "BS", + "to": "sx3008232b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841618a", + "length": "50.000", + "name": "tpx_tpx337673a0", + "phases": "AS", + "to": "sx2841618a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766727b", + "length": "50.000", + "name": "tpx_tpx302367b0", + "phases": "BS", + "to": "sx2766727b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3030203c", + "length": "50.000", + "name": "tpx_tpx260639c0", + "phases": "CS", + "to": "sx3030203c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2861197c", + "length": "50.000", + "name": "tpx_tpx21474711c0", + "phases": "CS", + "to": "sx2861197c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2814529a", + "length": "50.000", + "name": "tpx_tpx28120126a0", + "phases": "AS", + "to": "sx2814529a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216350a", + "length": "50.000", + "name": "tpx_tpx391977a0", + "phases": "AS", + "to": "sx3216350a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197628c", + "length": "50.000", + "name": "tpx_tpx138651c0", + "phases": "CS", + "to": "sx3197628c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2989564b", + "length": "50.000", + "name": "tpx_tpx323286b0", + "phases": "BS", + "to": "sx2989564b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3195310a", + "length": "50.000", + "name": "tpx_tpx226192185a0", + "phases": "AS", + "to": "sx3195310a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2916609c", + "length": "50.000", + "name": "tpx_tpx138346c0", + "phases": "CS", + "to": "sx2916609c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973161a", + "length": "50.000", + "name": "tpx_tpx293592a0", + "phases": "AS", + "to": "sx2973161a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841616a", + "length": "50.000", + "name": "tpx_tpx21031684a0", + "phases": "AS", + "to": "sx2841616a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2936268c", + "length": "50.000", + "name": "tpx_tpx223655c0", + "phases": "CS", + "to": "sx2936268c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2861223b", + "length": "50.000", + "name": "tpx_tpx260461b0", + "phases": "BS", + "to": "sx2861223b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000706b", + "length": "50.000", + "name": "tpx_tpx2000706b0", + "phases": "BS", + "to": "sx2000706b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3125349c", + "length": "50.000", + "name": "tpx_tpx226193698c0", + "phases": "CS", + "to": "sx3125349c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2839305a", + "length": "50.000", + "name": "tpx_tpx28150292a0", + "phases": "AS", + "to": "sx2839305a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3102286b", + "length": "50.000", + "name": "tpx_tpx226308729b0", + "phases": "BS", + "to": "sx3102286b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2748128c", + "length": "50.000", + "name": "tpx_tpx337629c0", + "phases": "CS", + "to": "sx2748128c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104117c", + "length": "50.000", + "name": "tpx_tpx338964c0", + "phases": "CS", + "to": "sx3104117c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2745811c", + "length": "50.000", + "name": "tpx_tpx251863c0", + "phases": "CS", + "to": "sx2745811c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785538a", + "length": "50.000", + "name": "tpx_tpx338986a0", + "phases": "AS", + "to": "sx2785538a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197644a", + "length": "50.000", + "name": "tpx_tpx138771a0", + "phases": "AS", + "to": "sx3197644a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729434b", + "length": "50.000", + "name": "tpx_tpx321851b0", + "phases": "BS", + "to": "sx2729434b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160104b", + "length": "50.000", + "name": "tpx_tpx337707b0", + "phases": "BS", + "to": "sx3160104b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2691947a", + "length": "50.000", + "name": "tpx_tpx337718a0", + "phases": "AS", + "to": "sx2691947a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766746c", + "length": "50.000", + "name": "tpx_tpx321886c0", + "phases": "CS", + "to": "sx2766746c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104133a", + "length": "50.000", + "name": "tpx_tpx293483a0", + "phases": "AS", + "to": "sx3104133a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x1108404b", + "length": "50.000", + "name": "tpx_tpx2221108404b0", + "phases": "BS", + "to": "sx1108404b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2684420b", + "length": "50.000", + "name": "tpx_tpx225498968b0", + "phases": "BS", + "to": "sx2684420b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3066813b", + "length": "50.000", + "name": "tpx_tpx337693b0", + "phases": "BS", + "to": "sx3066813b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2917255c", + "length": "50.000", + "name": "tpx_tpx21386065c0", + "phases": "CS", + "to": "sx2917255c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2914323b", + "length": "50.000", + "name": "tpx_tpx355376b0", + "phases": "BS", + "to": "sx2914323b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3177894a", + "length": "50.000", + "name": "tpx_tpx227903012a0", + "phases": "AS", + "to": "sx3177894a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841628a", + "length": "50.000", + "name": "tpx_tpx28120786a0", + "phases": "AS", + "to": "sx2841628a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122816b", + "length": "50.000", + "name": "tpx_tpx356062b0", + "phases": "BS", + "to": "sx3122816b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991902b", + "length": "50.000", + "name": "tpx_tpx391748b0", + "phases": "BS", + "to": "sx2991902b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804283a", + "length": "50.000", + "name": "tpx_tpx138564a0", + "phases": "AS", + "to": "sx2804283a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2814529b", + "length": "50.000", + "name": "tpx_tpx28120126b0", + "phases": "BS", + "to": "sx2814529b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001307a", + "length": "50.000", + "name": "tpx_tpx2001307a0", + "phases": "AS", + "to": "sx2001307a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000902c", + "length": "50.000", + "name": "tpx_tpx2000902c0", + "phases": "CS", + "to": "sx2000902c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785531a", + "length": "50.000", + "name": "tpx_tpx21399809a0", + "phases": "CS", + "to": "sx2785531a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879074a", + "length": "50.000", + "name": "tpx_tpx310560a0", + "phases": "AS", + "to": "sx2879074a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804256b", + "length": "50.000", + "name": "tpx_tpx321840b0", + "phases": "BS", + "to": "sx2804256b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2823611a", + "length": "50.000", + "name": "tpx_tpx21386877a0", + "phases": "AS", + "to": "sx2823611a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2728247a", + "length": "50.000", + "name": "tpx_tpx337729a0", + "phases": "AS", + "to": "sx2728247a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x1108404a", + "length": "50.000", + "name": "tpx_tpx2221108404a0", + "phases": "AS", + "to": "sx1108404a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048196b", + "length": "50.000", + "name": "tpx_tpx138237b0", + "phases": "BS", + "to": "sx3048196b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2898457a", + "length": "50.000", + "name": "tpx_tpx260594a0", + "phases": "AS", + "to": "sx2898457a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048214a", + "length": "50.000", + "name": "tpx_tpx302474a0", + "phases": "AS", + "to": "sx3048214a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3236004c", + "length": "50.000", + "name": "tpx_tpx260572c0", + "phases": "CS", + "to": "sx3236004c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728043a", + "length": "50.000", + "name": "tpx_tpx2224387138a0", + "phases": "AS", + "to": "sx3728043a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785535b", + "length": "50.000", + "name": "tpx_tpx339005b0", + "phases": "BS", + "to": "sx2785535b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197642c", + "length": "50.000", + "name": "tpx_tpx391979c0", + "phases": "CS", + "to": "sx3197642c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991912a", + "length": "50.000", + "name": "tpx_tpx247056a0", + "phases": "AS", + "to": "sx2991912a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991901b", + "length": "50.000", + "name": "tpx_tpx354851b0", + "phases": "BS", + "to": "sx2991901b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3141399c", + "length": "50.000", + "name": "tpx_tpx302804c0", + "phases": "AS", + "to": "sx3141399c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000915c", + "length": "50.000", + "name": "tpx_tpx2000915c0", + "phases": "CS", + "to": "sx2000915c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029510b", + "length": "50.000", + "name": "tpx_tpx355606b0", + "phases": "BS", + "to": "sx3029510b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048205c", + "length": "50.000", + "name": "tpx_tpx274994c0", + "phases": "CS", + "to": "sx3048205c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3143999a", + "length": "50.000", + "name": "tpx_tpx226193696a0", + "phases": "AS", + "to": "sx3143999a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160793c", + "length": "50.000", + "name": "tpx_tpx28147899c0", + "phases": "CS", + "to": "sx3160793c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3027133a", + "length": "50.000", + "name": "tpx_tpx226101449a0", + "phases": "CS", + "to": "sx3027133a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122821b", + "length": "50.000", + "name": "tpx_tpx338953b0", + "phases": "BS", + "to": "sx3122821b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822873b", + "length": "50.000", + "name": "tpx_tpx338999b0", + "phases": "BS", + "to": "sx2822873b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2728247b", + "length": "50.000", + "name": "tpx_tpx337729b0", + "phases": "BS", + "to": "sx2728247b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2691973a", + "length": "50.000", + "name": "tpx_tpx355935a0", + "phases": "AS", + "to": "sx2691973a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2973158c", + "length": "50.000", + "name": "tpx_tpx138259c0", + "phases": "CS", + "to": "sx2973158c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2935557a", + "length": "50.000", + "name": "tpx_tpx21397005a0", + "phases": "AS", + "to": "sx2935557a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897769c", + "length": "50.000", + "name": "tpx_tpx337660c0", + "phases": "CS", + "to": "sx2897769c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254205c", + "length": "50.000", + "name": "tpx_tpx302672c0", + "phases": "CS", + "to": "sx3254205c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879752b", + "length": "50.000", + "name": "tpx_tpx330122b0", + "phases": "BS", + "to": "sx2879752b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2983432a", + "length": "50.000", + "name": "tpx_tpx225534325a0", + "phases": "AS", + "to": "sx2983432a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2691936a", + "length": "50.000", + "name": "tpx_tpx356009a0", + "phases": "AS", + "to": "sx2691936a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879767b", + "length": "50.000", + "name": "tpx_tpx260496b0", + "phases": "BS", + "to": "sx2879767b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048203b", + "length": "50.000", + "name": "tpx_tpx323273b0", + "phases": "BS", + "to": "sx3048203b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973149b", + "length": "50.000", + "name": "tpx_tpx325472b0", + "phases": "BS", + "to": "sx2973149b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3176660b", + "length": "50.000", + "name": "tpx_tpx226193892b0", + "phases": "BS", + "to": "sx3176660b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860486c", + "length": "50.000", + "name": "tpx_tpx28127390c0", + "phases": "AS", + "to": "sx2860486c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2745806c", + "length": "50.000", + "name": "tpx_tpx226194262c0", + "phases": "CS", + "to": "sx2745806c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785537a", + "length": "50.000", + "name": "tpx_tpx338975a0", + "phases": "AS", + "to": "sx2785537a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3235273b", + "length": "50.000", + "name": "tpx_tpx339016b0", + "phases": "BS", + "to": "sx3235273b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254207a", + "length": "50.000", + "name": "tpx_tpx337671a0", + "phases": "AS", + "to": "sx3254207a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2728247c", + "length": "50.000", + "name": "tpx_tpx337729c0", + "phases": "CS", + "to": "sx2728247c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001209c", + "length": "50.000", + "name": "tpx_tpx2001209c0", + "phases": "CS", + "to": "sx2001209c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2764411c", + "length": "50.000", + "name": "tpx_tpx226010605c0", + "phases": "CS", + "to": "sx2764411c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879071b", + "length": "50.000", + "name": "tpx_tpx337701b0", + "phases": "BS", + "to": "sx2879071b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254220c", + "length": "50.000", + "name": "tpx_tpx138717c0", + "phases": "CS", + "to": "sx3254220c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766748a", + "length": "50.000", + "name": "tpx_tpx21470326a0", + "phases": "AS", + "to": "sx2766748a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710512b", + "length": "50.000", + "name": "tpx_tpx323280b0", + "phases": "BS", + "to": "sx2710512b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673323c", + "length": "50.000", + "name": "tpx_tpx355438c0", + "phases": "CS", + "to": "sx2673323c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235945c", + "length": "50.000", + "name": "tpx_tpx356796c0", + "phases": "CS", + "to": "sx3235945c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2954350c", + "length": "50.000", + "name": "tpx_tpx302809c0", + "phases": "BS", + "to": "sx2954350c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3198355b", + "length": "50.000", + "name": "tpx_tpx207288b0", + "phases": "BS", + "to": "sx3198355b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822867b", + "length": "50.000", + "name": "tpx_tpx21386552b0", + "phases": "BS", + "to": "sx2822867b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2879055c", + "length": "50.000", + "name": "tpx_tpx138465c0", + "phases": "CS", + "to": "sx2879055c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3085399c", + "length": "50.000", + "name": "tpx_tpx302862c0", + "phases": "CS", + "to": "sx3085399c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3085393c", + "length": "50.000", + "name": "tpx_tpx337627c0", + "phases": "CS", + "to": "sx3085393c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160117b", + "length": "50.000", + "name": "tpx_tpx21357901b0", + "phases": "BS", + "to": "sx3160117b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122847a", + "length": "50.000", + "name": "tpx_tpx21483138a0", + "phases": "CS", + "to": "sx3122847a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822872b", + "length": "50.000", + "name": "tpx_tpx338950b0", + "phases": "BS", + "to": "sx2822872b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2991911c", + "length": "50.000", + "name": "tpx_tpx138258c0", + "phases": "CS", + "to": "sx2991911c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3030200c", + "length": "50.000", + "name": "tpx_tpx260554c0", + "phases": "CS", + "to": "sx3030200c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897774b", + "length": "50.000", + "name": "tpx_tpx337691b0", + "phases": "BS", + "to": "sx2897774b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2692664c", + "length": "50.000", + "name": "tpx_tpx351021c0", + "phases": "CS", + "to": "sx2692664c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673314c", + "length": "50.000", + "name": "tpx_tpx355778c0", + "phases": "CS", + "to": "sx2673314c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3178978a", + "length": "50.000", + "name": "tpx_tpx337723a0", + "phases": "AS", + "to": "sx3178978a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160863a", + "length": "50.000", + "name": "tpx_tpx223660a0", + "phases": "AS", + "to": "sx3160863a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748127a", + "length": "50.000", + "name": "tpx_tpx338919a0", + "phases": "AS", + "to": "sx2748127a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001305a", + "length": "50.000", + "name": "tpx_tpx2001305a0", + "phases": "AS", + "to": "sx2001305a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2842390c", + "length": "50.000", + "name": "tpx_tpx21325725c0", + "phases": "CS", + "to": "sx2842390c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x1108403c", + "length": "50.000", + "name": "tpx_tpx2221108403c0", + "phases": "CS", + "to": "sx1108403c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2916605c", + "length": "50.000", + "name": "tpx_tpx274987c0", + "phases": "CS", + "to": "sx2916605c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2948732b", + "length": "50.000", + "name": "tpx_tpx225571845b0", + "phases": "BS", + "to": "sx2948732b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2801895b", + "length": "50.000", + "name": "tpx_tpx226191951b0", + "phases": "BS", + "to": "sx2801895b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2879089c", + "length": "50.000", + "name": "tpx_tpx21455388c0", + "phases": "CS", + "to": "sx2879089c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860477a", + "length": "50.000", + "name": "tpx_tpx28121587a0", + "phases": "AS", + "to": "sx2860477a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216361b", + "length": "50.000", + "name": "tpx_tpx21452406b0", + "phases": "BS", + "to": "sx3216361b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3216368c", + "length": "50.000", + "name": "tpx_tpx293663c0", + "phases": "CS", + "to": "sx3216368c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3008237c", + "length": "50.000", + "name": "tpx_tpx226193838c0", + "phases": "CS", + "to": "sx3008237c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235245c", + "length": "50.000", + "name": "tpx_tpx337712c0", + "phases": "CS", + "to": "sx3235245c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991907a", + "length": "50.000", + "name": "tpx_tpx138574a0", + "phases": "AS", + "to": "sx2991907a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122815b", + "length": "50.000", + "name": "tpx_tpx321858b0", + "phases": "BS", + "to": "sx3122815b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729427b", + "length": "50.000", + "name": "tpx_tpx323249b0", + "phases": "BS", + "to": "sx2729427b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916617b", + "length": "50.000", + "name": "tpx_tpx339007b0", + "phases": "BS", + "to": "sx2916617b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804247b", + "length": "50.000", + "name": "tpx_tpx391737b0", + "phases": "BS", + "to": "sx2804247b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3214112b", + "length": "50.000", + "name": "tpx_tpx226881057b0", + "phases": "BS", + "to": "sx3214112b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048965b", + "length": "50.000", + "name": "tpx_tpx260641b0", + "phases": "BS", + "to": "sx3048965b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2710510c", + "length": "50.000", + "name": "tpx_tpx138650c0", + "phases": "CS", + "to": "sx2710510c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649298a", + "length": "50.000", + "name": "tpx_tpx2224237384a0", + "phases": "AS", + "to": "sx3649298a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x1108403b", + "length": "50.000", + "name": "tpx_tpx2221108403b0", + "phases": "BS", + "to": "sx1108403b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879065b", + "length": "50.000", + "name": "tpx_tpx247126b0", + "phases": "BS", + "to": "sx2879065b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897792a", + "length": "50.000", + "name": "tpx_tpx338985a0", + "phases": "AS", + "to": "sx2897792a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2822868a", + "length": "50.000", + "name": "tpx_tpx21397544a0", + "phases": "AS", + "to": "sx2822868a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3727707a", + "length": "50.000", + "name": "tpx_tpx2224386750a0", + "phases": "AS", + "to": "sx3727707a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066817a", + "length": "50.000", + "name": "tpx_tpx21373784a0", + "phases": "AS", + "to": "sx3066817a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729424a", + "length": "50.000", + "name": "tpx_tpx339018a0", + "phases": "AS", + "to": "sx2729424a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897781a", + "length": "50.000", + "name": "tpx_tpx138770a0", + "phases": "AS", + "to": "sx2897781a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2955005b", + "length": "50.000", + "name": "tpx_tpx260589b0", + "phases": "BS", + "to": "sx2955005b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673303c", + "length": "50.000", + "name": "tpx_tpx338963c0", + "phases": "CS", + "to": "sx2673303c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3086074c", + "length": "50.000", + "name": "tpx_tpx260532c0", + "phases": "CS", + "to": "sx3086074c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2989565a", + "length": "50.000", + "name": "tpx_tpx21389237a0", + "phases": "AS", + "to": "sx2989565a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2954355a", + "length": "50.000", + "name": "tpx_tpx293672a0", + "phases": "AS", + "to": "sx2954355a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_cap_3a_PUZ_A", + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "q16642", + "length": "0.0033", + "name": "line_cap_3a", + "phases": "A", + "to": "q16642_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197634b", + "length": "50.000", + "name": "tpx_tpx355767b0", + "phases": "BS", + "to": "sx3197634b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973155a", + "length": "50.000", + "name": "tpx_tpx338898a0", + "phases": "AS", + "to": "sx2973155a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_cap_3c_PUZ_C", + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "q16642", + "length": "0.0033", + "name": "line_cap_3c", + "phases": "C", + "to": "q16642_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2916627a", + "length": "50.000", + "name": "tpx_tpx138563a0", + "phases": "AS", + "to": "sx2916627a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2806553c", + "length": "50.000", + "name": "tpx_tpx227411655c0", + "phases": "CS", + "to": "sx2806553c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160100b", + "length": "50.000", + "name": "tpx_tpx321847b0", + "phases": "BS", + "to": "sx3160100b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_cap_3b_PUZ_B", + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "q16642", + "length": "0.0033", + "name": "line_cap_3b", + "phases": "B", + "to": "q16642_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3263051c", + "length": "50.000", + "name": "tpx_tpx2212371533c0", + "phases": "CS", + "to": "sx3263051c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991919a", + "length": "50.000", + "name": "tpx_tpx302400a0", + "phases": "AS", + "to": "sx2991919a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000712b", + "length": "50.000", + "name": "tpx_tpx2000712b0", + "phases": "BS", + "to": "sx2000712b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3215340a", + "length": "50.000", + "name": "tpx_tpx228057846a0", + "phases": "AS", + "to": "sx3215340a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066819a", + "length": "50.000", + "name": "tpx_tpx302677a0", + "phases": "AS", + "to": "sx3066819a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2745799c", + "length": "50.000", + "name": "tpx_tpx226191779c0", + "phases": "CS", + "to": "sx2745799c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2801902b", + "length": "50.000", + "name": "tpx_tpx226194002b0", + "phases": "BS", + "to": "sx2801902b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3141389a", + "length": "50.000", + "name": "tpx_tpx356007a0", + "phases": "AS", + "to": "sx3141389a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104856a", + "length": "50.000", + "name": "tpx_tpx260467a0", + "phases": "AS", + "to": "sx3104856a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3091052a", + "length": "50.000", + "name": "tpx_tpx228532641a0", + "phases": "AS", + "to": "sx3091052a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000405a", + "length": "50.000", + "name": "tpx_tpx2000405a0", + "phases": "AS", + "to": "sx2000405a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973150a", + "length": "50.000", + "name": "tpx_tpx21380528a0", + "phases": "AS", + "to": "sx2973150a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001207c", + "length": "50.000", + "name": "tpx_tpx2001207c0", + "phases": "CS", + "to": "sx2001207c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2955077c", + "length": "50.000", + "name": "tpx_tpx260543c0", + "phases": "CS", + "to": "sx2955077c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x1108403a", + "length": "50.000", + "name": "tpx_tpx2221108403a0", + "phases": "AS", + "to": "sx1108403a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3727708a", + "length": "50.000", + "name": "tpx_tpx2224386815a0", + "phases": "AS", + "to": "sx3727708a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3120376a", + "length": "50.000", + "name": "tpx_tpx226163467a0", + "phases": "AS", + "to": "sx3120376a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691948b", + "length": "50.000", + "name": "tpx_tpx337703b0", + "phases": "BS", + "to": "sx2691948b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3251808a", + "length": "50.000", + "name": "tpx_tpx226029836a0", + "phases": "AS", + "to": "sx3251808a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235266c", + "length": "50.000", + "name": "tpx_tpx302807c0", + "phases": "CS", + "to": "sx3235266c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085410b", + "length": "50.000", + "name": "tpx_tpx339097b0", + "phases": "BS", + "to": "sx3085410b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897791b", + "length": "50.000", + "name": "tpx_tpx323282b0", + "phases": "BS", + "to": "sx2897791b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2692600c", + "length": "50.000", + "name": "tpx_tpx356798c0", + "phases": "CS", + "to": "sx2692600c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197627c", + "length": "50.000", + "name": "tpx_tpx337625c0", + "phases": "CS", + "to": "sx3197627c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048227a", + "length": "50.000", + "name": "tpx_tpx337647a0", + "phases": "AS", + "to": "sx3048227a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2936271a", + "length": "50.000", + "name": "tpx_tpx260476a0", + "phases": "AS", + "to": "sx2936271a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673326b", + "length": "50.000", + "name": "tpx_tpx355601b0", + "phases": "BS", + "to": "sx2673326b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001314a", + "length": "50.000", + "name": "tpx_tpx2001314a0", + "phases": "AS", + "to": "sx2001314a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000910c", + "length": "50.000", + "name": "tpx_tpx2000910c0", + "phases": "CS", + "to": "sx2000910c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122819c", + "length": "50.000", + "name": "tpx_tpx302860c0", + "phases": "CS", + "to": "sx3122819c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2989571a", + "length": "50.000", + "name": "tpx_tpx225991691a0", + "phases": "AS", + "to": "sx2989571a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3215385a", + "length": "50.000", + "name": "tpx_tpx21384099a0", + "phases": "AS", + "to": "sx3215385a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160115b", + "length": "50.000", + "name": "tpx_tpx338994b0", + "phases": "BS", + "to": "sx3160115b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2688692b", + "length": "50.000", + "name": "tpx_tpx225918926b0", + "phases": "BS", + "to": "sx2688692b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2692633c", + "length": "50.000", + "name": "tpx_tpx328364c0", + "phases": "CS", + "to": "sx2692633c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3142079b", + "length": "50.000", + "name": "tpx_tpx21249626b0", + "phases": "BS", + "to": "sx3142079b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254238b", + "length": "50.000", + "name": "tpx_tpx293487b0", + "phases": "BS", + "to": "sx3254238b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3101788a", + "length": "50.000", + "name": "tpx_tpx321878a0", + "phases": "AS", + "to": "sx3101788a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2786204a", + "length": "50.000", + "name": "tpx_tpx223662a0", + "phases": "AS", + "to": "sx2786204a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2935555a", + "length": "50.000", + "name": "tpx_tpx338917a0", + "phases": "AS", + "to": "sx2935555a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2970804c", + "length": "50.000", + "name": "tpx_tpx356787c0", + "phases": "CS", + "to": "sx2970804c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897778a", + "length": "50.000", + "name": "tpx_tpx302468a0", + "phases": "AS", + "to": "sx2897778a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048209b", + "length": "50.000", + "name": "tpx_tpx28120195b0", + "phases": "BS", + "to": "sx3048209b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3231255c", + "length": "50.000", + "name": "tpx_tpx339051c0", + "phases": "CS", + "to": "sx3231255c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3066830b", + "length": "50.000", + "name": "tpx_tpx21469960b0", + "phases": "BS", + "to": "sx3066830b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673306c", + "length": "50.000", + "name": "tpx_tpx293608c0", + "phases": "CS", + "to": "sx2673306c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2822864c", + "length": "50.000", + "name": "tpx_tpx274985c0", + "phases": "CS", + "to": "sx2822864c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3176656a", + "length": "50.000", + "name": "tpx_tpx226193170a0", + "phases": "AS", + "to": "sx3176656a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2726975b", + "length": "50.000", + "name": "tpx_tpx226193422b0", + "phases": "BS", + "to": "sx2726975b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2692654a", + "length": "50.000", + "name": "tpx_tpx260487a0", + "phases": "AS", + "to": "sx2692654a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001303a", + "length": "50.000", + "name": "tpx_tpx2001303a0", + "phases": "AS", + "to": "sx2001303a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3231269b", + "length": "50.000", + "name": "tpx_tpx225684682b0", + "phases": "BS", + "to": "sx3231269b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2690868c", + "length": "50.000", + "name": "tpx_tpx227917127c0", + "phases": "CS", + "to": "sx2690868c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3141401a", + "length": "50.000", + "name": "tpx_tpx338970a0", + "phases": "AS", + "to": "sx3141401a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3101782a", + "length": "50.000", + "name": "tpx_tpx356808a0", + "phases": "AS", + "to": "sx3101782a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3159037b", + "length": "50.000", + "name": "tpx_tpx323391b0", + "phases": "BS", + "to": "sx3159037b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001009b", + "length": "50.000", + "name": "tpx_tpx2001009b0", + "phases": "BS", + "to": "sx2001009b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3179650b", + "length": "50.000", + "name": "tpx_tpx251828b0", + "phases": "BS", + "to": "sx3179650b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3010565c", + "length": "50.000", + "name": "tpx_tpx138343c0", + "phases": "CS", + "to": "sx3010565c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728037a", + "length": "50.000", + "name": "tpx_tpx2224386946a0", + "phases": "AS", + "to": "sx3728037a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3067478a", + "length": "50.000", + "name": "tpx_tpx260598a0", + "phases": "AS", + "to": "sx3067478a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860506b", + "length": "50.000", + "name": "tpx_tpx321856b0", + "phases": "BS", + "to": "sx2860506b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254209c", + "length": "50.000", + "name": "tpx_tpx337714c0", + "phases": "CS", + "to": "sx3254209c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2860481c", + "length": "50.000", + "name": "tpx_tpx338908c0", + "phases": "CS", + "to": "sx2860481c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2692661a", + "length": "50.000", + "name": "tpx_tpx260650a0", + "phases": "AS", + "to": "sx2692661a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2954339b", + "length": "50.000", + "name": "tpx_tpx391739b0", + "phases": "BS", + "to": "sx2954339b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000703b", + "length": "50.000", + "name": "tpx_tpx2000703b0", + "phases": "BS", + "to": "sx2000703b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2952013a", + "length": "50.000", + "name": "tpx_tpx355843a0", + "phases": "CS", + "to": "sx2952013a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2952003b", + "length": "50.000", + "name": "tpx_tpx337614b0", + "phases": "BS", + "to": "sx2952003b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254208c", + "length": "50.000", + "name": "tpx_tpx338961c0", + "phases": "CS", + "to": "sx3254208c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2841632b", + "length": "50.000", + "name": "tpx_tpx338972b0", + "phases": "BS", + "to": "sx2841632b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3030126c", + "length": "50.000", + "name": "tpx_tpx260576c0", + "phases": "CS", + "to": "sx3030126c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3198348a", + "length": "50.000", + "name": "tpx_tpx260552a0", + "phases": "AS", + "to": "sx3198348a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104121a", + "length": "50.000", + "name": "tpx_tpx138561a0", + "phases": "AS", + "to": "sx3104121a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3178975b", + "length": "50.000", + "name": "tpx_tpx321845b0", + "phases": "BS", + "to": "sx3178975b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3030204a", + "length": "50.000", + "name": "tpx_tpx52107636a0", + "phases": "AS", + "to": "sx3030204a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197637c", + "length": "50.000", + "name": "tpx_tpx138585c0", + "phases": "CS", + "to": "sx3197637c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000407a", + "length": "50.000", + "name": "tpx_tpx2000407a0", + "phases": "AS", + "to": "sx2000407a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3178971a", + "length": "50.000", + "name": "tpx_tpx338896a0", + "phases": "AS", + "to": "sx3178971a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2689678b", + "length": "50.000", + "name": "tpx_tpx226192762b0", + "phases": "BS", + "to": "sx2689678b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2954354a", + "length": "50.000", + "name": "tpx_tpx302675a0", + "phases": "AS", + "to": "sx2954354a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973169a", + "length": "50.000", + "name": "tpx_tpx21397304a0", + "phases": "AS", + "to": "sx2973169a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000714b", + "length": "50.000", + "name": "tpx_tpx2000714b0", + "phases": "BS", + "to": "sx2000714b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804253a", + "length": "50.000", + "name": "tpx_tpx21396254a0", + "phases": "AS", + "to": "sx2804253a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710513b", + "length": "50.000", + "name": "tpx_tpx325245b0", + "phases": "BS", + "to": "sx2710513b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822858b", + "length": "50.000", + "name": "tpx_tpx355591b0", + "phases": "BS", + "to": "sx2822858b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001205c", + "length": "50.000", + "name": "tpx_tpx2001205c0", + "phases": "CS", + "to": "sx2001205c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2841641b", + "length": "50.000", + "name": "tpx_tpx21380156b0", + "phases": "BS", + "to": "sx2841641b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691965b", + "length": "50.000", + "name": "tpx_tpx338983b0", + "phases": "BS", + "to": "sx2691965b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3086098a", + "length": "50.000", + "name": "tpx_tpx21474556a0", + "phases": "AS", + "to": "sx3086098a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2858163a", + "length": "50.000", + "name": "tpx_tpx391990a0", + "phases": "AS", + "to": "sx2858163a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860491b", + "length": "50.000", + "name": "tpx_tpx302733b0", + "phases": "BS", + "to": "sx2860491b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3101789a", + "length": "50.000", + "name": "tpx_tpx294842a0", + "phases": "AS", + "to": "sx3101789a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2917333a", + "length": "50.000", + "name": "tpx_tpx260632a0", + "phases": "AS", + "to": "sx2917333a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3729298a", + "length": "50.000", + "name": "tpx_tpx2224386617a0", + "phases": "AS", + "to": "sx3729298a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197626c", + "length": "50.000", + "name": "tpx_tpx337623c0", + "phases": "CS", + "to": "sx3197626c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001312a", + "length": "50.000", + "name": "tpx_tpx2001312a0", + "phases": "AS", + "to": "sx2001312a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729413a", + "length": "50.000", + "name": "tpx_tpx21397067a0", + "phases": "AS", + "to": "sx2729413a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2935567b", + "length": "50.000", + "name": "tpx_tpx338992b0", + "phases": "BS", + "to": "sx2935567b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000414a", + "length": "50.000", + "name": "tpx_tpx2000414a0", + "phases": "AS", + "to": "sx2000414a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160861c", + "length": "50.000", + "name": "tpx_tpx260558c0", + "phases": "CS", + "to": "sx3160861c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3027116a", + "length": "50.000", + "name": "tpx_tpx226192684a0", + "phases": "AS", + "to": "sx3027116a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691939b", + "length": "50.000", + "name": "tpx_tpx355589b0", + "phases": "BS", + "to": "sx2691939b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860480b", + "length": "50.000", + "name": "tpx_tpx323234b0", + "phases": "BS", + "to": "sx2860480b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879064a", + "length": "50.000", + "name": "tpx_tpx138581a0", + "phases": "AS", + "to": "sx2879064a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2803199c", + "length": "50.000", + "name": "tpx_tpx227760021c0", + "phases": "CS", + "to": "sx2803199c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2691944a", + "length": "50.000", + "name": "tpx_tpx321838a0", + "phases": "AS", + "to": "sx2691944a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2691950c", + "length": "50.000", + "name": "tpx_tpx138374c0", + "phases": "CS", + "to": "sx2691950c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2898515c", + "length": "50.000", + "name": "tpx_tpx260621c0", + "phases": "CS", + "to": "sx2898515c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000908c", + "length": "50.000", + "name": "tpx_tpx2000908c0", + "phases": "CS", + "to": "sx2000908c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2692660a", + "length": "50.000", + "name": "tpx_tpx260643a0", + "phases": "AS", + "to": "sx2692660a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160107a", + "length": "50.000", + "name": "tpx_tpx138265a0", + "phases": "AS", + "to": "sx3160107a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673309c", + "length": "50.000", + "name": "tpx_tpx138472c0", + "phases": "CS", + "to": "sx2673309c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001007b", + "length": "50.000", + "name": "tpx_tpx2001007b0", + "phases": "BS", + "to": "sx2001007b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104796c", + "length": "50.000", + "name": "tpx_tpx260569c0", + "phases": "CS", + "to": "sx3104796c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3645811c", + "length": "50.000", + "name": "tpx_tpx2224230689c0", + "phases": "CS", + "to": "sx3645811c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2767342a", + "length": "50.000", + "name": "tpx_tpx356802a0", + "phases": "AS", + "to": "sx2767342a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748146a", + "length": "50.000", + "name": "tpx_tpx138570a0", + "phases": "AS", + "to": "sx2748146a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2803199b", + "length": "50.000", + "name": "tpx_tpx227760021b0", + "phases": "BS", + "to": "sx2803199b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785512b", + "length": "50.000", + "name": "tpx_tpx323245b0", + "phases": "BS", + "to": "sx2785512b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2954352c", + "length": "50.000", + "name": "tpx_tpx28127090c0", + "phases": "CS", + "to": "sx2954352c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2805031c", + "length": "50.000", + "name": "tpx_tpx260491c0", + "phases": "CS", + "to": "sx2805031c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3217064b", + "length": "50.000", + "name": "tpx_tpx21391390b0", + "phases": "BS", + "to": "sx3217064b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3645812c", + "length": "50.000", + "name": "tpx_tpx2224230754c0", + "phases": "CS", + "to": "sx3645812c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216370a", + "length": "50.000", + "name": "tpx_tpx293521a0", + "phases": "AS", + "to": "sx3216370a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729428a", + "length": "50.000", + "name": "tpx_tpx21398402a0", + "phases": "AS", + "to": "sx2729428a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3065750b", + "length": "50.000", + "name": "tpx_tpx323389b0", + "phases": "BS", + "to": "sx3065750b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122811a", + "length": "50.000", + "name": "tpx_tpx337669a0", + "phases": "AS", + "to": "sx3122811a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141393c", + "length": "50.000", + "name": "tpx_tpx442373c0", + "phases": "CS", + "to": "sx3141393c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649297a", + "length": "50.000", + "name": "tpx_tpx2224237380a0", + "phases": "AS", + "to": "sx3649297a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991915b", + "length": "50.000", + "name": "tpx_tpx392036b0", + "phases": "BS", + "to": "sx2991915b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001214c", + "length": "50.000", + "name": "tpx_tpx2001214c0", + "phases": "CS", + "to": "sx2001214c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235249a", + "length": "50.000", + "name": "tpx_tpx356014a0", + "phases": "AS", + "to": "sx3235249a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122825a", + "length": "50.000", + "name": "tpx_tpx28118808a0", + "phases": "AS", + "to": "sx3122825a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673322b", + "length": "50.000", + "name": "tpx_tpx355358b0", + "phases": "BS", + "to": "sx2673322b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3008248a", + "length": "50.000", + "name": "tpx_tpx321159a0", + "phases": "AS", + "to": "sx3008248a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3142098b", + "length": "50.000", + "name": "tpx_tpx260501b0", + "phases": "BS", + "to": "sx3142098b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160864b", + "length": "50.000", + "name": "tpx_tpx28127146b0", + "phases": "BS", + "to": "sx3160864b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2876812a", + "length": "50.000", + "name": "tpx_tpx321880a0", + "phases": "AS", + "to": "sx2876812a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860491a", + "length": "50.000", + "name": "tpx_tpx302733a0", + "phases": "AS", + "to": "sx2860491a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3142099b", + "length": "50.000", + "name": "tpx_tpx157718b0", + "phases": "BS", + "to": "sx3142099b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879069a", + "length": "50.000", + "name": "tpx_tpx338894a0", + "phases": "AS", + "to": "sx2879069a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3217056a", + "length": "50.000", + "name": "tpx_tpx218474a0", + "phases": "AS", + "to": "sx3217056a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2803199a", + "length": "50.000", + "name": "tpx_tpx227760021a0", + "phases": "AS", + "to": "sx2803199a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216370b", + "length": "50.000", + "name": "tpx_tpx293521b0", + "phases": "BS", + "to": "sx3216370b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841619c", + "length": "50.000", + "name": "tpx_tpx337636c0", + "phases": "CS", + "to": "sx2841619c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649299a", + "length": "50.000", + "name": "tpx_tpx2224237391a0", + "phases": "AS", + "to": "sx3649299a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766499c", + "length": "50.000", + "name": "tpx_tpx2212168880c0", + "phases": "CS", + "to": "sx2766499c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001203c", + "length": "50.000", + "name": "tpx_tpx2001203c0", + "phases": "CS", + "to": "sx2001203c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197645a", + "length": "50.000", + "name": "tpx_tpx21395962a0", + "phases": "AS", + "to": "sx3197645a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029520b", + "length": "50.000", + "name": "tpx_tpx21486213b0", + "phases": "BS", + "to": "sx3029520b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897766c", + "length": "50.000", + "name": "tpx_tpx28128007c0", + "phases": "CS", + "to": "sx2897766c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2820535b", + "length": "50.000", + "name": "tpx_tpx338981b0", + "phases": "BS", + "to": "sx2820535b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122849b", + "length": "50.000", + "name": "tpx_tpx293423b0", + "phases": "BS", + "to": "sx3122849b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2786273b", + "length": "50.000", + "name": "tpx_tpx275247b0", + "phases": "BS", + "to": "sx2786273b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841645c", + "length": "50.000", + "name": "tpx_tpx321893c0", + "phases": "CS", + "to": "sx2841645c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2746587c", + "length": "50.000", + "name": "tpx_tpx227653310c0", + "phases": "CS", + "to": "sx2746587c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897784b", + "length": "50.000", + "name": "tpx_tpx247170b0", + "phases": "BS", + "to": "sx2897784b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3086002c", + "length": "50.000", + "name": "tpx_tpx356794c0", + "phases": "CS", + "to": "sx3086002c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3029500a", + "length": "50.000", + "name": "tpx_tpx391992a0", + "phases": "AS", + "to": "sx3029500a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2851933c", + "length": "50.000", + "name": "tpx_tpx21393643c0", + "phases": "CS", + "to": "sx2851933c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841623a", + "length": "50.000", + "name": "tpx_tpx294844a0", + "phases": "AS", + "to": "sx2841623a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3119793b", + "length": "50.000", + "name": "tpx_tpx226024307b0", + "phases": "BS", + "to": "sx3119793b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3216370c", + "length": "50.000", + "name": "tpx_tpx293521c0", + "phases": "CS", + "to": "sx3216370c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001310a", + "length": "50.000", + "name": "tpx_tpx2001310a0", + "phases": "AS", + "to": "sx2001310a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122823b", + "length": "50.000", + "name": "tpx_tpx302370b0", + "phases": "BS", + "to": "sx3122823b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860483b", + "length": "50.000", + "name": "tpx_tpx21396699b0", + "phases": "BS", + "to": "sx2860483b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897805a", + "length": "50.000", + "name": "tpx_tpx21471907a0", + "phases": "AS", + "to": "sx2897805a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2891575c", + "length": "50.000", + "name": "tpx_tpx225533423c0", + "phases": "CS", + "to": "sx2891575c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2936212a", + "length": "50.000", + "name": "tpx_tpx356815a0", + "phases": "AS", + "to": "sx2936212a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048963b", + "length": "50.000", + "name": "tpx_tpx260521b0", + "phases": "BS", + "to": "sx3048963b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235258a", + "length": "50.000", + "name": "tpx_tpx293652a0", + "phases": "AS", + "to": "sx3235258a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673331b", + "length": "50.000", + "name": "tpx_tpx338990b0", + "phases": "BS", + "to": "sx2673331b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710517a", + "length": "50.000", + "name": "tpx_tpx310568a0", + "phases": "AS", + "to": "sx2710517a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235247a", + "length": "50.000", + "name": "tpx_tpx321836a0", + "phases": "AS", + "to": "sx3235247a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991916b", + "length": "50.000", + "name": "tpx_tpx337710b0", + "phases": "BS", + "to": "sx2991916b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822860b", + "length": "50.000", + "name": "tpx_tpx323236b0", + "phases": "BS", + "to": "sx2822860b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104126c", + "length": "50.000", + "name": "tpx_tpx138372c0", + "phases": "CS", + "to": "sx3104126c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2851933b", + "length": "50.000", + "name": "tpx_tpx21393643b0", + "phases": "BS", + "to": "sx2851933b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766719a", + "length": "50.000", + "name": "tpx_tpx21357865a0", + "phases": "AS", + "to": "sx2766719a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729405b", + "length": "50.000", + "name": "tpx_tpx21393412b0", + "phases": "BS", + "to": "sx2729405b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122848c", + "length": "50.000", + "name": "tpx_tpx21397121c0", + "phases": "CS", + "to": "sx3122848c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973833b", + "length": "50.000", + "name": "tpx_tpx260630b0", + "phases": "BS", + "to": "sx2973833b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897771b", + "length": "50.000", + "name": "tpx_tpx21148701b0", + "phases": "BS", + "to": "sx2897771b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879054a", + "length": "50.000", + "name": "tpx_tpx247061a0", + "phases": "AS", + "to": "sx2879054a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2952007c", + "length": "50.000", + "name": "tpx_tpx251859c0", + "phases": "CS", + "to": "sx2952007c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104144a", + "length": "50.000", + "name": "tpx_tpx339020a0", + "phases": "AS", + "to": "sx3104144a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197625c", + "length": "50.000", + "name": "tpx_tpx339044c0", + "phases": "CS", + "to": "sx3197625c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3085395a", + "length": "50.000", + "name": "tpx_tpx21391094a0", + "phases": "AS", + "to": "sx3085395a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766717c", + "length": "50.000", + "name": "tpx_tpx138470c0", + "phases": "CS", + "to": "sx2766717c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649301a", + "length": "50.000", + "name": "tpx_tpx2224237643a0", + "phases": "AS", + "to": "sx3649301a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897777c", + "length": "50.000", + "name": "tpx_tpx338937c0", + "phases": "CS", + "to": "sx2897777c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2801896b", + "length": "50.000", + "name": "tpx_tpx226191995b0", + "phases": "BS", + "to": "sx2801896b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160101a", + "length": "50.000", + "name": "tpx_tpx337678a0", + "phases": "AS", + "to": "sx3160101a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001005b", + "length": "50.000", + "name": "tpx_tpx2001005b0", + "phases": "BS", + "to": "sx2001005b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010570a", + "length": "50.000", + "name": "tpx_tpx302392a0", + "phases": "AS", + "to": "sx3010570a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2936211c", + "length": "50.000", + "name": "tpx_tpx260567c0", + "phases": "CS", + "to": "sx2936211c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2823544a", + "length": "50.000", + "name": "tpx_tpx356804a0", + "phases": "AS", + "to": "sx2823544a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3139366a", + "length": "50.000", + "name": "tpx_tpx226264795a0", + "phases": "AS", + "to": "sx3139366a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2973166c", + "length": "50.000", + "name": "tpx_tpx293665c0", + "phases": "CS", + "to": "sx2973166c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2935553b", + "length": "50.000", + "name": "tpx_tpx323247b0", + "phases": "BS", + "to": "sx2935553b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916625b", + "length": "50.000", + "name": "tpx_tpx21467859b0", + "phases": "BS", + "to": "sx2916625b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897764b", + "length": "50.000", + "name": "tpx_tpx391750b0", + "phases": "BS", + "to": "sx2897764b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2851933a", + "length": "50.000", + "name": "tpx_tpx21393643a0", + "phases": "AS", + "to": "sx2851933a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3082988b", + "length": "50.000", + "name": "tpx_tpx226195153b0", + "phases": "BS", + "to": "sx3082988b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216123a", + "length": "50.000", + "name": "tpx_tpx338926a0", + "phases": "AS", + "to": "sx3216123a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766725c", + "length": "50.000", + "name": "tpx_tpx21399220c0", + "phases": "CS", + "to": "sx2766725c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001212c", + "length": "50.000", + "name": "tpx_tpx2001212c0", + "phases": "CS", + "to": "sx2001212c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841615a", + "length": "50.000", + "name": "tpx_tpx356012a0", + "phases": "AS", + "to": "sx2841615a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2876798b", + "length": "50.000", + "name": "tpx_tpx226193745b0", + "phases": "BS", + "to": "sx2876798b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104155c", + "length": "50.000", + "name": "tpx_tpx21474587c0", + "phases": "CS", + "to": "sx3104155c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3214549a", + "length": "50.000", + "name": "tpx_tpx226308731a0", + "phases": "AS", + "to": "sx3214549a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235258c", + "length": "50.000", + "name": "tpx_tpx293652c0", + "phases": "CS", + "to": "sx3235258c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748152b", + "length": "50.000", + "name": "tpx_tpx321849b0", + "phases": "BS", + "to": "sx2748152b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879081a", + "length": "50.000", + "name": "tpx_tpx391981a0", + "phases": "AS", + "to": "sx2879081a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2916606c", + "length": "50.000", + "name": "tpx_tpx275007c0", + "phases": "CS", + "to": "sx2916606c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122826a", + "length": "50.000", + "name": "tpx_tpx302731a0", + "phases": "AS", + "to": "sx3122826a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000710b", + "length": "50.000", + "name": "tpx_tpx2000710b0", + "phases": "BS", + "to": "sx2000710b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141411c", + "length": "50.000", + "name": "tpx_tpx21197413c0", + "phases": "CS", + "to": "sx3141411c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2936270a", + "length": "50.000", + "name": "tpx_tpx218472a0", + "phases": "AS", + "to": "sx2936270a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3085401a", + "length": "50.000", + "name": "tpx_tpx28127253a0", + "phases": "AS", + "to": "sx3085401a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991905a", + "length": "50.000", + "name": "tpx_tpx28148633a0", + "phases": "AS", + "to": "sx2991905a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897772a", + "length": "50.000", + "name": "tpx_tpx302679a0", + "phases": "AS", + "to": "sx2897772a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2820531b", + "length": "50.000", + "name": "tpx_tpx226192936b0", + "phases": "BS", + "to": "sx2820531b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3141394b", + "length": "50.000", + "name": "tpx_tpx339042b0", + "phases": "BS", + "to": "sx3141394b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122824a", + "length": "50.000", + "name": "tpx_tpx302402a0", + "phases": "AS", + "to": "sx3122824a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160868b", + "length": "50.000", + "name": "tpx_tpx52107693b0", + "phases": "BS", + "to": "sx3160868b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2748126c", + "length": "50.000", + "name": "tpx_tpx321891c0", + "phases": "CS", + "to": "sx2748126c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897768c", + "length": "50.000", + "name": "tpx_tpx337634c0", + "phases": "CS", + "to": "sx2897768c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2936276b", + "length": "50.000", + "name": "tpx_tpx260458b0", + "phases": "BS", + "to": "sx2936276b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216342b", + "length": "50.000", + "name": "tpx_tpx337645b0", + "phases": "BS", + "to": "sx3216342b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2954345c", + "length": "50.000", + "name": "tpx_tpx338915c0", + "phases": "CS", + "to": "sx2954345c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766720a", + "length": "50.000", + "name": "tpx_tpx441311a0", + "phases": "AS", + "to": "sx2766720a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000403a", + "length": "50.000", + "name": "tpx_tpx2000403a0", + "phases": "AS", + "to": "sx2000403a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2821087a", + "length": "50.000", + "name": "tpx_tpx226308720a0", + "phases": "AS", + "to": "sx2821087a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3235258b", + "length": "50.000", + "name": "tpx_tpx293652b0", + "phases": "BS", + "to": "sx3235258b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3140238a", + "length": "50.000", + "name": "tpx_tpx227905262a0", + "phases": "AS", + "to": "sx3140238a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804252a", + "length": "50.000", + "name": "tpx_tpx302473a0", + "phases": "AS", + "to": "sx2804252a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3235275b", + "length": "50.000", + "name": "tpx_tpx302507b0", + "phases": "BS", + "to": "sx3235275b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085391b", + "length": "50.000", + "name": "tpx_tpx21236413b0", + "phases": "BS", + "to": "sx3085391b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104120b", + "length": "50.000", + "name": "tpx_tpx138645b0", + "phases": "BS", + "to": "sx3104120b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066821a", + "length": "50.000", + "name": "tpx_tpx391994a0", + "phases": "AS", + "to": "sx3066821a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991927b", + "length": "50.000", + "name": "tpx_tpx355607b0", + "phases": "BS", + "to": "sx2991927b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860501b", + "length": "50.000", + "name": "tpx_tpx323265b0", + "phases": "BS", + "to": "sx2860501b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3215203b", + "length": "50.000", + "name": "tpx_tpx227760024b0", + "phases": "BS", + "to": "sx3215203b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104129a", + "length": "50.000", + "name": "tpx_tpx338969a0", + "phases": "AS", + "to": "sx3104129a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2711226b", + "length": "50.000", + "name": "tpx_tpx260527b0", + "phases": "BS", + "to": "sx2711226b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3139103a", + "length": "50.000", + "name": "tpx_tpx225767272a0", + "phases": "AS", + "to": "sx3139103a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066804a", + "length": "50.000", + "name": "tpx_tpx21380599a0", + "phases": "AS", + "to": "sx3066804a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3047289a", + "length": "50.000", + "name": "tpx_tpx228091193a0", + "phases": "AS", + "to": "sx3047289a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048212a", + "length": "50.000", + "name": "tpx_tpx355934a0", + "phases": "AS", + "to": "sx3048212a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3727712a", + "length": "50.000", + "name": "tpx_tpx2224386889a0", + "phases": "AS", + "to": "sx3727712a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2802481a", + "length": "50.000", + "name": "tpx_tpx226308730a0", + "phases": "AS", + "to": "sx2802481a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235248c", + "length": "50.000", + "name": "tpx_tpx321861c0", + "phases": "CS", + "to": "sx3235248c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2936275b", + "length": "50.000", + "name": "tpx_tpx157715b0", + "phases": "BS", + "to": "sx2936275b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2805034a", + "length": "50.000", + "name": "tpx_tpx260647a0", + "phases": "AS", + "to": "sx2805034a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3179607b", + "length": "50.000", + "name": "tpx_tpx260591b0", + "phases": "BS", + "to": "sx3179607b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085389b", + "length": "50.000", + "name": "tpx_tpx391765b0", + "phases": "BS", + "to": "sx3085389b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2954338b", + "length": "50.000", + "name": "tpx_tpx355618b0", + "phases": "BS", + "to": "sx2954338b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3082983b", + "length": "50.000", + "name": "tpx_tpx226193899b0", + "phases": "BS", + "to": "sx3082983b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048966c", + "length": "50.000", + "name": "tpx_tpx260625c0", + "phases": "CS", + "to": "sx3048966c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3552667c", + "length": "50.000", + "name": "tpx_tpx2224061203c0", + "phases": "CS", + "to": "sx3552667c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104145b", + "length": "50.000", + "name": "tpx_tpx339011b0", + "phases": "BS", + "to": "sx3104145b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3215203a", + "length": "50.000", + "name": "tpx_tpx227760024a0", + "phases": "AS", + "to": "sx3215203a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2691945c", + "length": "50.000", + "name": "tpx_tpx302812c0", + "phases": "CS", + "to": "sx2691945c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2951995c", + "length": "50.000", + "name": "tpx_tpx226192801c0", + "phases": "AS", + "to": "sx2951995c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3064514c", + "length": "50.000", + "name": "tpx_tpx251857c0", + "phases": "CS", + "to": "sx3064514c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897776c", + "length": "50.000", + "name": "tpx_tpx302858c0", + "phases": "CS", + "to": "sx2897776c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785546a", + "length": "50.000", + "name": "tpx_tpx21399752a0", + "phases": "CS", + "to": "sx2785546a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235244a", + "length": "50.000", + "name": "tpx_tpx337676a0", + "phases": "AS", + "to": "sx3235244a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001003b", + "length": "50.000", + "name": "tpx_tpx2001003b0", + "phases": "BS", + "to": "sx2001003b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3120484c", + "length": "50.000", + "name": "tpx_tpx226191772c0", + "phases": "CS", + "to": "sx3120484c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973178b", + "length": "50.000", + "name": "tpx_tpx337665b0", + "phases": "BS", + "to": "sx2973178b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066809c", + "length": "50.000", + "name": "tpx_tpx338958c0", + "phases": "CS", + "to": "sx3066809c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973146b", + "length": "50.000", + "name": "tpx_tpx28118903b0", + "phases": "BS", + "to": "sx2973146b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066808c", + "length": "50.000", + "name": "tpx_tpx337654c0", + "phases": "CS", + "to": "sx3066808c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804260b", + "length": "50.000", + "name": "tpx_tpx391752b0", + "phases": "BS", + "to": "sx2804260b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160871c", + "length": "50.000", + "name": "tpx_tpx260638c0", + "phases": "CS", + "to": "sx3160871c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2952014a", + "length": "50.000", + "name": "tpx_tpx294809a0", + "phases": "CS", + "to": "sx2952014a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879078a", + "length": "50.000", + "name": "tpx_tpx21399229a0", + "phases": "AS", + "to": "sx2879078a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3226771a", + "length": "50.000", + "name": "tpx_tpx227100746a0", + "phases": "AS", + "to": "sx3226771a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048222c", + "length": "50.000", + "name": "tpx_tpx355431c0", + "phases": "CS", + "to": "sx3048222c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2935552c", + "length": "50.000", + "name": "tpx_tpx274903c0", + "phases": "CS", + "to": "sx2935552c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897789b", + "length": "50.000", + "name": "tpx_tpx323287b0", + "phases": "BS", + "to": "sx2897789b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710508b", + "length": "50.000", + "name": "tpx_tpx323241b0", + "phases": "BS", + "to": "sx2710508b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001014b", + "length": "50.000", + "name": "tpx_tpx2001014b0", + "phases": "BS", + "to": "sx2001014b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001210c", + "length": "50.000", + "name": "tpx_tpx2001210c0", + "phases": "CS", + "to": "sx2001210c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000709b", + "length": "50.000", + "name": "tpx_tpx2000709b0", + "phases": "BS", + "to": "sx2000709b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766741a", + "length": "50.000", + "name": "tpx_tpx21386754a0", + "phases": "AS", + "to": "sx2766741a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254234b", + "length": "50.000", + "name": "tpx_tpx355586b0", + "phases": "BS", + "to": "sx3254234b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748158a", + "length": "50.000", + "name": "tpx_tpx293480a0", + "phases": "AS", + "to": "sx2748158a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3232301c", + "length": "50.000", + "name": "tpx_tpx21458756c0", + "phases": "AS", + "to": "sx3232301c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216349b", + "length": "50.000", + "name": "tpx_tpx337708b0", + "phases": "BS", + "to": "sx3216349b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3189188c", + "length": "50.000", + "name": "tpx_tpx293658c0", + "phases": "CS", + "to": "sx3189188c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897806c", + "length": "50.000", + "name": "tpx_tpx337643c0", + "phases": "CS", + "to": "sx2897806c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216336a", + "length": "50.000", + "name": "tpx_tpx356010a0", + "phases": "AS", + "to": "sx3216336a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841629c", + "length": "50.000", + "name": "tpx_tpx138405c0", + "phases": "CS", + "to": "sx2841629c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973162b", + "length": "50.000", + "name": "tpx_tpx302375b0", + "phases": "BS", + "to": "sx2973162b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766732b", + "length": "50.000", + "name": "tpx_tpx247164b0", + "phases": "BS", + "to": "sx2766732b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216339b", + "length": "50.000", + "name": "tpx_tpx391741b0", + "phases": "BS", + "to": "sx3216339b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254210c", + "length": "50.000", + "name": "tpx_tpx138647c0", + "phases": "CS", + "to": "sx3254210c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2879073c", + "length": "50.000", + "name": "tpx_tpx138371c0", + "phases": "CS", + "to": "sx2879073c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2786274c", + "length": "50.000", + "name": "tpx_tpx207291c0", + "phases": "CS", + "to": "sx2786274c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000905c", + "length": "50.000", + "name": "tpx_tpx2000905c0", + "phases": "CS", + "to": "sx2000905c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2916234a", + "length": "50.000", + "name": "tpx_tpx228549643a0", + "phases": "AS", + "to": "sx2916234a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066812a", + "length": "50.000", + "name": "tpx_tpx323263a0", + "phases": "AS", + "to": "sx3066812a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879066b", + "length": "50.000", + "name": "tpx_tpx323252b0", + "phases": "BS", + "to": "sx2879066b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691949b", + "length": "50.000", + "name": "tpx_tpx337689b0", + "phases": "BS", + "to": "sx2691949b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160109b", + "length": "50.000", + "name": "tpx_tpx338947b0", + "phases": "BS", + "to": "sx3160109b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048208a", + "length": "50.000", + "name": "tpx_tpx138260a0", + "phases": "AS", + "to": "sx3048208a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066815c", + "length": "50.000", + "name": "tpx_tpx338936c0", + "phases": "CS", + "to": "sx3066815c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122820a", + "length": "50.000", + "name": "tpx_tpx310561a0", + "phases": "AS", + "to": "sx3122820a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729401b", + "length": "50.000", + "name": "tpx_tpx355597b0", + "phases": "BS", + "to": "sx2729401b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3233353a", + "length": "50.000", + "name": "tpx_tpx21399630a0", + "phases": "CS", + "to": "sx3233353a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2726974b", + "length": "50.000", + "name": "tpx_tpx226193395b0", + "phases": "BS", + "to": "sx2726974b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2861218c", + "length": "50.000", + "name": "tpx_tpx260505c0", + "phases": "CS", + "to": "sx2861218c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2841620b", + "length": "50.000", + "name": "tpx_tpx28147018b0", + "phases": "BS", + "to": "sx2841620b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673307c", + "length": "50.000", + "name": "tpx_tpx337632c0", + "phases": "CS", + "to": "sx2673307c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141388c", + "length": "50.000", + "name": "tpx_tpx138416c0", + "phases": "CS", + "to": "sx3141388c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3157708c", + "length": "50.000", + "name": "tpx_tpx226192954c0", + "phases": "CS", + "to": "sx3157708c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804956a", + "length": "50.000", + "name": "tpx_tpx356811a0", + "phases": "AS", + "to": "sx2804956a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3085402a", + "length": "50.000", + "name": "tpx_tpx302471a0", + "phases": "AS", + "to": "sx3085402a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710514b", + "length": "50.000", + "name": "tpx_tpx323267b0", + "phases": "BS", + "to": "sx2710514b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2763407c", + "length": "50.000", + "name": "tpx_tpx225906836c0", + "phases": "CS", + "to": "sx2763407c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2821010a", + "length": "50.000", + "name": "tpx_tpx294788a0", + "phases": "CS", + "to": "sx2821010a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160123a", + "length": "50.000", + "name": "tpx_tpx21015706a0", + "phases": "AS", + "to": "sx3160123a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2804957c", + "length": "50.000", + "name": "tpx_tpx356790c0", + "phases": "CS", + "to": "sx2804957c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3141412a", + "length": "50.000", + "name": "tpx_tpx391996a0", + "phases": "AS", + "to": "sx3141412a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785536b", + "length": "50.000", + "name": "tpx_tpx339002b0", + "phases": "BS", + "to": "sx2785536b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2842383a", + "length": "50.000", + "name": "tpx_tpx260634a0", + "phases": "AS", + "to": "sx2842383a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2783231b", + "length": "50.000", + "name": "tpx_tpx226193886b0", + "phases": "BS", + "to": "sx2783231b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2823592a", + "length": "50.000", + "name": "tpx_tpx223658a0", + "phases": "AS", + "to": "sx2823592a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2803194c", + "length": "50.000", + "name": "tpx_tpx227917130c0", + "phases": "CS", + "to": "sx2803194c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2935554a", + "length": "50.000", + "name": "tpx_tpx338921a0", + "phases": "AS", + "to": "sx2935554a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2896685c", + "length": "50.000", + "name": "tpx_tpx227187012c0", + "phases": "CS", + "to": "sx2896685c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3010566c", + "length": "50.000", + "name": "tpx_tpx138776c0", + "phases": "BS", + "to": "sx3010566c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841635a", + "length": "50.000", + "name": "tpx_tpx21399099a0", + "phases": "AS", + "to": "sx2841635a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2727795c", + "length": "50.000", + "name": "tpx_tpx227678342c0", + "phases": "CS", + "to": "sx2727795c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2674047c", + "length": "50.000", + "name": "tpx_tpx260514c0", + "phases": "CS", + "to": "sx2674047c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104157c", + "length": "50.000", + "name": "tpx_tpx293427c0", + "phases": "CS", + "to": "sx3104157c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2763812c", + "length": "50.000", + "name": "tpx_tpx21459651c0", + "phases": "AS", + "to": "sx2763812c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2970811a", + "length": "50.000", + "name": "tpx_tpx321881a0", + "phases": "AS", + "to": "sx2970811a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991922a", + "length": "50.000", + "name": "tpx_tpx302734a0", + "phases": "AS", + "to": "sx2991922a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235946a", + "length": "50.000", + "name": "tpx_tpx356800a0", + "phases": "AS", + "to": "sx3235946a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748840b", + "length": "50.000", + "name": "tpx_tpx157717b0", + "phases": "BS", + "to": "sx2748840b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3030199c", + "length": "50.000", + "name": "tpx_tpx260480c0", + "phases": "CS", + "to": "sx3030199c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804270b", + "length": "50.000", + "name": "tpx_tpx339013b0", + "phases": "BS", + "to": "sx2804270b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841621c", + "length": "50.000", + "name": "tpx_tpx338910c0", + "phases": "CS", + "to": "sx2841621c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2685809a", + "length": "50.000", + "name": "tpx_tpx225533162a0", + "phases": "AS", + "to": "sx2685809a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2730107c", + "length": "50.000", + "name": "tpx_tpx251855c0", + "phases": "CS", + "to": "sx2730107c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3139598b", + "length": "50.000", + "name": "tpx_tpx226311345b0", + "phases": "BS", + "to": "sx3139598b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3178977c", + "length": "50.000", + "name": "tpx_tpx302810c0", + "phases": "AS", + "to": "sx3178977c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066805a", + "length": "50.000", + "name": "tpx_tpx337674a0", + "phases": "AS", + "to": "sx3066805a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2970258c", + "length": "50.000", + "name": "tpx_tpx21459640c0", + "phases": "AS", + "to": "sx2970258c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841633a", + "length": "50.000", + "name": "tpx_tpx293645a0", + "phases": "AS", + "to": "sx2841633a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066829c", + "length": "50.000", + "name": "tpx_tpx321894c0", + "phases": "CS", + "to": "sx3066829c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728041a", + "length": "50.000", + "name": "tpx_tpx2224387074a0", + "phases": "AS", + "to": "sx3728041a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2991933c", + "length": "50.000", + "name": "tpx_tpx355433c0", + "phases": "CS", + "to": "sx2991933c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235251c", + "length": "50.000", + "name": "tpx_tpx21387206c0", + "phases": "AS", + "to": "sx3235251c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766729a", + "length": "50.000", + "name": "tpx_tpx293523a0", + "phases": "AS", + "to": "sx2766729a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235242c", + "length": "50.000", + "name": "tpx_tpx21380500c0", + "phases": "CS", + "to": "sx3235242c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897765b", + "length": "50.000", + "name": "tpx_tpx323243b0", + "phases": "BS", + "to": "sx2897765b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001012b", + "length": "50.000", + "name": "tpx_tpx2001012b0", + "phases": "BS", + "to": "sx2001012b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2896685a", + "length": "50.000", + "name": "tpx_tpx227187012a0", + "phases": "AS", + "to": "sx2896685a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3178972c", + "length": "50.000", + "name": "tpx_tpx338923c0", + "phases": "CS", + "to": "sx3178972c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2690941b", + "length": "50.000", + "name": "tpx_tpx323387b0", + "phases": "BS", + "to": "sx2690941b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973180b", + "length": "50.000", + "name": "tpx_tpx21398646b0", + "phases": "BS", + "to": "sx2973180b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3082993a", + "length": "50.000", + "name": "tpx_tpx226159329a0", + "phases": "AS", + "to": "sx3082993a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3235250b", + "length": "50.000", + "name": "tpx_tpx337698b0", + "phases": "BS", + "to": "sx3235250b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879070b", + "length": "50.000", + "name": "tpx_tpx338934b0", + "phases": "BS", + "to": "sx2879070b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2954353a", + "length": "50.000", + "name": "tpx_tpx338945a0", + "phases": "AS", + "to": "sx2954353a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3727710a", + "length": "50.000", + "name": "tpx_tpx2224386863a0", + "phases": "AS", + "to": "sx3727710a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x0247162b", + "length": "50.000", + "name": "tpx_tpx247162b0", + "phases": "BS", + "to": "sx0247162b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2763153a", + "length": "50.000", + "name": "tpx_tpx293425a0", + "phases": "AS", + "to": "sx2763153a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2804282c", + "length": "50.000", + "name": "tpx_tpx337641c0", + "phases": "CS", + "to": "sx2804282c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991939b", + "length": "50.000", + "name": "tpx_tpx337652b0", + "phases": "BS", + "to": "sx2991939b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766726b", + "length": "50.000", + "name": "tpx_tpx302373b0", + "phases": "BS", + "to": "sx2766726b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3010564c", + "length": "50.000", + "name": "tpx_tpx321883c0", + "phases": "CS", + "to": "sx3010564c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2917310b", + "length": "50.000", + "name": "tpx_tpx260503b0", + "phases": "BS", + "to": "sx2917310b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000411a", + "length": "50.000", + "name": "tpx_tpx2000411a0", + "phases": "AS", + "to": "sx2000411a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822857b", + "length": "50.000", + "name": "tpx_tpx355588b0", + "phases": "BS", + "to": "sx2822857b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3342743c", + "length": "50.000", + "name": "tpx_tpx2223703238c0", + "phases": "CS", + "to": "sx3342743c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785530a", + "length": "50.000", + "name": "tpx_tpx391985a0", + "phases": "AS", + "to": "sx2785530a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785529c", + "length": "50.000", + "name": "tpx_tpx355943c0", + "phases": "CS", + "to": "sx2785529c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3141390b", + "length": "50.000", + "name": "tpx_tpx391743b0", + "phases": "BS", + "to": "sx3141390b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2875754c", + "length": "50.000", + "name": "tpx_tpx225897943c0", + "phases": "CS", + "to": "sx2875754c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2763072b", + "length": "50.000", + "name": "tpx_tpx226924200b0", + "phases": "BS", + "to": "sx2763072b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991929b", + "length": "50.000", + "name": "tpx_tpx28147708b0", + "phases": "BS", + "to": "sx2991929b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973151a", + "length": "50.000", + "name": "tpx_tpx138569a0", + "phases": "AS", + "to": "sx2973151a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048968c", + "length": "50.000", + "name": "tpx_tpx350994c0", + "phases": "CS", + "to": "sx3048968c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3215203c", + "length": "50.000", + "name": "tpx_tpx227760024c0", + "phases": "CS", + "to": "sx3215203c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3047058a", + "length": "50.000", + "name": "tpx_tpx227902981a0", + "phases": "AS", + "to": "sx3047058a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2730149c", + "length": "50.000", + "name": "tpx_tpx260601c0", + "phases": "CS", + "to": "sx2730149c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879068b", + "length": "50.000", + "name": "tpx_tpx323254b0", + "phases": "BS", + "to": "sx2879068b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000907c", + "length": "50.000", + "name": "tpx_tpx2000907c0", + "phases": "CS", + "to": "sx2000907c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2935547b", + "length": "50.000", + "name": "tpx_tpx21383553b0", + "phases": "BS", + "to": "sx2935547b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2692655c", + "length": "50.000", + "name": "tpx_tpx21389307c0", + "phases": "CS", + "to": "sx2692655c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2841625c", + "length": "50.000", + "name": "tpx_tpx302834c0", + "phases": "BS", + "to": "sx2841625c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2896685b", + "length": "50.000", + "name": "tpx_tpx227187012b0", + "phases": "BS", + "to": "sx2896685b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897790c", + "length": "50.000", + "name": "tpx_tpx21357984c0", + "phases": "CS", + "to": "sx2897790c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710505b", + "length": "50.000", + "name": "tpx_tpx323398b0", + "phases": "BS", + "to": "sx2710505b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785511a", + "length": "50.000", + "name": "tpx_tpx339046a0", + "phases": "AS", + "to": "sx2785511a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973156b", + "length": "50.000", + "name": "tpx_tpx337687b0", + "phases": "BS", + "to": "sx2973156b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104119a", + "length": "50.000", + "name": "tpx_tpx338956a0", + "phases": "AS", + "to": "sx3104119a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254212b", + "length": "50.000", + "name": "tpx_tpx138754b0", + "phases": "BS", + "to": "sx3254212b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2879076c", + "length": "50.000", + "name": "tpx_tpx138380c0", + "phases": "CS", + "to": "sx2879076c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973167b", + "length": "50.000", + "name": "tpx_tpx293656b0", + "phases": "BS", + "to": "sx2973167b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3727711a", + "length": "50.000", + "name": "tpx_tpx2224386874a0", + "phases": "AS", + "to": "sx3727711a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860504a", + "length": "50.000", + "name": "tpx_tpx293667a0", + "phases": "AS", + "to": "sx2860504a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3085392c", + "length": "50.000", + "name": "tpx_tpx337630c0", + "phases": "CS", + "to": "sx3085392c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216338b", + "length": "50.000", + "name": "tpx_tpx355599b0", + "phases": "BS", + "to": "sx3216338b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2767340a", + "length": "50.000", + "name": "tpx_tpx260595a0", + "phases": "AS", + "to": "sx2767340a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160896c", + "length": "50.000", + "name": "tpx_tpx260573c0", + "phases": "CS", + "to": "sx3160896c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841631c", + "length": "50.000", + "name": "tpx_tpx391976c0", + "phases": "CS", + "to": "sx2841631c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766721a", + "length": "50.000", + "name": "tpx_tpx247059a0", + "phases": "AS", + "to": "sx2766721a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3046854b", + "length": "50.000", + "name": "tpx_tpx227732939b0", + "phases": "BS", + "to": "sx3046854b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085397b", + "length": "50.000", + "name": "tpx_tpx323261b0", + "phases": "BS", + "to": "sx3085397b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2954351c", + "length": "50.000", + "name": "tpx_tpx302805c0", + "phases": "AS", + "to": "sx2954351c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197653b", + "length": "50.000", + "name": "tpx_tpx339004b0", + "phases": "BS", + "to": "sx3197653b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2990826b", + "length": "50.000", + "name": "tpx_tpx337619b0", + "phases": "BS", + "to": "sx2990826b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160108b", + "length": "50.000", + "name": "tpx_tpx355603b0", + "phases": "BS", + "to": "sx3160108b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122812b", + "length": "50.000", + "name": "tpx_tpx21031694b0", + "phases": "BS", + "to": "sx3122812b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2729410c", + "length": "50.000", + "name": "tpx_tpx338943c0", + "phases": "CS", + "to": "sx2729410c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000912c", + "length": "50.000", + "name": "tpx_tpx2000912c0", + "phases": "CS", + "to": "sx2000912c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010568a", + "length": "50.000", + "name": "tpx_tpx338965a0", + "phases": "AS", + "to": "sx3010568a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785518c", + "length": "50.000", + "name": "tpx_tpx138469c0", + "phases": "CS", + "to": "sx2785518c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822877b", + "length": "50.000", + "name": "tpx_tpx337672b0", + "phases": "BS", + "to": "sx2822877b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2673317a", + "length": "50.000", + "name": "tpx_tpx21397771a0", + "phases": "AS", + "to": "sx2673317a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673346c", + "length": "50.000", + "name": "tpx_tpx293486c0", + "phases": "CS", + "to": "sx2673346c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729407b", + "length": "50.000", + "name": "tpx_tpx247100b0", + "phases": "BS", + "to": "sx2729407b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804262a", + "length": "50.000", + "name": "tpx_tpx355938a0", + "phases": "AS", + "to": "sx2804262a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973791a", + "length": "50.000", + "name": "tpx_tpx260605a0", + "phases": "AS", + "to": "sx2973791a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2724120c", + "length": "50.000", + "name": "tpx_tpx225577437c0", + "phases": "CS", + "to": "sx2724120c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3027132a", + "length": "50.000", + "name": "tpx_tpx321876a0", + "phases": "AS", + "to": "sx3027132a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2990826a", + "length": "50.000", + "name": "tpx_tpx337619a0", + "phases": "AS", + "to": "sx2990826a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2937757c", + "length": "50.000", + "name": "tpx_tpx227411650c0", + "phases": "CS", + "to": "sx2937757c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766749b", + "length": "50.000", + "name": "tpx_tpx337661b0", + "phases": "BS", + "to": "sx2766749b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2764399b", + "length": "50.000", + "name": "tpx_tpx226192493b0", + "phases": "BS", + "to": "sx2764399b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029507b", + "length": "50.000", + "name": "tpx_tpx302368b0", + "phases": "BS", + "to": "sx3029507b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2767340b", + "length": "50.000", + "name": "tpx_tpx260595b0", + "phases": "BS", + "to": "sx2767340b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160872c", + "length": "50.000", + "name": "tpx_tpx260551c0", + "phases": "CS", + "to": "sx3160872c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029055b", + "length": "50.000", + "name": "tpx_tpx260607b0", + "phases": "BS", + "to": "sx3029055b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879079b", + "length": "50.000", + "name": "tpx_tpx391756b0", + "phases": "BS", + "to": "sx2879079b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710546b", + "length": "50.000", + "name": "tpx_tpx337704b0", + "phases": "BS", + "to": "sx2710546b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897780b", + "length": "50.000", + "name": "tpx_tpx293518b0", + "phases": "BS", + "to": "sx2897780b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254204a", + "length": "50.000", + "name": "tpx_tpx337715a0", + "phases": "AS", + "to": "sx3254204a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916618b", + "length": "50.000", + "name": "tpx_tpx323283b0", + "phases": "BS", + "to": "sx2916618b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879794a", + "length": "50.000", + "name": "tpx_tpx260475a0", + "phases": "AS", + "to": "sx2879794a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254230a", + "length": "50.000", + "name": "tpx_tpx338989a0", + "phases": "AS", + "to": "sx3254230a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000705b", + "length": "50.000", + "name": "tpx_tpx2000705b0", + "phases": "BS", + "to": "sx2000705b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254237a", + "length": "50.000", + "name": "tpx_tpx21482181a0", + "phases": "AS", + "to": "sx3254237a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001010b", + "length": "50.000", + "name": "tpx_tpx2001010b0", + "phases": "BS", + "to": "sx2001010b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673318c", + "length": "50.000", + "name": "tpx_tpx338967c0", + "phases": "CS", + "to": "sx2673318c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197635b", + "length": "50.000", + "name": "tpx_tpx337696b0", + "phases": "BS", + "to": "sx3197635b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728038a", + "length": "50.000", + "name": "tpx_tpx2224387019a0", + "phases": "AS", + "to": "sx3728038a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804257b", + "length": "50.000", + "name": "tpx_tpx321854b0", + "phases": "BS", + "to": "sx2804257b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x1108407b", + "length": "50.000", + "name": "tpx_tpx2221108407b0", + "phases": "BS", + "to": "sx1108407b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197629b", + "length": "50.000", + "name": "tpx_tpx247122b0", + "phases": "BS", + "to": "sx3197629b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000409a", + "length": "50.000", + "name": "tpx_tpx2000409a0", + "phases": "AS", + "to": "sx2000409a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104124b", + "length": "50.000", + "name": "tpx_tpx356065b0", + "phases": "BS", + "to": "sx3104124b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673300b", + "length": "50.000", + "name": "tpx_tpx391745b0", + "phases": "BS", + "to": "sx2673300b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122822a", + "length": "50.000", + "name": "tpx_tpx391987a0", + "phases": "AS", + "to": "sx3122822a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3214055c", + "length": "50.000", + "name": "tpx_tpx226192175c0", + "phases": "CS", + "to": "sx3214055c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748129a", + "length": "50.000", + "name": "tpx_tpx138567a0", + "phases": "AS", + "to": "sx2748129a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197654a", + "length": "50.000", + "name": "tpx_tpx21382992a0", + "phases": "AS", + "to": "sx3197654a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048221a", + "length": "50.000", + "name": "tpx_tpx21399305a0", + "phases": "AS", + "to": "sx3048221a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010569a", + "length": "50.000", + "name": "tpx_tpx302673a0", + "phases": "AS", + "to": "sx3010569a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2989432b", + "length": "50.000", + "name": "tpx_tpx226163575b0", + "phases": "BS", + "to": "sx2989432b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x1108410b", + "length": "50.000", + "name": "tpx_tpx2226061820b0", + "phases": "BS", + "to": "sx1108410b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3176661c", + "length": "50.000", + "name": "tpx_tpx356788c0", + "phases": "CS", + "to": "sx3176661c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860482a", + "length": "50.000", + "name": "tpx_tpx338954a0", + "phases": "AS", + "to": "sx2860482a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001308a", + "length": "50.000", + "name": "tpx_tpx2001308a0", + "phases": "AS", + "to": "sx2001308a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3027670b", + "length": "50.000", + "name": "tpx_tpx226308719b0", + "phases": "BS", + "to": "sx3027670b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197661c", + "length": "50.000", + "name": "tpx_tpx338932c0", + "phases": "CS", + "to": "sx3197661c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785528b", + "length": "50.000", + "name": "tpx_tpx138752b0", + "phases": "BS", + "to": "sx2785528b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104859b", + "length": "50.000", + "name": "tpx_tpx138798b0", + "phases": "BS", + "to": "sx3104859b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766715b", + "length": "50.000", + "name": "tpx_tpx355593b0", + "phases": "BS", + "to": "sx2766715b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2936214a", + "length": "50.000", + "name": "tpx_tpx356809a0", + "phases": "AS", + "to": "sx2936214a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766738c", + "length": "50.000", + "name": "tpx_tpx338978c0", + "phases": "CS", + "to": "sx2766738c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160098a", + "length": "50.000", + "name": "tpx_tpx339048a0", + "phases": "AS", + "to": "sx3160098a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841622a", + "length": "50.000", + "name": "tpx_tpx21384215a0", + "phases": "AS", + "to": "sx2841622a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748124b", + "length": "50.000", + "name": "tpx_tpx323392b0", + "phases": "BS", + "to": "sx2748124b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785523c", + "length": "50.000", + "name": "tpx_tpx138412c0", + "phases": "CS", + "to": "sx2785523c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2822862c", + "length": "50.000", + "name": "tpx_tpx275001c0", + "phases": "CS", + "to": "sx2822862c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010561a", + "length": "50.000", + "name": "tpx_tpx337650a0", + "phases": "AS", + "to": "sx3010561a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785524c", + "length": "50.000", + "name": "tpx_tpx28044328c0", + "phases": "CS", + "to": "sx2785524c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160103c", + "length": "50.000", + "name": "tpx_tpx356063c0", + "phases": "CS", + "to": "sx3160103c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_cap_2c_PUZ_C", + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "q16483", + "length": "3.2808", + "name": "line_cap_2c", + "phases": "C", + "to": "q16483_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104128a", + "length": "50.000", + "name": "tpx_tpx247057a0", + "phases": "AS", + "to": "sx3104128a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_cap_2b_PUZ_B", + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "q16483", + "length": "3.2808", + "name": "line_cap_2b", + "phases": "B", + "to": "q16483_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_cap_2a_PUZ_A", + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "q16483", + "length": "3.2808", + "name": "line_cap_2a", + "phases": "A", + "to": "q16483_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916619b", + "length": "50.000", + "name": "tpx_tpx339006b0", + "phases": "BS", + "to": "sx2916619b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141402c", + "length": "50.000", + "name": "tpx_tpx391978c0", + "phases": "CS", + "to": "sx3141402c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029495b", + "length": "50.000", + "name": "tpx_tpx391736b0", + "phases": "BS", + "to": "sx3029495b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3235252b", + "length": "50.000", + "name": "tpx_tpx21388572b0", + "phases": "BS", + "to": "sx3235252b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729409b", + "length": "50.000", + "name": "tpx_tpx355605b0", + "phases": "BS", + "to": "sx2729409b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000914c", + "length": "50.000", + "name": "tpx_tpx2000914c0", + "phases": "CS", + "to": "sx2000914c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3085400c", + "length": "50.000", + "name": "tpx_tpx302803c0", + "phases": "AS", + "to": "sx3085400c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3233412a", + "length": "50.000", + "name": "tpx_tpx226308717a0", + "phases": "AS", + "to": "sx3233412a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104853c", + "length": "50.000", + "name": "tpx_tpx260518c0", + "phases": "CS", + "to": "sx3104853c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254229b", + "length": "50.000", + "name": "tpx_tpx338998b0", + "phases": "BS", + "to": "sx3254229b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3645809c", + "length": "50.000", + "name": "tpx_tpx2224230615c0", + "phases": "CS", + "to": "sx3645809c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2991914c", + "length": "50.000", + "name": "tpx_tpx338941c0", + "phases": "CS", + "to": "sx2991914c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2954357a", + "length": "50.000", + "name": "tpx_tpx355936a0", + "phases": "AS", + "to": "sx2954357a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010557a", + "length": "50.000", + "name": "tpx_tpx21380453a0", + "phases": "AS", + "to": "sx3010557a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691946b", + "length": "50.000", + "name": "tpx_tpx28147974b0", + "phases": "BS", + "to": "sx2691946b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2821770a", + "length": "50.000", + "name": "tpx_tpx227917119a0", + "phases": "AS", + "to": "sx2821770a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_cap_1c_PUZ_C", + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "l2823592", + "length": "3.2808", + "name": "line_cap_1c", + "phases": "C", + "to": "l2823592_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_cap_1b_PUZ_B", + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "l2823592", + "length": "3.2808", + "name": "line_cap_1b", + "phases": "B", + "to": "l2823592_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_cap_1a_PUZ_A", + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "l2823592", + "length": "3.2808", + "name": "line_cap_1a", + "phases": "A", + "to": "l2823592_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3142078b", + "length": "50.000", + "name": "tpx_tpx330121b0", + "phases": "BS", + "to": "sx3142078b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2991640c", + "length": "50.000", + "name": "tpx_tpx229106135c0", + "phases": "CS", + "to": "sx2991640c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2822870c", + "length": "50.000", + "name": "tpx_tpx21399171c0", + "phases": "CS", + "to": "sx2822870c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2710543c", + "length": "50.000", + "name": "tpx_tpx21474614c0", + "phases": "CS", + "to": "sx2710543c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860500b", + "length": "50.000", + "name": "tpx_tpx323274b0", + "phases": "BS", + "to": "sx2860500b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2767407b", + "length": "50.000", + "name": "tpx_tpx260495b0", + "phases": "BS", + "to": "sx2767407b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3195315a", + "length": "50.000", + "name": "tpx_tpx226193662a0", + "phases": "AS", + "to": "sx3195315a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3217053c", + "length": "50.000", + "name": "tpx_tpx260529c0", + "phases": "CS", + "to": "sx3217053c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3010562b", + "length": "50.000", + "name": "tpx_tpx325473b0", + "phases": "BS", + "to": "sx3010562b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122813a", + "length": "50.000", + "name": "tpx_tpx138685a0", + "phases": "AS", + "to": "sx3122813a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048889c", + "length": "50.000", + "name": "tpx_tpx28128464c0", + "phases": "CS", + "to": "sx3048889c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2764412a", + "length": "50.000", + "name": "tpx_tpx321874a0", + "phases": "AS", + "to": "sx2764412a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2916608c", + "length": "50.000", + "name": "tpx_tpx321852c0", + "phases": "CS", + "to": "sx2916608c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3103822c", + "length": "50.000", + "name": "tpx_tpx228665517c0", + "phases": "CS", + "to": "sx3103822c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649304a", + "length": "50.000", + "name": "tpx_tpx2224237713a0", + "phases": "AS", + "to": "sx3649304a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x1108405c", + "length": "50.000", + "name": "tpx_tpx2221108405c0", + "phases": "CS", + "to": "sx1108405c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2878848c", + "length": "50.000", + "name": "tpx_tpx2212168887c0", + "phases": "CS", + "to": "sx2878848c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x_293471a", + "length": "50.000", + "name": "tpx_tpx293471a0", + "phases": "AS", + "to": "sx_293471a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766724c", + "length": "50.000", + "name": "tpx_tpx294786c0", + "phases": "CS", + "to": "sx2766724c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3157167a", + "length": "50.000", + "name": "tpx_tpx226115278a0", + "phases": "AS", + "to": "sx3157167a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766718c", + "length": "50.000", + "name": "tpx_tpx138652c0", + "phases": "CS", + "to": "sx2766718c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804269b", + "length": "50.000", + "name": "tpx_tpx323285b0", + "phases": "BS", + "to": "sx2804269b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2841636b", + "length": "50.000", + "name": "tpx_tpx391758b0", + "phases": "BS", + "to": "sx2841636b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197641a", + "length": "50.000", + "name": "tpx_tpx293591a0", + "phases": "AS", + "to": "sx3197641a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860490a", + "length": "50.000", + "name": "tpx_tpx138719a0", + "phases": "AS", + "to": "sx2860490a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2861222a", + "length": "50.000", + "name": "tpx_tpx260473a0", + "phases": "AS", + "to": "sx2861222a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029506b", + "length": "50.000", + "name": "tpx_tpx338930b0", + "phases": "BS", + "to": "sx3029506b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000707b", + "length": "50.000", + "name": "tpx_tpx2000707b0", + "phases": "BS", + "to": "sx2000707b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3047289c", + "length": "50.000", + "name": "tpx_tpx228091193c0", + "phases": "CS", + "to": "sx3047289c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160106a", + "length": "50.000", + "name": "tpx_tpx310570a0", + "phases": "AS", + "to": "sx3160106a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691967b", + "length": "50.000", + "name": "tpx_tpx338976b0", + "phases": "BS", + "to": "sx2691967b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897793a", + "length": "50.000", + "name": "tpx_tpx338987a0", + "phases": "AS", + "to": "sx2897793a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2729423c", + "length": "50.000", + "name": "tpx_tpx339017c0", + "phases": "CS", + "to": "sx2729423c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2691941c", + "length": "50.000", + "name": "tpx_tpx321887c0", + "phases": "CS", + "to": "sx2691941c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254214b", + "length": "50.000", + "name": "tpx_tpx337706b0", + "phases": "BS", + "to": "sx3254214b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216348a", + "length": "50.000", + "name": "tpx_tpx337717a0", + "phases": "AS", + "to": "sx3216348a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991910b", + "length": "50.000", + "name": "tpx_tpx337694b0", + "phases": "BS", + "to": "sx2991910b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710542b", + "length": "50.000", + "name": "tpx_tpx355584b0", + "phases": "BS", + "to": "sx2710542b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x1108405b", + "length": "50.000", + "name": "tpx_tpx2221108405b0", + "phases": "BS", + "to": "sx1108405b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2767340c", + "length": "50.000", + "name": "tpx_tpx260595c0", + "phases": "CS", + "to": "sx2767340c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x_293471b", + "length": "50.000", + "name": "tpx_tpx293471b0", + "phases": "BS", + "to": "sx_293471b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2992656a", + "length": "50.000", + "name": "tpx_tpx260627a0", + "phases": "AS", + "to": "sx2992656a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2804261c", + "length": "50.000", + "name": "tpx_tpx302509c0", + "phases": "CS", + "to": "sx2804261c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104122a", + "length": "50.000", + "name": "tpx_tpx138565a0", + "phases": "AS", + "to": "sx3104122a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841638c", + "length": "50.000", + "name": "tpx_tpx138641c0", + "phases": "CS", + "to": "sx2841638c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160102b", + "length": "50.000", + "name": "tpx_tpx355780b0", + "phases": "BS", + "to": "sx3160102b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3141398a", + "length": "50.000", + "name": "tpx_tpx21386976a0", + "phases": "AS", + "to": "sx3141398a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748131b", + "length": "50.000", + "name": "tpx_tpx323250b0", + "phases": "BS", + "to": "sx2748131b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3172805a", + "length": "50.000", + "name": "tpx_tpx226964880a0", + "phases": "AS", + "to": "sx3172805a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2990826c", + "length": "50.000", + "name": "tpx_tpx337619c0", + "phases": "CS", + "to": "sx2990826c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766747a", + "length": "50.000", + "name": "tpx_tpx391989a0", + "phases": "AS", + "to": "sx2766747a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822859b", + "length": "50.000", + "name": "tpx_tpx391747b0", + "phases": "BS", + "to": "sx2822859b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2992624a", + "length": "50.000", + "name": "tpx_tpx260484a0", + "phases": "AS", + "to": "sx2992624a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3011298c", + "length": "50.000", + "name": "tpx_tpx207286c0", + "phases": "CS", + "to": "sx3011298c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000903c", + "length": "50.000", + "name": "tpx_tpx2000903c0", + "phases": "CS", + "to": "sx2000903c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001306a", + "length": "50.000", + "name": "tpx_tpx2001306a0", + "phases": "AS", + "to": "sx2001306a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2898526c", + "length": "50.000", + "name": "tpx_tpx21393486c0", + "phases": "CS", + "to": "sx2898526c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3027671a", + "length": "50.000", + "name": "tpx_tpx226308728a0", + "phases": "AS", + "to": "sx3027671a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3047289b", + "length": "50.000", + "name": "tpx_tpx228091193b0", + "phases": "BS", + "to": "sx3047289b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3236011b", + "length": "50.000", + "name": "tpx_tpx138796b0", + "phases": "BS", + "to": "sx3236011b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2954347b", + "length": "50.000", + "name": "tpx_tpx321841b0", + "phases": "BS", + "to": "sx2954347b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3082992a", + "length": "50.000", + "name": "tpx_tpx337728a0", + "phases": "AS", + "to": "sx3082992a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x_293471c", + "length": "50.000", + "name": "tpx_tpx293471c0", + "phases": "CS", + "to": "sx_293471c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860479b", + "length": "50.000", + "name": "tpx_tpx355595b0", + "phases": "BS", + "to": "sx2860479b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673305b", + "length": "50.000", + "name": "tpx_tpx138236b0", + "phases": "BS", + "to": "sx2673305b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2935551c", + "length": "50.000", + "name": "tpx_tpx21387929c0", + "phases": "CS", + "to": "sx2935551c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710536a", + "length": "50.000", + "name": "tpx_tpx21396867a0", + "phases": "AS", + "to": "sx2710536a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710504b", + "length": "50.000", + "name": "tpx_tpx323394b0", + "phases": "BS", + "to": "sx2710504b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x1108405a", + "length": "50.000", + "name": "tpx_tpx2221108405a0", + "phases": "AS", + "to": "sx1108405a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2689691a", + "length": "50.000", + "name": "tpx_tpx355375a0", + "phases": "AS", + "to": "sx2689691a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_hvmv_sub_connector_ABC", + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv11sub1_lsb", + "length": "3.2808", + "name": "line_hvmv_sub_connector", + "phases": "ABC", + "to": "hvmv_sub1_48332" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "c11": "0.000", + "c12": "0.000", + "c13": "0.000", + "c21": "0.000", + "c22": "0.000", + "c23": "0.000", + "c31": "0.000", + "c32": "0.000", + "c33": "0.000", + "name": "lcon_hvmv_sub_connector_ABC", + "z11": "0.00160934+0.0160934j", + "z12": "0.00000+0.00000j", + "z13": "0.00000+0.00000j", + "z21": "0.00000+0.00000j", + "z22": "0.00160934+0.0160934j", + "z23": "0.00000+0.00000j", + "z31": "0.00000+0.00000j", + "z32": "0.00000+0.00000j", + "z33": "0.00160934+0.0160934j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "configuration": "lcon_ln5513564-2_ABC", + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2823592_cap", + "length": "3.2808", + "name": "line_ln5513564-2", + "phases": "ABC", + "to": "r20185" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "c11": "0.000", + "c12": "0.000", + "c13": "0.000", + "c21": "0.000", + "c22": "0.000", + "c23": "0.000", + "c31": "0.000", + "c32": "0.000", + "c33": "0.000", + "name": "lcon_ln5513564-2_ABC", + "z11": "1.60934+1.60934j", + "z12": "0.00000+0.00000j", + "z13": "0.00000+0.00000j", + "z21": "0.00000+0.00000j", + "z22": "1.60934+1.60934j", + "z23": "0.00000+0.00000j", + "z31": "0.00000+0.00000j", + "z32": "0.00000+0.00000j", + "z33": "1.60934+1.60934j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "400.00", + "emergency_rating_B": "400.00", + "emergency_rating_C": "400.00", + "from": "sourcebus", + "name": "reac_hvmv_sub_hsb", + "phase_A_reactance": "14.7983", + "phase_A_resistance": "0.000", + "phase_B_reactance": "14.7983", + "phase_B_resistance": "0.000", + "phase_C_reactance": "14.7983", + "phase_C_resistance": "0.000", + "phases": "ABC", + "to": "hvmv115_hsb1" + }, + "children": [], + "name": "series_reactor" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5578300-1_int", + "name": "swt_ln5587300_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "l2692635" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5803273-1_int", + "name": "swt_tsw803273_sw", + "phases": "ABC", + "status": "OPEN", + "to": "m1069457" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "228-1353934-4_int", + "name": "swt_wf856_48332_sw", + "phases": "C", + "status": "OPEN", + "to": "193-103041" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "n1139546", + "name": "swt_ln0955074_sw", + "phases": "B", + "status": "CLOSED", + "to": "d5955074-2_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6413567-3_int", + "name": "swt_x8223_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e182724" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69sub1_lsb2", + "name": "swt_hvmv69s1b3_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv69s1s2_1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "d6140776-1_int", + "name": "swt_v9109_48332_sw", + "phases": "A", + "status": "CLOSED", + "to": "e182730" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5742811-3_int", + "name": "swt_ln0742811_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "n1137992" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der-2", + "name": "swt_ln2001mt2_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m2001-mt2" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "d6019477-1_int", + "name": "swt_v9287_48332_sw", + "phases": "C", + "status": "CLOSED", + "to": "e182727" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6049825-1_int", + "name": "swt_l5523_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e182748" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "d6049822-1_int", + "name": "swt_l5397_48332_sw", + "phases": "A", + "status": "CLOSED", + "to": "e182722" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2000100", + "name": "swt_ln2000001_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d2000100_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "m1047767", + "name": "swt_ln0623395_sw", + "phases": "B", + "status": "CLOSED", + "to": "d5623395-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186der-3", + "name": "swt_ln1186mt3_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1186-wt3" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5860450-1_int", + "name": "swt_ln4651075_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1047575" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5837361-8_int", + "name": "swt_v7995_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e182745" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5860423-3_int", + "name": "swt_ln4641075_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q14733" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s2s3_2", + "name": "swt_hvmv69s3b1_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv69sub3_hsb" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1009805", + "name": "swt_ln0621886_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5621886-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6198039-1_int", + "name": "swt_a8869_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e206217" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "n1136027", + "name": "swt_ln0409774_sw", + "phases": "A", + "status": "CLOSED", + "to": "d6409775-4_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "l2729430", + "name": "swt_ln0017316_sw", + "phases": "B", + "status": "CLOSED", + "to": "d6017316-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6023352-1_int", + "name": "swt_l9407_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e184626" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d6140778-1_int", + "name": "swt_l5565_48332_sw", + "phases": "B", + "status": "CLOSED", + "to": "e182731" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026chp-1", + "name": "swt_ln5001chp_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1026chp-2" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069der480-1", + "name": "swt_dg1069mt1_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1069-mt1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6138608-3_int", + "name": "swt_ln4586093_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q14404" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3085398", + "name": "swt_ln0653457_sw", + "phases": "ABC", + "status": "OPEN", + "to": "d5653457-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5534969-2_int", + "name": "swt_v7173_48332_sw", + "phases": "ABC", + "status": "OPEN", + "to": "e182729" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209der480-1", + "name": "swt_dg1209dies_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1209-dies1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_10", + "name": "swt_hvmv69s2b3_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv69sub2_lnb" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6290228-6_int", + "name": "swt_2002200004991174_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q16642" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089der480-2", + "name": "swt_dg1089dies_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1089-dies1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142818", + "name": "swt_ln0504876_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5504876-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d5472341-1_int", + "name": "swt_ln0247162_sw", + "phases": "B", + "status": "CLOSED", + "to": "f739842" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2858166", + "name": "swt_ln0863704_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5863704-2_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "n1139545", + "name": "swt_ln0712477_sw", + "phases": "C", + "status": "CLOSED", + "to": "d5712477-3_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "m2001201", + "name": "swt_ln2001201_sw", + "phases": "C", + "status": "CLOSED", + "to": "d2001201_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der-5", + "name": "swt_ln2001ess2_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m2001-ess2" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6108141-1_int", + "name": "swt_v9111_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e206209" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5926308-3_int", + "name": "swt_ln4625696_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q14412" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142der480-1", + "name": "swt_dg1142lng_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1142-lng1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "n1138594", + "name": "swt_ln0774470_sw", + "phases": "A", + "status": "CLOSED", + "to": "d5774470-2_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186der-1", + "name": "swt_ln1186mt1_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1186-wt1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5799561-2_int", + "name": "swt_a8611_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e193509" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69sub2_lnb", + "name": "swt_hvmv69s2b4_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv69s2s3_1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2879078", + "name": "swt_ln0108145_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d6108145-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1136670", + "name": "swt_ln0956471_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5956471-2_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026915", + "name": "swt_ln0774458_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5774457-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "l3066818", + "name": "swt_ln0653469_sw", + "phases": "B", + "status": "CLOSED", + "to": "d5653469-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5867591-1_int", + "name": "swt_v7041_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e183472" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5710794-3_int", + "name": "swt_hvmv69s1b2_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e192860" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089174", + "name": "swt_ln05534967_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5534967-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m3032981", + "name": "swt_ln0504019_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d6504019-6_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "d5712486-1_int", + "name": "swt_x8271_48332_sw", + "phases": "C", + "status": "CLOSED", + "to": "e206210" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d5806920-1_int", + "name": "swt_v7313_48332_sw", + "phases": "B", + "status": "CLOSED", + "to": "e182726" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "n1137999", + "name": "swt_ln0440002_sw", + "phases": "C", + "status": "CLOSED", + "to": "d6440002-2_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069230", + "name": "swt_tsw10691069_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1069300" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69sub2_lnb", + "name": "swt_hvmv69s2b1_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv69sub2_hsb" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv11sub3_lsb", + "name": "swt_hvmv69s3b2_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e203026" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5563942-4_int", + "name": "swt_2002200004868472_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q16483" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5502543-2_int", + "name": "swt_ln4625713_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q14413" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5587291-3_int", + "name": "swt_2002200004641085_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q14734" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5513564-1_int", + "name": "swt_xj171_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e192201" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5535139-1_int", + "name": "swt_l5437_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e183473" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1140519", + "name": "swt_ln0895780_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5895780-3_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5956499-2_int", + "name": "swt_ln4625680_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q14411" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "m2000701", + "name": "swt_ln2000701_sw", + "phases": "B", + "status": "CLOSED", + "to": "d2000701_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "n1144667", + "name": "swt_ln0712587_sw", + "phases": "A", + "status": "CLOSED", + "to": "d5712587-2_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5682346-3_int", + "name": "swt_g9343_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e206211" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5534970-1_int", + "name": "swt_l9191_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e182732" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "l2692000", + "name": "swt_tsw568613_sw", + "phases": "A", + "status": "OPEN", + "to": "l2841000" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "228-961799-3_int", + "name": "swt_wg127_48332_sw", + "phases": "C", + "status": "OPEN", + "to": "193-46661" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv11sub2_lsb", + "name": "swt_hvmv69s2b2_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1047300" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d5565090-1_int", + "name": "swt_x8225_48332_sw", + "phases": "B", + "status": "CLOSED", + "to": "e182744" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3047059", + "name": "swt_tsw30473047_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "l3047060" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047pv-2", + "name": "swt_ln1047pvfrm_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1047pv-1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5861005-2_int", + "name": "swt_ln3693186_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q1301" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv115_hsb1", + "name": "swt_hvmv115b1_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv115_hsb2" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "regxfmr_hvmv69sub1_lsb1", + "name": "swt_hvmv69s1b4_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv69sub1_lsb2" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2990827", + "name": "swt_tsw10891089_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "l2990828" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der-4", + "name": "swt_ln2001ess1_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m2001-ess1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der-3", + "name": "swt_ln2001mt3_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m2001-mt3" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "n1136030", + "name": "swt_ln0804798_sw", + "phases": "B", + "status": "CLOSED", + "to": "d5804798-3_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5958866-1_int", + "name": "swt_a8645_48332_sw", + "phases": "ABC", + "status": "OPEN", + "to": "e183493" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "d6141147-1_int", + "name": "swt_ln0141147_sw", + "phases": "C", + "status": "CLOSED", + "to": "m1108317" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089der480-1", + "name": "swt_dg1089lng_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1089-lng1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089112", + "name": "swt_ln0138609_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d6138609-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "p829957", + "name": "swt_ln0746703_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5746703-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d6231996-1_int", + "name": "swt_l5659_48332_sw", + "phases": "B", + "status": "CLOSED", + "to": "e206614" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "d6320328-1_int", + "name": "swt_tsw320328_sw", + "phases": "C", + "status": "OPEN", + "to": "l2879062" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69sub1_lsb2", + "name": "swt_hvmv69s1b1_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv69sub1_hsb" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "m2000901", + "name": "swt_ln2000901_sw", + "phases": "C", + "status": "CLOSED", + "to": "d2000901_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "m2000401", + "name": "swt_ln2000401_sw", + "phases": "A", + "status": "CLOSED", + "to": "d2000401_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5472350-1_int", + "name": "swt_ln5472335_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1089120" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6077791-3_int", + "name": "swt_ln0077781_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1047522" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d6047588-1_int", + "name": "swt_ln247171_sw", + "phases": "B", + "status": "CLOSED", + "to": "f739844" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "m2001301", + "name": "swt_ln2001301_sw", + "phases": "A", + "status": "CLOSED", + "to": "d2001301_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "m2001001", + "name": "swt_ln2001001_sw", + "phases": "B", + "status": "CLOSED", + "to": "d2001001_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d5865224-1_int", + "name": "swt_ln247160_sw", + "phases": "B", + "status": "CLOSED", + "to": "f739841" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5746546-1_int", + "name": "swt_a333_48332_sw", + "phases": "ABC", + "status": "OPEN", + "to": "e182723" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186072", + "name": "swt_ln0048634_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d6048634-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2973156", + "name": "swt_ln0017295_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d6017295-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6170302-1_int", + "name": "swt_ln0170302_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "l2879773" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186der-2", + "name": "swt_ln1186mt2_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1186-wt2" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5835167-6_int", + "name": "swt_ln4625876_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q14414" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5686080-1_int", + "name": "swt_ln293471_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "f739845" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der-1", + "name": "swt_ln2001mt1_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m2001-mt1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d5655682-1_int", + "name": "swt_l5491_48332_sw", + "phases": "B", + "status": "CLOSED", + "to": "e182725" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_1089-dies1", + "power_rating": "750.00", + "primary_voltage": "12470.00", + "reactance": "0.057500", + "resistance": "0.00400", + "secondary_voltage": "480.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_1089-dies1", + "continuous_rating_A": "38.19", + "continuous_rating_B": "38.19", + "continuous_rating_C": "38.19", + "emergency_rating_A": "52.08", + "emergency_rating_B": "52.08", + "emergency_rating_C": "52.08", + "from": "m1089220", + "name": "xf_1089-dies1", + "phases": "ABCN", + "to": "m1089der480-2" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_1089-lng1", + "power_rating": "2000.00", + "primary_voltage": "12470.00", + "reactance": "0.057500", + "resistance": "0.00400", + "secondary_voltage": "480.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_1089-lng1", + "continuous_rating_A": "101.86", + "continuous_rating_B": "101.86", + "continuous_rating_C": "101.86", + "emergency_rating_A": "138.90", + "emergency_rating_B": "138.90", + "emergency_rating_C": "138.90", + "from": "m1089186", + "name": "xf_1089-lng1", + "phases": "ABCN", + "to": "m1089der480-1" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_1209-wt123", + "power_rating": "250.00", + "primary_voltage": "12470.00", + "reactance": "0.057500", + "resistance": "0.00400", + "secondary_voltage": "480.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_1209-wt123", + "continuous_rating_A": "12.73", + "continuous_rating_B": "12.73", + "continuous_rating_C": "12.73", + "emergency_rating_A": "17.36", + "emergency_rating_B": "17.36", + "emergency_rating_C": "17.36", + "from": "m1186000", + "name": "xf_1209-wt123", + "phases": "ABCN", + "to": "m1186der480-1" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_hvmv69_11sub3", + "power_rating": "20000.00", + "primary_voltage": "69000.00", + "reactance": "0.079400", + "resistance": "0.013400", + "secondary_voltage": "12470.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_hvmv69_11sub3", + "continuous_rating_A": "184.08", + "continuous_rating_B": "184.08", + "continuous_rating_C": "184.08", + "emergency_rating_A": "251.02", + "emergency_rating_B": "251.02", + "emergency_rating_C": "251.02", + "from": "hvmv69sub3_hsb", + "name": "xf_hvmv69_11sub3", + "phases": "ABCN", + "to": "regxfmr_hvmv11sub3_lsb" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_hvmv69_11sub2", + "power_rating": "20000.00", + "primary_voltage": "69000.00", + "reactance": "0.079400", + "resistance": "0.013400", + "secondary_voltage": "12470.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_hvmv69_11sub2", + "continuous_rating_A": "184.08", + "continuous_rating_B": "184.08", + "continuous_rating_C": "184.08", + "emergency_rating_A": "251.02", + "emergency_rating_B": "251.02", + "emergency_rating_C": "251.02", + "from": "hvmv69sub2_hsb", + "name": "xf_hvmv69_11sub2", + "phases": "ABCN", + "to": "regxfmr_hvmv11sub2_lsb" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "DELTA_GWYE", + "name": "xcon_hvmv115_69sub", + "power_rating": "75000.00", + "primary_voltage": "115000.00", + "reactance": "0.070500", + "resistance": "0.013400", + "secondary_voltage": "69000.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_hvmv115_69sub", + "continuous_rating_A": "414.19", + "continuous_rating_B": "414.19", + "continuous_rating_C": "414.19", + "emergency_rating_A": "564.80", + "emergency_rating_B": "564.80", + "emergency_rating_C": "564.80", + "from": "hvmv115_hsb2", + "name": "xf_hvmv115_69sub", + "phases": "ABCN", + "to": "regxfmr_hvmv69sub1_lsb1" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_hvmv69_11sub1", + "power_rating": "20000.00", + "primary_voltage": "69000.00", + "reactance": "0.079400", + "resistance": "0.013400", + "secondary_voltage": "12470.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_hvmv69_11sub1", + "continuous_rating_A": "184.08", + "continuous_rating_B": "184.08", + "continuous_rating_C": "184.08", + "emergency_rating_A": "251.02", + "emergency_rating_B": "251.02", + "emergency_rating_C": "251.02", + "from": "hvmv69sub1_hsb", + "name": "xf_hvmv69_11sub1", + "phases": "ABCN", + "to": "regxfmr_hvmv11sub1_lsb" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_2001-mt123", + "power_rating": "750.00", + "primary_voltage": "12470.00", + "reactance": "0.057500", + "resistance": "0.00400", + "secondary_voltage": "480.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_2001-mt123", + "continuous_rating_A": "38.19", + "continuous_rating_B": "38.19", + "continuous_rating_C": "38.19", + "emergency_rating_A": "52.08", + "emergency_rating_B": "52.08", + "emergency_rating_C": "52.08", + "from": "m2001500", + "name": "xf_2001-mt123", + "phases": "ABCN", + "to": "m2001der480-1" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_1069-mt1", + "power_rating": "300.00", + "primary_voltage": "12470.00", + "reactance": "0.057500", + "resistance": "0.00400", + "secondary_voltage": "480.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_1069-mt1", + "continuous_rating_A": "15.28", + "continuous_rating_B": "15.28", + "continuous_rating_C": "15.28", + "emergency_rating_A": "20.83", + "emergency_rating_B": "20.83", + "emergency_rating_C": "20.83", + "from": "m1069215", + "name": "xf_1069-mt1", + "phases": "ABCN", + "to": "m1069der480-1" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_1142-lng1", + "power_rating": "150.00", + "primary_voltage": "12470.00", + "reactance": "0.057500", + "resistance": "0.00400", + "secondary_voltage": "480.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_1142-lng1", + "continuous_rating_A": "7.64", + "continuous_rating_B": "7.64", + "continuous_rating_C": "7.64", + "emergency_rating_A": "10.42", + "emergency_rating_B": "10.42", + "emergency_rating_C": "10.42", + "from": "m1142813", + "name": "xf_1142-lng1", + "phases": "ABCN", + "to": "m1142der480-1" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_2001-ess12", + "power_rating": "750.00", + "primary_voltage": "12470.00", + "reactance": "0.057500", + "resistance": "0.00400", + "secondary_voltage": "480.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_2001-ess12", + "continuous_rating_A": "38.19", + "continuous_rating_B": "38.19", + "continuous_rating_C": "38.19", + "emergency_rating_A": "52.08", + "emergency_rating_B": "52.08", + "emergency_rating_C": "52.08", + "from": "m2001500", + "name": "xf_2001-ess12", + "phases": "ABCN", + "to": "m2001der480-2" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_1209-dies1", + "power_rating": "750.00", + "primary_voltage": "12470.00", + "reactance": "0.057500", + "resistance": "0.00400", + "secondary_voltage": "480.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_1209-dies1", + "continuous_rating_A": "38.19", + "continuous_rating_B": "38.19", + "continuous_rating_C": "38.19", + "emergency_rating_A": "52.08", + "emergency_rating_B": "52.08", + "emergency_rating_C": "52.08", + "from": "e192258", + "name": "xf_1209-dies1", + "phases": "ABCN", + "to": "m1209der480-1" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3235945", + "name": "xf_t5356796c", + "phases": "CS", + "to": "x3235945c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2955077", + "name": "xf_t5260543c", + "phases": "CS", + "to": "x2955077c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2916627", + "name": "xf_t5138563a", + "phases": "AS", + "to": "x2916627a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2936211", + "name": "xf_t5260567c", + "phases": "CS", + "to": "x2936211c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3122819", + "name": "xf_t5302860c", + "phases": "CS", + "to": "x3122819c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2691936", + "name": "xf_t5356009a", + "phases": "AS", + "to": "x2691936a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2673305", + "name": "xf_t5138236b", + "phases": "BS", + "to": "x2673305b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l3217056", + "name": "xf_t5218474a", + "phases": "AS", + "to": "x3217056a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2748152", + "name": "xf_t5321849b", + "phases": "BS", + "to": "x2748152b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2936276", + "name": "xf_t5260458b", + "phases": "BS", + "to": "x2936276b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2879773", + "name": "xf_t5207290a", + "phases": "AS", + "to": "x2879773a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3119793", + "name": "xf_t226024307b", + "phases": "BS", + "to": "x3119793b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3172805", + "name": "xf_t226964880a", + "phases": "AS", + "to": "x3172805a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2729401", + "name": "xf_t5355597b", + "phases": "BS", + "to": "x2729401b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2000711", + "name": "xf_t2000711b", + "phases": "BS", + "to": "x2000711b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2691946", + "name": "xf_t28147974b", + "phases": "BS", + "to": "x2691946b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2860484", + "name": "xf_t5323255b", + "phases": "BS", + "to": "x2860484b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3234185", + "name": "xf_t5323388b", + "phases": "BS", + "to": "x3234185b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3108449", + "name": "xf_t228622562a", + "phases": "AS", + "to": "x3108449a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2748143", + "name": "xf_t28121368a", + "phases": "AS", + "to": "x2748143a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3048889", + "name": "xf_t28128464c", + "phases": "CS", + "to": "x3048889c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3235246", + "name": "xf_t5323279b", + "phases": "BS", + "to": "x3235246b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3104135", + "name": "xf_t21399508a", + "phases": "AS", + "to": "x3104135a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3197653", + "name": "xf_t5339004b", + "phases": "BS", + "to": "x3197653b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2000408", + "name": "xf_t2000408a", + "phases": "AS", + "to": "x2000408a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3197642", + "name": "xf_t5391979c", + "phases": "CS", + "to": "x3197642c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3216349", + "name": "xf_t5337708b", + "phases": "BS", + "to": "x3216349b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2804247", + "name": "xf_t5391737b", + "phases": "BS", + "to": "x2804247b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2673310", + "name": "xf_t5138562a", + "phases": "AS", + "to": "x2673310a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2860487", + "name": "xf_t5138586c", + "phases": "CS", + "to": "x2860487c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2955078", + "name": "xf_t5260542a", + "phases": "AS", + "to": "x2955078a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3197618", + "name": "xf_t5356008a", + "phases": "AS", + "to": "x3197618a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3178980", + "name": "xf_t5302510c", + "phases": "CS", + "to": "x3178980c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2955006", + "name": "xf_t5356797c", + "phases": "CS", + "to": "x2955006c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2748133", + "name": "xf_t5302861c", + "phases": "CS", + "to": "x2748133c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2973158", + "name": "xf_t5138259c", + "phases": "CS", + "to": "x2973158c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3082993", + "name": "xf_t226159329a", + "phases": "AS", + "to": "x3082993a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3086078", + "name": "xf_t5218473a", + "phases": "AS", + "to": "x3086078a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3066804", + "name": "xf_t21380599a", + "phases": "AS", + "to": "x3066804a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l3086079", + "name": "xf_t5260457b", + "phases": "BS", + "to": "x3086079b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2786274", + "name": "xf_t5207291c", + "phases": "CS", + "to": "x2786274c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3235243", + "name": "xf_t5275008c", + "phases": "CS", + "to": "x3235243c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3176656", + "name": "xf_t226193170a", + "phases": "AS", + "to": "x3176656a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3178969", + "name": "xf_t5355596b", + "phases": "BS", + "to": "x3178969b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2000712", + "name": "xf_t2000712b", + "phases": "BS", + "to": "x2000712b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2879068", + "name": "xf_t5323254b", + "phases": "BS", + "to": "x2879068b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75B", + "from": "l2690187", + "name": "xf_t226308716b", + "phases": "BS", + "to": "x2690187b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2690941", + "name": "xf_t5323387b", + "phases": "BS", + "to": "x2690941b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2860477", + "name": "xf_t28121587a", + "phases": "AS", + "to": "x2860477a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2973169", + "name": "xf_t21397304a", + "phases": "AS", + "to": "x2973169a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3066826", + "name": "xf_t5339003b", + "phases": "BS", + "to": "x3066826b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l0247171", + "name": "xf_t5247171b", + "phases": "BS", + "to": "x0247171b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2000409", + "name": "xf_t2000409a", + "phases": "AS", + "to": "x2000409a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2860483", + "name": "xf_t21396699b", + "phases": "BS", + "to": "x2860483b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3160104", + "name": "xf_t5337707b", + "phases": "BS", + "to": "x3160104b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l3104115", + "name": "xf_t5391738b", + "phases": "BS", + "to": "x3104115b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3010565", + "name": "xf_t5138343c", + "phases": "CS", + "to": "x3010565c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2692661", + "name": "xf_t5260650a", + "phases": "AS", + "to": "x2692661a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3122824", + "name": "xf_t5302402a", + "phases": "AS", + "to": "x3122824a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3104121", + "name": "xf_t5138561a", + "phases": "AS", + "to": "x3104121a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3197637", + "name": "xf_t5138585c", + "phases": "CS", + "to": "x3197637c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2954339", + "name": "xf_t5391739b", + "phases": "BS", + "to": "x2954339b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2692600", + "name": "xf_t5356798c", + "phases": "CS", + "to": "x2692600c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3141389", + "name": "xf_t5356007a", + "phases": "AS", + "to": "x3141389a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2991911", + "name": "xf_t5138258c", + "phases": "CS", + "to": "x2991911c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2841623", + "name": "xf_t5294844a", + "phases": "AS", + "to": "x2841623a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3181545", + "name": "xf_t226193702c", + "phases": "CS", + "to": "x3181545c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2936270", + "name": "xf_t5218472a", + "phases": "AS", + "to": "x2936270a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3103822", + "name": "xf_t228665517c", + "phases": "CS", + "to": "x3103822c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2955005", + "name": "xf_t5260589b", + "phases": "BS", + "to": "x2955005b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2860481", + "name": "xf_t5338908c", + "phases": "CS", + "to": "x2860481c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3160123", + "name": "xf_t21015706a", + "phases": "AS", + "to": "x3160123a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3253570", + "name": "xf_t228314460c", + "phases": "CS", + "to": "x3253570c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3179682", + "name": "xf_t5207292c", + "phases": "CS", + "to": "x3179682c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2916606", + "name": "xf_t5275007c", + "phases": "CS", + "to": "x2916606c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2860479", + "name": "xf_t5355595b", + "phases": "BS", + "to": "x2860479b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2000406", + "name": "xf_t2000406a", + "phases": "AS", + "to": "x2000406a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3254203", + "name": "xf_t5323233b", + "phases": "BS", + "to": "x3254203b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2710530", + "name": "xf_t21381118b", + "phases": "BS", + "to": "x2710530b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2991943", + "name": "xf_t21399619c", + "phases": "CS", + "to": "x2991943c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2879054", + "name": "xf_t5247061a", + "phases": "AS", + "to": "x2879054a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2916619", + "name": "xf_t5339006b", + "phases": "BS", + "to": "x2916619b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2897784", + "name": "xf_t5247170b", + "phases": "BS", + "to": "x2897784b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2745806", + "name": "xf_t226194262c", + "phases": "CS", + "to": "x2745806c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3104113", + "name": "xf_t5138560a", + "phases": "AS", + "to": "x3104113a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2897775", + "name": "xf_t5138342c", + "phases": "CS", + "to": "x2897775c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2804259", + "name": "xf_t28127372a", + "phases": "AS", + "to": "x2804259a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3010563", + "name": "xf_t5294845a", + "phases": "AS", + "to": "x3010563a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3178976", + "name": "xf_t21397721a", + "phases": "AS", + "to": "x3178976a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2729430", + "name": "xf_t21248901b", + "phases": "BS", + "to": "x2729430b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3448661", + "name": "xf_t2223878647b", + "phases": "BS", + "to": "x3448661b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2955074", + "name": "xf_t5260479a", + "phases": "AS", + "to": "x2955074a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2805036", + "name": "xf_t5275248b", + "phases": "BS", + "to": "x2805036b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2000710", + "name": "xf_t2000710b", + "phases": "BS", + "to": "x2000710b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2914323", + "name": "xf_t5355376b", + "phases": "BS", + "to": "x2914323b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2000407", + "name": "xf_t2000407a", + "phases": "AS", + "to": "x2000407a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3065750", + "name": "xf_t5323389b", + "phases": "BS", + "to": "x3065750b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2991906", + "name": "xf_t5247060a", + "phases": "AS", + "to": "x2991906a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2785535", + "name": "xf_t5339005b", + "phases": "BS", + "to": "x2785535b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3254211", + "name": "xf_t5247084b", + "phases": "BS", + "to": "x3254211b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3141395", + "name": "xf_t28149184c", + "phases": "CS", + "to": "x3141395c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2991919", + "name": "xf_t5302400a", + "phases": "AS", + "to": "x2991919a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2879077", + "name": "xf_t5337709b", + "phases": "BS", + "to": "x2879077b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2879752", + "name": "xf_t5330122b", + "phases": "BS", + "to": "x2879752b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3122826", + "name": "xf_t5302731a", + "phases": "AS", + "to": "x3122826a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2688693", + "name": "xf_t225918936c", + "phases": "CS", + "to": "x2688693c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2685809", + "name": "xf_t225533162a", + "phases": "AS", + "to": "x2685809a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l2814529", + "name": "xf_t28120126a", + "phases": "AS", + "to": "x2814529a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3101789", + "name": "xf_t5294842a", + "phases": "AS", + "to": "x3101789a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2674051", + "name": "xf_t21389831a", + "phases": "AS", + "to": "x2674051a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l2814529", + "name": "xf_t28120126c", + "phases": "CS", + "to": "x2814529c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l2814529", + "name": "xf_t28120126b", + "phases": "BS", + "to": "x2814529b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3178975", + "name": "xf_t5321845b", + "phases": "BS", + "to": "x3178975b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2917333", + "name": "xf_t5260632a", + "phases": "AS", + "to": "x2917333a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75B", + "from": "l2708744", + "name": "xf_t226308710b", + "phases": "BS", + "to": "x2708744b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3216123", + "name": "xf_t5338926a", + "phases": "AS", + "to": "x3216123a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3085403", + "name": "xf_t5293668a", + "phases": "AS", + "to": "x3085403a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2689691", + "name": "xf_t5355375a", + "phases": "AS", + "to": "x2689691a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3649300", + "name": "xf_t2224237546a", + "phases": "AS", + "to": "x3649300a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2729429", + "name": "xf_t5293644a", + "phases": "AS", + "to": "x2729429a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3081380", + "name": "xf_t225700953a", + "phases": "AS", + "to": "x3081380a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3197660", + "name": "xf_t5323275b", + "phases": "BS", + "to": "x3197660b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2000404", + "name": "xf_t2000404a", + "phases": "AS", + "to": "x2000404a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2766715", + "name": "xf_t5355593b", + "phases": "BS", + "to": "x2766715b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3160098", + "name": "xf_t5339048a", + "phases": "AS", + "to": "x3160098a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2710546", + "name": "xf_t5337704b", + "phases": "BS", + "to": "x2710546b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2990826", + "name": "xf_t5337619a", + "phases": "AS", + "to": "x2990826a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3082992", + "name": "xf_t5337728a", + "phases": "AS", + "to": "x3082992a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2973164", + "name": "xf_t5302514a", + "phases": "AS", + "to": "x2973164a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2991917", + "name": "xf_t5391757b", + "phases": "BS", + "to": "x2991917b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2691953", + "name": "xf_t5302732a", + "phases": "AS", + "to": "x2691953a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2990826", + "name": "xf_t5337619c", + "phases": "CS", + "to": "x2990826c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2990826", + "name": "xf_t5337619b", + "phases": "BS", + "to": "x2990826b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2786266", + "name": "xf_t5260631a", + "phases": "AS", + "to": "x2786266a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2785522", + "name": "xf_t28127681b", + "phases": "BS", + "to": "x2785522b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3178982", + "name": "xf_t5294843a", + "phases": "AS", + "to": "x3178982a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2803194", + "name": "xf_t227917130c", + "phases": "CS", + "to": "x2803194c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2973153", + "name": "xf_t5338925a", + "phases": "AS", + "to": "x2973153a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l3011293", + "name": "xf_t28129466b", + "phases": "BS", + "to": "x3011293b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l3011293", + "name": "xf_t28129466c", + "phases": "CS", + "to": "x3011293c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l3011293", + "name": "xf_t28129466a", + "phases": "AS", + "to": "x3011293a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3104136", + "name": "xf_t5338949b", + "phases": "BS", + "to": "x3104136b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2860500", + "name": "xf_t5323274b", + "phases": "BS", + "to": "x2860500b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2841633", + "name": "xf_t5293645a", + "phases": "AS", + "to": "x2841633a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3254206", + "name": "xf_t5355592b", + "phases": "BS", + "to": "x3254206b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3104157", + "name": "xf_t5293427c", + "phases": "CS", + "to": "x3104157c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2000405", + "name": "xf_t2000405a", + "phases": "AS", + "to": "x2000405a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2691948", + "name": "xf_t5337703b", + "phases": "BS", + "to": "x2691948b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2973148", + "name": "xf_t5339047a", + "phases": "AS", + "to": "x2973148a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2841631", + "name": "xf_t5391976c", + "phases": "CS", + "to": "x2841631c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3008237", + "name": "xf_t226193838c", + "phases": "CS", + "to": "x3008237c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2841636", + "name": "xf_t5391758b", + "phases": "BS", + "to": "x2841636b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3141403", + "name": "xf_t21399707a", + "phases": "CS", + "to": "x3141403a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2860491", + "name": "xf_t5302733b", + "phases": "BS", + "to": "x2860491b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2748131", + "name": "xf_t5323250b", + "phases": "BS", + "to": "x2748131b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2897766", + "name": "xf_t28128007c", + "phases": "CS", + "to": "x2897766c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2860491", + "name": "xf_t5302733a", + "phases": "AS", + "to": "x2860491a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2973833", + "name": "xf_t5260630b", + "phases": "BS", + "to": "x2973833b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3048963", + "name": "xf_t5260521b", + "phases": "BS", + "to": "x3048963b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3085399", + "name": "xf_t5302862c", + "phases": "CS", + "to": "x3085399c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3160100", + "name": "xf_t5321847b", + "phases": "BS", + "to": "x3160100b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2804249", + "name": "xf_t21389962c", + "phases": "CS", + "to": "x2804249c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2710511", + "name": "xf_t21357515a", + "phases": "AS", + "to": "x2710511a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3085395", + "name": "xf_t21391094a", + "phases": "AS", + "to": "x3085395a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2764411", + "name": "xf_t226010605c", + "phases": "CS", + "to": "x2764411c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3104796", + "name": "xf_t5260569c", + "phases": "CS", + "to": "x3104796c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2673309", + "name": "xf_t5138472c", + "phases": "CS", + "to": "x2673309c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2879064", + "name": "xf_t5138581a", + "phases": "AS", + "to": "x2879064a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2000402", + "name": "xf_t2000402a", + "phases": "AS", + "to": "x2000402a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2935566", + "name": "xf_t5441854c", + "phases": "CS", + "to": "x2935566c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2973152", + "name": "xf_t5323253b", + "phases": "BS", + "to": "x2973152b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2822858", + "name": "xf_t5355591b", + "phases": "BS", + "to": "x2822858b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2897800", + "name": "xf_t5323277b", + "phases": "BS", + "to": "x2897800b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2785536", + "name": "xf_t5339002b", + "phases": "BS", + "to": "x2785536b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3047073", + "name": "xf_t227917133c", + "phases": "CS", + "to": "x3047073c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2897801", + "name": "xf_t21470405a", + "phases": "AS", + "to": "x2897801a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2766750", + "name": "xf_t5293424c", + "phases": "CS", + "to": "x2766750c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2710532", + "name": "xf_t5293666c", + "phases": "CS", + "to": "x2710532c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3254214", + "name": "xf_t5337706b", + "phases": "BS", + "to": "x3254214b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3216350", + "name": "xf_t5391977a", + "phases": "AS", + "to": "x3216350a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5B", + "from": "l3254915", + "name": "xf_t5260520b", + "phases": "BS", + "to": "x3254915b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l3142078", + "name": "xf_t5330121b", + "phases": "BS", + "to": "x3142078b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2766719", + "name": "xf_t21357865a", + "phases": "AS", + "to": "x2766719a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2860489", + "name": "xf_t5302405a", + "phases": "AS", + "to": "x2860489a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2878848", + "name": "xf_t22112168887c", + "phases": "CS", + "to": "x2878848c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l3217057", + "name": "xf_t5218475a", + "phases": "AS", + "to": "x3217057a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3085390", + "name": "xf_t5321848b", + "phases": "BS", + "to": "x3085390b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2692655", + "name": "xf_t21389307c", + "phases": "CS", + "to": "x2692655c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2842329", + "name": "xf_t5260568c", + "phases": "CS", + "to": "x2842329c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2726974", + "name": "xf_t226193395b", + "phases": "BS", + "to": "x2726974b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2972930", + "name": "xf_t5338927a", + "phases": "AS", + "to": "x2972930a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2879066", + "name": "xf_t5323252b", + "phases": "BS", + "to": "x2879066b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2000403", + "name": "xf_t2000403a", + "phases": "AS", + "to": "x2000403a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2860504", + "name": "xf_t5293667a", + "phases": "AS", + "to": "x2860504a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2763153", + "name": "xf_t5293425a", + "phases": "AS", + "to": "x2763153a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l3178988", + "name": "xf_t5339001b", + "phases": "BS", + "to": "x3178988b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3226771", + "name": "xf_t227100746a", + "phases": "AS", + "to": "x3226771a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2916234", + "name": "xf_t228549643a", + "phases": "AS", + "to": "x2916234a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3048211", + "name": "xf_t21396015a", + "phases": "AS", + "to": "x3048211a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2785547", + "name": "xf_t5337705b", + "phases": "BS", + "to": "x2785547b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2916602", + "name": "xf_t5339049a", + "phases": "AS", + "to": "x2916602a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2860478", + "name": "xf_t5355590b", + "phases": "BS", + "to": "x2860478b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2728247", + "name": "xf_t5337729b", + "phases": "BS", + "to": "x2728247b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3029495", + "name": "xf_t5391736b", + "phases": "BS", + "to": "x3029495b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3141402", + "name": "xf_t5391978c", + "phases": "CS", + "to": "x3141402c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2728247", + "name": "xf_t5337729c", + "phases": "CS", + "to": "x2728247c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2728247", + "name": "xf_t5337729a", + "phases": "AS", + "to": "x2728247a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2841634", + "name": "xf_t5392038b", + "phases": "BS", + "to": "x2841634b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2711226", + "name": "xf_t5260527b", + "phases": "BS", + "to": "x2711226b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2989565", + "name": "xf_t21389237a", + "phases": "AS", + "to": "x2989565a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75A", + "from": "l2802481", + "name": "xf_t226308730a", + "phases": "AS", + "to": "x2802481a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2917310", + "name": "xf_t5260503b", + "phases": "BS", + "to": "x2917310b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3027124", + "name": "xf_t226195194c", + "phases": "CS", + "to": "x3027124c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3342743", + "name": "xf_t2223703238c", + "phases": "CS", + "to": "x3342743c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2821770", + "name": "xf_t227917119a", + "phases": "AS", + "to": "x2821770a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2000913", + "name": "xf_t2000913c", + "phases": "CS", + "to": "x2000913c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3048205", + "name": "xf_t5274994c", + "phases": "CS", + "to": "x3048205c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3178997", + "name": "xf_t5293422c", + "phases": "CS", + "to": "x3178997c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2001011", + "name": "xf_t2001011b", + "phases": "BS", + "to": "x2001011b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l3207907", + "name": "xf_t5293664a", + "phases": "AS", + "to": "x3207907a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75B", + "from": "l3207907", + "name": "xf_t5293664b", + "phases": "BS", + "to": "x3207907b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l3207907", + "name": "xf_t5293664c", + "phases": "CS", + "to": "x3207907c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3150961", + "name": "xf_t223400157c", + "phases": "CS", + "to": "x3150961c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct250C", + "from": "l3234149", + "name": "xf_t227944551c", + "phases": "CS", + "to": "x3234149c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3216347", + "name": "xf_t5138413c", + "phases": "CS", + "to": "x3216347c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3010556", + "name": "xf_t5138655a", + "phases": "AS", + "to": "x3010556a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct250A", + "from": "l3234149", + "name": "xf_t227944551a", + "phases": "AS", + "to": "x3234149a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct250B", + "from": "l3234149", + "name": "xf_t227944551b", + "phases": "BS", + "to": "x3234149b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2748839", + "name": "xf_t5260502b", + "phases": "BS", + "to": "x2748839b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3179699", + "name": "xf_t21393454b", + "phases": "BS", + "to": "x3179699b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l3214549", + "name": "xf_t226308731a", + "phases": "AS", + "to": "x3214549a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2000914", + "name": "xf_t2000914c", + "phases": "CS", + "to": "x2000914c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3254237", + "name": "xf_t21482181a", + "phases": "AS", + "to": "x3254237a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2983432", + "name": "xf_t225534325a", + "phases": "AS", + "to": "x2983432a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3139103", + "name": "xf_t225767272a", + "phases": "AS", + "to": "x3139103a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3122849", + "name": "xf_t5293423b", + "phases": "BS", + "to": "x3122849b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75C", + "from": "l3645811", + "name": "xf_t2224230689c", + "phases": "CS", + "to": "x3645811c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2001012", + "name": "xf_t2001012b", + "phases": "BS", + "to": "x2001012b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2973166", + "name": "xf_t5293665c", + "phases": "CS", + "to": "x2973166c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3104155", + "name": "xf_t21474587c", + "phases": "CS", + "to": "x3104155c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3159448", + "name": "xf_t5337684a", + "phases": "AS", + "to": "x3159448a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2785523", + "name": "xf_t5138412c", + "phases": "CS", + "to": "x2785523c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3082983", + "name": "xf_t226193899b", + "phases": "BS", + "to": "x3082983b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2841628", + "name": "xf_t28120786a", + "phases": "AS", + "to": "x2841628a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2798067", + "name": "xf_t225533237b", + "phases": "BS", + "to": "x2798067b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3142098", + "name": "xf_t5260501b", + "phases": "BS", + "to": "x3142098b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2897769", + "name": "xf_t5337660c", + "phases": "CS", + "to": "x2897769c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2842383", + "name": "xf_t5260634a", + "phases": "AS", + "to": "x2842383a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5B", + "from": "l2689678", + "name": "xf_t226192762b", + "phases": "BS", + "to": "x2689678b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2000911", + "name": "xf_t2000911c", + "phases": "CS", + "to": "x2000911c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2804250", + "name": "xf_t5274992c", + "phases": "CS", + "to": "x2804250c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3649302", + "name": "xf_t2224237653a", + "phases": "AS", + "to": "x3649302a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2710520", + "name": "xf_t5138679a", + "phases": "AS", + "to": "x2710520a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2711224", + "name": "xf_t5260500b", + "phases": "BS", + "to": "x2711224b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3197654", + "name": "xf_t21382992a", + "phases": "AS", + "to": "x3197654a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3235268", + "name": "xf_t28099529c", + "phases": "CS", + "to": "x3235268c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3214071", + "name": "xf_t226194419c", + "phases": "CS", + "to": "x3214071c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2935559", + "name": "xf_t21400185a", + "phases": "AS", + "to": "x2935559a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2000912", + "name": "xf_t2000912c", + "phases": "CS", + "to": "x2000912c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2897771", + "name": "xf_t21148701b", + "phases": "BS", + "to": "x2897771b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3047058", + "name": "xf_t227902981a", + "phases": "AS", + "to": "x3047058a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2973151", + "name": "xf_t5138569a", + "phases": "AS", + "to": "x2973151a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l2673331", + "name": "xf_t5338990b", + "phases": "BS", + "to": "x2673331b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2001010", + "name": "xf_t2001010b", + "phases": "BS", + "to": "x2001010b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3216368", + "name": "xf_t5293663c", + "phases": "CS", + "to": "x3216368c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2767414", + "name": "xf_t5351019c", + "phases": "CS", + "to": "x2767414c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2766718", + "name": "xf_t5138652c", + "phases": "CS", + "to": "x2766718c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2748135", + "name": "xf_t28150172a", + "phases": "AS", + "to": "x2748135a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2748129", + "name": "xf_t5138567a", + "phases": "AS", + "to": "x2748129a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2822868", + "name": "xf_t21397544a", + "phases": "AS", + "to": "x2822868a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l2766499", + "name": "xf_t22112168880c", + "phases": "CS", + "to": "x2766499c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2786204", + "name": "xf_t5223662a", + "phases": "AS", + "to": "x2786204a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3066830", + "name": "xf_t21469960b", + "phases": "BS", + "to": "x3066830b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2000715", + "name": "xf_t2000715b", + "phases": "BS", + "to": "x2000715b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5B", + "from": "l3197624", + "name": "xf_t5323235b", + "phases": "BS", + "to": "x3197624b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2916610", + "name": "xf_t5293660b", + "phases": "BS", + "to": "x2916610b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3122835", + "name": "xf_t5339008b", + "phases": "BS", + "to": "x3122835b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3104132", + "name": "xf_t5302469a", + "phases": "AS", + "to": "x3104132a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3197628", + "name": "xf_t5138651c", + "phases": "CS", + "to": "x3197628c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2954338", + "name": "xf_t5355618b", + "phases": "BS", + "to": "x2954338b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2785519", + "name": "xf_t5138566a", + "phases": "AS", + "to": "x2785519a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2876798", + "name": "xf_t226193745b", + "phases": "BS", + "to": "x2876798b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3030203", + "name": "xf_t5260639c", + "phases": "CS", + "to": "x3030203c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2936216", + "name": "xf_t5223663c", + "phases": "CS", + "to": "x2936216c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3048228", + "name": "xf_t5274997c", + "phases": "CS", + "to": "x3048228c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2000910", + "name": "xf_t2000910c", + "phases": "CS", + "to": "x2000910c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2860480", + "name": "xf_t5323234b", + "phases": "BS", + "to": "x2860480b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3251854", + "name": "xf_t226881700a", + "phases": "AS", + "to": "x3251854a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2861219", + "name": "xf_t21389761b", + "phases": "BS", + "to": "x2861219b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2916617", + "name": "xf_t5339007b", + "phases": "BS", + "to": "x2916617b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3141393", + "name": "xf_t5442373c", + "phases": "CS", + "to": "x3141393c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3645812", + "name": "xf_t2224230754c", + "phases": "CS", + "to": "x3645812c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2710510", + "name": "xf_t5138650c", + "phases": "CS", + "to": "x2710510c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3102793", + "name": "xf_t227734175b", + "phases": "BS", + "to": "x3102793b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2973146", + "name": "xf_t28118903b", + "phases": "BS", + "to": "x2973146b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2991915", + "name": "xf_t5392036b", + "phases": "BS", + "to": "x2991915b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3104122", + "name": "xf_t5138565a", + "phases": "AS", + "to": "x3104122a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3160871", + "name": "xf_t5260638c", + "phases": "CS", + "to": "x3160871c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3217053", + "name": "xf_t5260529c", + "phases": "CS", + "to": "x3217053c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3270814", + "name": "xf_t226191850a", + "phases": "AS", + "to": "x3270814a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2861218", + "name": "xf_t5260505c", + "phases": "CS", + "to": "x2861218c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3197646", + "name": "xf_t5355944b", + "phases": "BS", + "to": "x3197646b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3160863", + "name": "xf_t5223660a", + "phases": "AS", + "to": "x3160863a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3082988", + "name": "xf_t226195153b", + "phases": "BS", + "to": "x3082988b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2000713", + "name": "xf_t2000713b", + "phases": "BS", + "to": "x2000713b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3235946", + "name": "xf_t5356800a", + "phases": "AS", + "to": "x3235946a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2673320", + "name": "xf_t5392037b", + "phases": "BS", + "to": "x2673320b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2822870", + "name": "xf_t21399171c", + "phases": "CS", + "to": "x2822870c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3728038", + "name": "xf_t2224387019a", + "phases": "AS", + "to": "x3728038a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3195318", + "name": "xf_t226194280b", + "phases": "BS", + "to": "x3195318b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3048196", + "name": "xf_t5138237b", + "phases": "BS", + "to": "x3048196b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2804283", + "name": "xf_t5138564a", + "phases": "AS", + "to": "x2804283a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2916609", + "name": "xf_t5138346c", + "phases": "CS", + "to": "x2916609c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3217052", + "name": "xf_t5260528c", + "phases": "CS", + "to": "x3217052c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3048199", + "name": "xf_t5323237b", + "phases": "BS", + "to": "x3048199b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2785529", + "name": "xf_t5355943c", + "phases": "CS", + "to": "x2785529c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3160862", + "name": "xf_t21386143c", + "phases": "CS", + "to": "x3160862c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2842384", + "name": "xf_t5260637c", + "phases": "CS", + "to": "x2842384c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3215385", + "name": "xf_t21384099c", + "phases": "CS", + "to": "x3215385c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l3215385", + "name": "xf_t21384099b", + "phases": "BS", + "to": "x3215385b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2730108", + "name": "xf_t5223661b", + "phases": "BS", + "to": "x2730108b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3215385", + "name": "xf_t21384099a", + "phases": "AS", + "to": "x3215385a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2000714", + "name": "xf_t2000714b", + "phases": "BS", + "to": "x2000714b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2822860", + "name": "xf_t5323236b", + "phases": "BS", + "to": "x2822860b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3104124", + "name": "xf_t5356065b", + "phases": "BS", + "to": "x3104124b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3011229", + "name": "xf_t5356801a", + "phases": "AS", + "to": "x3011229a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2897778", + "name": "xf_t5302468a", + "phases": "AS", + "to": "x2897778a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2851933", + "name": "xf_t21393643c", + "phases": "CS", + "to": "x2851933c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3104154", + "name": "xf_t5337642c", + "phases": "CS", + "to": "x3104154c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3029518", + "name": "xf_t5337666b", + "phases": "BS", + "to": "x3029518b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2973165", + "name": "xf_t5355942a", + "phases": "AS", + "to": "x2973165a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2766744", + "name": "xf_t28127319b", + "phases": "BS", + "to": "x2766744b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2820556", + "name": "xf_t226196648a", + "phases": "AS", + "to": "x2820556a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2851933", + "name": "xf_t21393643a", + "phases": "AS", + "to": "x2851933a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2851933", + "name": "xf_t21393643b", + "phases": "BS", + "to": "x2851933b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct100B", + "from": "l2691959", + "name": "xf_t21400253b", + "phases": "BS", + "to": "x2691959b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3197638", + "name": "xf_t21396959a", + "phases": "AS", + "to": "x3197638a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3122823", + "name": "xf_t5302370b", + "phases": "BS", + "to": "x3122823b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2748157", + "name": "xf_t5338973a", + "phases": "AS", + "to": "x2748157a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l2860499", + "name": "xf_t5338997b", + "phases": "BS", + "to": "x2860499b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2001213", + "name": "xf_t2001213c", + "phases": "CS", + "to": "x2001213c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2767342", + "name": "xf_t5356802a", + "phases": "AS", + "to": "x2767342a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2823611", + "name": "xf_t21386877a", + "phases": "AS", + "to": "x2823611a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2935556", + "name": "xf_t5356064b", + "phases": "BS", + "to": "x2935556b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3048890", + "name": "xf_t28128517c", + "phases": "CS", + "to": "x3048890c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2876812", + "name": "xf_t5321880a", + "phases": "AS", + "to": "x2876812a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2804282", + "name": "xf_t5337641c", + "phases": "CS", + "to": "x2804282c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2691949", + "name": "xf_t5337689b", + "phases": "BS", + "to": "x2691949b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2973178", + "name": "xf_t5337665b", + "phases": "BS", + "to": "x2973178b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3728039", + "name": "xf_t2224387053a", + "phases": "AS", + "to": "x3728039a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3010580", + "name": "xf_t21451973b", + "phases": "BS", + "to": "x3010580b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2955047", + "name": "xf_t21469911a", + "phases": "AS", + "to": "x2955047a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2841632", + "name": "xf_t5338972b", + "phases": "BS", + "to": "x2841632b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2673316", + "name": "xf_t28120855a", + "phases": "AS", + "to": "x2673316a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3160103", + "name": "xf_t5356063c", + "phases": "CS", + "to": "x3160103c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2841622", + "name": "xf_t21384215a", + "phases": "AS", + "to": "x2841622a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3214069", + "name": "xf_t226194421c", + "phases": "CS", + "to": "x3214069c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2001214", + "name": "xf_t2001214c", + "phases": "CS", + "to": "x2001214c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2748780", + "name": "xf_t5356803a", + "phases": "AS", + "to": "x2748780a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2970811", + "name": "xf_t5321881a", + "phases": "AS", + "to": "x2970811a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2955055", + "name": "xf_t21249647b", + "phases": "BS", + "to": "x2955055b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "293471", + "name": "xf_t5293471c", + "phases": "CS", + "to": "x_293471c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2935549", + "name": "xf_t5337668b", + "phases": "BS", + "to": "x2935549b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2954352", + "name": "xf_t28127090c", + "phases": "CS", + "to": "x2954352c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3085394", + "name": "xf_t5274988c", + "phases": "CS", + "to": "x3085394c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2785537", + "name": "xf_t5338975a", + "phases": "AS", + "to": "x2785537a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2822873", + "name": "xf_t5338999b", + "phases": "BS", + "to": "x2822873b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2785525", + "name": "xf_t21396606c", + "phases": "CS", + "to": "x2785525c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3122816", + "name": "xf_t5356062b", + "phases": "BS", + "to": "x3122816b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2991901", + "name": "xf_t5354851b", + "phases": "BS", + "to": "x2991901b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2823544", + "name": "xf_t5356804a", + "phases": "AS", + "to": "x2823544a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3122811", + "name": "xf_t5337669a", + "phases": "AS", + "to": "x3122811a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2001211", + "name": "xf_t2001211c", + "phases": "CS", + "to": "x2001211c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2916607", + "name": "xf_t5321882c", + "phases": "CS", + "to": "x2916607c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3254216", + "name": "xf_t21398563a", + "phases": "AS", + "to": "x3254216a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3215340", + "name": "xf_t228057846a", + "phases": "AS", + "to": "x3215340a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2897806", + "name": "xf_t5337643c", + "phases": "CS", + "to": "x2897806c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3216361", + "name": "xf_t21452406b", + "phases": "BS", + "to": "x3216361b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3195315", + "name": "xf_t226193662a", + "phases": "AS", + "to": "x3195315a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2822872", + "name": "xf_t5338950b", + "phases": "BS", + "to": "x2822872b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3312692", + "name": "xf_t2223661373a", + "phases": "AS", + "to": "x3312692a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2916605", + "name": "xf_t5274987c", + "phases": "CS", + "to": "x2916605c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3085410", + "name": "xf_t5339097b", + "phases": "BS", + "to": "x3085410b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2955081", + "name": "xf_t5260508a", + "phases": "AS", + "to": "x2955081a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3254229", + "name": "xf_t5338998b", + "phases": "BS", + "to": "x3254229b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2858163", + "name": "xf_t5391990a", + "phases": "AS", + "to": "x2858163a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3195321", + "name": "xf_t5356805a", + "phases": "AS", + "to": "x3195321a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2001212", + "name": "xf_t2001212c", + "phases": "CS", + "to": "x2001212c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3104830", + "name": "xf_t5328367c", + "phases": "CS", + "to": "x3104830c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3010564", + "name": "xf_t5321883c", + "phases": "CS", + "to": "x3010564c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2767409", + "name": "xf_t21391242b", + "phases": "BS", + "to": "x2767409b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2729408", + "name": "xf_t5355768b", + "phases": "BS", + "to": "x2729408b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3120376", + "name": "xf_t226163467a", + "phases": "AS", + "to": "x3120376a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2879087", + "name": "xf_t21399762a", + "phases": "CS", + "to": "x2879087a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2929261", + "name": "xf_t225533337a", + "phases": "AS", + "to": "x2929261a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2804272", + "name": "xf_t5338993b", + "phases": "BS", + "to": "x2804272b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75C", + "from": "l2879092", + "name": "xf_t21399326c", + "phases": "CS", + "to": "x2879092c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2992556", + "name": "xf_t5346639c", + "phases": "AS", + "to": "x2992556a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2001015", + "name": "xf_t2001015b", + "phases": "BS", + "to": "x2001015b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l2875754", + "name": "xf_t225897943c", + "phases": "CS", + "to": "x2875754c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2785526", + "name": "xf_t5302374b", + "phases": "BS", + "to": "x2785526b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3216988", + "name": "xf_t5260590b", + "phases": "BS", + "to": "x3216988b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2730163", + "name": "xf_t5260481c", + "phases": "CS", + "to": "x2730163c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3048206", + "name": "xf_t5138649a", + "phases": "AS", + "to": "x3048206a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2861157", + "name": "xf_t5251867c", + "phases": "CS", + "to": "x2861157c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2766749", + "name": "xf_t5337661b", + "phases": "BS", + "to": "x2766749b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2726975", + "name": "xf_t226193422b", + "phases": "BS", + "to": "x2726975b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2859391", + "name": "xf_t227989724b", + "phases": "BS", + "to": "x2859391b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3140238", + "name": "xf_t227905262a", + "phases": "AS", + "to": "x3140238a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2685805", + "name": "xf_t225533531a", + "phases": "AS", + "to": "x2685805a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2989432", + "name": "xf_t226163575b", + "phases": "BS", + "to": "x2989432b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3048209", + "name": "xf_t28120195b", + "phases": "BS", + "to": "x3048209b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3197634", + "name": "xf_t5355767b", + "phases": "BS", + "to": "x3197634b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3027116", + "name": "xf_t226192684a", + "phases": "AS", + "to": "x3027116a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2935567", + "name": "xf_t5338992b", + "phases": "BS", + "to": "x2935567b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3233353", + "name": "xf_t21399630a", + "phases": "CS", + "to": "x3233353a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3179646", + "name": "xf_t5328365b", + "phases": "BS", + "to": "x3179646b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2691943", + "name": "xf_t5323400b", + "phases": "BS", + "to": "x2691943b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2823545", + "name": "xf_t5356807a", + "phases": "AS", + "to": "x2823545a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3030199", + "name": "xf_t5260480c", + "phases": "CS", + "to": "x3030199c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2766726", + "name": "xf_t5302373b", + "phases": "BS", + "to": "x2766726b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "293471", + "name": "xf_t5293471b", + "phases": "BS", + "to": "x_293471b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "293471", + "name": "xf_t5293471a", + "phases": "AS", + "to": "x_293471a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2001210", + "name": "xf_t2001210c", + "phases": "CS", + "to": "x2001210c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2917359", + "name": "xf_t21482431a", + "phases": "AS", + "to": "x2917359a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2876796", + "name": "xf_t226193338a", + "phases": "AS", + "to": "x2876796a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2841630", + "name": "xf_t5138404c", + "phases": "CS", + "to": "x2841630c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3029501", + "name": "xf_t5337688b", + "phases": "BS", + "to": "x3029501b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2785520", + "name": "xf_t5138755b", + "phases": "BS", + "to": "x2785520b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2891575", + "name": "xf_t225533423c", + "phases": "CS", + "to": "x2891575c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l3254227", + "name": "xf_t5338995b", + "phases": "BS", + "to": "x3254227b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2673343", + "name": "xf_t21470122b", + "phases": "BS", + "to": "x2673343b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2841616", + "name": "xf_t21031684a", + "phases": "AS", + "to": "x2841616a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3101782", + "name": "xf_t5356808a", + "phases": "AS", + "to": "x3101782a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2000915", + "name": "xf_t2000915c", + "phases": "CS", + "to": "x2000915c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2692633", + "name": "xf_t5328364c", + "phases": "CS", + "to": "x2692633c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3254210", + "name": "xf_t5138647c", + "phases": "CS", + "to": "x3254210c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2841629", + "name": "xf_t5138405c", + "phases": "CS", + "to": "x2841629c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2001013", + "name": "xf_t2001013b", + "phases": "BS", + "to": "x2001013b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2879062", + "name": "xf_t21385192c", + "phases": "CS", + "to": "x2879062c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2841637", + "name": "xf_t5293492c", + "phases": "CS", + "to": "x2841637c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3066816", + "name": "xf_t21398676a", + "phases": "AS", + "to": "x3066816a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2973156", + "name": "xf_t5337687b", + "phases": "BS", + "to": "x2973156b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3104120", + "name": "xf_t5138645b", + "phases": "BS", + "to": "x3104120b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2991929", + "name": "xf_t28147708b", + "phases": "BS", + "to": "x2991929b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3254212", + "name": "xf_t5138754b", + "phases": "BS", + "to": "x3254212b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2916603", + "name": "xf_t5323403b", + "phases": "BS", + "to": "x2916603b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3142050", + "name": "xf_t5251865c", + "phases": "CS", + "to": "x3142050c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2673323", + "name": "xf_t5355438c", + "phases": "CS", + "to": "x2673323c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l3160115", + "name": "xf_t5338994b", + "phases": "BS", + "to": "x3160115b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2936214", + "name": "xf_t5356809a", + "phases": "AS", + "to": "x2936214a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3048221", + "name": "xf_t21399305a", + "phases": "AS", + "to": "x3048221a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3141401", + "name": "xf_t5338970a", + "phases": "AS", + "to": "x3141401a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2710536", + "name": "xf_t21396867a", + "phases": "AS", + "to": "x2710536a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2936213", + "name": "xf_t5328363b", + "phases": "BS", + "to": "x2936213b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2804251", + "name": "xf_t5138646a", + "phases": "AS", + "to": "x2804251a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2973162", + "name": "xf_t5302375b", + "phases": "BS", + "to": "x2973162b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2001014", + "name": "xf_t2001014b", + "phases": "BS", + "to": "x2001014b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2952014", + "name": "xf_t5294809a", + "phases": "CS", + "to": "x2952014a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75A", + "from": "l2767340", + "name": "xf_t5260595a", + "phases": "AS", + "to": "x2767340a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2001307", + "name": "xf_t2001307a", + "phases": "AS", + "to": "x2001307a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2954347", + "name": "xf_t5321841b", + "phases": "BS", + "to": "x2954347b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3157167", + "name": "xf_t226115278a", + "phases": "AS", + "to": "x3157167a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75C", + "from": "l2767340", + "name": "xf_t5260595c", + "phases": "CS", + "to": "x2767340c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75B", + "from": "l2767340", + "name": "xf_t5260595b", + "phases": "BS", + "to": "x2767340b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2879070", + "name": "xf_t5338934b", + "phases": "BS", + "to": "x2879070b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3066809", + "name": "xf_t5338958c", + "phases": "CS", + "to": "x3066809c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2766717", + "name": "xf_t5138470c", + "phases": "CS", + "to": "x2766717c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3029520", + "name": "xf_t21486213b", + "phases": "BS", + "to": "x3029520b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2710525", + "name": "xf_t5355437c", + "phases": "CS", + "to": "x2710525c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3254228", + "name": "xf_t5325474b", + "phases": "BS", + "to": "x3254228b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2000412", + "name": "xf_t2000412a", + "phases": "AS", + "to": "x2000412a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2710518", + "name": "xf_t21209868a", + "phases": "AS", + "to": "x2710518a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2673306", + "name": "xf_t5293608c", + "phases": "CS", + "to": "x2673306c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2801909", + "name": "xf_t226195333c", + "phases": "CS", + "to": "x2801909c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3216345", + "name": "xf_t5338933b", + "phases": "BS", + "to": "x3216345b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2710509", + "name": "xf_t5275000c", + "phases": "CS", + "to": "x2710509c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2973163", + "name": "xf_t5391753b", + "phases": "BS", + "to": "x2973163b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2748140", + "name": "xf_t5391995a", + "phases": "AS", + "to": "x2748140a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2879074", + "name": "xf_t5310560a", + "phases": "AS", + "to": "x2879074a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3085393", + "name": "xf_t5337627c", + "phases": "CS", + "to": "x3085393c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3048230", + "name": "xf_t5293490c", + "phases": "CS", + "to": "x3048230c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2001308", + "name": "xf_t2001308a", + "phases": "AS", + "to": "x2001308a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2861223", + "name": "xf_t5260461b", + "phases": "BS", + "to": "x2861223b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2991916", + "name": "xf_t5337710b", + "phases": "BS", + "to": "x2991916b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2801902", + "name": "xf_t226194002b", + "phases": "BS", + "to": "x2801902b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3197627", + "name": "xf_t5337625c", + "phases": "CS", + "to": "x3197627c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2876814", + "name": "xf_t225806974a", + "phases": "AS", + "to": "x2876814a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2898457", + "name": "xf_t5260594a", + "phases": "AS", + "to": "x2898457a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2785517", + "name": "xf_t5338957c", + "phases": "CS", + "to": "x2785517c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2785515", + "name": "xf_t5293609c", + "phases": "CS", + "to": "x2785515c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3649299", + "name": "xf_t2224237391a", + "phases": "AS", + "to": "x3649299a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l2803199", + "name": "xf_t227760021c", + "phases": "CS", + "to": "x2803199c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l2803199", + "name": "xf_t227760021a", + "phases": "AS", + "to": "x2803199a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l2803199", + "name": "xf_t227760021b", + "phases": "BS", + "to": "x2803199b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2000413", + "name": "xf_t2000413a", + "phases": "AS", + "to": "x2000413a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3197661", + "name": "xf_t5338932c", + "phases": "CS", + "to": "x3197661c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75A", + "from": "l2763812", + "name": "xf_t21459651c", + "phases": "AS", + "to": "x2763812c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3235275", + "name": "xf_t5302507b", + "phases": "BS", + "to": "x3235275b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3216343", + "name": "xf_t5337626c", + "phases": "CS", + "to": "x3216343c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3141412", + "name": "xf_t5391996a", + "phases": "AS", + "to": "x3141412a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3122820", + "name": "xf_t5310561a", + "phases": "AS", + "to": "x3122820a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2897776", + "name": "xf_t5302858c", + "phases": "CS", + "to": "x2897776c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3214055", + "name": "xf_t226192175c", + "phases": "CS", + "to": "x3214055c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2841625", + "name": "xf_t5302834c", + "phases": "BS", + "to": "x2841625c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3626914", + "name": "xf_t2224179616c", + "phases": "CS", + "to": "x3626914c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2785524", + "name": "xf_t28044328c", + "phases": "CS", + "to": "x2785524c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3179650", + "name": "xf_t5251828b", + "phases": "BS", + "to": "x3179650b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2729206", + "name": "xf_t22112168866c", + "phases": "CS", + "to": "x2729206c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2992624", + "name": "xf_t5260484a", + "phases": "AS", + "to": "x2992624a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2766716", + "name": "xf_t5337713c", + "phases": "CS", + "to": "x2766716c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2001305", + "name": "xf_t2001305a", + "phases": "AS", + "to": "x2001305a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5C", + "from": "l2914324", + "name": "xf_t226196642a", + "phases": "CS", + "to": "x2914324a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l3048231", + "name": "xf_t21400215b", + "phases": "BS", + "to": "x3048231b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3066815", + "name": "xf_t5338936c", + "phases": "CS", + "to": "x3066815c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3048203", + "name": "xf_t5323273b", + "phases": "BS", + "to": "x3048203b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l2691966", + "name": "xf_t5339010b", + "phases": "BS", + "to": "x2691966b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3178973", + "name": "xf_t21149420a", + "phases": "AS", + "to": "x3178973a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2673319", + "name": "xf_t5391973c", + "phases": "CS", + "to": "x2673319c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2748128", + "name": "xf_t5337629c", + "phases": "CS", + "to": "x2748128c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3254209", + "name": "xf_t5337714c", + "phases": "CS", + "to": "x3254209c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3727710", + "name": "xf_t2224386863a", + "phases": "AS", + "to": "x3727710a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2806553", + "name": "xf_t227411655c", + "phases": "CS", + "to": "x2806553c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2748132", + "name": "xf_t5302637a", + "phases": "AS", + "to": "x2748132a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3104130", + "name": "xf_t5391755b", + "phases": "BS", + "to": "x3104130b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2954361", + "name": "xf_t21383494b", + "phases": "BS", + "to": "x2954361b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2804253", + "name": "xf_t21396254a", + "phases": "AS", + "to": "x2804253a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2973149", + "name": "xf_t5325472b", + "phases": "BS", + "to": "x2973149b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2785531", + "name": "xf_t21399809a", + "phases": "CS", + "to": "x2785531a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2001306", + "name": "xf_t2001306a", + "phases": "AS", + "to": "x2001306a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3251807", + "name": "xf_t225673440a", + "phases": "AS", + "to": "x3251807a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3235245", + "name": "xf_t5337712c", + "phases": "CS", + "to": "x3235245c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2954344", + "name": "xf_t5338959c", + "phases": "CS", + "to": "x2954344c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2973160", + "name": "xf_t5338935b", + "phases": "BS", + "to": "x2973160b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2000410", + "name": "xf_t2000410a", + "phases": "AS", + "to": "x2000410a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3159645", + "name": "xf_t228446184a", + "phases": "AS", + "to": "x3159645a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l3215203", + "name": "xf_t227760024b", + "phases": "BS", + "to": "x3215203b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2860490", + "name": "xf_t5138719a", + "phases": "AS", + "to": "x2860490a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l3215203", + "name": "xf_t227760024c", + "phases": "CS", + "to": "x3215203c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2000411", + "name": "xf_t2000411a", + "phases": "AS", + "to": "x2000411a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l3215203", + "name": "xf_t227760024a", + "phases": "AS", + "to": "x3215203a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3010562", + "name": "xf_t5325473b", + "phases": "BS", + "to": "x3010562b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l2991933", + "name": "xf_t5355433c", + "phases": "CS", + "to": "x2991933c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3029183", + "name": "xf_t228580047b", + "phases": "BS", + "to": "x3029183b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2841621", + "name": "xf_t5338910c", + "phases": "CS", + "to": "x2841621c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2897770", + "name": "xf_t5337628c", + "phases": "CS", + "to": "x2897770c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2879079", + "name": "xf_t5391756b", + "phases": "BS", + "to": "x2879079b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2710543", + "name": "xf_t21474614c", + "phases": "CS", + "to": "x2710543c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3179607", + "name": "xf_t5260591b", + "phases": "BS", + "to": "x3179607b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3254869", + "name": "xf_t5260575b", + "phases": "BS", + "to": "x3254869b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2710544", + "name": "xf_t21482279a", + "phases": "AS", + "to": "x2710544a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2001303", + "name": "xf_t2001303a", + "phases": "AS", + "to": "x2001303a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2879063", + "name": "xf_t5337646b", + "phases": "BS", + "to": "x2879063b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3160872", + "name": "xf_t5260551c", + "phases": "CS", + "to": "x3160872c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2786273", + "name": "xf_t5275247b", + "phases": "BS", + "to": "x2786273b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2726973", + "name": "xf_t226192926a", + "phases": "AS", + "to": "x2726973a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2895449", + "name": "xf_t226193134c", + "phases": "CS", + "to": "x2895449c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2748139", + "name": "xf_t21400108b", + "phases": "BS", + "to": "x2748139b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2933135", + "name": "xf_t226197070a", + "phases": "AS", + "to": "x2933135a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3122837", + "name": "xf_t5355432c", + "phases": "CS", + "to": "x3122837c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3118855", + "name": "xf_t5339052c", + "phases": "CS", + "to": "x3118855c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5B", + "from": "l3235255", + "name": "xf_t5293519b", + "phases": "BS", + "to": "x3235255b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2684420", + "name": "xf_t225498968b", + "phases": "BS", + "to": "x2684420b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2916620", + "name": "xf_t5338977c", + "phases": "CS", + "to": "x2916620c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2916620", + "name": "xf_t5338977b", + "phases": "BS", + "to": "x2916620b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3216346", + "name": "xf_t5391991a", + "phases": "AS", + "to": "x3216346a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3728041", + "name": "xf_t2224387074a", + "phases": "AS", + "to": "x3728041a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3122821", + "name": "xf_t5338953b", + "phases": "BS", + "to": "x3122821b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3048227", + "name": "xf_t5337647a", + "phases": "AS", + "to": "x3048227a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3010567", + "name": "xf_t5302813c", + "phases": "CS", + "to": "x3010567c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2785543", + "name": "xf_t5321860b", + "phases": "BS", + "to": "x2785543b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3104134", + "name": "xf_t5138718c", + "phases": "CS", + "to": "x3104134c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2710515", + "name": "xf_t5321884c", + "phases": "CS", + "to": "x2710515c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3727712", + "name": "xf_t2224386889a", + "phases": "AS", + "to": "x3727712a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3067478", + "name": "xf_t5260598a", + "phases": "AS", + "to": "x3067478a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2766746", + "name": "xf_t5321886c", + "phases": "CS", + "to": "x2766746c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3216342", + "name": "xf_t5337645b", + "phases": "BS", + "to": "x3216342b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2001304", + "name": "xf_t2001304a", + "phases": "AS", + "to": "x2001304a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3123452", + "name": "xf_t5260574c", + "phases": "CS", + "to": "x3123452c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l3047289", + "name": "xf_t228091193b", + "phases": "BS", + "to": "x3047289b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2916620", + "name": "xf_t5338977a", + "phases": "AS", + "to": "x2916620a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l3047289", + "name": "xf_t228091193a", + "phases": "AS", + "to": "x3047289a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2879076", + "name": "xf_t5138380c", + "phases": "CS", + "to": "x2879076c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l3047289", + "name": "xf_t228091193c", + "phases": "CS", + "to": "x3047289c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2691939", + "name": "xf_t5355589b", + "phases": "BS", + "to": "x2691939b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3231255", + "name": "xf_t5339051c", + "phases": "CS", + "to": "x3231255c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3048222", + "name": "xf_t5355431c", + "phases": "CS", + "to": "x3048222c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3315860", + "name": "xf_t2223664050b", + "phases": "BS", + "to": "x3315860b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2691967", + "name": "xf_t5338976b", + "phases": "BS", + "to": "x2691967b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2897764", + "name": "xf_t5391750b", + "phases": "BS", + "to": "x2897764b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3029500", + "name": "xf_t5391992a", + "phases": "AS", + "to": "x3029500a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3727709", + "name": "xf_t2224386842a", + "phases": "AS", + "to": "x3727709a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3254220", + "name": "xf_t5138717c", + "phases": "CS", + "to": "x3254220c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3235248", + "name": "xf_t5321861c", + "phases": "CS", + "to": "x3235248c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2730187", + "name": "xf_t5260464a", + "phases": "AS", + "to": "x2730187a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2691941", + "name": "xf_t5321887c", + "phases": "CS", + "to": "x2691941c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2991640", + "name": "xf_t229106135c", + "phases": "CS", + "to": "x2991640c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3178977", + "name": "xf_t5302810c", + "phases": "AS", + "to": "x3178977c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2842379", + "name": "xf_t5260488a", + "phases": "AS", + "to": "x2842379a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3066807", + "name": "xf_t5337624c", + "phases": "CS", + "to": "x3066807c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3160896", + "name": "xf_t5260573c", + "phases": "CS", + "to": "x3160896c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2937757", + "name": "xf_t227411650c", + "phases": "CS", + "to": "x2937757c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l2915542", + "name": "xf_t227921427c", + "phases": "CS", + "to": "x2915542c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l2915542", + "name": "xf_t227921427b", + "phases": "BS", + "to": "x2915542b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l2915542", + "name": "xf_t227921427a", + "phases": "AS", + "to": "x2915542a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3104119", + "name": "xf_t5338956a", + "phases": "AS", + "to": "x3104119a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2822857", + "name": "xf_t5355588b", + "phases": "BS", + "to": "x2822857b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3122848", + "name": "xf_t21397121c", + "phases": "CS", + "to": "x3122848c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2785516", + "name": "xf_t5138294b", + "phases": "BS", + "to": "x2785516b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3104114", + "name": "xf_t5355587b", + "phases": "BS", + "to": "x3104114b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3066806", + "name": "xf_t5275002c", + "phases": "CS", + "to": "x3066806c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3010560", + "name": "xf_t5338955b", + "phases": "BS", + "to": "x3010560b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75B", + "from": "l3102286", + "name": "xf_t226308729b", + "phases": "BS", + "to": "x3102286b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3010570", + "name": "xf_t5302392a", + "phases": "AS", + "to": "x3010570a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2785521", + "name": "xf_t5338931c", + "phases": "CS", + "to": "x2785521c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2860488", + "name": "xf_t5391751b", + "phases": "BS", + "to": "x2860488b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l3156034", + "name": "xf_t5391993a", + "phases": "AS", + "to": "x3156034a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2001215", + "name": "xf_t2001215c", + "phases": "CS", + "to": "x2001215c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2897779", + "name": "xf_t5302508c", + "phases": "CS", + "to": "x2897779c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3254215", + "name": "xf_t5302859c", + "phases": "CS", + "to": "x3254215c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3254219", + "name": "xf_t5138716c", + "phases": "CS", + "to": "x3254219c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3160105", + "name": "xf_t5302811c", + "phases": "AS", + "to": "x3160105c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3235241", + "name": "xf_t5321888c", + "phases": "CS", + "to": "x3235241c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2804256", + "name": "xf_t5321840b", + "phases": "BS", + "to": "x2804256b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2692654", + "name": "xf_t5260487a", + "phases": "AS", + "to": "x2692654a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2001302", + "name": "xf_t2001302a", + "phases": "AS", + "to": "x2001302a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3236004", + "name": "xf_t5260572c", + "phases": "CS", + "to": "x3236004c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3086075", + "name": "xf_t5260463b", + "phases": "BS", + "to": "x3086075b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2879089", + "name": "xf_t21455388c", + "phases": "CS", + "to": "x2879089c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3197626", + "name": "xf_t5337623c", + "phases": "CS", + "to": "x3197626c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l3066814", + "name": "xf_t5338979b", + "phases": "BS", + "to": "x3066814b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2897780", + "name": "xf_t5293518b", + "phases": "BS", + "to": "x2897780b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3254234", + "name": "xf_t5355586b", + "phases": "BS", + "to": "x3254234b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2822862", + "name": "xf_t5275001c", + "phases": "CS", + "to": "x2822862c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2860482", + "name": "xf_t5338954a", + "phases": "AS", + "to": "x2860482a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75C", + "from": "l2766738", + "name": "xf_t5338978c", + "phases": "CS", + "to": "x2766738c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l3029506", + "name": "xf_t5338930b", + "phases": "BS", + "to": "x3029506b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3160102", + "name": "xf_t5355780b", + "phases": "BS", + "to": "x3160102b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2804260", + "name": "xf_t5391752b", + "phases": "BS", + "to": "x2804260b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3066821", + "name": "xf_t5391994a", + "phases": "AS", + "to": "x3066821a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2804261", + "name": "xf_t5302509c", + "phases": "CS", + "to": "x2804261c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3216367", + "name": "xf_t5337648b", + "phases": "BS", + "to": "x3216367b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2935552", + "name": "xf_t5274903c", + "phases": "CS", + "to": "x2935552c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2691945", + "name": "xf_t5302812c", + "phases": "CS", + "to": "x2691945c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2973144", + "name": "xf_t5138466c", + "phases": "CS", + "to": "x2973144c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3085396", + "name": "xf_t5138684a", + "phases": "AS", + "to": "x3085396a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3197639", + "name": "xf_t5310569a", + "phases": "AS", + "to": "x3197639a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3010585", + "name": "xf_t5294810a", + "phases": "CS", + "to": "x3010585a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3179673", + "name": "xf_t5260640c", + "phases": "CS", + "to": "x3179673c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2860493", + "name": "xf_t21397645a", + "phases": "AS", + "to": "x2860493a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2841635", + "name": "xf_t21399099a", + "phases": "AS", + "to": "x2841635a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2673312", + "name": "xf_t5321837a", + "phases": "AS", + "to": "x2673312a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3048962", + "name": "xf_t5260555a", + "phases": "AS", + "to": "x3048962a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3232902", + "name": "xf_t226194826a", + "phases": "AS", + "to": "x3232902a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2897773", + "name": "xf_t5338918a", + "phases": "AS", + "to": "x2897773a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2766742", + "name": "xf_t5355585b", + "phases": "BS", + "to": "x2766742b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2897765", + "name": "xf_t5323243b", + "phases": "BS", + "to": "x2897765b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l3233413", + "name": "xf_t226308727b", + "phases": "BS", + "to": "x3233413b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2710514", + "name": "xf_t5323267b", + "phases": "BS", + "to": "x2710514b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2936279", + "name": "xf_t5247184c", + "phases": "CS", + "to": "x2936279c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l0247160", + "name": "xf_t5247160b", + "phases": "BS", + "to": "x0247160b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3235273", + "name": "xf_t5339016b", + "phases": "BS", + "to": "x3235273b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2766748", + "name": "xf_t21470326a", + "phases": "AS", + "to": "x2766748a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2897772", + "name": "xf_t5302679a", + "phases": "AS", + "to": "x2897772a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2991918", + "name": "xf_t5391749b", + "phases": "BS", + "to": "x2991918b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3030200", + "name": "xf_t5260554c", + "phases": "CS", + "to": "x3030200c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3065665", + "name": "xf_t227895952a", + "phases": "AS", + "to": "x3065665a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2879055", + "name": "xf_t5138465c", + "phases": "CS", + "to": "x2879055c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2991907", + "name": "xf_t5138574a", + "phases": "AS", + "to": "x2991907a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3082981", + "name": "xf_t226193737c", + "phases": "CS", + "to": "x3082981c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3085401", + "name": "xf_t28127253a", + "phases": "AS", + "to": "x3085401a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2691944", + "name": "xf_t5321838a", + "phases": "AS", + "to": "x2691944a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2935555", + "name": "xf_t5338917a", + "phases": "AS", + "to": "x2935555a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2710542", + "name": "xf_t5355584b", + "phases": "BS", + "to": "x2710542b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3122810", + "name": "xf_t5323242b", + "phases": "BS", + "to": "x3122810b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3197632", + "name": "xf_t5323266b", + "phases": "BS", + "to": "x3197632b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3178974", + "name": "xf_t5323399b", + "phases": "BS", + "to": "x3178974b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3027671", + "name": "xf_t226308728a", + "phases": "AS", + "to": "x3027671a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2763072", + "name": "xf_t226924200b", + "phases": "BS", + "to": "x2763072b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3067447", + "name": "xf_t21386157a", + "phases": "AS", + "to": "x3067447a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3141397", + "name": "xf_t21396796b", + "phases": "BS", + "to": "x3141397b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2915534", + "name": "xf_t227917122a", + "phases": "AS", + "to": "x2915534a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3104131", + "name": "xf_t5302410a", + "phases": "AS", + "to": "x3104131a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3066801", + "name": "xf_t5138464c", + "phases": "CS", + "to": "x3066801c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2711225", + "name": "xf_t5260553c", + "phases": "CS", + "to": "x2711225c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2710519", + "name": "xf_t5302676a", + "phases": "AS", + "to": "x2710519a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l2897554", + "name": "xf_t22112168870c", + "phases": "CS", + "to": "x2897554c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3235253", + "name": "xf_t5138573a", + "phases": "AS", + "to": "x3235253a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2767341", + "name": "xf_t5260577c", + "phases": "CS", + "to": "x2767341c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2691951", + "name": "xf_t5138379c", + "phases": "CS", + "to": "x2691951c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2710516", + "name": "xf_t5321839a", + "phases": "AS", + "to": "x2710516a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3010557", + "name": "xf_t21380453a", + "phases": "AS", + "to": "x3010557a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3160793", + "name": "xf_t28147899c", + "phases": "CS", + "to": "x3160793c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l3189188", + "name": "xf_t5293658c", + "phases": "CS", + "to": "x3189188c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2785512", + "name": "xf_t5323245b", + "phases": "BS", + "to": "x2785512b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l3066817", + "name": "xf_t21373784a", + "phases": "AS", + "to": "x3066817a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2729424", + "name": "xf_t5339018a", + "phases": "AS", + "to": "x2729424a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3066819", + "name": "xf_t5302677a", + "phases": "AS", + "to": "x3066819a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3120484", + "name": "xf_t226191772c", + "phases": "CS", + "to": "x3120484c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l3198348", + "name": "xf_t5260552a", + "phases": "AS", + "to": "x3198348a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3030126", + "name": "xf_t5260576c", + "phases": "CS", + "to": "x3030126c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2710517", + "name": "xf_t5310568a", + "phases": "AS", + "to": "x2710517a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2748127", + "name": "xf_t5338919a", + "phases": "AS", + "to": "x2748127a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2970804", + "name": "xf_t5356787c", + "phases": "CS", + "to": "x2970804c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2729412", + "name": "xf_t28150189a", + "phases": "AS", + "to": "x2729412a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3632979", + "name": "xf_t2224192013a", + "phases": "AS", + "to": "x3632979a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75B", + "from": "l2802480", + "name": "xf_t226308725b", + "phases": "BS", + "to": "x2802480b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2991940", + "name": "xf_t28148060c", + "phases": "CS", + "to": "x2991940c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3104856", + "name": "xf_t5260467a", + "phases": "AS", + "to": "x3104856a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2935560", + "name": "xf_t5293659c", + "phases": "CS", + "to": "x2935560c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2804248", + "name": "xf_t5323244b", + "phases": "BS", + "to": "x2804248b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2857591", + "name": "xf_t226101460a", + "phases": "CS", + "to": "x2857591a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2729423", + "name": "xf_t5339017c", + "phases": "CS", + "to": "x2729423c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3216358", + "name": "xf_t21399826a", + "phases": "CS", + "to": "x3216358a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3176661", + "name": "xf_t5356788c", + "phases": "CS", + "to": "x3176661c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l3029499", + "name": "xf_t5302678a", + "phases": "AS", + "to": "x3029499a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3048210", + "name": "xf_t5302412a", + "phases": "AS", + "to": "x3048210a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2991913", + "name": "xf_t5138571a", + "phases": "AS", + "to": "x2991913a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3067506", + "name": "xf_t5260620c", + "phases": "CS", + "to": "x3067506c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3160878", + "name": "xf_t5260511c", + "phases": "CS", + "to": "x3160878c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "m1108404", + "name": "xf_t1108404c", + "phases": "CS", + "to": "x1108404c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "m1108404", + "name": "xf_t1108404b", + "phases": "BS", + "to": "x1108404b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "m1108404", + "name": "xf_t1108404a", + "phases": "AS", + "to": "x1108404a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75A", + "from": "l3101194", + "name": "xf_t21459660c", + "phases": "AS", + "to": "x3101194c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2989571", + "name": "xf_t225991691a", + "phases": "AS", + "to": "x2989571a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3067507", + "name": "xf_t5260535c", + "phases": "CS", + "to": "x3067507c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2710521", + "name": "xf_t5138680a", + "phases": "AS", + "to": "x2710521a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2973167", + "name": "xf_t5293656b", + "phases": "BS", + "to": "x2973167b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2897789", + "name": "xf_t5323287b", + "phases": "BS", + "to": "x2897789b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3066812", + "name": "xf_t5323263a", + "phases": "AS", + "to": "x3066812a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3157708", + "name": "xf_t226192954c", + "phases": "CS", + "to": "x3157708c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2766732", + "name": "xf_t5247164b", + "phases": "BS", + "to": "x2766732b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2766729", + "name": "xf_t5293523a", + "phases": "AS", + "to": "x2766729a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2973171", + "name": "xf_t5339012b", + "phases": "BS", + "to": "x2973171b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3649301", + "name": "xf_t2224237643a", + "phases": "AS", + "to": "x3649301a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2936275", + "name": "xf_t5157715b", + "phases": "BS", + "to": "x2936275b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2673300", + "name": "xf_t5391745b", + "phases": "BS", + "to": "x2673300b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3048937", + "name": "xf_t5356789c", + "phases": "CS", + "to": "x3048937c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3122822", + "name": "xf_t5391987a", + "phases": "AS", + "to": "x3122822a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2746587", + "name": "xf_t227653310c", + "phases": "CS", + "to": "x2746587c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2841627", + "name": "xf_t5337716a", + "phases": "AS", + "to": "x2841627a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3139598", + "name": "xf_t226311345b", + "phases": "BS", + "to": "x3139598b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "m1108405", + "name": "xf_t1108405c", + "phases": "CS", + "to": "x1108405c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3122815", + "name": "xf_t5321858b", + "phases": "BS", + "to": "x3122815b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "m1108405", + "name": "xf_t1108405b", + "phases": "BS", + "to": "x1108405b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "m1108405", + "name": "xf_t1108405a", + "phases": "AS", + "to": "x1108405a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2764403", + "name": "xf_t226193078a", + "phases": "AS", + "to": "x2764403a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3252336", + "name": "xf_t226308723b", + "phases": "BS", + "to": "x3252336b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3215549", + "name": "xf_t228219458b", + "phases": "BS", + "to": "x3215549b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2897777", + "name": "xf_t5338937c", + "phases": "CS", + "to": "x2897777c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2804255", + "name": "xf_t5338913b", + "phases": "BS", + "to": "x2804255b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l2692660", + "name": "xf_t5260643a", + "phases": "AS", + "to": "x2692660a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3160861", + "name": "xf_t5260558c", + "phases": "CS", + "to": "x3160861c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2748146", + "name": "xf_t5138570a", + "phases": "AS", + "to": "x2748146a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3189189", + "name": "xf_t5293657b", + "phases": "BS", + "to": "x3189189b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2989564", + "name": "xf_t5323286b", + "phases": "BS", + "to": "x2989564b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3214112", + "name": "xf_t226881057b", + "phases": "BS", + "to": "x3214112b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3104145", + "name": "xf_t5339011b", + "phases": "BS", + "to": "x3104145b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3139086", + "name": "xf_t226192846b", + "phases": "BS", + "to": "x3139086b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3139366", + "name": "xf_t226264795a", + "phases": "AS", + "to": "x3139366a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3254204", + "name": "xf_t5337715a", + "phases": "AS", + "to": "x3254204a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3179674", + "name": "xf_t5157716b", + "phases": "BS", + "to": "x3179674b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l3085388", + "name": "xf_t5391746b", + "phases": "BS", + "to": "x3085388b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2897790", + "name": "xf_t21357984c", + "phases": "CS", + "to": "x2897790c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2916599", + "name": "xf_t5356015a", + "phases": "AS", + "to": "x2916599a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2688692", + "name": "xf_t225918926b", + "phases": "BS", + "to": "x2688692b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2001309", + "name": "xf_t2001309a", + "phases": "AS", + "to": "x2001309a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2991920", + "name": "xf_t28118822a", + "phases": "AS", + "to": "x2991920a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l2729207", + "name": "xf_t22112168874c", + "phases": "CS", + "to": "x2729207c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3254213", + "name": "xf_t5321859b", + "phases": "BS", + "to": "x3254213b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75A", + "from": "l2821087", + "name": "xf_t226308720a", + "phases": "AS", + "to": "x2821087a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2710508", + "name": "xf_t5323241b", + "phases": "BS", + "to": "x2710508b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2000414", + "name": "xf_t2000414a", + "phases": "AS", + "to": "x2000414a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2860501", + "name": "xf_t5323265b", + "phases": "BS", + "to": "x2860501b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3048968", + "name": "xf_t5350994c", + "phases": "CS", + "to": "x3048968c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2822867", + "name": "xf_t21386552b", + "phases": "BS", + "to": "x2822867b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2710505", + "name": "xf_t5323398b", + "phases": "BS", + "to": "x2710505b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3727707", + "name": "xf_t2224386750a", + "phases": "AS", + "to": "x3727707a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3216370", + "name": "xf_t5293521c", + "phases": "CS", + "to": "x3216370c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l3216370", + "name": "xf_t5293521b", + "phases": "BS", + "to": "x3216370b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l0247162", + "name": "xf_t5247162b", + "phases": "BS", + "to": "x0247162b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l3216370", + "name": "xf_t5293521a", + "phases": "AS", + "to": "x3216370a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2822859", + "name": "xf_t5391747b", + "phases": "BS", + "to": "x2822859b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2766747", + "name": "xf_t5391989a", + "phases": "AS", + "to": "x2766747a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3178981", + "name": "xf_t21396331b", + "phases": "BS", + "to": "x3178981b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2691947", + "name": "xf_t5337718a", + "phases": "AS", + "to": "x2691947a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l3235249", + "name": "xf_t5356014a", + "phases": "AS", + "to": "x3235249a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3160107", + "name": "xf_t5138265a", + "phases": "AS", + "to": "x3160107a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2972704", + "name": "xf_t228445756c", + "phases": "CS", + "to": "x2972704c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3086074", + "name": "xf_t5260532c", + "phases": "CS", + "to": "x3086074c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3048965", + "name": "xf_t5260641b", + "phases": "BS", + "to": "x3048965b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3160864", + "name": "xf_t28127146b", + "phases": "BS", + "to": "x3160864b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "m1108403", + "name": "xf_t1108403b", + "phases": "BS", + "to": "x1108403b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2991905", + "name": "xf_t28148633a", + "phases": "AS", + "to": "x2991905a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "m1108403", + "name": "xf_t1108403a", + "phases": "AS", + "to": "x1108403a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5A", + "from": "l2823592", + "name": "xf_t5223658a", + "phases": "AS", + "to": "x2823592a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l2954345", + "name": "xf_t5338915c", + "phases": "CS", + "to": "x2954345c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3235247", + "name": "xf_t5321836a", + "phases": "AS", + "to": "x3235247a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "m1108403", + "name": "xf_t1108403c", + "phases": "CS", + "to": "x1108403c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2820533", + "name": "xf_t226193298a", + "phases": "AS", + "to": "x2820533a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2691950", + "name": "xf_t5138374c", + "phases": "CS", + "to": "x2691950c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2691954", + "name": "xf_t21399361b", + "phases": "BS", + "to": "x2691954b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l2990098", + "name": "xf_t226308721a", + "phases": "AS", + "to": "x2990098a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3030204", + "name": "xf_t0107636a", + "phases": "AS", + "to": "x3030204a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3179637", + "name": "xf_t21386442c", + "phases": "CS", + "to": "x3179637c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2729414", + "name": "xf_t5293655a", + "phases": "AS", + "to": "x2729414a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2729414", + "name": "xf_t5293655b", + "phases": "BS", + "to": "x2729414b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l3216344", + "name": "xf_t5323264b", + "phases": "BS", + "to": "x3216344b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2954346", + "name": "xf_t5323397b", + "phases": "BS", + "to": "x2954346b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3198356", + "name": "xf_t5350993c", + "phases": "CS", + "to": "x3198356c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2785527", + "name": "xf_t5293522a", + "phases": "AS", + "to": "x2785527a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2000415", + "name": "xf_t2000415a", + "phases": "AS", + "to": "x2000415a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2804270", + "name": "xf_t5339013b", + "phases": "BS", + "to": "x2804270b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3195310", + "name": "xf_t226192185a", + "phases": "AS", + "to": "x3195310a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3179678", + "name": "xf_t5247185b", + "phases": "BS", + "to": "x3179678b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l3645809", + "name": "xf_t2224230615c", + "phases": "CS", + "to": "x3645809c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2729414", + "name": "xf_t5293655c", + "phases": "CS", + "to": "x2729414c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3216348", + "name": "xf_t5337717a", + "phases": "AS", + "to": "x3216348a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2954348", + "name": "xf_t5356013a", + "phases": "AS", + "to": "x2954348a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2917328", + "name": "xf_t21389092b", + "phases": "BS", + "to": "x2917328b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2991902", + "name": "xf_t5391748b", + "phases": "BS", + "to": "x2991902b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2991910", + "name": "xf_t5337694b", + "phases": "BS", + "to": "x2991910b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2804262", + "name": "xf_t5355938a", + "phases": "AS", + "to": "x2804262a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2895461", + "name": "xf_t5294789a", + "phases": "CS", + "to": "x2895461a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3197630", + "name": "xf_t5138644a", + "phases": "AS", + "to": "x3197630a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3160865", + "name": "xf_t5260515a", + "phases": "AS", + "to": "x3160865a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2917255", + "name": "xf_t21386065c", + "phases": "CS", + "to": "x2917255c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3254873", + "name": "xf_t5251862c", + "phases": "CS", + "to": "x3254873c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2898522", + "name": "xf_t5260648a", + "phases": "AS", + "to": "x2898522a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2748130", + "name": "xf_t5138753b", + "phases": "BS", + "to": "x2748130b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75B", + "from": "m1108410", + "name": "xf_t6061820b", + "phases": "BS", + "to": "x1108410b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2936268", + "name": "xf_t5223655c", + "phases": "CS", + "to": "x2936268c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3048946", + "name": "xf_t5260624c", + "phases": "CS", + "to": "x3048946c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3235242", + "name": "xf_t21380500c", + "phases": "CS", + "to": "x3235242c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3011298", + "name": "xf_t5207286c", + "phases": "CS", + "to": "x3011298c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2000707", + "name": "xf_t2000707b", + "phases": "BS", + "to": "x2000707b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3235258", + "name": "xf_t5293652a", + "phases": "AS", + "to": "x3235258a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2841615", + "name": "xf_t5356012a", + "phases": "AS", + "to": "x2841615a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3235258", + "name": "xf_t5293652b", + "phases": "BS", + "to": "x3235258b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3235258", + "name": "xf_t5293652c", + "phases": "CS", + "to": "x3235258c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2783231", + "name": "xf_t226193886b", + "phases": "BS", + "to": "x2783231b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2841639", + "name": "xf_t5355937a", + "phases": "AS", + "to": "x2841639a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3008248", + "name": "xf_t5321159a", + "phases": "AS", + "to": "x3008248a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2805034", + "name": "xf_t5260647a", + "phases": "AS", + "to": "x2805034a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3010566", + "name": "xf_t5138776c", + "phases": "BS", + "to": "x3010566c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3235252", + "name": "xf_t21388572b", + "phases": "BS", + "to": "x3235252b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2785528", + "name": "xf_t5138752b", + "phases": "BS", + "to": "x2785528b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2674047", + "name": "xf_t5260514c", + "phases": "CS", + "to": "x2674047c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2745811", + "name": "xf_t5251863c", + "phases": "CS", + "to": "x2745811c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3066813", + "name": "xf_t5337693b", + "phases": "BS", + "to": "x3066813b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2673317", + "name": "xf_t21397771a", + "phases": "AS", + "to": "x2673317a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2000902", + "name": "xf_t2000902c", + "phases": "CS", + "to": "x2000902c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3027122", + "name": "xf_t226194865a", + "phases": "AS", + "to": "x3027122a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2711234", + "name": "xf_t5207287b", + "phases": "BS", + "to": "x2711234b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3216337", + "name": "xf_t5356011a", + "phases": "AS", + "to": "x3216337a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2000708", + "name": "xf_t2000708b", + "phases": "BS", + "to": "x2000708b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2955076", + "name": "xf_t21243817a", + "phases": "AS", + "to": "x2955076a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3157718", + "name": "xf_t226194093a", + "phases": "AS", + "to": "x3157718a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "m1108406", + "name": "xf_t1108406a", + "phases": "AS", + "to": "x1108406a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2822877", + "name": "xf_t5337672b", + "phases": "BS", + "to": "x2822877b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3198347", + "name": "xf_t5260622c", + "phases": "CS", + "to": "x3198347c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3197635", + "name": "xf_t5337696b", + "phases": "BS", + "to": "x3197635b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2954357", + "name": "xf_t5355936a", + "phases": "AS", + "to": "x2954357a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l3197647", + "name": "xf_t5294787a", + "phases": "AS", + "to": "x3197647a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3048214", + "name": "xf_t5302474a", + "phases": "AS", + "to": "x3048214a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3235256", + "name": "xf_t5138642a", + "phases": "AS", + "to": "x3235256a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "m1108406", + "name": "xf_t1108406b", + "phases": "BS", + "to": "x1108406b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3231269", + "name": "xf_t225684682b", + "phases": "BS", + "to": "x3231269b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3066818", + "name": "xf_t5138751b", + "phases": "BS", + "to": "x3066818b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2917336", + "name": "xf_t5260513c", + "phases": "CS", + "to": "x2917336c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3728042", + "name": "xf_t2224387113a", + "phases": "AS", + "to": "x3728042a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2801895", + "name": "xf_t226191951b", + "phases": "BS", + "to": "x2801895b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2879069", + "name": "xf_t5338894a", + "phases": "AS", + "to": "x2879069a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2748840", + "name": "xf_t5157717b", + "phases": "BS", + "to": "x2748840b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3729297", + "name": "xf_t2224386592a", + "phases": "AS", + "to": "x3729297a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2000705", + "name": "xf_t2000705b", + "phases": "BS", + "to": "x2000705b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l3198355", + "name": "xf_t5207288b", + "phases": "BS", + "to": "x3198355b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3216336", + "name": "xf_t5356010a", + "phases": "AS", + "to": "x3216336a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3029507", + "name": "xf_t5302368b", + "phases": "BS", + "to": "x3029507b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "m1108407", + "name": "xf_t1108407b", + "phases": "BS", + "to": "x1108407b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2879072", + "name": "xf_t5337695b", + "phases": "BS", + "to": "x2879072b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2841638", + "name": "xf_t5138641c", + "phases": "CS", + "to": "x2841638c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2898515", + "name": "xf_t5260621c", + "phases": "CS", + "to": "x2898515c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3254207", + "name": "xf_t5337671a", + "phases": "AS", + "to": "x3254207a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2729428", + "name": "xf_t21398402a", + "phases": "AS", + "to": "x2729428a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2821010", + "name": "xf_t5294788a", + "phases": "CS", + "to": "x2821010a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2724120", + "name": "xf_t225577437c", + "phases": "CS", + "to": "x2724120c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3104859", + "name": "xf_t5138798b", + "phases": "BS", + "to": "x3104859b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2691973", + "name": "xf_t5355935a", + "phases": "AS", + "to": "x2691973a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3195327", + "name": "xf_t225901711a", + "phases": "AS", + "to": "x3195327a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75C", + "from": "l3645810", + "name": "xf_t2224230651c", + "phases": "CS", + "to": "x3645810c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3197633", + "name": "xf_t5338893a", + "phases": "AS", + "to": "x3197633a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3142099", + "name": "xf_t5157718b", + "phases": "BS", + "to": "x3142099b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2000706", + "name": "xf_t2000706b", + "phases": "BS", + "to": "x2000706b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75C", + "from": "l3141411", + "name": "xf_t21197413c", + "phases": "CS", + "to": "x3141411c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3091052", + "name": "xf_t228532641a", + "phases": "AS", + "to": "x3091052a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2766727", + "name": "xf_t5302367b", + "phases": "BS", + "to": "x2766727b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2673321", + "name": "xf_t5302674a", + "phases": "AS", + "to": "x2673321a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2991927", + "name": "xf_t5355607b", + "phases": "BS", + "to": "x2991927b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2973159", + "name": "xf_t21398536a", + "phases": "AS", + "to": "x2973159a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2674052", + "name": "xf_t21393570c", + "phases": "CS", + "to": "x2674052c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l3141400", + "name": "xf_t5138313a", + "phases": "AS", + "to": "x3141400a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2745799", + "name": "xf_t226191779c", + "phases": "CS", + "to": "x2745799c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3048207", + "name": "xf_t5323248b", + "phases": "BS", + "to": "x3048207b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3198358", + "name": "xf_t5138797b", + "phases": "BS", + "to": "x3198358b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3104127", + "name": "xf_t5337690b", + "phases": "BS", + "to": "x3104127b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l3048212", + "name": "xf_t5355934a", + "phases": "AS", + "to": "x3048212a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2822861", + "name": "xf_t21015829a", + "phases": "AS", + "to": "x2822861a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2822865", + "name": "xf_t5274986c", + "phases": "CS", + "to": "x2822865c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2858166", + "name": "xf_t226192994a", + "phases": "AS", + "to": "x2858166a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2000703", + "name": "xf_t2000703b", + "phases": "BS", + "to": "x2000703b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3189190", + "name": "xf_t227100753a", + "phases": "AS", + "to": "x3189190a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2935553", + "name": "xf_t5323247b", + "phases": "BS", + "to": "x2935553b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3142049", + "name": "xf_t5356810c", + "phases": "CS", + "to": "x3142049c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l2690868", + "name": "xf_t227917127c", + "phases": "CS", + "to": "x2690868c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2954355", + "name": "xf_t5293672a", + "phases": "AS", + "to": "x2954355a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2954354", + "name": "xf_t5302675a", + "phases": "AS", + "to": "x2954354a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2973180", + "name": "xf_t21398646b", + "phases": "BS", + "to": "x2973180b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2785518", + "name": "xf_t5138469c", + "phases": "CS", + "to": "x2785518c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3104853", + "name": "xf_t5260518c", + "phases": "CS", + "to": "x3104853c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2766724", + "name": "xf_t5294786c", + "phases": "CS", + "to": "x2766724c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2820528", + "name": "xf_t226191778c", + "phases": "CS", + "to": "x2820528c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2992656", + "name": "xf_t5260627a", + "phases": "AS", + "to": "x2992656a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3236011", + "name": "xf_t5138796b", + "phases": "BS", + "to": "x3236011b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3029510", + "name": "xf_t5355606b", + "phases": "BS", + "to": "x3029510b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2674027", + "name": "xf_t21380325b", + "phases": "BS", + "to": "x2674027b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2898526", + "name": "xf_t21393486c", + "phases": "CS", + "to": "x2898526c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2839305", + "name": "xf_t28150292a", + "phases": "AS", + "to": "x2839305a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2916598", + "name": "xf_t5355933a", + "phases": "AS", + "to": "x2916598a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3728043", + "name": "xf_t2224387138a", + "phases": "AS", + "to": "x3728043a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2948732", + "name": "xf_t225571845b", + "phases": "BS", + "to": "x2948732b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2822864", + "name": "xf_t5274985c", + "phases": "CS", + "to": "x2822864c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2841620", + "name": "xf_t28147018b", + "phases": "BS", + "to": "x2841620b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2000704", + "name": "xf_t2000704b", + "phases": "BS", + "to": "x2000704b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3067448", + "name": "xf_t5262075c", + "phases": "CS", + "to": "x3067448c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3217064", + "name": "xf_t21391390b", + "phases": "BS", + "to": "x3217064b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3122827", + "name": "xf_t5293673a", + "phases": "AS", + "to": "x3122827a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3160114", + "name": "xf_t5339019a", + "phases": "AS", + "to": "x3160114a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2804956", + "name": "xf_t5356811a", + "phases": "AS", + "to": "x2804956a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3197643", + "name": "xf_t5302369b", + "phases": "BS", + "to": "x3197643b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3254205", + "name": "xf_t5302672c", + "phases": "CS", + "to": "x3254205c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2767408", + "name": "xf_t5260517c", + "phases": "CS", + "to": "x2767408c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2729409", + "name": "xf_t5355605b", + "phases": "BS", + "to": "x2729409b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2801896", + "name": "xf_t226191995b", + "phases": "BS", + "to": "x2801896b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3197644", + "name": "xf_t5138771a", + "phases": "AS", + "to": "x3197644a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2989566", + "name": "xf_t5260602b", + "phases": "BS", + "to": "x2989566b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2935551", + "name": "xf_t21387929c", + "phases": "CS", + "to": "x2935551c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2879061", + "name": "xf_t5337692b", + "phases": "BS", + "to": "x2879061b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3142079", + "name": "xf_t21249626b", + "phases": "BS", + "to": "x3142079b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3010569", + "name": "xf_t5302673a", + "phases": "AS", + "to": "x3010569a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3122813", + "name": "xf_t5138685a", + "phases": "AS", + "to": "x3122813a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2729427", + "name": "xf_t5323249b", + "phases": "BS", + "to": "x2729427b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2841624", + "name": "xf_t5355604b", + "phases": "BS", + "to": "x2841624b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2730149", + "name": "xf_t5260601c", + "phases": "CS", + "to": "x2730149c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2897774", + "name": "xf_t5337691b", + "phases": "BS", + "to": "x2897774b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2897781", + "name": "xf_t5138770a", + "phases": "AS", + "to": "x2897781a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3048966", + "name": "xf_t5260625c", + "phases": "CS", + "to": "x3048966c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2000702", + "name": "xf_t2000702b", + "phases": "BS", + "to": "x2000702b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3122825", + "name": "xf_t28118808a", + "phases": "AS", + "to": "x3122825a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3177665", + "name": "xf_t227731863a", + "phases": "AS", + "to": "x3177665a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2861158", + "name": "xf_t5251858c", + "phases": "CS", + "to": "x2861158c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3066808", + "name": "xf_t5337654c", + "phases": "CS", + "to": "x3066808c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3085392", + "name": "xf_t5337630c", + "phases": "CS", + "to": "x3085392c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2001008", + "name": "xf_t2001008b", + "phases": "BS", + "to": "x2001008b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3160117", + "name": "xf_t21357901b", + "phases": "BS", + "to": "x3160117b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3160101", + "name": "xf_t5337678a", + "phases": "AS", + "to": "x3160101a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3160108", + "name": "xf_t5355603b", + "phases": "BS", + "to": "x3160108b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2727795", + "name": "xf_t227678342c", + "phases": "CS", + "to": "x2727795c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l3784018", + "name": "xf_t2224500658a", + "phases": "AS", + "to": "x3784018a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2804254", + "name": "xf_t5323418a", + "phases": "AS", + "to": "x2804254a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3254208", + "name": "xf_t5338961c", + "phases": "CS", + "to": "x3254208c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2731712", + "name": "xf_t21426205b", + "phases": "BS", + "to": "x2731712b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2766720", + "name": "xf_t5441311a", + "phases": "AS", + "to": "x2766720a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2897792", + "name": "xf_t5338985a", + "phases": "AS", + "to": "x2897792a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2001310", + "name": "xf_t2001310a", + "phases": "AS", + "to": "x2001310a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2730106", + "name": "xf_t5356814c", + "phases": "CS", + "to": "x2730106c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3010559", + "name": "xf_t5337679a", + "phases": "AS", + "to": "x3010559a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2858175", + "name": "xf_t225668688a", + "phases": "AS", + "to": "x2858175a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2954351", + "name": "xf_t5302805c", + "phases": "AS", + "to": "x2954351c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2000909", + "name": "xf_t2000909c", + "phases": "CS", + "to": "x2000909c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3235267", + "name": "xf_t5321892c", + "phases": "CS", + "to": "x3235267c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2673346", + "name": "xf_t5293486c", + "phases": "CS", + "to": "x2673346c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2952007", + "name": "xf_t5251859c", + "phases": "CS", + "to": "x2952007c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2673308", + "name": "xf_t5337653b", + "phases": "BS", + "to": "x2673308b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2876797", + "name": "xf_t226193345a", + "phases": "AS", + "to": "x2876797a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3143999", + "name": "xf_t226193696a", + "phases": "AS", + "to": "x3143999a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2785513", + "name": "xf_t5337677a", + "phases": "AS", + "to": "x2785513a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2001009", + "name": "xf_t2001009b", + "phases": "BS", + "to": "x2001009b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2992657", + "name": "xf_t21475841a", + "phases": "AS", + "to": "x2992657a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3029055", + "name": "xf_t5260607b", + "phases": "BS", + "to": "x3029055b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3123509", + "name": "xf_t28129923c", + "phases": "CS", + "to": "x3123509c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3251806", + "name": "xf_t5355602b", + "phases": "BS", + "to": "x3251806b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2897767", + "name": "xf_t5338960c", + "phases": "CS", + "to": "x2897767c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2748144", + "name": "xf_t5338984a", + "phases": "AS", + "to": "x2748144a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75C", + "from": "l3122814", + "name": "xf_t5338899c", + "phases": "CS", + "to": "x3122814c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2001202", + "name": "xf_t2001202c", + "phases": "CS", + "to": "x2001202c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3254238", + "name": "xf_t5293487b", + "phases": "BS", + "to": "x3254238b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3195751", + "name": "xf_t5293681a", + "phases": "CS", + "to": "x3195751a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2001311", + "name": "xf_t2001311a", + "phases": "AS", + "to": "x2001311a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2936212", + "name": "xf_t5356815a", + "phases": "AS", + "to": "x2936212a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2841645", + "name": "xf_t5321893c", + "phases": "CS", + "to": "x2841645c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2673307", + "name": "xf_t5337632c", + "phases": "CS", + "to": "x2673307c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3048888", + "name": "xf_t5251856c", + "phases": "CS", + "to": "x3048888c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2001006", + "name": "xf_t2001006b", + "phases": "BS", + "to": "x2001006b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2952013", + "name": "xf_t5355843a", + "phases": "CS", + "to": "x2952013a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3251808", + "name": "xf_t226029836a", + "phases": "AS", + "to": "x3251808a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l3254231", + "name": "xf_t5338988a", + "phases": "AS", + "to": "x3254231a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2673326", + "name": "xf_t5355601b", + "phases": "BS", + "to": "x2673326b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2673303", + "name": "xf_t5338963c", + "phases": "CS", + "to": "x2673303c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2879065", + "name": "xf_t5247126b", + "phases": "BS", + "to": "x2879065b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2897793", + "name": "xf_t5338987a", + "phases": "AS", + "to": "x2897793a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2879067", + "name": "xf_t21380616a", + "phases": "AS", + "to": "x2879067a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3141398", + "name": "xf_t21386976a", + "phases": "AS", + "to": "x3141398a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2001005", + "name": "xf_t2001005b", + "phases": "BS", + "to": "x2001005b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2000907", + "name": "xf_t2000907c", + "phases": "CS", + "to": "x2000907c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l3086098", + "name": "xf_t21474556a", + "phases": "AS", + "to": "x3086098a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3729298", + "name": "xf_t2224386617a", + "phases": "AS", + "to": "x3729298a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3066829", + "name": "xf_t5321894c", + "phases": "CS", + "to": "x3066829c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3085400", + "name": "xf_t5302803c", + "phases": "AS", + "to": "x3085400c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2729405", + "name": "xf_t21393412b", + "phases": "BS", + "to": "x2729405b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3029497", + "name": "xf_t5337631c", + "phases": "CS", + "to": "x3029497c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3064514", + "name": "xf_t5251857c", + "phases": "CS", + "to": "x3064514c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3125349", + "name": "xf_t226193698c", + "phases": "CS", + "to": "x3125349c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3141396", + "name": "xf_t5337655c", + "phases": "CS", + "to": "x3141396c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2001007", + "name": "xf_t2001007b", + "phases": "BS", + "to": "x2001007b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2876813", + "name": "xf_t5355842a", + "phases": "CS", + "to": "x2876813a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3235254", + "name": "xf_t5441331c", + "phases": "CS", + "to": "x3235254c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l2973791", + "name": "xf_t5260605a", + "phases": "AS", + "to": "x2973791a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2691938", + "name": "xf_t5355600b", + "phases": "BS", + "to": "x2691938b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3176660", + "name": "xf_t226193892b", + "phases": "BS", + "to": "x3176660b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2729413", + "name": "xf_t21397067a", + "phases": "AS", + "to": "x2729413a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2748125", + "name": "xf_t5338962c", + "phases": "CS", + "to": "x2748125c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2935550", + "name": "xf_t5274999c", + "phases": "CS", + "to": "x2935550c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2785538", + "name": "xf_t5338986a", + "phases": "AS", + "to": "x2785538a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2897805", + "name": "xf_t21471907a", + "phases": "AS", + "to": "x2897805a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3141399", + "name": "xf_t5302804c", + "phases": "AS", + "to": "x3141399c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2000908", + "name": "xf_t2000908c", + "phases": "CS", + "to": "x2000908c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3030205", + "name": "xf_t21390038c", + "phases": "CS", + "to": "x3030205c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2842390", + "name": "xf_t21325725c", + "phases": "CS", + "to": "x2842390c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3066805", + "name": "xf_t5337674a", + "phases": "AS", + "to": "x3066805a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3010561", + "name": "xf_t5337650a", + "phases": "AS", + "to": "x3010561a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3068944", + "name": "xf_t5260494b", + "phases": "BS", + "to": "x3068944b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l3235250", + "name": "xf_t5337698b", + "phases": "BS", + "to": "x3235250b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3649298", + "name": "xf_t2224237384a", + "phases": "AS", + "to": "x3649298a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3225319", + "name": "xf_t225533675b", + "phases": "BS", + "to": "x3225319b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3097861", + "name": "xf_t225533215c", + "phases": "CS", + "to": "x3097861c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3122812", + "name": "xf_t21031694b", + "phases": "BS", + "to": "x3122812b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2820535", + "name": "xf_t5338981b", + "phases": "BS", + "to": "x2820535b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2879078", + "name": "xf_t21399229a", + "phases": "AS", + "to": "x2879078a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2822871", + "name": "xf_t5355840b", + "phases": "BS", + "to": "x2822871b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3178971", + "name": "xf_t5338896a", + "phases": "AS", + "to": "x3178971a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2954350", + "name": "xf_t5302809c", + "phases": "BS", + "to": "x2954350c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2000905", + "name": "xf_t2000905c", + "phases": "CS", + "to": "x2000905c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2935547", + "name": "xf_t21383553b", + "phases": "BS", + "to": "x2935547b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3066811", + "name": "xf_t28126875b", + "phases": "BS", + "to": "x3066811b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3160868", + "name": "xf_t0107693b", + "phases": "BS", + "to": "x3160868b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2001003", + "name": "xf_t2001003b", + "phases": "BS", + "to": "x2001003b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3197641", + "name": "xf_t5293591a", + "phases": "AS", + "to": "x3197641a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3728037", + "name": "xf_t2224386946a", + "phases": "AS", + "to": "x3728037a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2841618", + "name": "xf_t5337673a", + "phases": "AS", + "to": "x2841618a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2804258", + "name": "xf_t5337697b", + "phases": "BS", + "to": "x2804258b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2804252", + "name": "xf_t5302473a", + "phases": "AS", + "to": "x2804252a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3254218", + "name": "xf_t5138720a", + "phases": "AS", + "to": "x3254218a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3122818", + "name": "xf_t28120183c", + "phases": "CS", + "to": "x3122818c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3120504", + "name": "xf_t225897846a", + "phases": "AS", + "to": "x3120504a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75A", + "from": "l3232301", + "name": "xf_t21458756c", + "phases": "AS", + "to": "x3232301c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2730107", + "name": "xf_t5251855c", + "phases": "CS", + "to": "x2730107c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3197645", + "name": "xf_t21395962a", + "phases": "AS", + "to": "x3197645a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2860492", + "name": "xf_t21395720c", + "phases": "CS", + "to": "x2860492c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3122817", + "name": "xf_t5355779c", + "phases": "CS", + "to": "x3122817c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2763407", + "name": "xf_t225906836c", + "phases": "CS", + "to": "x2763407c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2729411", + "name": "xf_t5138769a", + "phases": "AS", + "to": "x2729411a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2973150", + "name": "xf_t21380528a", + "phases": "AS", + "to": "x2973150a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2001004", + "name": "xf_t2001004b", + "phases": "BS", + "to": "x2001004b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2000906", + "name": "xf_t2000906c", + "phases": "CS", + "to": "x2000906c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2933120", + "name": "xf_t226192890c", + "phases": "CS", + "to": "x2933120c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2973161", + "name": "xf_t5293592a", + "phases": "AS", + "to": "x2973161a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2692664", + "name": "xf_t5351021c", + "phases": "CS", + "to": "x2692664c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75A", + "from": "l2862616", + "name": "xf_t227447984c", + "phases": "AS", + "to": "x2862616c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3104133", + "name": "xf_t5293483a", + "phases": "AS", + "to": "x3104133a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2991939", + "name": "xf_t5337652b", + "phases": "BS", + "to": "x2991939b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3235244", + "name": "xf_t5337676a", + "phases": "AS", + "to": "x3235244a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2673314", + "name": "xf_t5355778c", + "phases": "CS", + "to": "x2673314c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2785546", + "name": "xf_t21399752a", + "phases": "CS", + "to": "x2785546a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5B", + "from": "l2691965", + "name": "xf_t5338983b", + "phases": "BS", + "to": "x2691965b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2973155", + "name": "xf_t5338898a", + "phases": "AS", + "to": "x2973155a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2000903", + "name": "xf_t2000903c", + "phases": "CS", + "to": "x2000903c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2805031", + "name": "xf_t5260491c", + "phases": "CS", + "to": "x2805031c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3104118", + "name": "xf_t5321890c", + "phases": "CS", + "to": "x3104118c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3235266", + "name": "xf_t5302807c", + "phases": "CS", + "to": "x3235266c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2000709", + "name": "xf_t2000709b", + "phases": "BS", + "to": "x2000709b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3727708", + "name": "xf_t2224386815a", + "phases": "AS", + "to": "x3727708a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3027133", + "name": "xf_t226101449a", + "phases": "CS", + "to": "x3027133a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2748158", + "name": "xf_t5293480a", + "phases": "AS", + "to": "x2748158a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75A", + "from": "l2763811", + "name": "xf_t21459629c", + "phases": "AS", + "to": "x2763811c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2954349", + "name": "xf_t5337699b", + "phases": "BS", + "to": "x2954349b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2785514", + "name": "xf_t5337675a", + "phases": "AS", + "to": "x2785514a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3085402", + "name": "xf_t5302471a", + "phases": "AS", + "to": "x3085402a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3085398", + "name": "xf_t5355777b", + "phases": "BS", + "to": "x3085398b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3197636", + "name": "xf_t28148580b", + "phases": "BS", + "to": "x3197636b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2691942", + "name": "xf_t5247105b", + "phases": "BS", + "to": "x2691942b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2785534", + "name": "xf_t5338982b", + "phases": "BS", + "to": "x2785534b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3177881", + "name": "xf_t227896008c", + "phases": "CS", + "to": "x3177881c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3120503", + "name": "xf_t225869139a", + "phases": "AS", + "to": "x3120503a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2841626", + "name": "xf_t5302808c", + "phases": "CS", + "to": "x2841626c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2000904", + "name": "xf_t2000904c", + "phases": "CS", + "to": "x2000904c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2973154", + "name": "xf_t5338897a", + "phases": "AS", + "to": "x2973154a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2911069", + "name": "xf_t225571871b", + "phases": "BS", + "to": "x2911069b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3141388", + "name": "xf_t5138416c", + "phases": "CS", + "to": "x3141388c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2748126", + "name": "xf_t5321891c", + "phases": "CS", + "to": "x2748126c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2001002", + "name": "xf_t2001002b", + "phases": "BS", + "to": "x2001002b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2673313", + "name": "xf_t5321853b", + "phases": "BS", + "to": "x2673313b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3177894", + "name": "xf_t227903012a", + "phases": "AS", + "to": "x3177894a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2917330", + "name": "xf_t5260474a", + "phases": "AS", + "to": "x2917330a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3104125", + "name": "xf_t5138264b", + "phases": "BS", + "to": "x3104125b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3101787", + "name": "xf_t5321877a", + "phases": "AS", + "to": "x3101787a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3216351", + "name": "xf_t21398815a", + "phases": "AS", + "to": "x3216351a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3649297", + "name": "xf_t2224237380a", + "phases": "AS", + "to": "x3649297a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2841641", + "name": "xf_t21380156b", + "phases": "BS", + "to": "x2841641b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3029503", + "name": "xf_t5138373c", + "phases": "CS", + "to": "x3029503c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2766721", + "name": "xf_t5247059a", + "phases": "AS", + "to": "x2766721a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75A", + "from": "l2951995", + "name": "xf_t226192801c", + "phases": "AS", + "to": "x2951995c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l3104144", + "name": "xf_t5339020a", + "phases": "AS", + "to": "x3104144a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3197625", + "name": "xf_t5339044c", + "phases": "CS", + "to": "x3197625c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2935554", + "name": "xf_t5338921a", + "phases": "AS", + "to": "x2935554a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3216339", + "name": "xf_t5391741b", + "phases": "BS", + "to": "x3216339b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3649306", + "name": "xf_t2224238167a", + "phases": "AS", + "to": "x3649306a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2879075", + "name": "xf_t5337724a", + "phases": "AS", + "to": "x2879075a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3085389", + "name": "xf_t5391765b", + "phases": "BS", + "to": "x3085389b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2970258", + "name": "xf_t21459640c", + "phases": "AS", + "to": "x2970258c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2916618", + "name": "xf_t5323283b", + "phases": "BS", + "to": "x2916618b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2748124", + "name": "xf_t5323392b", + "phases": "BS", + "to": "x2748124b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2804257", + "name": "xf_t5321854b", + "phases": "BS", + "to": "x2804257b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3101788", + "name": "xf_t5321878a", + "phases": "AS", + "to": "x3101788a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2861222", + "name": "xf_t5260473a", + "phases": "AS", + "to": "x2861222a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2973157", + "name": "xf_t5337722a", + "phases": "AS", + "to": "x2973157a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2748781", + "name": "xf_t21382813a", + "phases": "AS", + "to": "x2748781a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3104129", + "name": "xf_t5338969a", + "phases": "AS", + "to": "x3104129a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2954353", + "name": "xf_t5338945a", + "phases": "AS", + "to": "x2954353a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3104126", + "name": "xf_t5138372c", + "phases": "CS", + "to": "x3104126c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3157710", + "name": "xf_t226193361b", + "phases": "BS", + "to": "x3157710b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2897807", + "name": "xf_t21386771b", + "phases": "BS", + "to": "x2897807b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2673315", + "name": "xf_t5247058a", + "phases": "AS", + "to": "x2673315a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2804277", + "name": "xf_t5339043c", + "phases": "CS", + "to": "x2804277c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2935557", + "name": "xf_t21397005a", + "phases": "AS", + "to": "x2935557a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3197631", + "name": "xf_t5338920a", + "phases": "AS", + "to": "x3197631a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3197640", + "name": "xf_t5338944c", + "phases": "CS", + "to": "x3197640c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2673311", + "name": "xf_t21397029a", + "phases": "AS", + "to": "x2673311a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2935568", + "name": "xf_t28119958b", + "phases": "BS", + "to": "x2935568b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2710513", + "name": "xf_t5325245b", + "phases": "BS", + "to": "x2710513b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3178978", + "name": "xf_t5337723a", + "phases": "AS", + "to": "x3178978a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3048201", + "name": "xf_t5391742b", + "phases": "BS", + "to": "x3048201b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3727711", + "name": "xf_t2224386874a", + "phases": "AS", + "to": "x3727711a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2952003", + "name": "xf_t5337614b", + "phases": "BS", + "to": "x2952003b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3254870", + "name": "xf_t5260581c", + "phases": "CS", + "to": "x3254870c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2860486", + "name": "xf_t28127390c", + "phases": "AS", + "to": "x2860486c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3159037", + "name": "xf_t5323391b", + "phases": "BS", + "to": "x3159037b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2897791", + "name": "xf_t5323282b", + "phases": "BS", + "to": "x2897791b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3235251", + "name": "xf_t21387206c", + "phases": "AS", + "to": "x3235251c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2001208", + "name": "xf_t2001208c", + "phases": "CS", + "to": "x2001208c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3046854", + "name": "xf_t227732939b", + "phases": "BS", + "to": "x3046854b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2879767", + "name": "xf_t5260496b", + "phases": "BS", + "to": "x2879767b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2860485", + "name": "xf_t5321855b", + "phases": "BS", + "to": "x2860485b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2879071", + "name": "xf_t5337701b", + "phases": "BS", + "to": "x2879071b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2820531", + "name": "xf_t226192936b", + "phases": "BS", + "to": "x2820531b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2991908", + "name": "xf_t5338900a", + "phases": "AS", + "to": "x2991908a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l3104123", + "name": "xf_t5338924c", + "phases": "CS", + "to": "x3104123c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2804957", + "name": "xf_t5356790c", + "phases": "CS", + "to": "x2804957c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2726983", + "name": "xf_t226109079a", + "phases": "AS", + "to": "x2726983a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l3029502", + "name": "xf_t5138262a", + "phases": "AS", + "to": "x3029502a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2879073", + "name": "xf_t5138371c", + "phases": "CS", + "to": "x2879073c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2804269", + "name": "xf_t5323285b", + "phases": "BS", + "to": "x2804269b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2710504", + "name": "xf_t5323394b", + "phases": "BS", + "to": "x2710504b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3104128", + "name": "xf_t5247057a", + "phases": "AS", + "to": "x3104128a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2925506", + "name": "xf_t225533703c", + "phases": "CS", + "to": "x2925506c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2991909", + "name": "xf_t5355773a", + "phases": "AS", + "to": "x2991909a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l3178972", + "name": "xf_t5338923c", + "phases": "CS", + "to": "x3178972c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2785511", + "name": "xf_t5339046a", + "phases": "AS", + "to": "x2785511a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3141390", + "name": "xf_t5391743b", + "phases": "BS", + "to": "x3141390b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3029504", + "name": "xf_t5337702b", + "phases": "BS", + "to": "x3029504b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2785530", + "name": "xf_t5391985a", + "phases": "AS", + "to": "x2785530a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3045895", + "name": "xf_t5351020c", + "phases": "CS", + "to": "x3045895c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2991922", + "name": "xf_t5302734a", + "phases": "AS", + "to": "x2991922a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3160106", + "name": "xf_t5310570a", + "phases": "AS", + "to": "x3160106a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3085397", + "name": "xf_t5323261b", + "phases": "BS", + "to": "x3085397b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3649305", + "name": "xf_t2224237718a", + "phases": "AS", + "to": "x3649305a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2001209", + "name": "xf_t2001209c", + "phases": "CS", + "to": "x2001209c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2767343", + "name": "xf_t5356791c", + "phases": "CS", + "to": "x2767343c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2767407", + "name": "xf_t5260495b", + "phases": "BS", + "to": "x2767407b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2860506", + "name": "xf_t5321856b", + "phases": "BS", + "to": "x2860506b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2766722", + "name": "xf_t5337700b", + "phases": "BS", + "to": "x2766722b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2766725", + "name": "xf_t21399220c", + "phases": "CS", + "to": "x2766725c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3160109", + "name": "xf_t5338947b", + "phases": "BS", + "to": "x3160109b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2859403", + "name": "xf_t228001810a", + "phases": "AS", + "to": "x2859403a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3160113", + "name": "xf_t5323284b", + "phases": "BS", + "to": "x3160113b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2991912", + "name": "xf_t5247056a", + "phases": "AS", + "to": "x2991912a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2822866", + "name": "xf_t5338922b", + "phases": "BS", + "to": "x2822866b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3197652", + "name": "xf_t5339021a", + "phases": "AS", + "to": "x3197652a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2861197", + "name": "xf_t21474711c", + "phases": "CS", + "to": "x2861197c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l3008232", + "name": "xf_t226192492b", + "phases": "BS", + "to": "x3008232b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2710537", + "name": "xf_t5391744b", + "phases": "BS", + "to": "x2710537b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2766723", + "name": "xf_t5391986a", + "phases": "AS", + "to": "x2766723a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2879753", + "name": "xf_t21249674b", + "phases": "BS", + "to": "x2879753b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2991923", + "name": "xf_t5302735a", + "phases": "AS", + "to": "x2991923a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l3085391", + "name": "xf_t21236413b", + "phases": "BS", + "to": "x3085391b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2001206", + "name": "xf_t2001206c", + "phases": "CS", + "to": "x2001206c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2001315", + "name": "xf_t2001315a", + "phases": "AS", + "to": "x2001315a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2897768", + "name": "xf_t5337634c", + "phases": "CS", + "to": "x2897768c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3254217", + "name": "xf_t21399112c", + "phases": "CS", + "to": "x3254217c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3048208", + "name": "xf_t5138260a", + "phases": "AS", + "to": "x3048208a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3122847", + "name": "xf_t21483138a", + "phases": "CS", + "to": "x3122847a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2991914", + "name": "xf_t5338941c", + "phases": "CS", + "to": "x2991914c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3010568", + "name": "xf_t5338965a", + "phases": "AS", + "to": "x3010568a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3728040", + "name": "xf_t2224387062a", + "phases": "AS", + "to": "x3728040a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75B", + "from": "l3027670", + "name": "xf_t226308719b", + "phases": "BS", + "to": "x3027670b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2729407", + "name": "xf_t5247100b", + "phases": "BS", + "to": "x2729407b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2764399", + "name": "xf_t226192493b", + "phases": "BS", + "to": "x2764399b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3066810", + "name": "xf_t5337659c", + "phases": "CS", + "to": "x3066810c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3251799", + "name": "xf_t5260562a", + "phases": "AS", + "to": "x3251799a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2764412", + "name": "xf_t5321874a", + "phases": "AS", + "to": "x2764412a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2916625", + "name": "xf_t21467859b", + "phases": "BS", + "to": "x2916625b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3778577", + "name": "xf_t2224490448c", + "phases": "CS", + "to": "x3778577c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3048887", + "name": "xf_t5260586b", + "phases": "BS", + "to": "x3048887b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2729406", + "name": "xf_t5337633c", + "phases": "CS", + "to": "x2729406c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2001207", + "name": "xf_t2001207c", + "phases": "CS", + "to": "x2001207c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3179608", + "name": "xf_t5356793c", + "phases": "CS", + "to": "x3179608c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5A", + "from": "l3254230", + "name": "xf_t5338989a", + "phases": "AS", + "to": "x3254230a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2913406", + "name": "xf_t225940756b", + "phases": "BS", + "to": "x2913406b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2766730", + "name": "xf_t5355359b", + "phases": "BS", + "to": "x2766730b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3552667", + "name": "xf_t2224061203c", + "phases": "CS", + "to": "x3552667c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2691952", + "name": "xf_t5391980a", + "phases": "AS", + "to": "x2691952a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3104117", + "name": "xf_t5338964c", + "phases": "CS", + "to": "x3104117c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75C", + "from": "m2001400", + "name": "xf_t2001400c", + "phases": "CS", + "to": "x2001400c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3263051", + "name": "xf_t22112371533c", + "phases": "CS", + "to": "x3263051c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2729434", + "name": "xf_t5321851b", + "phases": "BS", + "to": "x2729434b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2936271", + "name": "xf_t5260476a", + "phases": "AS", + "to": "x2936271a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2001313", + "name": "xf_t2001313a", + "phases": "AS", + "to": "x2001313a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3104850", + "name": "xf_t5260561c", + "phases": "CS", + "to": "x3104850c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2841619", + "name": "xf_t5337636c", + "phases": "CS", + "to": "x2841619c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3086002", + "name": "xf_t5356794c", + "phases": "CS", + "to": "x3086002c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3120502", + "name": "xf_t5294812a", + "phases": "CS", + "to": "x3120502a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2896685", + "name": "xf_t227187012a", + "phases": "AS", + "to": "x2896685a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2896685", + "name": "xf_t227187012c", + "phases": "CS", + "to": "x2896685c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75C", + "from": "l3178979", + "name": "xf_t5338968c", + "phases": "CS", + "to": "x3178979c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2896685", + "name": "xf_t227187012b", + "phases": "BS", + "to": "x2896685b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2673322", + "name": "xf_t5355358b", + "phases": "BS", + "to": "x2673322b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3141394", + "name": "xf_t5339042b", + "phases": "BS", + "to": "x3141394b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2673318", + "name": "xf_t5338967c", + "phases": "CS", + "to": "x2673318c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l3233412", + "name": "xf_t226308717a", + "phases": "AS", + "to": "x3233412a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2879081", + "name": "xf_t5391981a", + "phases": "AS", + "to": "x2879081a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2766741", + "name": "xf_t21386754a", + "phases": "AS", + "to": "x2766741a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3197629", + "name": "xf_t5247122b", + "phases": "BS", + "to": "x3197629b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75C", + "from": "l2729410", + "name": "xf_t5338943c", + "phases": "CS", + "to": "x2729410c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2001203", + "name": "xf_t2001203c", + "phases": "CS", + "to": "x2001203c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2001312", + "name": "xf_t2001312a", + "phases": "AS", + "to": "x2001312a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2879794", + "name": "xf_t5260475a", + "phases": "AS", + "to": "x2879794a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2842330", + "name": "xf_t5356795c", + "phases": "CS", + "to": "x2842330c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2916608", + "name": "xf_t5321852c", + "phases": "CS", + "to": "x2916608c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2822863", + "name": "xf_t5337635c", + "phases": "CS", + "to": "x2822863c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2841648", + "name": "xf_t5337720a", + "phases": "AS", + "to": "x2841648a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2001205", + "name": "xf_t2001205c", + "phases": "CS", + "to": "x2001205c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2001314", + "name": "xf_t2001314a", + "phases": "AS", + "to": "x2001314a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3027132", + "name": "xf_t5321876a", + "phases": "AS", + "to": "x3027132a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3065696", + "name": "xf_t227921416a", + "phases": "AS", + "to": "x3065696a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2991921", + "name": "xf_t28129399c", + "phases": "CS", + "to": "x2991921c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3216338", + "name": "xf_t5355599b", + "phases": "BS", + "to": "x3216338b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2804245", + "name": "xf_t5355598b", + "phases": "BS", + "to": "x2804245b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3649304", + "name": "xf_t2224237713a", + "phases": "AS", + "to": "x3649304a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2822869", + "name": "xf_t5338942a", + "phases": "AS", + "to": "x2822869a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3029505", + "name": "xf_t5338966c", + "phases": "CS", + "to": "x3029505c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3029498", + "name": "xf_t5247036c", + "phases": "CS", + "to": "x3029498c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l3253995", + "name": "xf_t21396815c", + "phases": "CS", + "to": "x3253995c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l3048200", + "name": "xf_t5391740b", + "phases": "BS", + "to": "x3048200b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2001204", + "name": "xf_t2001204c", + "phases": "CS", + "to": "x2001204c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2710512", + "name": "xf_t5323280b", + "phases": "BS", + "to": "x2710512b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "name": "d5653469-1_int", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2952007c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2310.76", + "base_power_2": "8173.78", + "name": "ld_251859c0b", + "nominal_voltage": "120.09", + "parent": "sx2952007c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3029510b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2691939b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2727795c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2879773a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254217c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254218a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026920", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000913c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000913c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000913c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "5402.72", + "name": "ld_2000913c0a", + "nominal_voltage": "120.09", + "parent": "sx2000913c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3122816b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026925", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026926", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000708b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026927", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001013b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001013b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001013b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "9571.64", + "base_power_2": "10618.21", + "name": "ld_2001013b0b", + "nominal_voltage": "120.09", + "parent": "sx2001013b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2804957c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3508.57", + "base_power_2": "3780.09", + "name": "ld_356790c0a", + "nominal_voltage": "120.09", + "parent": "sx2804957c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2711234b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2860490a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3181545c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3125349c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4241.99", + "base_power_2": "6242.55", + "name": "ld_226193698c0b", + "nominal_voltage": "120.09", + "parent": "sx3125349c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d6023352-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691938b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2935560c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048966", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048968", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122815b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254219c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048962", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048963", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000914c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000914c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000914c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "5402.72", + "name": "ld_2000914c0b", + "nominal_voltage": "120.09", + "parent": "sx2000914c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3048965", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026915", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841641b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973178b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026916", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000707b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3235275b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001012b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001012b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001012b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7338.85", + "base_power_2": "8476.58", + "name": "ld_2001012b0b", + "nominal_voltage": "120.09", + "parent": "sx2001012b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2731712b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7289.21", + "base_power_2": "2741.72", + "name": "ld_21426205b0a", + "nominal_voltage": "120.09", + "parent": "sx2731712b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3045895c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3045895c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3045895c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7876.00", + "base_power_2": "2608.54", + "name": "ld_351020c0a", + "nominal_voltage": "120.09", + "parent": "sx3045895c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2801896b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254215c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026940", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3101782a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026941", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000911c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000911c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000911c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "5402.72", + "name": "ld_2000911c0a", + "nominal_voltage": "120.09", + "parent": "sx2000911c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x1108406a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026942", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122818c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2897779c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2841000", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026947", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2821010a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8652.62", + "base_power_2": "5058.72", + "name": "ld_294788a0a", + "nominal_voltage": "120.09", + "parent": "sx2821010a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026948", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2842330", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026949", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000706b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x1108406b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160868b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026946", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001011b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001011b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001011b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5045.68", + "base_power_2": "3545.93", + "name": "ld_2001011b0a", + "nominal_voltage": "120.09", + "parent": "sx2001011b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2955055", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3179699b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1927.38", + "base_power_2": "13113.86", + "name": "ld_21393454b0b", + "nominal_voltage": "120.09", + "parent": "sx3179699b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2801895b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254216a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3027116a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2842329", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x1108407b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026931", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000912c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000912c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000912c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "5402.72", + "name": "ld_2000912c0a", + "nominal_voltage": "120.09", + "parent": "sx2000912c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3122817c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "hvmv69sub3_hsb", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026939", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000705b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3235273b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d6049822-1_int", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2955047", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001010b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001010b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001010b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "10815.90", + "base_power_2": "8608.48", + "name": "ld_2001010b0b", + "nominal_voltage": "120.09", + "parent": "sx2001010b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026935", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2804956a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4492.16", + "base_power_2": "4652.17", + "name": "ld_356811a0b", + "nominal_voltage": "120.09", + "parent": "sx2804956a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2820528c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2860493a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3010570a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5318.39", + "base_power_2": "3258.93", + "name": "ld_302392a0a", + "nominal_voltage": "120.09", + "parent": "sx3010570a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2955081", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048937", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2952003b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1222.65", + "base_power_2": "8808.27", + "name": "ld_337614b0a", + "nominal_voltage": "120.09", + "parent": "sx2952003b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2804261c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047821", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897777c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3159037", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047824", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047825", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047826", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000704b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3140238a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3457.44", + "base_power_2": "9109.76", + "name": "ld_227905262a0a", + "nominal_voltage": "120.09", + "parent": "sx3140238a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047828", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2842390", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2955078", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2955076", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2803194c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2955077", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2955074", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p859694", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p1197121", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "221-242079", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3045895", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104796", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000910c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000910c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000910c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "5402.72", + "name": "ld_2000910c0b", + "nominal_voltage": "120.09", + "parent": "sx2000910c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2897778a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047831", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2823592a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3122819c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p850401", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047834", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047835", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p850400", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047836", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047837", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2804262a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000703b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160865a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2860491b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2916610b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3344.73", + "base_power_2": "9778.98", + "name": "ld_293660b0a", + "nominal_voltage": "120.09", + "parent": "sx2916610b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047809", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3252336b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3252336b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3252336b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4169.23", + "base_power_2": "10872.01", + "name": "ld_226308723b0b", + "nominal_voltage": "120.09", + "parent": "sx3252336b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2860491a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2842383", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026907", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2842384", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3195310a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2992556a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2861157c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2798.83", + "base_power_2": "7685.70", + "name": "ld_251867c0b", + "nominal_voltage": "120.09", + "parent": "sx2861157c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3048230c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5712486-1_int", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3160864b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026905", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897775c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026906", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2858175a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2842379", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026902", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000702b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2860492c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047819", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048231b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2691936a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2861158c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5535.51", + "base_power_2": "4949.03", + "name": "ld_251858c0b", + "nominal_voltage": "120.09", + "parent": "sx2861158c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2804260b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048946", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "221-306687", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2917255c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2897776c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160863a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047812", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "221-306686", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047813", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2801895", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166394", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166393", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2673316a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1166396", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2801896", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166395", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166398", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2767414", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160872", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160871", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166399", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691967b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3319.22", + "base_power_2": "2701.40", + "name": "ld_338976b0b", + "nominal_voltage": "120.09", + "parent": "sx2691967b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2786266a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2710516", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710517", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710514", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710515", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235275", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710518", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710519", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235273", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3101788a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "e183493", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2973791a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2710512", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160878", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710513", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710510", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710511", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2673315a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1166387", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691966b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "14923.32", + "base_power_2": "5128.23", + "name": "ld_339010b0a", + "nominal_voltage": "120.09", + "parent": "sx2691966b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1166386", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2767409", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2767408", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2767407", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710525", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3195318b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3101787a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3214549a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1442.87", + "base_power_2": "16845.79", + "name": "ld_226308731a0a", + "nominal_voltage": "120.09", + "parent": "sx3214549a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2710520", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973791", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2685805", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2936276b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2842390c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4057.09", + "base_power_2": "5324.35", + "name": "ld_21325725c0b", + "nominal_voltage": "120.09", + "parent": "sx2842390c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2685809", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710521", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166391", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3178980c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3644.99", + "base_power_2": "2643.67", + "name": "ld_302510c0b", + "nominal_voltage": "120.09", + "parent": "sx3178980c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673314c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104796c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7540.92", + "base_power_2": "2943.61", + "name": "ld_260569c0a", + "nominal_voltage": "120.09", + "parent": "sx3104796c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160896c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3555.11", + "base_power_2": "2733.55", + "name": "ld_260573c0a", + "nominal_voltage": "120.09", + "parent": "sx3160896c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2690941b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5179.66", + "base_power_2": "4851.27", + "name": "ld_323387b0b", + "nominal_voltage": "120.09", + "parent": "sx2690941b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108489", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710536", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108499", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710537", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108493", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3195315a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108492", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710530", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160896", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108490", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3178981b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3178981b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3178981b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7866.96", + "base_power_2": "2163.97", + "name": "ld_21396331b0a", + "nominal_voltage": "120.09", + "parent": "sx3178981b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2936275b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2710532", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2730149", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710519a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2673313b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3195751a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3207907c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3207907b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5535139-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3101789a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2710542", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2730163c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9991.24", + "base_power_2": "3586.08", + "name": "ld_260481c0b", + "nominal_voltage": "120.09", + "parent": "sx2730163c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3178982a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3922.45", + "base_power_2": "8314.66", + "name": "ld_294843a0a", + "nominal_voltage": "120.09", + "parent": "sx3178982a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d5623395-1_int", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710546", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710543", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710544", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710518a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p903490", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166356", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3122848c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3698.24", + "base_power_2": "5683.20", + "name": "ld_21397121c0a", + "nominal_voltage": "120.09", + "parent": "sx3122848c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1166355", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166358", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2954355a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3482.40", + "base_power_2": "5094.92", + "name": "ld_293672a0a", + "nominal_voltage": "120.09", + "parent": "sx2954355a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3207907a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3068944b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3081380a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879061b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1765.94", + "base_power_2": "2244.37", + "name": "ld_337692b0a", + "nominal_voltage": "120.09", + "parent": "sx2879061b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3027157", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3027156", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x1108404a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x1108404c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x1108404b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2673319c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2710517a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3122847a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2442.92", + "base_power_2": "3041.62", + "name": "ld_21483138a0b", + "nominal_voltage": "120.09", + "parent": "sx3122847a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2916619b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3277.00", + "base_power_2": "6753.93", + "name": "ld_339006b0b", + "nominal_voltage": "120.09", + "parent": "sx2916619b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3085389b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2954354a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7427.20", + "base_power_2": "1717.13", + "name": "ld_302675a0b", + "nominal_voltage": "120.09", + "parent": "sx2954354a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2766729a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2791.05", + "base_power_2": "6353.28", + "name": "ld_293523a0b", + "nominal_voltage": "120.09", + "parent": "sx2766729a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x1108405b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x1108405a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x1108405c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2673318c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1166374", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2954357a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5265.45", + "base_power_2": "8445.89", + "name": "ld_355936a0a", + "nominal_voltage": "120.09", + "parent": "sx2954357a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1166373", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710516a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1166376", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166375", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691965b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1738.95", + "base_power_2": "3364.14", + "name": "ld_338983b0a", + "nominal_voltage": "120.09", + "parent": "sx2691965b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1166377", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916618b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6522.57", + "base_power_2": "8518.67", + "name": "ld_323283b0b", + "nominal_voltage": "120.09", + "parent": "sx2916618b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "e183473", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000915c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000915c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000915c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "5402.72", + "name": "ld_2000915c0b", + "nominal_voltage": "120.09", + "parent": "sx2000915c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "e183472", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2798067b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2936279c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001015b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001015b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001015b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "14790.10", + "base_power_2": "13043.62", + "name": "ld_2001015b0a", + "nominal_voltage": "120.09", + "parent": "sx2001015b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2730107", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x_293471c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2730108", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x_293471a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2730106", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x_293471b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1166361", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2673317a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2767414c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1166362", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3122849b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1790.40", + "base_power_2": "4230.22", + "name": "ld_293423b0a", + "nominal_voltage": "120.09", + "parent": "sx3122849b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1166364", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804956", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160861", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710515c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2804957", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166366", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166369", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916617b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9892.71", + "base_power_2": "3231.00", + "name": "ld_339007b0b", + "nominal_voltage": "120.09", + "parent": "sx2916617b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1166368", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2745799c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5958866-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710505", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710504", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3120376a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2710509", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710508", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160863", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216123", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160862", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x1108403c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3160865", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001014b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001014b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001014b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "16643.21", + "base_power_2": "15916.36", + "name": "ld_2001014b0a", + "nominal_voltage": "120.09", + "parent": "sx2001014b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3160864", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3253995", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166370", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x1108403b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3160868", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x1108403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p829796", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p829797", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879054a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5547.53", + "base_power_2": "3596.80", + "name": "ld_247061a0b", + "nominal_voltage": "120.09", + "parent": "sx2879054a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3632979a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p829798", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766726b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1186.94", + "base_power_2": "4833.68", + "name": "ld_302373b0b", + "nominal_voltage": "120.09", + "parent": "sx2766726b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2954351c", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2529.42", + "base_power_2": "3759.24", + "name": "ld_302805c0a", + "nominal_voltage": "120.09", + "parent": "sx2954351c", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x0247160b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2954350c", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2954350c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2954350c", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4494.68", + "base_power_2": "1793.98", + "name": "ld_302809c0a", + "nominal_voltage": "120.09", + "parent": "sx2954350c", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2929261a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1744.65", + "base_power_2": "3739.88", + "name": "ld_225533337a0a", + "nominal_voltage": "120.09", + "parent": "sx2929261a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3215385a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2008.75", + "base_power_2": "11702.59", + "name": "ld_21384099a0b", + "nominal_voltage": "120.09", + "parent": "sx3215385a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3215385c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "12452.23", + "base_power_2": "3279.73", + "name": "ld_21384099c0b", + "nominal_voltage": "120.09", + "parent": "sx3215385c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3215385b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3577.16", + "base_power_2": "19567.16", + "name": "ld_21384099b0b", + "nominal_voltage": "120.09", + "parent": "sx3215385b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "e206614", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3178988b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4066.06", + "base_power_2": "3037.04", + "name": "ld_339001b0a", + "nominal_voltage": "120.09", + "parent": "sx3178988b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2710525c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d6017295-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766725c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5219.13", + "base_power_2": "1069.53", + "name": "ld_21399220c0b", + "nominal_voltage": "120.09", + "parent": "sx2766725c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2857591a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3101194c", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3101194c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3101194c", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "31117.37", + "base_power_2": "3439.33", + "name": "ld_21459660c0a", + "nominal_voltage": "120.09", + "parent": "sx3101194c", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2802481a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5710794-3_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2708293", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3216123a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3066829", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066826", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139551", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139550", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139552", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108527", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108526", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108529", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x0247162b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3085388b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2954353a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3522.91", + "base_power_2": "8714.20", + "name": "ld_338945a0a", + "nominal_voltage": "120.09", + "parent": "sx2954353a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069199", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108524", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2876797a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108532", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104145b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048199", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139544", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066821", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139543", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139546", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139545", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048196", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139547", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1186052", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139549", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3172805", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d6413567-3_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766727b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3426.35", + "base_power_2": "5687.06", + "name": "ld_302367b0b", + "nominal_voltage": "120.09", + "parent": "sx2766727b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2954352c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7647.75", + "base_power_2": "2836.78", + "name": "ld_2127090c0b", + "nominal_voltage": "120.09", + "parent": "sx2954352c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069187", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108534", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069189", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108535", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2786204a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5323.04", + "base_power_2": "10408.92", + "name": "ld_223662a0a", + "nominal_voltage": "120.09", + "parent": "sx2786204a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2876798b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108540", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069192", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069191", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3157167a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3066830", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3029495b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3857.33", + "base_power_2": "2163.29", + "name": "ld_391736b0a", + "nominal_voltage": "120.09", + "parent": "sx3029495b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3066808", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066807", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066806", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066805", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3097861c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3066804", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2673312a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "198-5320", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066801", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710546b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8469.11", + "base_power_2": "10022.46", + "name": "ld_337704b0b", + "nominal_voltage": "120.09", + "parent": "sx2710546b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "hvmv_sub1_48332", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069175", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766722b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1648.49", + "base_power_2": "8382.43", + "name": "ld_337700b0b", + "nominal_voltage": "120.09", + "parent": "sx2766722b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3066809", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991911c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3022.71", + "base_power_2": "5327.81", + "name": "ld_138258c0a", + "nominal_voltage": "120.09", + "parent": "sx2991911c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3177665", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2820531b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069184", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2730163", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069181", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3178997", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125929", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2952007", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3312692a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3920.23", + "base_power_2": "5224.10", + "name": "ld_2223661373a0a", + "nominal_voltage": "120.09", + "parent": "sx3312692a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3159037b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "13457.42", + "base_power_2": "1583.81", + "name": "ld_323391b0b", + "nominal_voltage": "120.09", + "parent": "sx3159037b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3160123a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2952003", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066819", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066818", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125911", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066817", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066816", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125913", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066815", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125914", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001315a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001315a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001315a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "11535.51", + "base_power_2": "11373.03", + "name": "ld_2001315a0a", + "nominal_voltage": "120.09", + "parent": "sx2001315a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3066814", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066813", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125916", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2673311a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3066812", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125917", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069169", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710521a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3315860", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766721a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2766721a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2766721a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "9081.20", + "base_power_2": "6313.31", + "name": "ld_247059a0b", + "nominal_voltage": "120.09", + "parent": "sx2766721a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2991910b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2123.25", + "base_power_2": "3897.37", + "name": "ld_337694b0a", + "nominal_voltage": "120.09", + "parent": "sx2991910b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069174", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001500", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104144a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3066811", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3251854a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5799561-2_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066810", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125919", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125902", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125903", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125904", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001314a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001314a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001314a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "13212.76", + "base_power_2": "11435.14", + "name": "ld_2001314a0b", + "nominal_voltage": "120.09", + "parent": "sx2001314a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254915b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1250.30", + "base_power_2": "3852.80", + "name": "ld_260520b0b", + "nominal_voltage": "120.09", + "parent": "sx3254915b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1125905", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2673310a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2767409b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2710520a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710544a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710544a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2710544a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3580.78", + "base_power_2": "4996.54", + "name": "ld_21482279a0a", + "nominal_voltage": "120.09", + "parent": "sx2710544a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069154", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3214055c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2243.53", + "base_power_2": "4045.13", + "name": "ld_226192175c0b", + "nominal_voltage": "120.09", + "parent": "sx3214055c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069156", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069155", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766724c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3324.51", + "base_power_2": "6056.93", + "name": "ld_294786c0b", + "nominal_voltage": "120.09", + "parent": "sx2766724c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3142078b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2730187", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "f739845", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879055c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4023.69", + "base_power_2": "3264.97", + "name": "ld_138465c0b", + "nominal_voltage": "120.09", + "parent": "sx2879055c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "f739844", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2936271a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "f739842", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "f739841", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2764399", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166400", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069147", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166402", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766723a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6188.83", + "base_power_2": "2955.50", + "name": "ld_391986a0a", + "nominal_voltage": "120.09", + "parent": "sx2766723a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069149", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069148", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3232902a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8138.47", + "base_power_2": "4098.65", + "name": "ld_226194826a0a", + "nominal_voltage": "120.09", + "parent": "sx3232902a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1166407", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785543b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3142079b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2936270a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2726983a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7071.26", + "base_power_2": "6640.08", + "name": "ld_226109079a0b", + "nominal_voltage": "120.09", + "parent": "sx2726983a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2841639a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1186000", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001313a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001313a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001313a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "11476.78", + "base_power_2": "14237.96", + "name": "ld_2001313a0b", + "nominal_voltage": "120.09", + "parent": "sx2001313a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2763072", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2952014", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3029055b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1677.82", + "base_power_2": "13363.42", + "name": "ld_260607b0b", + "nominal_voltage": "120.09", + "parent": "sx3029055b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2952013", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916620b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3476.08", + "base_power_2": "3627.01", + "name": "ld_338977b0b", + "nominal_voltage": "120.09", + "parent": "sx2916620b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2916620a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2051.88", + "base_power_2": "1607.92", + "name": "ld_338977a0b", + "nominal_voltage": "120.09", + "parent": "sx2916620a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197660b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2860485b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069136", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991915b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7472.93", + "base_power_2": "2558.00", + "name": "ld_392036b0a", + "nominal_voltage": "120.09", + "parent": "sx2991915b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2803199b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069135", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2803199c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026890", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2803199a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3029518b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069131", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069133", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841638c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2935555a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026886", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026880", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3141388c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2065.50", + "base_power_2": "2130.38", + "name": "ld_138416c0a", + "nominal_voltage": "120.09", + "parent": "sx3141388c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3233413b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026883", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2820535b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160872c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3254869b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2631.69", + "base_power_2": "3388.93", + "name": "ld_260575b0a", + "nominal_voltage": "120.09", + "parent": "sx3254869b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2860486c", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3141389a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4972.30", + "base_power_2": "3605.01", + "name": "ld_356007a0a", + "nominal_voltage": "120.09", + "parent": "sx3141389a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3178969", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991914c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3843.10", + "base_power_2": "2445.56", + "name": "ld_338941c0a", + "nominal_voltage": "120.09", + "parent": "sx2991914c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2917330a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8350.56", + "base_power_2": "3886.56", + "name": "ld_260474a0b", + "nominal_voltage": "120.09", + "parent": "sx2917330a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2973833b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026874", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2935556b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991640", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069130", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026876", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2823545a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1461.71", + "base_power_2": "7682.62", + "name": "ld_356807a0a", + "nominal_voltage": "120.09", + "parent": "sx2823545a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026872", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841637c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026877", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2973171b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160871c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2860483b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d2001301_int", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3178979", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991913a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1599.86", + "base_power_2": "3884.68", + "name": "ld_138571a0b", + "nominal_voltage": "120.09", + "parent": "sx2991913a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2935553b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2766720a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8385.16", + "base_power_2": "3851.95", + "name": "ld_441311a0b", + "nominal_voltage": "120.09", + "parent": "sx2766720a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3178974", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2763407c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3178973", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3178972", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3178971", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2820533a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3178978", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3011298c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1395.94", + "base_power_2": "2799.94", + "name": "ld_207286c0a", + "nominal_voltage": "120.09", + "parent": "sx3011298c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3178977", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3178976", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3178975", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841636b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2000200", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785546a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2690868c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2860484b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254220c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2991912a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2370.37", + "base_power_2": "3114.16", + "name": "ld_247056a0a", + "nominal_voltage": "120.09", + "parent": "sx2991912a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026895", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026896", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2935554a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3178982", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026898", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026891", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3178988", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3233412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2841635a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2897784b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3178981", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785547b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3178980", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108508", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991919a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2375.94", + "base_power_2": "3108.59", + "name": "ld_302400a0b", + "nominal_voltage": "120.09", + "parent": "sx2991919a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2804269b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108505", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140522", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3141400a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1140521", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108507", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140520", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2860489a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108506", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108501", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140526", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2917333a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6164.40", + "base_power_2": "2979.93", + "name": "ld_260632a0b", + "nominal_voltage": "120.09", + "parent": "sx2917333a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108500", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140525", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140524", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140523", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047780", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122812b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1140528", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140527", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841634b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2935559a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047786", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047787", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3141401a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3119793", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026848", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026849", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026844", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897781a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026847", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3029498c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4032.80", + "base_power_2": "3255.86", + "name": "ld_247036c0b", + "nominal_voltage": "120.09", + "parent": "sx3029498c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1139540", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139542", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5895780-3_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139541", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991918b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7696.18", + "base_power_2": "2334.74", + "name": "ld_391749b0a", + "nominal_voltage": "120.09", + "parent": "sx2991918b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2726975", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2726974", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2726973", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108514", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122810b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1140519", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026830", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047792", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140518", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3729298a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10827.89", + "base_power_2": "2883.45", + "name": "ld_2224386617a0a", + "nominal_voltage": "120.09", + "parent": "sx3729298a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3122811a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047793", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140517", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047794", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108520", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140516", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2876796a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2726983", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047795", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047796", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841633a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3011293a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10809.90", + "base_power_2": "7478.76", + "name": "ld_2129466a0b", + "nominal_voltage": "120.09", + "parent": "sx3011293a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3011293b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3836.84", + "base_power_2": "20013.18", + "name": "ld_2129466b0a", + "nominal_voltage": "120.09", + "parent": "sx3011293b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3011293c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3011293c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3011293c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "18062.07", + "base_power_2": "2907.00", + "name": "ld_2129466c0b", + "nominal_voltage": "120.09", + "parent": "sx3011293c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1139537", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3029497c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1670.57", + "base_power_2": "2525.31", + "name": "ld_337631c0b", + "nominal_voltage": "120.09", + "parent": "sx3029497c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026834", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139539", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139538", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3086098a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2991917b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3288.38", + "base_power_2": "3814.71", + "name": "ld_391757b0a", + "nominal_voltage": "120.09", + "parent": "sx2991917b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2860487c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3141402c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2674027b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "193-51796", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3729297a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3460.44", + "base_power_2": "8776.68", + "name": "ld_2224386592a0b", + "nominal_voltage": "120.09", + "parent": "sx3729297a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3122814c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3552667c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4093.70", + "base_power_2": "6390.84", + "name": "ld_2224061203c0b", + "nominal_voltage": "120.09", + "parent": "sx3552667c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2917336c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2515.00", + "base_power_2": "3773.66", + "name": "ld_260513c0b", + "nominal_voltage": "120.09", + "parent": "sx2917336c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047763", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3141403a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026861", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2935557a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047766", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047767", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047768", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047769", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2823544a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2712.45", + "base_power_2": "6431.88", + "name": "ld_356804a0a", + "nominal_voltage": "120.09", + "parent": "sx2823544a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3008248a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2600.94", + "base_power_2": "2883.60", + "name": "ld_321159a0a", + "nominal_voltage": "120.09", + "parent": "sx3008248a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2802480b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2841632b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026866", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069der480-1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3139366", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3197661c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2746587", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2860488b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2991916b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3954.57", + "base_power_2": "9169.14", + "name": "ld_337710b0a", + "nominal_voltage": "120.09", + "parent": "sx2991916b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m1209-dies1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209-dies1_dgmtr", + "nominal_voltage": "277.13", + "parent": "m1209-dies1", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "m1026851", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3029499a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3563.25", + "base_power_2": "3189.33", + "name": "ld_302678a0a", + "nominal_voltage": "120.09", + "parent": "sx3029499a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026852", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026854", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122813a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047773", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p862322", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026859", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047777", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000709b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2841631c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026855", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026857", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026858", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897780b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3251807a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1992.42", + "base_power_2": "7151.91", + "name": "ld_225673440a0a", + "nominal_voltage": "120.09", + "parent": "sx3251807a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3027670b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2822870", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879767", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026808", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160113", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048199b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2972704c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4043.10", + "base_power_2": "5338.34", + "name": "ld_228445756c0a", + "nominal_voltage": "120.09", + "parent": "sx2972704c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2805031c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254205c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2684420", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2859391b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4393.91", + "base_power_2": "5637.02", + "name": "ld_227989724b0a", + "nominal_voltage": "120.09", + "parent": "sx2859391b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2822868", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822869", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822866", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879773", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160115", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047744", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841630c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2822867", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160114", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026805", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822864", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160117", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822865", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026807", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822862", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026800", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822863", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822860", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822861", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2804282c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3901.56", + "base_power_2": "5479.88", + "name": "ld_337641c0a", + "nominal_voltage": "120.09", + "parent": "sx2804282c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2764412", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916603b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3451.76", + "base_power_2": "5661.64", + "name": "ld_323403b0a", + "nominal_voltage": "120.09", + "parent": "sx2916603b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2879753", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3251806b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6012.94", + "base_power_2": "7679.54", + "name": "ld_355602b0b", + "nominal_voltage": "120.09", + "parent": "sx3251806b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3027671a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2764411", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879752", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160123", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2801949", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3254206b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3160098a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3963.68", + "base_power_2": "1520.85", + "name": "ld_339048a0b", + "nominal_voltage": "120.09", + "parent": "sx3160098a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104856a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2765.78", + "base_power_2": "2718.75", + "name": "ld_260467a0a", + "nominal_voltage": "120.09", + "parent": "sx3104856a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2804270b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254207a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047750", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047751", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000902c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000902c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000902c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "5402.72", + "name": "ld_2000902c0b", + "nominal_voltage": "120.09", + "parent": "sx2000902c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3122827a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047752", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822877", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047755", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047756", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822873", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822871", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822872", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254873c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6247.11", + "base_power_2": "4155.10", + "name": "ld_251862c0a", + "nominal_voltage": "120.09", + "parent": "sx3254873c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3217052c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6552.43", + "base_power_2": "3932.11", + "name": "ld_260528c0b", + "nominal_voltage": "120.09", + "parent": "sx3217052c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3029500a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3082993", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3649298", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3649297", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916602a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4178.94", + "base_power_2": "4965.39", + "name": "ld_339049a0a", + "nominal_voltage": "120.09", + "parent": "sx2916602a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197654a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3649299", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2764403", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104853c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9872.51", + "base_power_2": "3704.81", + "name": "ld_260518c0b", + "nominal_voltage": "120.09", + "parent": "sx3104853c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3254203b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3179673c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026820", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3066809c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5150.60", + "base_power_2": "5333.93", + "name": "ld_338958c0a", + "nominal_voltage": "120.09", + "parent": "sx3066809c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047720", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047721", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026826", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047722", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254870c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6812.20", + "base_power_2": "3672.34", + "name": "ld_260581c0a", + "nominal_voltage": "120.09", + "parent": "sx3254870c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2879794", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047723", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047724", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026829", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047725", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3082992", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026823", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3216988b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026824", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047728", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047729", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3217053c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3535.81", + "base_power_2": "3752.85", + "name": "ld_260529c0a", + "nominal_voltage": "120.09", + "parent": "sx3217053c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3082983", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3251808a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3695.74", + "base_power_2": "4881.58", + "name": "ld_226029836a0a", + "nominal_voltage": "120.09", + "parent": "sx3251808a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3082988", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3197653b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254204a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3067478a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3067478a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3067478a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "1373.95", + "base_power_2": "12337.39", + "name": "ld_260598a0a", + "nominal_voltage": "120.09", + "parent": "sx3067478a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026810", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822859", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2748839b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2822857", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822858", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047732", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047733", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "196-29521", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047737", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p873800", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3082981", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026812", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p873801", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "196-29520", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3179674b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3197625c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4404.90", + "base_power_2": "1883.76", + "name": "ld_339044c0a", + "nominal_voltage": "120.09", + "parent": "sx3197625c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2786274c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3102793b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3150961c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2748124b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4907.28", + "base_power_2": "5123.65", + "name": "ld_323392b0a", + "nominal_voltage": "120.09", + "parent": "sx2748124b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2897789b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047702", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047707", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "regxfmr_hvmv11sub3_lsb", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3160878c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3029055", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2955081a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2234.89", + "base_power_2": "3249.65", + "name": "ld_260508a0b", + "nominal_voltage": "120.09", + "parent": "sx2955081a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2805036b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3197624b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3490.38", + "base_power_2": "1612.71", + "name": "ld_323235b0a", + "nominal_voltage": "120.09", + "parent": "sx3197624b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2915534a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4195.37", + "base_power_2": "9515.97", + "name": "ld_227917122a0a", + "nominal_voltage": "120.09", + "parent": "sx2915534a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2786273b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5578300-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5867591-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047711", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047713", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000715b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047718", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2801950", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2804283a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2804283a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2804283a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7749.99", + "base_power_2": "1394.34", + "name": "ld_138564a0b", + "nominal_voltage": "120.09", + "parent": "sx2804283a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3010580b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4253.55", + "base_power_2": "1767.07", + "name": "ld_21451973b0a", + "nominal_voltage": "120.09", + "parent": "sx3010580b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3235946a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3139598b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3102286", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3254208c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3235945c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2933120c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5176.57", + "base_power_2": "10555.39", + "name": "ld_226192890c0b", + "nominal_voltage": "120.09", + "parent": "sx2933120c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2000714b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000712b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3552667", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160100", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160102", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2805034a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3160101", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2989564b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2536.95", + "base_power_2": "3483.67", + "name": "ld_323286b0a", + "nominal_voltage": "120.09", + "parent": "sx2989564b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104850c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8298.58", + "base_power_2": "2185.95", + "name": "ld_260561c0a", + "nominal_voltage": "120.09", + "parent": "sx3104850c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d5863704-2_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089der480-2", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089der480-1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3254209c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3645809c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "12876.25", + "base_power_2": "8092.82", + "name": "ld_2224230615c0b", + "nominal_voltage": "120.09", + "parent": "sx3645809c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3160104", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160103", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160106", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160105", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3179678b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3160108", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160107", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "221-311905", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160109", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000713b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2804272b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1125966", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000711b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1125968", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125969", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001009b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001009b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001009b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "9758.28", + "base_power_2": "6299.93", + "name": "ld_2001009b0a", + "nominal_voltage": "120.09", + "parent": "sx2001009b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2000408a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2806553c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7817.01", + "base_power_2": "2667.53", + "name": "ld_227411655c0b", + "nominal_voltage": "120.09", + "parent": "sx2806553c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2000905", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000904", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000903", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125960", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000902", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125961", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000909", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125962", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000908", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000907", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000906", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2767407b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2748128c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2965.95", + "base_power_2": "7518.58", + "name": "ld_337629c0b", + "nominal_voltage": "120.09", + "parent": "sx2748128c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2000901", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000900", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000909c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000909c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000909c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "5402.72", + "name": "ld_2000909c0b", + "nominal_voltage": "120.09", + "parent": "sx2000909c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001312a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001312a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001312a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7469.20", + "base_power_2": "9240.79", + "name": "ld_2001312a0b", + "nominal_voltage": "120.09", + "parent": "sx2001312a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1125955", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710509c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000710b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1125957", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3010585a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9328.55", + "base_power_2": "4382.79", + "name": "ld_294810a0a", + "nominal_voltage": "120.09", + "parent": "sx3010585a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1125959", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000409a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001008b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001008b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001008b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "6218.23", + "base_power_2": "8400.55", + "name": "ld_2001008b0b", + "nominal_voltage": "120.09", + "parent": "sx2001008b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1125952", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2767408c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2748127a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3956.53", + "base_power_2": "1528.01", + "name": "ld_338919a0b", + "nominal_voltage": "120.09", + "parent": "sx2748127a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2857591", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3066804a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7105.66", + "base_power_2": "6605.68", + "name": "ld_21380599a0b", + "nominal_voltage": "120.09", + "parent": "sx3066804a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001311a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001311a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001311a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "9304.37", + "base_power_2": "9136.30", + "name": "ld_2001311a0b", + "nominal_voltage": "120.09", + "parent": "sx2001311a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2763153", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125943", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125944", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710508b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000406a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2673326b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3232902", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125947", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001007b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001007b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001007b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7051.48", + "base_power_2": "3717.35", + "name": "ld_2001007b0a", + "nominal_voltage": "120.09", + "parent": "sx2001007b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3118855c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2729206c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6645.79", + "base_power_2": "9086.17", + "name": "ld_2212168866c0a", + "nominal_voltage": "120.09", + "parent": "sx2729206c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1125940", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2952013a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2421.45", + "base_power_2": "1238.34", + "name": "ld_355843a0a", + "nominal_voltage": "120.09", + "parent": "sx2952013a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3728043a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2748126c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1067.07", + "base_power_2": "9417.47", + "name": "ld_321891c0b", + "nominal_voltage": "120.09", + "parent": "sx2748126c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000907c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000907c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000907c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "5402.72", + "name": "ld_2000907c0a", + "nominal_voltage": "120.09", + "parent": "sx2000907c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001310a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001310a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001310a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "10172.24", + "base_power_2": "10687.75", + "name": "ld_2001310a0a", + "nominal_voltage": "120.09", + "parent": "sx2001310a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2990098a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3066801c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2834.39", + "base_power_2": "1361.49", + "name": "ld_138464c0b", + "nominal_voltage": "120.09", + "parent": "sx3066801c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2952014a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2162.01", + "base_power_2": "3322.52", + "name": "ld_294809a0a", + "nominal_voltage": "120.09", + "parent": "sx2952014a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1125934", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000407a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2875754c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2822870c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2916609c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4784.53", + "base_power_2": "5627.84", + "name": "ld_138346c0b", + "nominal_voltage": "120.09", + "parent": "sx2916609c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729207c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6123.75", + "base_power_2": "14845.32", + "name": "ld_2212168874c0b", + "nominal_voltage": "120.09", + "parent": "sx2729207c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3728042a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3101782", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2948732b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2748125c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5778.05", + "base_power_2": "4706.49", + "name": "ld_338962c0b", + "nominal_voltage": "120.09", + "parent": "sx2748125c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3101789", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5860450-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3101788", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001006b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001006b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001006b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "6172.98", + "base_power_2": "5043.05", + "name": "ld_2001006b0a", + "nominal_voltage": "120.09", + "parent": "sx2001006b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000908c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000908c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000908c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "5402.72", + "name": "ld_2000908c0b", + "nominal_voltage": "120.09", + "parent": "sx2000908c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3101787", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000404a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2814529b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4684.32", + "base_power_2": "15367.22", + "name": "ld_2120126b0a", + "nominal_voltage": "120.09", + "parent": "sx2814529b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2814529c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2814529c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2814529c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "9231.69", + "base_power_2": "11737.39", + "name": "ld_2120126c0a", + "nominal_voltage": "120.09", + "parent": "sx2814529c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2916608c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3981.92", + "base_power_2": "4156.06", + "name": "ld_321852c0b", + "nominal_voltage": "120.09", + "parent": "sx2916608c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3215340a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2814529a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2814529a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2814529a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4395.48", + "base_power_2": "13893.18", + "name": "ld_2120126a0a", + "nominal_voltage": "120.09", + "parent": "sx2814529a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2692000", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3728041a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2745806c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2998.31", + "base_power_2": "7486.23", + "name": "ld_226194262c0b", + "nominal_voltage": "120.09", + "parent": "sx2745806c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000905c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000905c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000905c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "5402.72", + "name": "ld_2000905c0b", + "nominal_voltage": "120.09", + "parent": "sx2000905c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3066807c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1147.34", + "base_power_2": "3048.53", + "name": "ld_337624c0a", + "nominal_voltage": "120.09", + "parent": "sx3066807c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001005b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001005b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001005b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7918.91", + "base_power_2": "4817.10", + "name": "ld_2001005b0b", + "nominal_voltage": "120.09", + "parent": "sx2001005b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2879073c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5309.79", + "base_power_2": "4071.65", + "name": "ld_138371c0b", + "nominal_voltage": "120.09", + "parent": "sx2879073c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1186078", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1186072", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3216368c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000405a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2710505b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3122835b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3604.29", + "base_power_2": "5509.11", + "name": "ld_339008b0a", + "nominal_voltage": "120.09", + "parent": "sx3122835b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1125990", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916607c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2711.74", + "base_power_2": "7772.80", + "name": "ld_321882c0b", + "nominal_voltage": "120.09", + "parent": "sx2916607c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2729206", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125994", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729207", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048196b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1125997", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "regxfmr_hvmv69sub1_lsb1", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104830", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3728040a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3066808c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5187.32", + "base_power_2": "1101.34", + "name": "ld_337654c0b", + "nominal_voltage": "120.09", + "parent": "sx3066808c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3214071c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2204.06", + "base_power_2": "8280.48", + "name": "ld_226194419c0a", + "nominal_voltage": "120.09", + "parent": "sx3214071c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3156034", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000906c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000906c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000906c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "5402.72", + "name": "ld_2000906c0b", + "nominal_voltage": "120.09", + "parent": "sx2000906c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1186065", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879072b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3267.76", + "base_power_2": "2752.86", + "name": "ld_337695b0a", + "nominal_voltage": "120.09", + "parent": "sx2879072b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3232933", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1186067", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001004b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001004b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001004b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7219.24", + "base_power_2": "3941.14", + "name": "ld_2001004b0b", + "nominal_voltage": "120.09", + "parent": "sx2001004b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2917310b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1186061", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1186064", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3008232b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1186063", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125987", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125988", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125989", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710504b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2916606c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1366.88", + "base_power_2": "4921.78", + "name": "ld_275007c0b", + "nominal_voltage": "120.09", + "parent": "sx2916606c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1125982", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897792a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2897792a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2897792a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4926.11", + "base_power_2": "3651.21", + "name": "ld_338985a0a", + "nominal_voltage": "120.09", + "parent": "sx2897792a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000903c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000903c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000903c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5906.56", + "base_power_2": "8533.21", + "name": "ld_2000903c0a", + "nominal_voltage": "120.09", + "parent": "sx2000903c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3066805a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5466.65", + "base_power_2": "3677.68", + "name": "ld_337674a0b", + "nominal_voltage": "120.09", + "parent": "sx3066805a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2879071b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3592.01", + "base_power_2": "6438.92", + "name": "ld_337701b0a", + "nominal_voltage": "120.09", + "parent": "sx2879071b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3178997c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3178997c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3178997c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "2277.83", + "base_power_2": "4010.83", + "name": "ld_293422c0a", + "nominal_voltage": "120.09", + "parent": "sx3178997c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3217057a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1987.15", + "base_power_2": "1672.65", + "name": "ld_218475a0b", + "nominal_voltage": "120.09", + "parent": "sx3217057a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001003b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001003b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001003b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5906.56", + "base_power_2": "8533.21", + "name": "ld_2001003b0b", + "nominal_voltage": "120.09", + "parent": "sx2001003b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1125976", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125978", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125979", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916605c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2362.63", + "base_power_2": "3926.03", + "name": "ld_274987c0a", + "nominal_voltage": "120.09", + "parent": "sx2916605c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3122837c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9208.50", + "base_power_2": "6523.46", + "name": "ld_355432c0a", + "nominal_voltage": "120.09", + "parent": "sx3122837c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d5513564-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000915", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2764436", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000914", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000913", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125974", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104850", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000912", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000911", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000910", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000904c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000904c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000904c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7219.24", + "base_power_2": "3941.14", + "name": "ld_2000904c0a", + "nominal_voltage": "120.09", + "parent": "sx2000904c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3066806c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4416.54", + "base_power_2": "1872.12", + "name": "ld_275002c0a", + "nominal_voltage": "120.09", + "parent": "sx3066806c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897793a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1356.75", + "base_power_2": "2303.04", + "name": "ld_338987a0b", + "nominal_voltage": "120.09", + "parent": "sx2897793a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3104859", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3251799a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3217056a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "12146.57", + "base_power_2": "6142.09", + "name": "ld_218474a0b", + "nominal_voltage": "120.09", + "parent": "sx3217056a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2879070b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4047.08", + "base_power_2": "5066.32", + "name": "ld_338934b0a", + "nominal_voltage": "120.09", + "parent": "sx2879070b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3189190a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3104856", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748129a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3597.31", + "base_power_2": "13206.81", + "name": "ld_138567a0b", + "nominal_voltage": "120.09", + "parent": "sx2748129a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2916234", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001002b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001002b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001002b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "5402.72", + "name": "ld_2001002b0a", + "nominal_voltage": "120.09", + "parent": "sx2001002b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2000402a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3104853", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001308a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001308a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001308a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "9304.64", + "name": "ld_2001308a0a", + "nominal_voltage": "120.09", + "parent": "sx2001308a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2879066b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3242.71", + "base_power_2": "5870.69", + "name": "ld_323252b0b", + "nominal_voltage": "120.09", + "parent": "sx2879066b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m3037449", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710514b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2673320b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2766738c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "22884.15", + "base_power_2": "28837.50", + "name": "ld_338978c0a", + "nominal_voltage": "120.09", + "parent": "sx2766738c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m3037441", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001308a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000412a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000412a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "11997.23", + "base_power_2": "10551.25", + "name": "ld_2000412a0a", + "nominal_voltage": "120.09", + "parent": "sx2000412a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2692600c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7614.55", + "base_power_2": "2869.99", + "name": "ld_356798c0a", + "nominal_voltage": "120.09", + "parent": "sx2692600c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104135a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000411a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879065b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2637.11", + "base_power_2": "1373.20", + "name": "ld_247126b0b", + "nominal_voltage": "120.09", + "parent": "sx2879065b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001307a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001307a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001307a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7466.54", + "base_power_2": "8603.86", + "name": "ld_2001307a0a", + "nominal_voltage": "120.09", + "parent": "sx2001307a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2897790c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2710513b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m3037455", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d6140778-1_int", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3037453", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv11sub1_lsb", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3037452", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2730149c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2730149c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2730149c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3764.36", + "base_power_2": "2524.30", + "name": "ld_260601c0a", + "nominal_voltage": "120.09", + "parent": "sx2730149c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001307a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000413a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000413a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000413a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7297.46", + "base_power_2": "4923.84", + "name": "ld_2000413a0a", + "nominal_voltage": "120.09", + "parent": "sx2000413a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3141393c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7271.86", + "base_power_2": "3212.68", + "name": "ld_442373c0b", + "nominal_voltage": "120.09", + "parent": "sx3141393c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104136b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3008237c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3765.23", + "base_power_2": "6719.31", + "name": "ld_226193838c0b", + "nominal_voltage": "120.09", + "parent": "sx3008237c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2879064a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5536.49", + "base_power_2": "3607.84", + "name": "ld_138581a0a", + "nominal_voltage": "120.09", + "parent": "sx2879064a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3270814a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8481.95", + "base_power_2": "3755.16", + "name": "ld_226191850a0b", + "nominal_voltage": "120.09", + "parent": "sx3270814a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2000412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3086002c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power": "12MVA", + "bustype": "SWING", + "name": "sourcebus", + "nominal_voltage": "66395.28", + "phases": "ABCN", + "positive_sequence_voltage": "${VSOURCE}", + "power_convergence_value": "100VA" + }, + "children": [], + "name": "substation" + }, + { + "attributes": { + "name": "sx2691973a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3958.18", + "base_power_2": "1526.36", + "name": "ld_355935a0a", + "nominal_voltage": "120.09", + "parent": "sx2691973a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p828362", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001306a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001306a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001306a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "6877.54", + "base_power_2": "4010.74", + "name": "ld_2001306a0b", + "nominal_voltage": "120.09", + "parent": "sx2001306a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2710512b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2861218c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3757.32", + "base_power_2": "9820.00", + "name": "ld_260505c0a", + "nominal_voltage": "120.09", + "parent": "sx2861218c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2891575c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2891575c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2891575c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3168.21", + "base_power_2": "3120.45", + "name": "ld_225533423c0b", + "nominal_voltage": "120.09", + "parent": "sx2891575c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000410a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000410a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000410a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "10545.81", + "base_power_2": "6111.35", + "name": "ld_2000410a0a", + "nominal_voltage": "120.09", + "parent": "sx2000410a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001305a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2822877b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3141394b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6320.12", + "base_power_2": "3710.81", + "name": "ld_339042b0b", + "nominal_voltage": "120.09", + "parent": "sx3141394b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001306a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2917328b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1546.32", + "base_power_2": "8484.61", + "name": "ld_21389092b0b", + "nominal_voltage": "120.09", + "parent": "sx2917328b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104133a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1137002", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137003", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137005", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879063b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2317.86", + "base_power_2": "7713.07", + "name": "ld_337646b0a", + "nominal_voltage": "120.09", + "parent": "sx2879063b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001305a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001305a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001305a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "4953.40", + "name": "ld_2001305a0a", + "nominal_voltage": "120.09", + "parent": "sx2001305a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2710511a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2842379a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3177894a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5997.38", + "base_power_2": "3146.95", + "name": "ld_227903012a0b", + "nominal_voltage": "120.09", + "parent": "sx3177894a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p828359", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000411a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000411a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000411a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7463.88", + "base_power_2": "4009.14", + "name": "ld_2000411a0b", + "nominal_voltage": "120.09", + "parent": "sx2000411a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001304a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2726975b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2568.43", + "base_power_2": "3452.19", + "name": "ld_226193422b0a", + "nominal_voltage": "120.09", + "parent": "sx2726975b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3141395c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2377.72", + "base_power_2": "8106.81", + "name": "ld_2149184c0a", + "nominal_voltage": "120.09", + "parent": "sx3141395c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p1121283", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3177881c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3104134c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p1121282", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2861219b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3750.08", + "base_power_2": "9373.64", + "name": "ld_21389761b0a", + "nominal_voltage": "120.09", + "parent": "sx2861219b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2879062c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5664.03", + "base_power_2": "3717.41", + "name": "ld_21385192c0b", + "nominal_voltage": "120.09", + "parent": "sx2879062c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p828360", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000410a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3214069c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7925.46", + "base_power_2": "2559.08", + "name": "ld_226194421c0a", + "nominal_voltage": "120.09", + "parent": "sx3214069c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2842384c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1134.78", + "base_power_2": "3061.10", + "name": "ld_260637c0a", + "nominal_voltage": "120.09", + "parent": "sx2842384c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001304a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001304a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001304a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7219.24", + "base_power_2": "3844.66", + "name": "ld_2001304a0a", + "nominal_voltage": "120.09", + "parent": "sx2001304a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2991923a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8282.71", + "base_power_2": "3954.41", + "name": "ld_302735a0b", + "nominal_voltage": "120.09", + "parent": "sx2991923a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2710510c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001303a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3104131a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2726974b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3216.90", + "base_power_2": "9906.81", + "name": "ld_226193395b0b", + "nominal_voltage": "120.09", + "parent": "sx2726974b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m1142-lng1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142-lng1_dgmtr", + "nominal_voltage": "277.13", + "parent": "m1142-lng1", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "x2822871b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3066811b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1861.35", + "base_power_2": "8169.58", + "name": "ld_2126875b0b", + "nominal_voltage": "120.09", + "parent": "sx3066811b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2842383a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5123.41", + "base_power_2": "3453.91", + "name": "ld_260634a0b", + "nominal_voltage": "120.09", + "parent": "sx2842383a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001303a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001303a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001303a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "6314.80", + "base_power_2": "8533.21", + "name": "ld_2001303a0b", + "nominal_voltage": "120.09", + "parent": "sx2001303a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2879069a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3243.45", + "base_power_2": "3509.12", + "name": "ld_338894a0b", + "nominal_voltage": "120.09", + "parent": "sx2879069a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673323c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2991922a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3712.98", + "base_power_2": "1771.55", + "name": "ld_302734a0a", + "nominal_voltage": "120.09", + "parent": "sx2991922a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001302a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3235245", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026796", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235246", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026797", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235243", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026798", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841629c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3235244", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2726973a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3761.95", + "base_power_2": "5382.38", + "name": "ld_226192926a0b", + "nominal_voltage": "120.09", + "parent": "sx2726973a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3235241", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026792", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235242", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2822872b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3104132a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026795", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3066812a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8256.79", + "base_power_2": "3980.33", + "name": "ld_323263a0a", + "nominal_voltage": "120.09", + "parent": "sx3066812a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3235249", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235247", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2860500b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3747.26", + "base_power_2": "5366.15", + "name": "ld_323274b0a", + "nominal_voltage": "120.09", + "parent": "sx2860500b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3235248", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879068b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6978.03", + "base_power_2": "3052.90", + "name": "ld_323254b0b", + "nominal_voltage": "120.09", + "parent": "sx2879068b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673322b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2764412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2954361b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2088.60", + "base_power_2": "7942.33", + "name": "ld_21383494b0b", + "nominal_voltage": "120.09", + "parent": "sx2954361b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2991921c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5483.00", + "base_power_2": "5001.53", + "name": "ld_2129399c0b", + "nominal_voltage": "120.09", + "parent": "sx2991921c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2730149c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3235256", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235257", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235254", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235255", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841628a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3235252", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2822873b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3235253", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235250", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235251", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001302a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001302a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001302a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4976.87", + "base_power_2": "5160.43", + "name": "ld_2001302a0b", + "nominal_voltage": "120.09", + "parent": "sx2001302a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3139086b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6402.30", + "base_power_2": "3628.63", + "name": "ld_226192846b0b", + "nominal_voltage": "120.09", + "parent": "sx3139086b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3141390b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4955.74", + "base_power_2": "5075.19", + "name": "ld_391743b0b", + "nominal_voltage": "120.09", + "parent": "sx3141390b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3235258", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2692633c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2913406b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879067a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3237.64", + "base_power_2": "8999.47", + "name": "ld_21380616a0b", + "nominal_voltage": "120.09", + "parent": "sx2879067a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2973180b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2673321a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2764411c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2991920a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2120.69", + "base_power_2": "3363.85", + "name": "ld_2118822a0b", + "nominal_voltage": "120.09", + "parent": "sx2991920a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3235267", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3234149a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "45672.08", + "base_power_2": "45750.60", + "name": "ld_227944551a0a", + "nominal_voltage": "120.09", + "parent": "sx3234149a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3235268", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3234149b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "21302.04", + "base_power_2": "78966.00", + "name": "ld_227944551b0a", + "nominal_voltage": "120.09", + "parent": "sx3234149b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3234149c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "96630.66", + "base_power_2": "8214.70", + "name": "ld_227944551c0b", + "nominal_voltage": "120.09", + "parent": "sx3234149c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2841627a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3235266", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104130b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3066810c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2353.35", + "base_power_2": "8131.19", + "name": "ld_337659c0b", + "nominal_voltage": "120.09", + "parent": "sx3066810c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3216337a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5411.74", + "base_power_2": "7279.82", + "name": "ld_356011a0a", + "nominal_voltage": "120.09", + "parent": "sx3216337a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2989565a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6609.69", + "base_power_2": "2534.64", + "name": "ld_21389237a0b", + "nominal_voltage": "120.09", + "parent": "sx2989565a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3047058a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7622.83", + "base_power_2": "6088.51", + "name": "ld_227902981a0b", + "nominal_voltage": "120.09", + "parent": "sx3047058a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2748781a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2766730b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4988.27", + "base_power_2": "1032.35", + "name": "ld_355359b0a", + "nominal_voltage": "120.09", + "parent": "sx2766730b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2989432b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3934.39", + "base_power_2": "9189.33", + "name": "ld_226163575b0a", + "nominal_voltage": "120.09", + "parent": "sx2989432b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2991927b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9081.61", + "base_power_2": "4042.10", + "name": "ld_355607b0a", + "nominal_voltage": "120.09", + "parent": "sx2991927b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p895102", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3029506b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026764", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895107", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2915542c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "12919.55", + "base_power_2": "8049.52", + "name": "ld_227921427c0b", + "nominal_voltage": "120.09", + "parent": "sx2915542c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2935567b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048214", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895104", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026760", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895106", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895105", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841626c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048210", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048211", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048212", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2804277c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026767", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000100", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3233413", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026769", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3233412", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216338b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9165.46", + "base_power_2": "3958.25", + "name": "ld_355599b0a", + "nominal_voltage": "120.09", + "parent": "sx3216338b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2860504a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3587.04", + "base_power_2": "1897.50", + "name": "ld_293667a0b", + "nominal_voltage": "120.09", + "parent": "sx2860504a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2989566b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4585.12", + "base_power_2": "1435.50", + "name": "ld_260602b0a", + "nominal_voltage": "120.09", + "parent": "sx2989566b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2748780a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047pv-3", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047pv-3_pvmtr", + "nominal_voltage": "7200.00", + "parent": "m1047pv-3", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "x3254210c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047pv-2", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047pv-1", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895111", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895113", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895112", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3029505c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2915542b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10852.73", + "base_power_2": "9198.81", + "name": "ld_227921427b0a", + "nominal_voltage": "120.09", + "parent": "sx2915542b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2915542a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9685.71", + "base_power_2": "8602.95", + "name": "ld_227921427a0b", + "nominal_voltage": "120.09", + "parent": "sx2915542a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3048207", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p901894", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2935568b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048208", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3108449a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048209", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216988", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048203", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895114", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048205", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895117", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841625c", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048206", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048200", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048201", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p873787", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216339b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8685.83", + "base_power_2": "1345.10", + "name": "ld_391741b0a", + "nominal_voltage": "120.09", + "parent": "sx3216339b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3160098", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3216370a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3216370c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3216370b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2766732b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2979.27", + "base_power_2": "1031.03", + "name": "ld_247164b0b", + "nominal_voltage": "120.09", + "parent": "sx2766732b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3122821b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026785", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026786", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122822a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3008232b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3591.53", + "base_power_2": "3511.56", + "name": "ld_226192492b0b", + "nominal_voltage": "120.09", + "parent": "sx3008232b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026783", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841624b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026784", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047688", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2860501b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8749.89", + "base_power_2": "1281.04", + "name": "ld_323265b0a", + "nominal_voltage": "120.09", + "parent": "sx2860501b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3159645a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3034.55", + "base_power_2": "6109.78", + "name": "ld_228446184a0a", + "nominal_voltage": "120.09", + "parent": "sx3159645a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3048230", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048231", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3103822c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6862.21", + "base_power_2": "8869.75", + "name": "ld_228665517c0b", + "nominal_voltage": "120.09", + "parent": "sx3103822c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "221-312488", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026780", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3029507b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3065696a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8863.54", + "base_power_2": "3373.58", + "name": "ld_227921416a0a", + "nominal_voltage": "120.09", + "parent": "sx3065696a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3122820a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026774", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3091052", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026777", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001400", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2821770a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2805.07", + "base_power_2": "10906.27", + "name": "ld_227917119a0b", + "nominal_voltage": "120.09", + "parent": "sx2821770a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2935566c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048227", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841623a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048228", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026773", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047699", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048221", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048222", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2951995c", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6236.52", + "base_power_2": "25227.40", + "name": "ld_226192801c0a", + "nominal_voltage": "120.09", + "parent": "sx2951995c", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026778", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026779", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729206c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "196-29518", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "196-29519", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897554", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3197652a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254213b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3029502a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026722", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122824a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2970258c", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8580.58", + "base_power_2": "7151.38", + "name": "ld_21459640c0b", + "nominal_voltage": "120.09", + "parent": "sx2970258c", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2841622a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3141396c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4566.31", + "base_power_2": "1722.35", + "name": "ld_337655c0a", + "nominal_voltage": "120.09", + "parent": "sx3141396c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047669", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729207c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2897793a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026724", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2955077c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2955077c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2955077c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "9925.63", + "base_power_2": "3651.69", + "name": "ld_260543c0b", + "nominal_voltage": "120.09", + "parent": "sx2955077c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026726", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2895449c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8733.19", + "base_power_2": "1751.35", + "name": "ld_226193134c0a", + "nominal_voltage": "120.09", + "parent": "sx2895449c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3029501b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2711226b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1137001", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5534967-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2801902", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2801909", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3254214b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047671", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122823b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047672", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3141397b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8341.08", + "base_power_2": "1689.85", + "name": "ld_21396796b0b", + "nominal_voltage": "120.09", + "parent": "sx3141397b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2841621c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026713", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2955078a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2139.13", + "base_power_2": "7005.20", + "name": "ld_260542a0a", + "nominal_voltage": "120.09", + "parent": "sx2955078a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3214112b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2520.48", + "base_power_2": "3500.14", + "name": "ld_226881057b0b", + "nominal_voltage": "120.09", + "parent": "sx3214112b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2955074a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10519.09", + "base_power_2": "3192.25", + "name": "ld_260479a0b", + "nominal_voltage": "120.09", + "parent": "sx2955074a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2991929b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3682.98", + "base_power_2": "6347.95", + "name": "ld_2147708b0a", + "nominal_voltage": "120.09", + "parent": "sx2991929b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2711225c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2860499b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2879767b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3141398a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3733.74", + "base_power_2": "4843.58", + "name": "ld_21386976a0a", + "nominal_voltage": "120.09", + "parent": "sx3141398a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3254211b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2916602a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3029504b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2948732", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000414a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000414a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000414a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3849.41", + "base_power_2": "8320.63", + "name": "ld_2000414a0b", + "nominal_voltage": "120.09", + "parent": "sx2000414a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026744", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122826a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2841620b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026745", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047649", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897791b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2860506b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5555.59", + "base_power_2": "3557.81", + "name": "ld_321856b0b", + "nominal_voltage": "120.09", + "parent": "sx2860506b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001309a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001309a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001309a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4076.21", + "base_power_2": "5402.72", + "name": "ld_2001309a0b", + "nominal_voltage": "120.09", + "parent": "sx2001309a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197618a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2929.82", + "base_power_2": "2554.72", + "name": "ld_356008a0b", + "nominal_voltage": "120.09", + "parent": "sx3197618a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3216336a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2103.05", + "base_power_2": "7041.28", + "name": "ld_356010a0b", + "nominal_voltage": "120.09", + "parent": "sx3216336a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2711224b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254212b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x0247171b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2916603b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3029503c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000415a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000415a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000415a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "6706.71", + "base_power_2": "5676.72", + "name": "ld_2000415a0b", + "nominal_voltage": "120.09", + "parent": "sx2000415a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026732", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122825a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3141399c", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "11618.05", + "base_power_2": "4113.91", + "name": "ld_302804c0a", + "nominal_voltage": "120.09", + "parent": "sx3141399c", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2689691a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2955005", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026734", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2955076a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5082.95", + "base_power_2": "3494.37", + "name": "ld_21243817a0b", + "nominal_voltage": "120.09", + "parent": "sx2955076a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2955006", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897792a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026736", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766723", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216361", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766722", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766721", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766720", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3046854b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9241.86", + "base_power_2": "5799.37", + "name": "ld_227732939b0b", + "nominal_voltage": "120.09", + "parent": "sx3046854b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2766727", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766726", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766725", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748131b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3362.96", + "base_power_2": "5750.44", + "name": "ld_323250b0a", + "nominal_voltage": "120.09", + "parent": "sx2748131b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2766724", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "q16642_cap", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766729", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766728", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197633a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2302.93", + "base_power_2": "6841.40", + "name": "ld_338893a0b", + "nominal_voltage": "120.09", + "parent": "sx3197633a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2748132a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3544.40", + "base_power_2": "5032.92", + "name": "ld_302637a0b", + "nominal_voltage": "120.09", + "parent": "sx2748132a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2805031c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2289.38", + "base_power_2": "13442.58", + "name": "ld_260491c0a", + "nominal_voltage": "120.09", + "parent": "sx2805031c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047623", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785517c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3215.36", + "base_power_2": "4073.30", + "name": "ld_338957c0b", + "nominal_voltage": "120.09", + "parent": "sx2785517c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2785528b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3143999a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3216358", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3649304a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2804270b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5784.87", + "base_power_2": "3328.53", + "name": "ld_339013b0a", + "nominal_voltage": "120.09", + "parent": "sx2804270b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "r18242", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2674052c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "r18241", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216350", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2972704c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3216351", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766716", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104830c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2766715", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748130b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4012.94", + "base_power_2": "9110.78", + "name": "ld_138753b0b", + "nominal_voltage": "120.09", + "parent": "sx2748130b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2766719", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "r18243", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197632b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3646.34", + "base_power_2": "2374.28", + "name": "ld_323266b0a", + "nominal_voltage": "120.09", + "parent": "sx3197632b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2766718", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766717", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "r18245", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2804282c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3216349", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047633", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216343", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785518c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4134.76", + "base_power_2": "2153.90", + "name": "ld_138469c0b", + "nominal_voltage": "120.09", + "parent": "sx2785518c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3216344", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785529c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3216342", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216347", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216348", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216345", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216346", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2674051a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026709", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2989571a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2964.52", + "base_power_2": "2520.01", + "name": "ld_225991691a0a", + "nominal_voltage": "120.09", + "parent": "sx2989571a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3632979", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3141411c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "28393.51", + "base_power_2": "3070.41", + "name": "ld_21197413c0a", + "nominal_voltage": "120.09", + "parent": "sx3141411c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197631a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1136.67", + "base_power_2": "4347.87", + "name": "ld_338920a0a", + "nominal_voltage": "120.09", + "parent": "sx3197631a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3216338", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3067478", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216339", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026700", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2991909a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3215549b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8741.30", + "base_power_2": "1289.63", + "name": "ld_228219458b0b", + "nominal_voltage": "120.09", + "parent": "sx3215549b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2763153a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2868.69", + "base_power_2": "6275.64", + "name": "ld_293425a0b", + "nominal_voltage": "120.09", + "parent": "sx2763153a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026705", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026706", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2876814a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026708", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3649302a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3216336", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3778577", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026701", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216337", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026702", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785519a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8564.59", + "base_power_2": "4703.45", + "name": "ld_138566a0a", + "nominal_voltage": "120.09", + "parent": "sx2785519a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026703", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026704", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d6138608-3_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3141412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1788.32", + "base_power_2": "3696.21", + "name": "ld_391996a0b", + "nominal_voltage": "120.09", + "parent": "sx3141412a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2842329c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3411.68", + "base_power_2": "2876.98", + "name": "ld_260568c0b", + "nominal_voltage": "120.09", + "parent": "sx2842329c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197630a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4626.54", + "base_power_2": "4517.79", + "name": "ld_138644a0a", + "nominal_voltage": "120.09", + "parent": "sx3197630a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2879752b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2991908a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047612", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047613", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3649301a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047615", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3010567", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3215203a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3010568", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2954339b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8403.96", + "base_power_2": "1626.97", + "name": "ld_391739b0a", + "nominal_voltage": "120.09", + "parent": "sx2954339b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3027133a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3010565", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2992656a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7302.22", + "base_power_2": "6409.12", + "name": "ld_260627a0b", + "nominal_voltage": "120.09", + "parent": "sx2992656a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3010566", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3010563", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160878c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2685.95", + "base_power_2": "3602.71", + "name": "ld_260511c0b", + "nominal_voltage": "120.09", + "parent": "sx3160878c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3010564", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3008248", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3010561", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3010562", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2821087a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3010560", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197637c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3197637c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3197637c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3983.05", + "base_power_2": "3305.61", + "name": "ld_138585c0a", + "nominal_voltage": "120.09", + "parent": "sx3197637c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2691959b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1134480", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2805036b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2805036b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2805036b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "1909.06", + "base_power_2": "2101.25", + "name": "ld_275248b0a", + "nominal_voltage": "120.09", + "parent": "sx2805036b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3123452c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4988.87", + "base_power_2": "5495.67", + "name": "ld_260574c0a", + "nominal_voltage": "120.09", + "parent": "sx3123452c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3215203c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3215203b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1134479", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1134478", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d2000100_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1134477", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1134476", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3067447a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2837.91", + "base_power_2": "6306.42", + "name": "ld_21386157a0b", + "nominal_voltage": "120.09", + "parent": "sx3067447a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1134475", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1134474", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1134472", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2915534a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3010569", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1142099", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2954338b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3371.22", + "base_power_2": "6659.71", + "name": "ld_355618b0b", + "nominal_voltage": "120.09", + "parent": "sx2954338b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2763811c", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "20560.80", + "base_power_2": "10903.12", + "name": "ld_21459629c0a", + "nominal_voltage": "120.09", + "parent": "sx2763811c", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1142098", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3010570", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197636b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9249.03", + "base_power_2": "3874.68", + "name": "ld_2148580b0b", + "nominal_voltage": "120.09", + "parent": "sx3197636b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3085410b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3067448c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2661.58", + "base_power_2": "7822.96", + "name": "ld_262075c0a", + "nominal_voltage": "120.09", + "parent": "sx3067448c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m3021569", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2745811c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8503.62", + "base_power_2": "1980.92", + "name": "ld_251863c0a", + "nominal_voltage": "120.09", + "parent": "sx2745811c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m3019248", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748135a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3883.33", + "base_power_2": "5261.00", + "name": "ld_2150172a0a", + "nominal_voltage": "120.09", + "parent": "sx2748135a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3029183", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2763812c", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9083.61", + "base_power_2": "22380.31", + "name": "ld_21459651c0b", + "nominal_voltage": "120.09", + "parent": "sx2763812c", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3030199", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3030197", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3010585", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l0247171", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197635b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1200.84", + "base_power_2": "4819.78", + "name": "ld_337696b0b", + "nominal_voltage": "120.09", + "parent": "sx3197635b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3010580", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748133c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3395.44", + "base_power_2": "2893.22", + "name": "ld_302861c0b", + "nominal_voltage": "120.09", + "parent": "sx2748133c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1089093", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089094", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p860892", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2783231", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2914324", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2914323", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3235946a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8770.01", + "base_power_2": "3467.10", + "name": "ld_356800a0a", + "nominal_voltage": "120.09", + "parent": "sx3235946a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2804283a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3649306a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3008279", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2804272b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2804272b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2804272b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "1368.12", + "base_power_2": "4652.50", + "name": "ld_338993b0a", + "nominal_voltage": "120.09", + "parent": "sx2804272b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l0247160", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089097", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1134471", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089096", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1134470", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l0247162", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197634b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10758.15", + "base_power_2": "4283.09", + "name": "ld_355767b0b", + "nominal_voltage": "120.09", + "parent": "sx3197634b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2766499c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2805034a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2218.80", + "base_power_2": "1440.99", + "name": "ld_260647a0b", + "nominal_voltage": "120.09", + "parent": "sx2805034a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3067447", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3067448", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897789b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2897789b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2897789b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4461.51", + "base_power_2": "1559.11", + "name": "ld_323287b0b", + "nominal_voltage": "120.09", + "parent": "sx2897789b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3235945c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4692.61", + "base_power_2": "5791.93", + "name": "ld_356796c0b", + "nominal_voltage": "120.09", + "parent": "sx3235945c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3649305a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1134469", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2804277c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6131.66", + "base_power_2": "4352.88", + "name": "ld_339043c0a", + "nominal_voltage": "120.09", + "parent": "sx2804277c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2710530b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5619.36", + "base_power_2": "3494.04", + "name": "ld_21381118b0a", + "nominal_voltage": "120.09", + "parent": "sx2710530b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3234185", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001der-4", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001der-5", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001215c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001215c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001215c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "11896.39", + "base_power_2": "12683.86", + "name": "ld_2001215c0b", + "nominal_voltage": "120.09", + "parent": "sx2001215c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "q14413", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001der-1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "q14414", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001der-2", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "q14411", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2841615a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2137.74", + "base_power_2": "3346.79", + "name": "ld_356012a0b", + "nominal_voltage": "120.09", + "parent": "sx2841615a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2001der-3", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "q14412", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3030126", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3011229a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1860.44", + "base_power_2": "3624.10", + "name": "ld_356801a0b", + "nominal_voltage": "120.09", + "parent": "sx3011229a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2748139b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5346.61", + "base_power_2": "3766.80", + "name": "ld_21400108b0b", + "nominal_voltage": "120.09", + "parent": "sx2748139b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001214c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001214c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001214c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "8488.27", + "base_power_2": "10913.62", + "name": "ld_2001214c0b", + "nominal_voltage": "120.09", + "parent": "sx2001214c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m4362181", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2991902b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3233412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3233412a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3233412a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "14917.54", + "base_power_2": "3371.12", + "name": "ld_226308717a0b", + "nominal_voltage": "120.09", + "parent": "sx3233412a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2785511a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7784.81", + "base_power_2": "1359.52", + "name": "ld_339046a0b", + "nominal_voltage": "120.09", + "parent": "sx2785511a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104118c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "12774.60", + "base_power_2": "2957.36", + "name": "ld_321890c0a", + "nominal_voltage": "120.09", + "parent": "sx3104118c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d5504876-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3645810c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "16095.78", + "base_power_2": "15368.13", + "name": "ld_2224230651c0b", + "nominal_voltage": "120.09", + "parent": "sx3645810c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2685809a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2745848", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2851933", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1145954", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1145956", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160872c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "11318.76", + "base_power_2": "4413.20", + "name": "ld_260551c0a", + "nominal_voltage": "120.09", + "parent": "sx3160872c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1145955", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897784b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2386.44", + "base_power_2": "12654.80", + "name": "ld_247170b0a", + "nominal_voltage": "120.09", + "parent": "sx2897784b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001213c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001213c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001213c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "10917.83", + "base_power_2": "9863.14", + "name": "ld_2001213c0a", + "nominal_voltage": "120.09", + "parent": "sx2001213c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3195751", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3065696", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3198348a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "11072.13", + "base_power_2": "7216.53", + "name": "ld_260552a0b", + "nominal_voltage": "120.09", + "parent": "sx3198348a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991901b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3010556", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3027132a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3010557", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3008232", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2992657a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2992657a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2992657a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4479.15", + "base_power_2": "4665.18", + "name": "ld_21475841a0b", + "nominal_voltage": "120.09", + "parent": "sx2992657a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3233413b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "15829.79", + "base_power_2": "4221.76", + "name": "ld_226308727b0b", + "nominal_voltage": "120.09", + "parent": "sx3233413b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2785512b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3620.94", + "base_power_2": "6409.99", + "name": "ld_323245b0a", + "nominal_voltage": "120.09", + "parent": "sx2785512b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3008237", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5956471-2_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160871c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1047.22", + "base_power_2": "9437.32", + "name": "ld_260638c0a", + "nominal_voltage": "120.09", + "parent": "sx3160871c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2970258c", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2990098", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104119a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9043.69", + "base_power_2": "10064.03", + "name": "ld_338956a0b", + "nominal_voltage": "120.09", + "parent": "sx3104119a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3048200b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2447.19", + "base_power_2": "1563.12", + "name": "ld_391740b0a", + "nominal_voltage": "120.09", + "parent": "sx3048200b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001212c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001212c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001212c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "10902.65", + "base_power_2": "9649.22", + "name": "ld_2001212c0a", + "nominal_voltage": "120.09", + "parent": "sx2001212c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3010559", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3198347c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3198347c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3198347c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4084.82", + "base_power_2": "5296.63", + "name": "ld_260622c0b", + "nominal_voltage": "120.09", + "parent": "sx3198347c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m2001-ess1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001-ess1_stmtr", + "nominal_voltage": "277.13", + "parent": "m2001-ess1", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m2001-ess2", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001-ess2_stmtr", + "nominal_voltage": "277.13", + "parent": "m2001-ess2", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "sx2785513a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2785513a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2785513a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3957.99", + "base_power_2": "8279.13", + "name": "ld_337677a0b", + "nominal_voltage": "120.09", + "parent": "sx2785513a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2724120c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5291.91", + "base_power_2": "5192.62", + "name": "ld_225577437c0a", + "nominal_voltage": "120.09", + "parent": "sx2724120c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3645812c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10956.57", + "base_power_2": "4775.39", + "name": "ld_2224230754c0b", + "nominal_voltage": "120.09", + "parent": "sx3645812c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3727711a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3048201b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3770.38", + "base_power_2": "9353.33", + "name": "ld_391742b0b", + "nominal_voltage": "120.09", + "parent": "sx3048201b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2895449c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2991907a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2876812a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3179682", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001211c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001211c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001211c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "12627.29", + "base_power_2": "14288.02", + "name": "ld_2001211c0a", + "nominal_voltage": "120.09", + "parent": "sx2001211c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p860847", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766750", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785514a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8687.07", + "base_power_2": "3550.04", + "name": "ld_337675a0a", + "nominal_voltage": "120.09", + "parent": "sx2785514a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3552667c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104117c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "13553.20", + "base_power_2": "2178.76", + "name": "ld_338964c0b", + "nominal_voltage": "120.09", + "parent": "sx3104117c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3645811c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3038.72", + "base_power_2": "28425.19", + "name": "ld_2224230689c0b", + "nominal_voltage": "120.09", + "parent": "sx3645811c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p860843", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3179699", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3226771a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3189.88", + "base_power_2": "2294.65", + "name": "ld_227100746a0b", + "nominal_voltage": "120.09", + "parent": "sx3226771a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3727712a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d6290228-6_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027123", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3142049c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3179637c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "11018.83", + "base_power_2": "4713.13", + "name": "ld_21386442c0b", + "nominal_voltage": "120.09", + "parent": "sx3179637c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991906a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "regxfmr_190-8581", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001210c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001210c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001210c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4011.00", + "base_power_2": "11435.14", + "name": "ld_2001210c0b", + "nominal_voltage": "120.09", + "parent": "sx2001210c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2876813a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2766741", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1144663", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1144665", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1144664", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766744", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766742", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785515c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3858.07", + "base_power_2": "6626.46", + "name": "ld_293609c0a", + "nominal_voltage": "120.09", + "parent": "sx2785515c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2766749", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766748", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2745806", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766747", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766746", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1144667", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1144666", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104114b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3669.68", + "base_power_2": "9454.03", + "name": "ld_355587b0a", + "nominal_voltage": "120.09", + "parent": "sx3104114b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1144668", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m4362177", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897780b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1910.41", + "base_power_2": "8120.52", + "name": "ld_293518b0a", + "nominal_voltage": "120.09", + "parent": "sx2897780b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3048203b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5578.25", + "base_power_2": "4452.68", + "name": "ld_323273b0b", + "nominal_voltage": "120.09", + "parent": "sx3048203b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3216358a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3120484c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2991905a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2745811", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766730", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3160098a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3157710b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4015.37", + "base_power_2": "5098.03", + "name": "ld_226193361b0b", + "nominal_voltage": "120.09", + "parent": "sx3157710b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2766732", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216370", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766738", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv69sub2_hsb", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104115b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3561.57", + "base_power_2": "3541.52", + "name": "ld_391738b0b", + "nominal_voltage": "120.09", + "parent": "sx3104115b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3179682c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2897781a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1107.37", + "base_power_2": "2552.43", + "name": "ld_138770a0a", + "nominal_voltage": "120.09", + "parent": "sx2897781a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3727710a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2785516b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4103.00", + "base_power_2": "5010.41", + "name": "ld_138294b0b", + "nominal_voltage": "120.09", + "parent": "sx2785516b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3065665", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "q14404", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216367", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216368", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916599a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5617.57", + "base_power_2": "3526.76", + "name": "ld_356015a0a", + "nominal_voltage": "120.09", + "parent": "sx2916599a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3101814", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138000", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216123a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5259.19", + "base_power_2": "3318.13", + "name": "ld_338926a0b", + "nominal_voltage": "120.09", + "parent": "sx3216123a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897790c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3265.54", + "base_power_2": "7218.99", + "name": "ld_21357984c0a", + "nominal_voltage": "120.09", + "parent": "sx2897790c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3066830b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3179646", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3008237c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3065750", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3108449", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916598a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2306.80", + "base_power_2": "1353.00", + "name": "ld_355933a0b", + "nominal_voltage": "120.09", + "parent": "sx2916598a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2895461", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2673331b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2802481a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "21360.97", + "base_power_2": "6061.71", + "name": "ld_226308730a0b", + "nominal_voltage": "120.09", + "parent": "sx2802481a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2766749b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7481.21", + "base_power_2": "2549.72", + "name": "ld_337661b0a", + "nominal_voltage": "120.09", + "parent": "sx2766749b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3010557a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104113a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4913.72", + "base_power_2": "4230.61", + "name": "ld_138560a0a", + "nominal_voltage": "120.09", + "parent": "sx3104113a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1186der480-1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897791b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "14629.90", + "base_power_2": "3504.12", + "name": "ld_323282b0b", + "nominal_voltage": "120.09", + "parent": "sx2897791b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3047073", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2891575c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3179650", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2876798b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4378.98", + "base_power_2": "9775.66", + "name": "ld_226193745b0a", + "nominal_voltage": "120.09", + "parent": "sx2876798b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001209c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001209c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001209c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "9133.10", + "base_power_2": "6878.82", + "name": "ld_2001209c0b", + "nominal_voltage": "120.09", + "parent": "sx2001209c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3029495b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3102286b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8364.20", + "base_power_2": "21718.28", + "name": "ld_226308729b0a", + "nominal_voltage": "120.09", + "parent": "sx3102286b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3010556a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1027121", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3772794", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027114", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2861219", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026chp-2", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2861218", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m1026chp-3", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026chp-3_dgmtr", + "nominal_voltage": "7200.00", + "parent": "m1026chp-3", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "x2766715b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3177894a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d2001201_int", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3101827", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001208c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001208c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001208c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7341.98", + "base_power_2": "6317.10", + "name": "ld_2001208c0b", + "nominal_voltage": "120.09", + "parent": "sx2001208c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2895449", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710525c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2752.36", + "base_power_2": "7732.17", + "name": "ld_355437c0b", + "nominal_voltage": "120.09", + "parent": "sx2710525c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1027110", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2861222", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3179678", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2861223", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027100", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027101", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3179674", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3179673", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027109", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3216367b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2991910b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001207c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001207c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001207c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "6217.14", + "base_power_2": "3951.19", + "name": "ld_2001207c0a", + "nominal_voltage": "120.09", + "parent": "sx2001207c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3225319", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3179608", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026690", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3179607", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3030199c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5609.06", + "base_power_2": "4875.47", + "name": "ld_260480c0b", + "nominal_voltage": "120.09", + "parent": "sx3030199c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001400c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3177881c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2345.54", + "base_power_2": "8139.00", + "name": "ld_227896008c0b", + "nominal_voltage": "120.09", + "parent": "sx3177881c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2839305", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766746c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2392.08", + "base_power_2": "8092.45", + "name": "ld_321886c0b", + "nominal_voltage": "120.09", + "parent": "sx2766746c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2841624", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841623", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841626", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841625", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841628", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026682", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2823611a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3883.46", + "base_power_2": "4693.86", + "name": "ld_21386877a0b", + "nominal_voltage": "120.09", + "parent": "sx2823611a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2841627", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841629", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841620", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2841619c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "11881.09", + "base_power_2": "3850.87", + "name": "ld_337636c0a", + "nominal_voltage": "120.09", + "parent": "sx2841619c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2841622", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841621", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3142078b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1682.15", + "base_power_2": "2328.16", + "name": "ld_330121b0a", + "nominal_voltage": "120.09", + "parent": "sx3142078b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001206c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001206c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001206c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7004.43", + "base_power_2": "5100.61", + "name": "ld_2001206c0a", + "nominal_voltage": "120.09", + "parent": "sx2001206c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3216361b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026681", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000413", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000412", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841615", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000411", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000410", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841616", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841619", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000415", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841618", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000414", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026679", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2841618a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1555.13", + "base_power_2": "7589.20", + "name": "ld_337673a0a", + "nominal_voltage": "120.09", + "parent": "sx2841618a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3234149a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3142079b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4367.94", + "base_power_2": "1652.68", + "name": "ld_21249626b0a", + "nominal_voltage": "120.09", + "parent": "sx3142079b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3234149b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3234149c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2000409", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710520a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3154.40", + "base_power_2": "2330.13", + "name": "ld_138679a0b", + "nominal_voltage": "120.09", + "parent": "sx2710520a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3029055b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2000408", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000407", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766748a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1531.46", + "base_power_2": "3953.08", + "name": "ld_21470326a0b", + "nominal_voltage": "120.09", + "parent": "sx2766748a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2991933c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "13016.35", + "base_power_2": "7952.73", + "name": "ld_355433c0a", + "nominal_voltage": "120.09", + "parent": "sx2991933c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2000402", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000401", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000400", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000406", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000405", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000404", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3178969b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2000403", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2955047a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5874.56", + "base_power_2": "3269.77", + "name": "ld_21469911a0b", + "nominal_voltage": "120.09", + "parent": "sx2955047a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001205c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001205c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001205c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4378.56", + "base_power_2": "5464.21", + "name": "ld_2001205c0b", + "nominal_voltage": "120.09", + "parent": "sx2001205c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2748840b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3048962a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3047060", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m4277837", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710521a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710521a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2710521a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3778.26", + "base_power_2": "8458.86", + "name": "ld_138680a0b", + "nominal_voltage": "120.09", + "parent": "sx2710521a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3010559a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2766747a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1467.28", + "base_power_2": "7677.05", + "name": "ld_391989a0b", + "nominal_voltage": "120.09", + "parent": "sx2766747a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026697", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973180b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3547.23", + "base_power_2": "9576.48", + "name": "ld_21398646b0b", + "nominal_voltage": "120.09", + "parent": "sx2973180b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026699", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3047059", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026693", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3179637", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026695", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3157718a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4705.16", + "base_power_2": "3872.16", + "name": "ld_226194093a0a", + "nominal_voltage": "120.09", + "parent": "sx3157718a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001204c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001204c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001204c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5857.38", + "base_power_2": "9022.50", + "name": "ld_2001204c0a", + "nominal_voltage": "120.09", + "parent": "sx2001204c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3047058", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2841616a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841616a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2841616a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7263.83", + "base_power_2": "1880.50", + "name": "ld_21031684a0b", + "nominal_voltage": "120.09", + "parent": "sx2841616a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197629b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5205.43", + "base_power_2": "3907.97", + "name": "ld_247122b0b", + "nominal_voltage": "120.09", + "parent": "sx3197629b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2991939b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6271.58", + "base_power_2": "3759.35", + "name": "ld_337652b0a", + "nominal_voltage": "120.09", + "parent": "sx2991939b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3139598", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3123509c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p829957", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766742b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3270.10", + "base_power_2": "2750.52", + "name": "ld_355585b0b", + "nominal_voltage": "120.09", + "parent": "sx2766742b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047592", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p829956", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785520b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2806553c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2861223b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5534970-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3086079b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3082992a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026646", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026647", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026648", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3156034a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1299.33", + "base_power_2": "2360.47", + "name": "ld_391993a0b", + "nominal_voltage": "120.09", + "parent": "sx3156034a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197628c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3838.29", + "base_power_2": "6646.25", + "name": "ld_138651c0b", + "nominal_voltage": "120.09", + "parent": "sx3197628c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2766741a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3274.38", + "base_power_2": "8962.73", + "name": "ld_21386754a0b", + "nominal_voltage": "120.09", + "parent": "sx2766741a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2691954b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3253995c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "20672.30", + "base_power_2": "16544.19", + "name": "ld_21396815c0a", + "nominal_voltage": "120.09", + "parent": "sx3253995c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047593", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785521c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2724120", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3768670", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2937757c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3082993a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3086078a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p829974", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2674047c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p829979", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197627c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5149.67", + "base_power_2": "5334.87", + "name": "ld_337625c0b", + "nominal_voltage": "120.09", + "parent": "sx3197627c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3048210a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026670", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p829975", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p829976", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p829977", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766744b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3660.30", + "base_power_2": "6370.63", + "name": "ld_2127319b0a", + "nominal_voltage": "120.09", + "parent": "sx2766744b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p829978", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841645", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026665", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5861005-2_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841648", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2925506c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2885.93", + "base_power_2": "7598.60", + "name": "ld_225533703c0a", + "nominal_voltage": "120.09", + "parent": "sx2925506c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026667", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026660", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3225319b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9479.39", + "base_power_2": "5561.85", + "name": "ld_225533675b0b", + "nominal_voltage": "120.09", + "parent": "sx3225319b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2839332", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026661", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2839331", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026662", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047566", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047568", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3142050c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160896c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3177881", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841641", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785522b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p829960", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p829961", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2763072b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p829962", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p829963", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197626c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5850.65", + "base_power_2": "3530.79", + "name": "ld_337623c0a", + "nominal_voltage": "120.09", + "parent": "sx3197626c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3048211a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p829965", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047580", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841635", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841634", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047572", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841637", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3177894", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026655", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841636", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026656", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047574", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2861222a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2933135a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2841639", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047575", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841638", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3029183b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047577", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2814529c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2814529a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2814529b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2841631", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026657", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2820556a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2841630", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026658", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841633", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841632", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785523c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2895496", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048212a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2898522", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2898526", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089103", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879753b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1089102", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3065665a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8554.27", + "base_power_2": "3682.84", + "name": "ld_227895952a0b", + "nominal_voltage": "120.09", + "parent": "sx3065665a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104859b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4902.70", + "base_power_2": "1117.92", + "name": "ld_138798b0b", + "nominal_voltage": "120.09", + "parent": "sx3104859b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2691950c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3649300a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047548", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3086075b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2766717c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2785524c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1089115", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089118", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089119", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1149225", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026chp-1", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089112", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p829986", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089113", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5565090-1_int", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2917359a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4921.26", + "base_power_2": "3656.06", + "name": "ld_21482431a0a", + "nominal_voltage": "120.09", + "parent": "sx2917359a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047550", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047552", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3086074c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047558", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2766716c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5774470-2_int", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785525c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2842330c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2338.00", + "base_power_2": "8146.54", + "name": "ld_356795c0b", + "nominal_voltage": "120.09", + "parent": "sx2842330c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1149235", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1149236", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1149233", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048214a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3048946c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3881.28", + "base_power_2": "2407.38", + "name": "ld_260624c0a", + "nominal_voltage": "120.09", + "parent": "sx3048946c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1089120", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5587291-3_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089122", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691953a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047520", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047521", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047522", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047526", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879092c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2785526b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047528", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089138", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1186der-2", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2983432a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1186der-1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2766719a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1149249", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2895489", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1186der-3", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089132", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2898515", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089131", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691952a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2992624a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2691951c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047534", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785527a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2766718c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1089148", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5746546-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2804956a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3197639", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197638", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197637", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197636", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197635", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3120504a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2103.09", + "base_power_2": "3381.44", + "name": "ld_225897846a0b", + "nominal_voltage": "120.09", + "parent": "sx3120504a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1089141", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973178b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3290.47", + "base_power_2": "2730.15", + "name": "ld_337665b0b", + "nominal_voltage": "120.09", + "parent": "sx2973178b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197645a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1869.00", + "base_power_2": "7275.33", + "name": "ld_21395962a0a", + "nominal_voltage": "120.09", + "parent": "sx3197645a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1089143", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5472341-1_int", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089145", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089144", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748144a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7634.21", + "base_power_2": "1510.12", + "name": "ld_338984a0b", + "nominal_voltage": "120.09", + "parent": "sx2748144a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3197634", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197633", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047503", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197632", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197631", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197630", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2936214a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2936214a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2936214a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5674.09", + "base_power_2": "3470.24", + "name": "ld_356809a0b", + "nominal_voltage": "120.09", + "parent": "sx2936214a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047507", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1147865", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1147866", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2804957c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3197629", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1147863", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197628", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1147864", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197627", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1147861", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197626", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1147862", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2801895b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4776.11", + "base_power_2": "5254.82", + "name": "ld_226191951b0a", + "nominal_voltage": "120.09", + "parent": "sx2801895b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3197625", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197624", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1147860", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916627a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6638.71", + "base_power_2": "2505.62", + "name": "ld_138563a0b", + "nominal_voltage": "120.09", + "parent": "sx2916627a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3048937c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3048937c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3048937c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5513.21", + "base_power_2": "3868.23", + "name": "ld_356789c0a", + "nominal_voltage": "120.09", + "parent": "sx3048937c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2727795c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3646.86", + "base_power_2": "2641.80", + "name": "ld_227678342c0a", + "nominal_voltage": "120.09", + "parent": "sx2727795c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3195321a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1089155", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089158", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1147867", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2690187b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "20832.09", + "base_power_2": "9250.38", + "name": "ld_226308716b0a", + "nominal_voltage": "120.09", + "parent": "sx2690187b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3047073c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3680.81", + "base_power_2": "6803.73", + "name": "ld_227917133c0a", + "nominal_voltage": "120.09", + "parent": "sx3047073c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197644a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3685.44", + "base_power_2": "4891.88", + "name": "ld_138771a0a", + "nominal_voltage": "120.09", + "parent": "sx3197644a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3085403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2748143a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2748143a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2748143a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "2225.59", + "base_power_2": "6918.74", + "name": "ld_2121368a0b", + "nominal_voltage": "120.09", + "parent": "sx2748143a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1089160", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047513", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047515", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2936213b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4277.18", + "base_power_2": "10764.06", + "name": "ld_328363b0b", + "nominal_voltage": "120.09", + "parent": "sx2936213b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047518", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2937757", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2801896b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1806.67", + "base_power_2": "4213.95", + "name": "ld_226191995b0b", + "nominal_voltage": "120.09", + "parent": "sx2801896b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160868b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2125.75", + "base_power_2": "7905.18", + "name": "ld_20107693b0a", + "nominal_voltage": "120.09", + "parent": "sx3160868b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2936211c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4301.21", + "base_power_2": "1987.45", + "name": "ld_260567c0b", + "nominal_voltage": "120.09", + "parent": "sx2936211c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1089163", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2851933a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6030.54", + "base_power_2": "3113.79", + "name": "ld_21393643a0a", + "nominal_voltage": "120.09", + "parent": "sx2851933a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1089162", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089165", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2764399b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1147858", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1147859", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197643b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9147.56", + "base_power_2": "3976.15", + "name": "ld_302369b0a", + "nominal_voltage": "120.09", + "parent": "sx3197643b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3254227b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1147857", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3217064b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1089170", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2851933c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10359.21", + "base_power_2": "5372.75", + "name": "ld_21393643c0a", + "nominal_voltage": "120.09", + "parent": "sx2851933c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3235275b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4013.49", + "base_power_2": "6017.44", + "name": "ld_302507b0a", + "nominal_voltage": "120.09", + "parent": "sx3235275b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2851933b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1627.77", + "base_power_2": "8403.16", + "name": "ld_21393643b0a", + "nominal_voltage": "120.09", + "parent": "sx2851933b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3197654", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2936212a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3215.67", + "base_power_2": "5928.66", + "name": "ld_356815a0b", + "nominal_voltage": "120.09", + "parent": "sx2936212a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3197653", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3727709a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3197652", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895409", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916625b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8051.30", + "base_power_2": "6989.94", + "name": "ld_21467859b0a", + "nominal_voltage": "120.09", + "parent": "sx2916625b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3197647", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197646", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089174", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089173", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748140a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2658.06", + "base_power_2": "6486.27", + "name": "ld_391995a0a", + "nominal_voltage": "120.09", + "parent": "sx2748140a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1089176", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3254228b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1089177", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089179", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197642c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4972.46", + "base_power_2": "1316.20", + "name": "ld_391979c0a", + "nominal_voltage": "120.09", + "parent": "sx3197642c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3254229b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5955074-2_int", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089183", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3139366a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3363.53", + "base_power_2": "5780.80", + "name": "ld_226264795a0a", + "nominal_voltage": "120.09", + "parent": "sx3139366a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3197645", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197644", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197643", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197642", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5682346-3_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197641", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197640", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2731712b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2992556", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069738", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2860481c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3118855", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2804261c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4857.14", + "base_power_2": "1431.52", + "name": "ld_302509c0b", + "nominal_voltage": "120.09", + "parent": "sx2804261c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3030204a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069730", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089185", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691947a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2748139", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089187", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2914324a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069731", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089186", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089189", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089188", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2935551c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2748140", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2748143", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2748144", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3235273b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8244.62", + "base_power_2": "1786.31", + "name": "ld_339016b0b", + "nominal_voltage": "120.09", + "parent": "sx3235273b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2748146", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897778a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1444.99", + "base_power_2": "2214.81", + "name": "ld_302468a0b", + "nominal_voltage": "120.09", + "parent": "sx2897778a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3179699b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879794a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6115.30", + "base_power_2": "7596.04", + "name": "ld_260475a0b", + "nominal_voltage": "120.09", + "parent": "sx2879794a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3727707a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3030203c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3030205c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3027122a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1027091", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2804262a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2757.63", + "base_power_2": "2726.90", + "name": "ld_355938a0a", + "nominal_voltage": "120.09", + "parent": "sx2804262a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160865a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1938.43", + "base_power_2": "7205.90", + "name": "ld_260515a0b", + "nominal_voltage": "120.09", + "parent": "sx3160865a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2860482a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1089196", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089195", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089198", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991640c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1071.20", + "base_power_2": "3124.67", + "name": "ld_229106135c0b", + "nominal_voltage": "120.09", + "parent": "sx2991640c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1089197", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691946b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1027092", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089199", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2935552c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2748152", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2914323b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2748157", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2748158", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3727708a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2803194c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "15280.59", + "base_power_2": "3544.16", + "name": "ld_227917130c0b", + "nominal_voltage": "120.09", + "parent": "sx2803194c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897779c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6455.19", + "base_power_2": "4029.34", + "name": "ld_302508c0b", + "nominal_voltage": "120.09", + "parent": "sx2897779c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3197618", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3029520b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2691949b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3160864b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2383.28", + "base_power_2": "3637.34", + "name": "ld_2127146b0a", + "nominal_voltage": "120.09", + "parent": "sx3160864b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197647a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1169.48", + "base_power_2": "2490.31", + "name": "ld_294787a0a", + "nominal_voltage": "120.09", + "parent": "sx3197647a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2684420b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3085402a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3101194", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2748124", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3139103a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1326.75", + "base_power_2": "7817.58", + "name": "ld_225767272a0a", + "nominal_voltage": "120.09", + "parent": "sx3139103a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2748125", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748146a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3682.44", + "base_power_2": "4894.88", + "name": "ld_138570a0a", + "nominal_voltage": "120.09", + "parent": "sx2748146a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897776c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4147.51", + "base_power_2": "6337.02", + "name": "ld_302858c0a", + "nominal_voltage": "120.09", + "parent": "sx2897776c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2915534", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2936216c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4098.49", + "base_power_2": "2522.50", + "name": "ld_223663c0a", + "nominal_voltage": "120.09", + "parent": "sx2936216c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2858163a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3232301", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2860480b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3027124c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2804260b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3647.70", + "base_power_2": "6383.23", + "name": "ld_391752b0b", + "nominal_voltage": "120.09", + "parent": "sx2804260b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2748126", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973791a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4310.99", + "base_power_2": "13977.66", + "name": "ld_260605a0b", + "nominal_voltage": "120.09", + "parent": "sx2973791a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197646b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3517.70", + "base_power_2": "6513.23", + "name": "ld_355944b0b", + "nominal_voltage": "120.09", + "parent": "sx3197646b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2935550c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2748127", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691948b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2748128", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160863a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3588.61", + "base_power_2": "5792.84", + "name": "ld_223660a0b", + "nominal_voltage": "120.09", + "parent": "sx3160863a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2748129", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3085400c", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2911069b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5942.85", + "base_power_2": "7776.75", + "name": "ld_225571871b0a", + "nominal_voltage": "120.09", + "parent": "sx2911069b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2748130", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2748131", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2748132", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3085401a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2748133", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2748135", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d6170302-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2915542", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897777c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4899.52", + "base_power_2": "5585.02", + "name": "ld_338937c0b", + "nominal_voltage": "120.09", + "parent": "sx2897777c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2916620c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3652.46", + "base_power_2": "3636.20", + "name": "ld_338977c0b", + "nominal_voltage": "120.09", + "parent": "sx2916620c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1142100", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973833b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5993.39", + "base_power_2": "2722.50", + "name": "ld_260630b0a", + "nominal_voltage": "120.09", + "parent": "sx2973833b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1142101", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2954347b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3460.88", + "base_power_2": "6570.05", + "name": "ld_321841b0b", + "nominal_voltage": "120.09", + "parent": "sx2954347b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1142102", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048963b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710542b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8355.38", + "base_power_2": "1675.55", + "name": "ld_355584b0b", + "nominal_voltage": "120.09", + "parent": "sx2710542b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1142107", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1142108", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1142109", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027066", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1142103", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1142104", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1142105", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1142106", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160862c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3160862c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3160862c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3838.69", + "base_power_2": "5542.76", + "name": "ld_21386143c0b", + "nominal_voltage": "120.09", + "parent": "sx3160862c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3342743c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3985.07", + "base_power_2": "3303.59", + "name": "ld_2223703238c0b", + "nominal_voltage": "120.09", + "parent": "sx3342743c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3216348a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1027056", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2767343c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10150.28", + "base_power_2": "5581.68", + "name": "ld_356791c0a", + "nominal_voltage": "120.09", + "parent": "sx2767343c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001203c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001203c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001203c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "9177.84", + "base_power_2": "9240.79", + "name": "ld_2001203c0b", + "nominal_voltage": "120.09", + "parent": "sx2001203c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2803199c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8963.36", + "base_power_2": "12005.72", + "name": "ld_227760021c0b", + "nominal_voltage": "120.09", + "parent": "sx2803199c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897774b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3775.50", + "base_power_2": "2245.12", + "name": "ld_337691b0a", + "nominal_voltage": "120.09", + "parent": "sx2897774b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3085391b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "15053.50", + "base_power_2": "4998.05", + "name": "ld_21236413b0b", + "nominal_voltage": "120.09", + "parent": "sx3085391b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2710543c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710543c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2710543c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7733.69", + "base_power_2": "2750.84", + "name": "ld_21474614c0a", + "nominal_voltage": "120.09", + "parent": "sx2710543c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2803199a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6529.80", + "base_power_2": "11758.86", + "name": "ld_227760021a0a", + "nominal_voltage": "120.09", + "parent": "sx2803199a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3142098b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3593.94", + "base_power_2": "9529.77", + "name": "ld_260501b0b", + "nominal_voltage": "120.09", + "parent": "sx3142098b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2803199b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2803199b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2803199b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "19388.73", + "base_power_2": "3755.60", + "name": "ld_227760021b0a", + "nominal_voltage": "120.09", + "parent": "sx2803199b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2990826b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2990826c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1027055", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2954346b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10008.47", + "base_power_2": "2245.85", + "name": "ld_323397b0a", + "nominal_voltage": "120.09", + "parent": "sx2954346b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160861c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1959.10", + "base_power_2": "2236.77", + "name": "ld_260558c0b", + "nominal_voltage": "120.09", + "parent": "sx3160861c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973171b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5342.04", + "base_power_2": "4688.89", + "name": "ld_339012b0a", + "nominal_voltage": "120.09", + "parent": "sx2973171b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2990826a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d6017316-1_int", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3216349b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3778577c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3516.68", + "base_power_2": "6967.85", + "name": "ld_2224490448c0a", + "nominal_voltage": "120.09", + "parent": "sx3778577c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p893610", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001202c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001202c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001202c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7454.83", + "base_power_2": "6825.84", + "name": "ld_2001202c0b", + "nominal_voltage": "120.09", + "parent": "sx2001202c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897775c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5636.18", + "base_power_2": "4848.36", + "name": "ld_138342c0a", + "nominal_voltage": "120.09", + "parent": "sx2897775c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2858166a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3085390b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1445.48", + "base_power_2": "4575.14", + "name": "ld_321848b0b", + "nominal_voltage": "120.09", + "parent": "sx3085390b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3064514c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3261.73", + "base_power_2": "6119.72", + "name": "ld_251857c0b", + "nominal_voltage": "120.09", + "parent": "sx3064514c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2954349b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5543.04", + "base_power_2": "4487.89", + "name": "ld_337699b0a", + "nominal_voltage": "120.09", + "parent": "sx2954349b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3142099b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9431.51", + "base_power_2": "3692.20", + "name": "ld_157718b0b", + "nominal_voltage": "120.09", + "parent": "sx3142099b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1027080", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048965b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1027087", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3195327a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2767341c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1525.25", + "base_power_2": "14206.71", + "name": "ld_260577c0b", + "nominal_voltage": "120.09", + "parent": "sx2767341c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897772a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2897772a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2897772a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "1732.40", + "base_power_2": "3752.13", + "name": "ld_302679a0a", + "nominal_voltage": "120.09", + "parent": "sx2897772a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3179646b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10389.28", + "base_power_2": "4651.96", + "name": "ld_328365b0a", + "nominal_voltage": "120.09", + "parent": "sx3179646b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x1108410b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3085393c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3120.46", + "base_power_2": "10456.86", + "name": "ld_337627c0a", + "nominal_voltage": "120.09", + "parent": "sx3085393c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2954348a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5470.96", + "base_power_2": "3673.37", + "name": "ld_356013a0b", + "nominal_voltage": "120.09", + "parent": "sx2954348a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3048966c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1027071", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3189189", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3189188", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027073", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2767342a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3663.31", + "base_power_2": "5481.02", + "name": "ld_356802a0b", + "nominal_voltage": "120.09", + "parent": "sx2767342a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3189190", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027068", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3030126c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9565.44", + "base_power_2": "4011.88", + "name": "ld_260576c0b", + "nominal_voltage": "120.09", + "parent": "sx3030126c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897773a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2783.22", + "base_power_2": "3969.36", + "name": "ld_338918a0b", + "nominal_voltage": "120.09", + "parent": "sx2897773a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2692664c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3085392c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2028.98", + "base_power_2": "4259.68", + "name": "ld_337630c0b", + "nominal_voltage": "120.09", + "parent": "sx3085392c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3048890c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2141.94", + "base_power_2": "8342.60", + "name": "ld_2128517c0b", + "nominal_voltage": "120.09", + "parent": "sx3048890c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m3763623", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3763624", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104128a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3540.51", + "base_power_2": "1944.03", + "name": "ld_247057a0a", + "nominal_voltage": "120.09", + "parent": "sx3104128a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197641a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3197641a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3197641a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3889.97", + "base_power_2": "4687.35", + "name": "ld_293591a0a", + "nominal_voltage": "120.09", + "parent": "sx3197641a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3097861c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1932.90", + "base_power_2": "2262.97", + "name": "ld_225533215c0b", + "nominal_voltage": "120.09", + "parent": "sx3097861c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m3763620", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897770c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7773.14", + "base_power_2": "2711.40", + "name": "ld_337628c0a", + "nominal_voltage": "120.09", + "parent": "sx2897770c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1027019", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027013", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027014", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1008733", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p903360", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3216344b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p830058", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3065750b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3030203", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2822857b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3250.96", + "base_power_2": "2769.66", + "name": "ld_355588b0a", + "nominal_voltage": "120.09", + "parent": "sx2822857b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3030200", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3763618", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048968c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3067506", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3067507", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027011", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104129a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1274.42", + "base_power_2": "12436.92", + "name": "ld_338969a0a", + "nominal_voltage": "120.09", + "parent": "sx3104129a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1027005", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197640c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3894.62", + "base_power_2": "3394.04", + "name": "ld_338944c0a", + "nominal_voltage": "120.09", + "parent": "sx3197640c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3085393", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027001", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897771b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1413.19", + "base_power_2": "4607.43", + "name": "ld_21148701b0a", + "nominal_voltage": "120.09", + "parent": "sx2897771b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3085392", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027002", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2767340a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "22482.09", + "base_power_2": "4940.59", + "name": "ld_260595a0b", + "nominal_voltage": "120.09", + "parent": "sx2767340a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3085391", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m4122658", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2767340b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "22677.76", + "base_power_2": "7404.71", + "name": "ld_260595b0a", + "nominal_voltage": "120.09", + "parent": "sx2767340b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3085390", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027004", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m4122657", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2767340c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1285.34", + "base_power_2": "30178.58", + "name": "ld_260595c0a", + "nominal_voltage": "120.09", + "parent": "sx2767340c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3085397", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2936268c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3085396", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1008742", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3763619", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3030204", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3085395", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1008743", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3030205", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3085394", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p903354", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1008746", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3085399", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3085398", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3216345b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2822858b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6947.61", + "base_power_2": "3083.32", + "name": "ld_355591b0a", + "nominal_voltage": "120.09", + "parent": "sx2822858b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3120502a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2742.60", + "base_power_2": "2741.94", + "name": "ld_294812a0b", + "nominal_voltage": "120.09", + "parent": "sx3120502a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1027041", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2802480b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3614.20", + "base_power_2": "26468.28", + "name": "ld_226308725b0a", + "nominal_voltage": "120.09", + "parent": "sx2802480b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160117b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5161.72", + "base_power_2": "4869.20", + "name": "ld_21357901b0a", + "nominal_voltage": "120.09", + "parent": "sx3160117b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1027042", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142der480-1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027043", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104126c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104126c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3104126c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3642.84", + "base_power_2": "3645.82", + "name": "ld_138372c0b", + "nominal_voltage": "120.09", + "parent": "sx3104126c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2954345c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "24034.73", + "base_power_2": "23491.04", + "name": "ld_338915c0b", + "nominal_voltage": "120.09", + "parent": "sx2954345c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1027038", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027039", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3150961", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027036", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1008752", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2692661a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1008753", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3231269b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5943.51", + "base_power_2": "7710.58", + "name": "ld_225684682b0a", + "nominal_voltage": "120.09", + "parent": "sx3231269b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "q1301", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3085389", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3216346a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2917310", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3085388", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1008758", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1142110", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1142111", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1142112", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3120503a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3668.87", + "base_power_2": "1815.67", + "name": "ld_225869139a0b", + "nominal_voltage": "120.09", + "parent": "sx3120503a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2822859b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1940.86", + "base_power_2": "8090.07", + "name": "ld_391747b0b", + "nominal_voltage": "120.09", + "parent": "sx2822859b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104127b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1311.90", + "base_power_2": "8719.03", + "name": "ld_337690b0b", + "nominal_voltage": "120.09", + "parent": "sx3104127b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2954344c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3559.56", + "base_power_2": "10017.76", + "name": "ld_338959c0b", + "nominal_voltage": "120.09", + "parent": "sx2954344c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1027027", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027023", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2861197c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2804269b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6462.36", + "base_power_2": "3568.57", + "name": "ld_323285b0a", + "nominal_voltage": "120.09", + "parent": "sx2804269b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2692660a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3216347c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3085399c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4210.24", + "base_power_2": "2078.42", + "name": "ld_302862c0a", + "nominal_voltage": "120.09", + "parent": "sx3085399c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2917328", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048228c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3178974b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104124b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3630.01", + "base_power_2": "2390.60", + "name": "ld_356065b0b", + "nominal_voltage": "120.09", + "parent": "sx3104124b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2822864c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6085.39", + "base_power_2": "3296.05", + "name": "ld_274985c0b", + "nominal_voltage": "120.09", + "parent": "sx2822864c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2991943c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2991943c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2991943c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "6730.32", + "base_power_2": "3754.22", + "name": "ld_21399619c0a", + "nominal_voltage": "120.09", + "parent": "sx2991943c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2917330", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2688693c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2917336", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2917333", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3082988b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2822865c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3648.88", + "base_power_2": "3639.78", + "name": "ld_274986c0a", + "nominal_voltage": "120.09", + "parent": "sx2822865c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3085398b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5721.40", + "base_power_2": "4309.53", + "name": "ld_355777b0b", + "nominal_voltage": "120.09", + "parent": "sx3085398b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d2000901_int", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2673343b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2955005b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3010569a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3649299a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7309.91", + "base_power_2": "1834.42", + "name": "ld_2224237391a0b", + "nominal_voltage": "120.09", + "parent": "sx3649299a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3178975b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2764403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2479.84", + "base_power_2": "6664.49", + "name": "ld_226193078a0a", + "nominal_voltage": "120.09", + "parent": "sx2764403a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2916234a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104125b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4867.07", + "base_power_2": "9287.57", + "name": "ld_138264b0a", + "nominal_voltage": "120.09", + "parent": "sx3104125b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d5926308-3_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d6320328-1_int", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3008248a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3157708c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4567.81", + "base_power_2": "1720.85", + "name": "ld_226192954c0a", + "nominal_voltage": "120.09", + "parent": "sx3157708c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2746587c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2990828", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2822866b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1516.98", + "base_power_2": "8513.95", + "name": "ld_338922b0b", + "nominal_voltage": "120.09", + "parent": "sx2822866b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2990826", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2990827", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3649298a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1638.44", + "base_power_2": "12072.90", + "name": "ld_2224237384a0b", + "nominal_voltage": "120.09", + "parent": "sx3649298a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3091052a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2860479b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1027000", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3010568a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3178976a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710536a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1439.18", + "base_power_2": "7705.15", + "name": "ld_21396867a0a", + "nominal_voltage": "120.09", + "parent": "sx2710536a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104122a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8672.98", + "base_power_2": "4595.06", + "name": "ld_138565a0a", + "nominal_voltage": "120.09", + "parent": "sx3104122a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3010567c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5865224-1_int", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3067506c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3204.92", + "base_power_2": "4083.74", + "name": "ld_260620c0a", + "nominal_voltage": "120.09", + "parent": "sx3067506c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2935549b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3104157c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2917359", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5835167-6_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2822867b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2822867b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2822867b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3525.70", + "base_power_2": "5587.70", + "name": "ld_21386552b0b", + "nominal_voltage": "120.09", + "parent": "sx2822867b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2767343", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104123c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "23479.42", + "base_power_2": "24046.36", + "name": "ld_338924c0b", + "nominal_voltage": "120.09", + "parent": "sx3104123c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3179607b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3178977c", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3649297a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3696.16", + "base_power_2": "10015.18", + "name": "ld_2224237380a0b", + "nominal_voltage": "120.09", + "parent": "sx3649297a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2710537b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3087.13", + "base_power_2": "6943.80", + "name": "ld_391744b0b", + "nominal_voltage": "120.09", + "parent": "sx2710537b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2688692b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2991940c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2632.66", + "base_power_2": "3656.00", + "name": "ld_2148060c0b", + "nominal_voltage": "120.09", + "parent": "sx2991940c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3067507c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2564.70", + "base_power_2": "13167.26", + "name": "ld_260535c0b", + "nominal_voltage": "120.09", + "parent": "sx3067507c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3178978a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3010566c", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104120b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3988.67", + "base_power_2": "2031.95", + "name": "ld_138645b0b", + "nominal_voltage": "120.09", + "parent": "sx3104120b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3179608c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2862616c", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673300b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3338.66", + "base_power_2": "9785.05", + "name": "ld_391745b0a", + "nominal_voltage": "120.09", + "parent": "sx2673300b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160123a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3492.74", + "base_power_2": "1991.79", + "name": "ld_21015706a0a", + "nominal_voltage": "120.09", + "parent": "sx3160123a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2822860b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9205.25", + "base_power_2": "3918.46", + "name": "ld_323236b0a", + "nominal_voltage": "120.09", + "parent": "sx2822860b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104155c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2000300", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2970804c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3178979c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5746703-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048887b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "12920.37", + "base_power_2": "2120.87", + "name": "ld_260586b0b", + "nominal_voltage": "120.09", + "parent": "sx3048887b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3085395a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5113.88", + "base_power_2": "3463.44", + "name": "ld_21391094a0a", + "nominal_voltage": "120.09", + "parent": "sx3085395a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2767342", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3234149", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2767341", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2767340", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3189188c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "11467.16", + "base_power_2": "9501.91", + "name": "ld_293658c0a", + "nominal_voltage": "120.09", + "parent": "sx3189188c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3198358b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2455.74", + "base_power_2": "12585.50", + "name": "ld_138797b0b", + "nominal_voltage": "120.09", + "parent": "sx3198358b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2692655c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104121a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6704.64", + "base_power_2": "2439.69", + "name": "ld_138561a0a", + "nominal_voltage": "120.09", + "parent": "sx3104121a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3254230a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3064514", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142798", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3312692a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1142799", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2822861a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1111.23", + "base_power_2": "8033.10", + "name": "ld_21015829a0a", + "nominal_voltage": "120.09", + "parent": "sx2822861a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2879087a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3048888c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3321.34", + "base_power_2": "2967.32", + "name": "ld_251856c0b", + "nominal_voltage": "120.09", + "parent": "sx3048888c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2862616", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2689678b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3963.97", + "base_power_2": "1970.67", + "name": "ld_226192762b0b", + "nominal_voltage": "120.09", + "parent": "sx2689678b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3189189b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4254.55", + "base_power_2": "1766.07", + "name": "ld_293657b0a", + "nominal_voltage": "120.09", + "parent": "sx3189189b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2692654a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3085394c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5474.35", + "base_power_2": "3907.09", + "name": "ld_274988c0b", + "nominal_voltage": "120.09", + "parent": "sx3085394c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3198356c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3009.15", + "base_power_2": "3279.51", + "name": "ld_350993c0b", + "nominal_voltage": "120.09", + "parent": "sx3198356c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2710532c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2564.13", + "base_power_2": "1631.75", + "name": "ld_293666c0a", + "nominal_voltage": "120.09", + "parent": "sx2710532c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673346c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d6198039-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047490", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2822862c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3064.90", + "base_power_2": "3223.76", + "name": "ld_275001c0a", + "nominal_voltage": "120.09", + "parent": "sx2822862c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3066821a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2685805a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047483", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047484", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785530a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047485", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3047289b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047486", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3047289a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3048889c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8598.79", + "base_power_2": "1885.75", + "name": "ld_2128464c0b", + "nominal_voltage": "120.09", + "parent": "sx3048889c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m1186-wt3", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1186-wt3_dgmtr", + "nominal_voltage": "277.13", + "parent": "m1186-wt3", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "x3216350a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3085397b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3339.91", + "base_power_2": "9783.80", + "name": "ld_323261b0a", + "nominal_voltage": "120.09", + "parent": "sx3085397b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3047289c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m1186-wt1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1186-wt1_dgmtr", + "nominal_voltage": "277.13", + "parent": "m1186-wt1", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m1186-wt2", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1186-wt2_dgmtr", + "nominal_voltage": "277.13", + "parent": "m1186-wt2", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "sx3198355b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2429.89", + "base_power_2": "1580.42", + "name": "ld_207288b0a", + "nominal_voltage": "120.09", + "parent": "sx3198355b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2822863c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3836.42", + "base_power_2": "3452.24", + "name": "ld_337635c0b", + "nominal_voltage": "120.09", + "parent": "sx2822863c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2785531a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3104154c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2879089c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047497", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2859403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3232902a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d6440002-2_int", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3085396a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4036.47", + "base_power_2": "5107.86", + "name": "ld_138684a0b", + "nominal_voltage": "120.09", + "parent": "sx3085396a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3216351a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3085410", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "q16483_cap", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954352", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954353", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954350", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3085403", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954351", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3085402", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2730163c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2691943b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047471", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104125", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3010561a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3104126", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104123", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104124", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104121", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3176656", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104122", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104120", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "221-311359", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2806553", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954349", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "228-1048090-1_int", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2992624", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3263051c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2954347", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954348", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954345", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3085401", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104129", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954346", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3085400", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104127", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954344", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104128", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2895461a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254234b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3048221a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047480", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691942b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3104114", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3448661b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3104115", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2673305b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2779.57", + "base_power_2": "3292.60", + "name": "ld_138236b0a", + "nominal_voltage": "120.09", + "parent": "sx2673305b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2691941c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3176661", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3010560b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3104113", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047478", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954338", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954339", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3159448a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6408.18", + "base_power_2": "2736.15", + "name": "ld_337684a0a", + "nominal_voltage": "120.09", + "parent": "sx3159448a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3104118", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104119", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3176660", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3030200c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3104117", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089204", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089203", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089205", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089207", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197639a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3361.19", + "base_power_2": "8875.92", + "name": "ld_310569a0a", + "nominal_voltage": "120.09", + "parent": "sx3197639a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3082981c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3048222c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254231a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1089200", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691945c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1089202", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089201", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2783231b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9993.04", + "base_power_2": "3788.65", + "name": "ld_226193886b0a", + "nominal_voltage": "120.09", + "parent": "sx2783231b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2841648a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3104145", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047441", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047442", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104144", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047444", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047447", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2955055b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5898.36", + "base_power_2": "4132.57", + "name": "ld_21249647b0b", + "nominal_voltage": "120.09", + "parent": "sx2955055b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2785534b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1089215", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954361", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5804798-3_int", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197638a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7852.77", + "base_power_2": "1291.56", + "name": "ld_21396959a0a", + "nominal_voltage": "120.09", + "parent": "sx3197638a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2897554c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d2000701_int", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3066826b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "221-559681", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2673303c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3795.27", + "base_power_2": "2493.39", + "name": "ld_338963c0b", + "nominal_voltage": "120.09", + "parent": "sx2673303c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2691944a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "221-559682", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089213", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104136", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104134", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104135", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047453", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104132", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104133", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3214549", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104130", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104131", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047457", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3082983b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2954357", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785535b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2954354", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954355", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122837", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766750c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2766750c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2766750c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "10199.22", + "base_power_2": "5532.74", + "name": "ld_293424c0b", + "nominal_voltage": "120.09", + "parent": "sx2766750c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3122835", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729401b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2763811", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2763812", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089220", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5837361-8_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2860477a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254237a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673308b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673308b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2673308b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "11100.69", + "base_power_2": "3940.54", + "name": "ld_337653b0a", + "nominal_voltage": "120.09", + "parent": "sx2673308b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047420", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047423", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3010565c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047424", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2935547b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2785536b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3122848", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122849", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122847", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2860478b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254238b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3178971a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3010564c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047430", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2673309c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9739.18", + "base_power_2": "3838.14", + "name": "ld_138472c0a", + "nominal_voltage": "120.09", + "parent": "sx2673309c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3104157", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104154", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3342743", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047432", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841645c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3104155", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047433", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047434", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047435", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv11sub2_lsb", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2992657", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785537a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2992656", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5803273-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122815", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122816", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122813", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122814", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122819", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136360", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136361", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122817", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136362", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122818", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136363", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2955006c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3066829c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2708744b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3178972c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673306c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9242.17", + "base_power_2": "1242.36", + "name": "ld_293608c0a", + "nominal_voltage": "120.09", + "parent": "sx2673306c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047400", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047401", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3010563a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "193-48013", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3727707", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047403", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136353", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047404", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136354", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785538a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3727709", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136355", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3727708", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047406", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136356", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122811", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136357", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122812", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136358", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047409", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136359", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122810", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122826", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048227a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3122827", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122824", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122825", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p875742", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3178973a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069662", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3727710", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2673307c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3249.03", + "base_power_2": "6132.41", + "name": "ld_337632c0a", + "nominal_voltage": "120.09", + "parent": "sx2673307c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3010562b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3727712", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3727711", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047410", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879081a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1136365", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136366", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136367", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122822", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136368", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122823", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047419", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122820", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122821", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2841631c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3320.48", + "base_power_2": "10256.84", + "name": "ld_391976c0a", + "nominal_voltage": "120.09", + "parent": "sx2841631c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254206b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4115.53", + "base_power_2": "5915.40", + "name": "ld_355592b0b", + "nominal_voltage": "120.09", + "parent": "sx3254206b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973166c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7568.47", + "base_power_2": "2916.07", + "name": "ld_293665c0a", + "nominal_voltage": "120.09", + "parent": "sx2973166c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3120504a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3251807a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2711224b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1060.76", + "base_power_2": "2949.55", + "name": "ld_260500b0b", + "nominal_voltage": "120.09", + "parent": "sx2711224b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3027671a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1706.73", + "base_power_2": "12004.61", + "name": "ld_226308728a0b", + "nominal_voltage": "120.09", + "parent": "sx3027671a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3254870", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254873", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3047073c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2729405b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3254207a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2598.80", + "base_power_2": "2885.74", + "name": "ld_337671a0b", + "nominal_voltage": "120.09", + "parent": "sx3254207a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3067478a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3254869", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216988b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6307.14", + "base_power_2": "3723.78", + "name": "ld_260590b0b", + "nominal_voltage": "120.09", + "parent": "sx3216988b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973167b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2069.19", + "base_power_2": "3951.43", + "name": "ld_293656b0a", + "nominal_voltage": "120.09", + "parent": "sx2973167b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841630c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8576.65", + "base_power_2": "1907.88", + "name": "ld_138404c0a", + "nominal_voltage": "120.09", + "parent": "sx2841630c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069640", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3251806b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3139598b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10657.47", + "base_power_2": "4383.76", + "name": "ld_226311345b0a", + "nominal_voltage": "120.09", + "parent": "sx3139598b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3048937c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3011229", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729406c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3179650b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3179650b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3179650b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "1839.53", + "base_power_2": "4181.08", + "name": "ld_251828b0b", + "nominal_voltage": "120.09", + "parent": "sx3179650b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254204a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3279.26", + "base_power_2": "2205.28", + "name": "ld_337715a0a", + "nominal_voltage": "120.09", + "parent": "sx3254204a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3066809c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3086098a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6165.64", + "base_power_2": "12123.02", + "name": "ld_21474556a0b", + "nominal_voltage": "120.09", + "parent": "sx3086098a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104853c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3784018a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3655.98", + "base_power_2": "3096.59", + "name": "ld_2224500658a0a", + "nominal_voltage": "120.09", + "parent": "sx3784018a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d6077791-3_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069632", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142801", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142800", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3448661", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3217052c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3029501b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3971.66", + "base_power_2": "2048.96", + "name": "ld_337688b0b", + "nominal_voltage": "120.09", + "parent": "sx3029501b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2001015", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142808", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001010", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729407b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2001014", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001013", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897768c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2897768c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2897768c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3965.21", + "base_power_2": "9612.11", + "name": "ld_337634c0b", + "nominal_voltage": "120.09", + "parent": "sx2897768c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2001012", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001011", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069627", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069629", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973169a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2967.37", + "base_power_2": "2517.16", + "name": "ld_21397304a0a", + "nominal_voltage": "120.09", + "parent": "sx2973169a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254205c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4736.29", + "base_power_2": "5748.25", + "name": "ld_302672c0a", + "nominal_voltage": "120.09", + "parent": "sx3254205c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3254870c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069620", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748152b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1409.20", + "base_power_2": "4611.42", + "name": "ld_321849b0a", + "nominal_voltage": "120.09", + "parent": "sx2748152b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1142813", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142811", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197654a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3947.88", + "base_power_2": "8289.23", + "name": "ld_21382992a0b", + "nominal_voltage": "120.09", + "parent": "sx3197654a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1142810", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001007", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001006", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3251808a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1142815", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001005", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3029500a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7881.46", + "base_power_2": "1262.87", + "name": "ld_391992a0a", + "nominal_voltage": "120.09", + "parent": "sx3029500a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1142814", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001004", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d6138609-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3159448", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142819", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001009", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142818", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001008", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729408b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2820556", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001003", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897769c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3728.93", + "base_power_2": "9848.39", + "name": "ld_337660c0b", + "nominal_voltage": "120.09", + "parent": "sx2897769c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2001002", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001001", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001000", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069619", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069613", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2935552c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4719.22", + "base_power_2": "1569.44", + "name": "ld_274903c0b", + "nominal_voltage": "120.09", + "parent": "sx2935552c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069610", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2952014a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2860482a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5935.98", + "base_power_2": "3208.35", + "name": "ld_338954a0a", + "nominal_voltage": "120.09", + "parent": "sx2860482a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935551c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2935551c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2935551c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5362.95", + "base_power_2": "4018.49", + "name": "ld_21387929c0b", + "nominal_voltage": "120.09", + "parent": "sx2935551c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2729409b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2897766c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6776.92", + "base_power_2": "3707.62", + "name": "ld_2128007c0b", + "nominal_voltage": "120.09", + "parent": "sx2897766c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197625c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3645809c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3150961c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "13063.88", + "base_power_2": "2668.07", + "name": "ld_223400157c0a", + "nominal_voltage": "120.09", + "parent": "sx3150961c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069607", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2804250c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4200.65", + "base_power_2": "6283.88", + "name": "ld_274992c0a", + "nominal_voltage": "120.09", + "parent": "sx2804250c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935553b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4664.60", + "base_power_2": "5366.33", + "name": "ld_323247b0b", + "nominal_voltage": "120.09", + "parent": "sx2935553b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069600", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104850c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2763407", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138606", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138608", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138607", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2955081a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3253570", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2860483b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1958.51", + "base_power_2": "8072.41", + "name": "ld_21396699b0a", + "nominal_voltage": "120.09", + "parent": "sx2860483b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2727795", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897767c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2897767c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2897767c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5284.76", + "base_power_2": "5199.77", + "name": "ld_338960c0a", + "nominal_voltage": "120.09", + "parent": "sx2897767c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197624b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3010580b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1138604", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138603", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2820590", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254208c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10012.58", + "base_power_2": "3564.74", + "name": "ld_338961c0a", + "nominal_voltage": "120.09", + "parent": "sx3254208c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2858163a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1060.77", + "base_power_2": "4423.76", + "name": "ld_391990a0b", + "nominal_voltage": "120.09", + "parent": "sx2858163a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3254873c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2933120c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2898526c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4850.98", + "base_power_2": "1437.68", + "name": "ld_21393486c0a", + "nominal_voltage": "120.09", + "parent": "sx2898526c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2748158a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4332.35", + "base_power_2": "1152.19", + "name": "ld_293480a0b", + "nominal_voltage": "120.09", + "parent": "sx2748158a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2911069b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2860480b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2187.99", + "base_power_2": "7842.94", + "name": "ld_323234b0b", + "nominal_voltage": "120.09", + "parent": "sx2860480b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897764b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3727.09", + "base_power_2": "9396.62", + "name": "ld_391750b0a", + "nominal_voltage": "120.09", + "parent": "sx2897764b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3215203", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2820583", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2823611", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254209c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6262.93", + "base_power_2": "9469.03", + "name": "ld_337714c0a", + "nominal_voltage": "120.09", + "parent": "sx3254209c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3027670b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "28306.60", + "base_power_2": "1775.88", + "name": "ld_226308719b0a", + "nominal_voltage": "120.09", + "parent": "sx3027670b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3102793b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1555.69", + "base_power_2": "8475.24", + "name": "ld_227734175b0a", + "nominal_voltage": "120.09", + "parent": "sx3102793b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2748157a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7757.36", + "base_power_2": "5953.98", + "name": "ld_338973a0a", + "nominal_voltage": "120.09", + "parent": "sx2748157a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2860481c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3744.62", + "base_power_2": "3544.04", + "name": "ld_338908c0a", + "nominal_voltage": "120.09", + "parent": "sx2860481c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897765b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3705.18", + "base_power_2": "5408.23", + "name": "ld_323243b0b", + "nominal_voltage": "120.09", + "parent": "sx2897765b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935550c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4507.74", + "base_power_2": "5976.80", + "name": "ld_274999c0a", + "nominal_voltage": "120.09", + "parent": "sx2935550c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935556b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3582.63", + "base_power_2": "9541.08", + "name": "ld_356064b0a", + "nominal_voltage": "120.09", + "parent": "sx2935556b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2911069", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3141399c", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3217053", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2804253a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3356.22", + "base_power_2": "2128.31", + "name": "ld_21396254a0a", + "nominal_voltage": "120.09", + "parent": "sx2804253a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3217052", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3065696a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5742811-3_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3029507b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3397.02", + "base_power_2": "6633.91", + "name": "ld_302368b0a", + "nominal_voltage": "120.09", + "parent": "sx3029507b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729434b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3859.35", + "base_power_2": "5254.05", + "name": "ld_321851b0b", + "nominal_voltage": "120.09", + "parent": "sx2729434b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2989564b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3216336a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2689691a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5816.10", + "base_power_2": "3328.23", + "name": "ld_355375a0b", + "nominal_voltage": "120.09", + "parent": "sx2689691a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "r20703", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048221a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3602.55", + "base_power_2": "8634.57", + "name": "ld_21399305a0b", + "nominal_voltage": "120.09", + "parent": "sx3048221a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2766741a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2991927b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2804254a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6839.27", + "base_power_2": "2305.06", + "name": "ld_323418a0a", + "nominal_voltage": "120.09", + "parent": "sx2804254a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2951995", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2860486c", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1723.59", + "base_power_2": "4565.07", + "name": "ld_2127390c0b", + "nominal_voltage": "120.09", + "parent": "sx2860486c", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841639a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8738.16", + "base_power_2": "3498.95", + "name": "ld_355937a0b", + "nominal_voltage": "120.09", + "parent": "sx2841639a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197629b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841638c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841638c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2841638c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4026.42", + "base_power_2": "5355.02", + "name": "ld_138641c0a", + "nominal_voltage": "120.09", + "parent": "sx2841638c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935557a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10262.60", + "base_power_2": "3448.74", + "name": "ld_21397005a0a", + "nominal_voltage": "120.09", + "parent": "sx2935557a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2785534b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8615.48", + "base_power_2": "1415.45", + "name": "ld_338982b0b", + "nominal_voltage": "120.09", + "parent": "sx2785534b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3728037", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216370b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3633.99", + "base_power_2": "3469.10", + "name": "ld_293521b0a", + "nominal_voltage": "120.09", + "parent": "sx3216370b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3728038", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216370a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3326.26", + "base_power_2": "3426.31", + "name": "ld_293521a0a", + "nominal_voltage": "120.09", + "parent": "sx3216370a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "228-961799-3_int", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2989565a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2783231b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2989432b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3216337a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3123452", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048222c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "12995.87", + "base_power_2": "2736.09", + "name": "ld_355431c0b", + "nominal_voltage": "120.09", + "parent": "sx3048222c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3029506b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3735.90", + "base_power_2": "3367.19", + "name": "ld_338930b0b", + "nominal_voltage": "120.09", + "parent": "sx3029506b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2804255b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8404.30", + "base_power_2": "1626.63", + "name": "ld_338913b0b", + "nominal_voltage": "120.09", + "parent": "sx2804255b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2860487c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6102.03", + "base_power_2": "3279.42", + "name": "ld_138586c0b", + "nominal_voltage": "120.09", + "parent": "sx2860487c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3103822", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3197628c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841637c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3379.97", + "base_power_2": "10197.35", + "name": "ld_293492c0a", + "nominal_voltage": "120.09", + "parent": "sx2841637c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935554a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3390.76", + "base_power_2": "3361.82", + "name": "ld_338921a0a", + "nominal_voltage": "120.09", + "parent": "sx2935554a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3728040", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785535b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9798.78", + "base_power_2": "14943.25", + "name": "ld_339005b0b", + "nominal_voltage": "120.09", + "parent": "sx2785535b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2804251a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2201.25", + "base_power_2": "1458.55", + "name": "ld_138646a0b", + "nominal_voltage": "120.09", + "parent": "sx2804251a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3728041", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160109b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4327.73", + "base_power_2": "5703.20", + "name": "ld_338947b0a", + "nominal_voltage": "120.09", + "parent": "sx3160109b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3728042", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3253570c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3767.22", + "base_power_2": "9810.10", + "name": "ld_228314460c0a", + "nominal_voltage": "120.09", + "parent": "sx3253570c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3728043", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2898522a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4585.91", + "base_power_2": "4558.42", + "name": "ld_260648a0a", + "nominal_voltage": "120.09", + "parent": "sx2898522a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973160b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1392.66", + "base_power_2": "4627.96", + "name": "ld_338935b0a", + "nominal_voltage": "120.09", + "parent": "sx2973160b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2989566b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2970258", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3728039", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216370c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2949.57", + "base_power_2": "1246.30", + "name": "ld_293521c0a", + "nominal_voltage": "120.09", + "parent": "sx3216370c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3216338b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3197627c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2860484b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5362.85", + "base_power_2": "3750.55", + "name": "ld_323255b0b", + "nominal_voltage": "120.09", + "parent": "sx2860484b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841636b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841636b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2841636b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "2354.51", + "base_power_2": "3666.11", + "name": "ld_391758b0b", + "nominal_voltage": "120.09", + "parent": "sx2841636b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935555a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4209.80", + "base_power_2": "1274.74", + "name": "ld_338917a0a", + "nominal_voltage": "120.09", + "parent": "sx2935555a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "hvmv69sub1_hsb", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2821010", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3011298c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3160108b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5183.63", + "base_power_2": "9857.61", + "name": "ld_355603b0b", + "nominal_voltage": "120.09", + "parent": "sx3160108b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2785536b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2961.75", + "base_power_2": "3058.87", + "name": "ld_339002b0b", + "nominal_voltage": "120.09", + "parent": "sx2785536b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2804252a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2804252a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2804252a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3736.23", + "base_power_2": "8500.89", + "name": "ld_302473a0a", + "nominal_voltage": "120.09", + "parent": "sx2804252a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973161a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4434.07", + "base_power_2": "9277.27", + "name": "ld_293592a0b", + "nominal_voltage": "120.09", + "parent": "sx2973161a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3216339b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3214069c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2766742b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3197626c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2860485b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3132.21", + "base_power_2": "2888.41", + "name": "ld_321855b0a", + "nominal_voltage": "120.09", + "parent": "sx2860485b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841635a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1950.03", + "base_power_2": "3534.50", + "name": "ld_21399099a0a", + "nominal_voltage": "120.09", + "parent": "sx2841635a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104859b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3141395c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2822868a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3872.86", + "base_power_2": "4704.46", + "name": "ld_21397544a0a", + "nominal_voltage": "120.09", + "parent": "sx2822868a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3231255c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3367.49", + "base_power_2": "7117.05", + "name": "ld_339051c0b", + "nominal_voltage": "120.09", + "parent": "sx3231255c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160107a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5593.64", + "base_power_2": "3550.69", + "name": "ld_138265a0b", + "nominal_voltage": "120.09", + "parent": "sx3160107a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197653b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5518.92", + "base_power_2": "4512.01", + "name": "ld_339004b0a", + "nominal_voltage": "120.09", + "parent": "sx3197653b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973162b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2720.01", + "base_power_2": "3300.61", + "name": "ld_302375b0a", + "nominal_voltage": "120.09", + "parent": "sx2973162b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3029503c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3202.34", + "base_power_2": "3086.32", + "name": "ld_138373c0b", + "nominal_voltage": "120.09", + "parent": "sx3029503c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3068944", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2972930a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8105.24", + "base_power_2": "1039.09", + "name": "ld_338927a0b", + "nominal_voltage": "120.09", + "parent": "sx2972930a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2785537a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2673.09", + "base_power_2": "2811.44", + "name": "ld_338975a0a", + "nominal_voltage": "120.09", + "parent": "sx2785537a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2804258b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9889.57", + "base_power_2": "3234.14", + "name": "ld_337697b0b", + "nominal_voltage": "120.09", + "parent": "sx2804258b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3729298a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3251799", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3141396c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841634b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9548.24", + "base_power_2": "5492.99", + "name": "ld_392038b0b", + "nominal_voltage": "120.09", + "parent": "sx2841634b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2822869a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8641.52", + "base_power_2": "3595.59", + "name": "ld_338942a0a", + "nominal_voltage": "120.09", + "parent": "sx2822869a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160106a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3160106a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3160106a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "6693.02", + "base_power_2": "2451.31", + "name": "ld_310570a0a", + "nominal_voltage": "120.09", + "parent": "sx3160106a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973163b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1863.87", + "base_power_2": "2146.43", + "name": "ld_391753b0b", + "nominal_voltage": "120.09", + "parent": "sx2973163b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197652a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1348.57", + "base_power_2": "7795.76", + "name": "ld_339021a0b", + "nominal_voltage": "120.09", + "parent": "sx3197652a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "221-311609", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3214112b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3029502a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "11707.07", + "base_power_2": "6581.59", + "name": "ld_138262a0a", + "nominal_voltage": "120.09", + "parent": "sx3029502a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2728247", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879767b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2948.90", + "base_power_2": "1061.41", + "name": "ld_260496b0a", + "nominal_voltage": "120.09", + "parent": "sx2879767b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2785538a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2785538a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2785538a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "8935.75", + "base_power_2": "3301.36", + "name": "ld_338986a0a", + "nominal_voltage": "120.09", + "parent": "sx2785538a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254203b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3427.38", + "base_power_2": "2593.24", + "name": "ld_323233b0b", + "nominal_voltage": "120.09", + "parent": "sx3254203b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2804259a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3252.79", + "base_power_2": "5891.54", + "name": "ld_2127372a0a", + "nominal_voltage": "120.09", + "parent": "sx2804259a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841633a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1821.77", + "base_power_2": "7322.56", + "name": "ld_293645a0a", + "nominal_voltage": "120.09", + "parent": "sx2841633a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3141397b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3729297a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3011293a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3011293b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2973164a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4057.21", + "base_power_2": "2695.36", + "name": "ld_302514a0b", + "nominal_voltage": "120.09", + "parent": "sx2973164a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160105c", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2046.77", + "base_power_2": "4241.89", + "name": "ld_302811c0a", + "nominal_voltage": "120.09", + "parent": "sx3160105c", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3011293c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3048227a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1065.51", + "base_power_2": "8078.82", + "name": "ld_337647a0a", + "nominal_voltage": "120.09", + "parent": "sx3048227a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3029505c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1445.00", + "base_power_2": "9039.54", + "name": "ld_338966c0b", + "nominal_voltage": "120.09", + "parent": "sx3029505c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2804256b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2850.66", + "base_power_2": "1159.65", + "name": "ld_321840b0b", + "nominal_voltage": "120.09", + "parent": "sx2804256b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991929b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2711226b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5544.91", + "base_power_2": "4486.01", + "name": "ld_260527b0b", + "nominal_voltage": "120.09", + "parent": "sx2711226b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2860488b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9106.80", + "base_power_2": "4016.91", + "name": "ld_391751b0b", + "nominal_voltage": "120.09", + "parent": "sx2860488b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104856a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841632b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9192.82", + "base_power_2": "3930.89", + "name": "ld_338972b0a", + "nominal_voltage": "120.09", + "parent": "sx2841632b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3141398a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2973165a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2404.41", + "base_power_2": "6739.92", + "name": "ld_355942a0a", + "nominal_voltage": "120.09", + "parent": "sx2973165a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160104b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2121.01", + "base_power_2": "7909.92", + "name": "ld_337707b0b", + "nominal_voltage": "120.09", + "parent": "sx3160104b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935559a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6272.94", + "base_power_2": "2871.39", + "name": "ld_21400185a0a", + "nominal_voltage": "120.09", + "parent": "sx2935559a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3048228c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3148.55", + "base_power_2": "7335.99", + "name": "ld_274997c0b", + "nominal_voltage": "120.09", + "parent": "sx3048228c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2711225c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3284.27", + "base_power_2": "3004.39", + "name": "ld_260553c0b", + "nominal_voltage": "120.09", + "parent": "sx2711225c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3029504b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3785.29", + "base_power_2": "6245.64", + "name": "ld_337702b0a", + "nominal_voltage": "120.09", + "parent": "sx3029504b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2674027b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3630.73", + "base_power_2": "9492.98", + "name": "ld_21380325b0b", + "nominal_voltage": "120.09", + "parent": "sx2674027b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2804257b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1395.28", + "base_power_2": "4625.34", + "name": "ld_321854b0a", + "nominal_voltage": "120.09", + "parent": "sx2804257b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d5653457-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2860489a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5338.14", + "base_power_2": "3239.18", + "name": "ld_302405a0b", + "nominal_voltage": "120.09", + "parent": "sx2860489a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3251806", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3251808", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3251807", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160115b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "16856.61", + "base_power_2": "3194.94", + "name": "ld_338994b0a", + "nominal_voltage": "120.09", + "parent": "sx3160115b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026492", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104136b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4473.44", + "base_power_2": "1547.18", + "name": "ld_338949b0a", + "nominal_voltage": "120.09", + "parent": "sx3104136b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026487", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879078a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026486", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026485", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "228-1353934-4_int", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026488", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx0247160b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4014.48", + "base_power_2": "5098.92", + "name": "ld_247160b0a", + "nominal_voltage": "120.09", + "parent": "sx0247160b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2822877b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7881.57", + "base_power_2": "6012.74", + "name": "ld_337672b0b", + "nominal_voltage": "120.09", + "parent": "sx2822877b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx0247162b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2894.18", + "base_power_2": "3126.44", + "name": "ld_247162b0b", + "nominal_voltage": "120.09", + "parent": "sx0247162b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2954361b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3160114a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1275.64", + "base_power_2": "4208.89", + "name": "ld_339019a0a", + "nominal_voltage": "120.09", + "parent": "sx3160114a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2879079b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104134c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104134c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3104134c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "8727.98", + "base_power_2": "1756.55", + "name": "ld_138718c0b", + "nominal_voltage": "120.09", + "parent": "sx3104134c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3216367b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8538.56", + "base_power_2": "1492.36", + "name": "ld_337648b0b", + "nominal_voltage": "120.09", + "parent": "sx3216367b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3085389b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9725.77", + "base_power_2": "3397.94", + "name": "ld_391765b0a", + "nominal_voltage": "120.09", + "parent": "sx3085389b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3178988b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3160113b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3160113b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3160113b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "1497.01", + "base_power_2": "8533.92", + "name": "ld_323284b0a", + "nominal_voltage": "120.09", + "parent": "sx3160113b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001208c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2000600", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001209c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3216342b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3157167a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3311.30", + "base_power_2": "2173.24", + "name": "ld_226115278a0b", + "nominal_voltage": "120.09", + "parent": "sx3157167a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2804248b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3787.11", + "base_power_2": "3315.98", + "name": "ld_323244b0a", + "nominal_voltage": "120.09", + "parent": "sx2804248b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3176661c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4001.58", + "base_power_2": "3287.08", + "name": "ld_356788c0a", + "nominal_voltage": "120.09", + "parent": "sx3176661c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3216368c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3216368c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3216368c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4430.98", + "base_power_2": "1857.68", + "name": "ld_293663c0b", + "nominal_voltage": "120.09", + "parent": "sx3216368c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3085388b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3445.95", + "base_power_2": "3657.14", + "name": "ld_391746b0a", + "nominal_voltage": "120.09", + "parent": "sx3085388b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m1069-mt1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069-mt1_dgmtr", + "nominal_voltage": "277.13", + "parent": "m1069-mt1", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "x2001207c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104135a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2040.11", + "base_power_2": "3444.42", + "name": "ld_21399508a0a", + "nominal_voltage": "120.09", + "parent": "sx3104135a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026496", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "regxfmr_hvmv11sub1_lsb", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3216343c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2766738c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2804249c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4094.65", + "base_power_2": "2194.01", + "name": "ld_21389962c0b", + "nominal_voltage": "120.09", + "parent": "sx2804249c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3176660b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3660.85", + "base_power_2": "2359.77", + "name": "ld_226193892b0a", + "nominal_voltage": "120.09", + "parent": "sx3176660b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3215340a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6365.23", + "base_power_2": "2779.10", + "name": "ld_228057846a0a", + "nominal_voltage": "120.09", + "parent": "sx3215340a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2692600c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104132a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104132a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3104132a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "2886.93", + "base_power_2": "2597.61", + "name": "ld_302469a0b", + "nominal_voltage": "120.09", + "parent": "sx3104132a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2821770a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3233353a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1676.30", + "base_power_2": "3808.23", + "name": "ld_21399630a0a", + "nominal_voltage": "120.09", + "parent": "sx3233353a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2673312a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1632.98", + "base_power_2": "7511.35", + "name": "ld_321837a0b", + "nominal_voltage": "120.09", + "parent": "sx2673312a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2822872b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3525.13", + "base_power_2": "6505.79", + "name": "ld_338950b0b", + "nominal_voltage": "120.09", + "parent": "sx2822872b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3066811b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3216361b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4774.23", + "base_power_2": "5256.70", + "name": "ld_21452406b0b", + "nominal_voltage": "120.09", + "parent": "sx3216361b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001206c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047386", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3066810c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047388", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879074a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2951995c", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3120376", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3047289", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3027671", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3027670", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2917255", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785530a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1243.62", + "base_power_2": "2416.18", + "name": "ld_391985a0a", + "nominal_voltage": "120.09", + "parent": "sx2785530a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991933c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2801902b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2764411c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1312.25", + "base_power_2": "4976.41", + "name": "ld_226010605c0b", + "nominal_voltage": "120.09", + "parent": "sx2764411c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2673313b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1149.93", + "base_power_2": "8881.00", + "name": "ld_321853b0b", + "nominal_voltage": "120.09", + "parent": "sx2673313b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104133a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6528.70", + "base_power_2": "2615.63", + "name": "ld_293483a0b", + "nominal_voltage": "120.09", + "parent": "sx3104133a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3066812a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2822873b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3172.33", + "base_power_2": "3930.76", + "name": "ld_338999b0a", + "nominal_voltage": "120.09", + "parent": "sx2822873b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001205c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2878848c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2879075a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2766732b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001400c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001400c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001400c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "21621.99", + "base_power_2": "24952.75", + "name": "ld_2001400c0a", + "nominal_voltage": "120.09", + "parent": "sx2001400c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2990098a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2990098a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2990098a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "11245.96", + "base_power_2": "7042.70", + "name": "ld_226308721a0b", + "nominal_voltage": "120.09", + "parent": "sx2990098a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3251830", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104130b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4449.31", + "base_power_2": "5581.62", + "name": "ld_391755b0b", + "nominal_voltage": "120.09", + "parent": "sx3104130b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2785531a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1700.09", + "base_power_2": "3784.45", + "name": "ld_21399809a0b", + "nominal_voltage": "120.09", + "parent": "sx2785531a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2936271a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3346.74", + "base_power_2": "2137.80", + "name": "ld_260476a0a", + "nominal_voltage": "120.09", + "parent": "sx2936271a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2726983a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001204c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673310a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7037.60", + "base_power_2": "2106.73", + "name": "ld_138562a0b", + "nominal_voltage": "120.09", + "parent": "sx2673310a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2764412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3147.51", + "base_power_2": "5996.82", + "name": "ld_321874a0a", + "nominal_voltage": "120.09", + "parent": "sx2764412a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026472", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047371", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2859403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3606.80", + "base_power_2": "5537.53", + "name": "ld_228001810a0a", + "nominal_voltage": "120.09", + "parent": "sx2859403a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026463", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879076c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026468", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047368", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048962a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1960.74", + "base_power_2": "11750.60", + "name": "ld_260555a0b", + "nominal_voltage": "120.09", + "parent": "sx3048962a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026466", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3315860b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3047289a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3952.33", + "base_power_2": "14336.34", + "name": "ld_228091193a0b", + "nominal_voltage": "120.09", + "parent": "sx3047289a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3251854", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2936270a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5018.66", + "base_power_2": "4125.67", + "name": "ld_218472a0a", + "nominal_voltage": "120.09", + "parent": "sx2936270a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104131a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1688.72", + "base_power_2": "7455.61", + "name": "ld_302410a0a", + "nominal_voltage": "120.09", + "parent": "sx3104131a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3159037b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2929261", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3217064", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3047289c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4425.77", + "base_power_2": "16543.30", + "name": "ld_228091193c0b", + "nominal_voltage": "120.09", + "parent": "sx3047289c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3047289b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "11400.83", + "base_power_2": "8650.72", + "name": "ld_228091193b0b", + "nominal_voltage": "120.09", + "parent": "sx3047289b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d2001001_int", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001203c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673311a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7181.20", + "base_power_2": "1963.13", + "name": "ld_21397029a0b", + "nominal_voltage": "120.09", + "parent": "sx2673311a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d6108141-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047374", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879077b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3139086b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2692633c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9837.99", + "base_power_2": "3739.33", + "name": "ld_328364c0a", + "nominal_voltage": "120.09", + "parent": "sx2692633c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047379", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048963b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4808.69", + "base_power_2": "1211.92", + "name": "ld_260521b0b", + "nominal_voltage": "120.09", + "parent": "sx3048963b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1209der480-1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3217057", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3217056", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2728247c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3750.74", + "base_power_2": "3537.92", + "name": "ld_337729c0a", + "nominal_voltage": "120.09", + "parent": "sx2728247c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2728247a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1760.95", + "base_power_2": "1898.84", + "name": "ld_337729a0b", + "nominal_voltage": "120.09", + "parent": "sx2728247a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2728247b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4084.38", + "base_power_2": "9039.33", + "name": "ld_337729b0a", + "nominal_voltage": "120.09", + "parent": "sx2728247b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1142860", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827532", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827531", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3011298", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827530", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2948732b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10205.89", + "base_power_2": "6010.41", + "name": "ld_225571845b0b", + "nominal_voltage": "120.09", + "parent": "sx2948732b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p827536", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142863", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827534", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001202c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2970811a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p827533", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142868", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3011293", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142865", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827537", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3066815c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047340", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2673316a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3461.66", + "base_power_2": "3290.91", + "name": "ld_2120855a0a", + "nominal_voltage": "120.09", + "parent": "sx2673316a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047342", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142869", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047344", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047345", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047346", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879070b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "e206217", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3232301c", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1142871", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827521", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827520", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2689726", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2689727", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2936276b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3609.94", + "base_power_2": "3493.16", + "name": "ld_260458b0b", + "nominal_voltage": "120.09", + "parent": "sx2936276b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2729410c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1142875", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827525", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142874", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p859135", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142873", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827523", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3066816a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p827522", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827529", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827528", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827527", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3217057a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673317a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673317a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2673317a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4937.29", + "base_power_2": "3640.03", + "name": "ld_21397771a0a", + "nominal_voltage": "120.09", + "parent": "sx2673317a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3048965b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3048965b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3048965b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7187.41", + "base_power_2": "7853.83", + "name": "ld_260641b0b", + "nominal_voltage": "120.09", + "parent": "sx3048965b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047358", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879071b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2729411a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3178980c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p827554", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827553", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142880", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2936275b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2104.12", + "base_power_2": "1906.19", + "name": "ld_157715b0a", + "nominal_voltage": "120.09", + "parent": "sx2936275b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069597", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827555", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2822870c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5457.18", + "base_power_2": "3924.26", + "name": "ld_21399171c0a", + "nominal_voltage": "120.09", + "parent": "sx2822870c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2673314c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2798.25", + "base_power_2": "1397.63", + "name": "ld_355778c0b", + "nominal_voltage": "120.09", + "parent": "sx2673314c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "e206209", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3066813b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069595", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710508b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3734.26", + "base_power_2": "2286.36", + "name": "ld_323241b0a", + "nominal_voltage": "120.09", + "parent": "sx2710508b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047322", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048966c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5940.41", + "base_power_2": "3441.03", + "name": "ld_260625c0a", + "nominal_voltage": "120.09", + "parent": "sx3048966c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047323", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047324", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047325", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879072b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047326", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e206211", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e206210", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2875754c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "16957.93", + "base_power_2": "4011.15", + "name": "ld_225897943c0b", + "nominal_voltage": "120.09", + "parent": "sx2875754c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2729412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p827542", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069588", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3178981b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069582", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2822871b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3588.04", + "base_power_2": "6442.89", + "name": "ld_355840b0b", + "nominal_voltage": "120.09", + "parent": "sx2822871b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p827549", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5621886-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827548", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3066814b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069590", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710509c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6116.40", + "base_power_2": "3265.04", + "name": "ld_275000c0b", + "nominal_voltage": "120.09", + "parent": "sx2710509c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2673315a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1571.88", + "base_power_2": "2087.91", + "name": "ld_247058a0a", + "nominal_voltage": "120.09", + "parent": "sx2673315a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2952013a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3010570a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047335", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879073c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047338", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047339", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3207907c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3349.62", + "base_power_2": "17619.45", + "name": "ld_293664c0b", + "nominal_voltage": "120.09", + "parent": "sx3207907c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3207907b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5054.44", + "base_power_2": "25028.03", + "name": "ld_293664b0a", + "nominal_voltage": "120.09", + "parent": "sx3207907b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3207907a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "12369.50", + "base_power_2": "5919.16", + "name": "ld_293664a0b", + "nominal_voltage": "120.09", + "parent": "sx3207907a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p827576", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108405b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "13801.49", + "base_power_2": "16467.49", + "name": "ld_2221108405b0a", + "nominal_voltage": "120.09", + "parent": "sx1108405b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p827575", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108405c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "16667.68", + "base_power_2": "20603.52", + "name": "ld_2221108405c0a", + "nominal_voltage": "120.09", + "parent": "sx1108405c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3066819a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p827574", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827573", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108405a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "11168.03", + "base_power_2": "12306.80", + "name": "ld_2221108405a0b", + "nominal_voltage": "120.09", + "parent": "sx1108405a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3048968c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4624.56", + "base_power_2": "11107.40", + "name": "ld_350994c0b", + "nominal_voltage": "120.09", + "parent": "sx3048968c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3048890c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2823592_cap", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069572", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "196-36167", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069574", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3178982a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1142821", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142828", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2972930", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2748780", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142826", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2748781", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047300", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2820528", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047303", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d6231996-1_int", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729413a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047309", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827561", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827560", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3081380a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4433.48", + "base_power_2": "1051.05", + "name": "ld_225700953a0b", + "nominal_voltage": "120.09", + "parent": "sx3081380a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2729414c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1010013", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136030", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136031", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827564", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2842329c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1010011", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136032", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827563", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108406a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "13386.32", + "base_power_2": "10872.71", + "name": "ld_2221108406a0b", + "nominal_voltage": "120.09", + "parent": "sx1108406a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx1108406b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "14925.70", + "base_power_2": "12163.25", + "name": "ld_2221108406b0a", + "nominal_voltage": "120.09", + "parent": "sx1108406b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1010017", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069565", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1010016", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069564", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1010015", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069567", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2851933b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1010014", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2851933a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3214071c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5712477-3_int", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142835", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069560", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2851933c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069563", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142833", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142832", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142839", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691973a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3217053c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047311", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047312", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047314", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2820533", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047316", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2820535", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3120484c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3132.35", + "base_power_2": "3156.31", + "name": "ld_226191772c0a", + "nominal_voltage": "120.09", + "parent": "sx3120484c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047318", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3235268c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4241.68", + "base_power_2": "6242.86", + "name": "ld_2099529c0a", + "nominal_voltage": "120.09", + "parent": "sx3235268c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047319", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136027", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729414b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1136028", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729414a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2820531", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197661", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001100", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136029", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197660", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3172805a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069558", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069557", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "15447.28", + "base_power_2": "15708.68", + "name": "ld_2221108403a0a", + "nominal_voltage": "120.09", + "parent": "sx1108403a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069554", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069556", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108403b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "12709.11", + "base_power_2": "14365.83", + "name": "ld_2221108403b0b", + "nominal_voltage": "120.09", + "parent": "sx1108403b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069555", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108403c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "11700.78", + "base_power_2": "10489.54", + "name": "ld_2221108403c0a", + "nominal_voltage": "120.09", + "parent": "sx1108403c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3066817a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069550", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710504b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "14362.61", + "base_power_2": "3771.41", + "name": "ld_323394b0a", + "nominal_voltage": "120.09", + "parent": "sx2710504b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3120502a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069551", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142843", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3217056a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673318c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673318c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2673318c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "6960.77", + "base_power_2": "3523.77", + "name": "ld_338967c0b", + "nominal_voltage": "120.09", + "parent": "sx2673318c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2839305a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2839305a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2839305a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3427.81", + "base_power_2": "2056.72", + "name": "ld_2150292a0b", + "nominal_voltage": "120.09", + "parent": "sx2839305a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2745799c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6728.70", + "base_power_2": "3755.83", + "name": "ld_226191779c0a", + "nominal_voltage": "120.09", + "parent": "sx2745799c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3189190a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6711.56", + "base_power_2": "2432.77", + "name": "ld_227100753a0a", + "nominal_voltage": "120.09", + "parent": "sx3189190a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3235267c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2869.56", + "base_power_2": "7614.97", + "name": "ld_321892c0b", + "nominal_voltage": "120.09", + "parent": "sx3235267c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "e192860", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827580", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108404a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "15438.03", + "base_power_2": "13268.97", + "name": "ld_2221108404a0a", + "nominal_voltage": "120.09", + "parent": "sx1108404a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "190-7361", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108404b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "18839.82", + "base_power_2": "21097.20", + "name": "ld_2221108404b0a", + "nominal_voltage": "120.09", + "parent": "sx1108404b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069549", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069548", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069543", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3251799a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5021.70", + "base_power_2": "8689.64", + "name": "ld_260562a0a", + "nominal_voltage": "120.09", + "parent": "sx3251799a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2798067b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2993.28", + "base_power_2": "4109.81", + "name": "ld_225533237b0b", + "nominal_voltage": "120.09", + "parent": "sx2798067b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1142851", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108404c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "16138.82", + "base_power_2": "18233.47", + "name": "ld_2221108404c0a", + "nominal_voltage": "120.09", + "parent": "sx1108404c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069544", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3066818b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3200222", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3120503a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710505b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5942.25", + "base_power_2": "3171.15", + "name": "ld_323398b0a", + "nominal_voltage": "120.09", + "parent": "sx2710505b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2673319c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673319c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2673319c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "2234.64", + "base_power_2": "4054.02", + "name": "ld_391973c0b", + "nominal_voltage": "120.09", + "parent": "sx2673319c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2803194", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2898457a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2936279c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2936279c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2936279c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "1972.84", + "base_power_2": "8511.69", + "name": "ld_247184c0a", + "nominal_voltage": "120.09", + "parent": "sx2936279c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3235266c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9909.78", + "base_power_2": "3667.54", + "name": "ld_302807c0b", + "nominal_voltage": "120.09", + "parent": "sx3235266c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d6019477-1_int", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2803199", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2933135", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254218a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2984.40", + "base_power_2": "6159.93", + "name": "ld_138720a0a", + "nominal_voltage": "120.09", + "parent": "sx3254218a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069535", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069532", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973154a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4472.56", + "base_power_2": "4104.76", + "name": "ld_338897a0b", + "nominal_voltage": "120.09", + "parent": "sx2973154a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2691939b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3110.19", + "base_power_2": "6920.74", + "name": "ld_355589b0b", + "nominal_voltage": "120.09", + "parent": "sx2691939b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069533", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069530", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv115_hsb2", + "nominal_voltage": "66395.28", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2925506", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv115_hsb1", + "nominal_voltage": "66395.28", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2860490a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3281.71", + "base_power_2": "8955.40", + "name": "ld_138719a0a", + "nominal_voltage": "120.09", + "parent": "sx2860490a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2786204", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3125349", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785529c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2250.42", + "base_power_2": "8234.12", + "name": "ld_355943c0b", + "nominal_voltage": "120.09", + "parent": "sx2785529c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3235253a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6626.57", + "base_power_2": "2517.76", + "name": "ld_138573a0b", + "nominal_voltage": "120.09", + "parent": "sx3235253a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2748131b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2785516b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069524", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254219c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1349.78", + "base_power_2": "9134.76", + "name": "ld_138716c0a", + "nominal_voltage": "120.09", + "parent": "sx3254219c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069526", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069521", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m4118755", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973155a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2458.73", + "base_power_2": "3025.81", + "name": "ld_338898a0b", + "nominal_voltage": "120.09", + "parent": "sx2973155a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3195310a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7212.30", + "base_power_2": "1932.03", + "name": "ld_226192185a0a", + "nominal_voltage": "120.09", + "parent": "sx3195310a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m4118754", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691938b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3016.81", + "base_power_2": "7014.12", + "name": "ld_355600b0b", + "nominal_voltage": "120.09", + "parent": "sx2691938b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3029510b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1956.19", + "base_power_2": "4064.43", + "name": "ld_355606b0b", + "nominal_voltage": "120.09", + "parent": "sx3029510b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3181545c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3867.75", + "base_power_2": "5513.69", + "name": "ld_226193702c0b", + "nominal_voltage": "120.09", + "parent": "sx3181545c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2952007c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2860491a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3580.34", + "base_power_2": "3172.23", + "name": "ld_302733a0a", + "nominal_voltage": "120.09", + "parent": "sx2860491a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2860491b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2986.97", + "base_power_2": "12054.27", + "name": "ld_302733b0a", + "nominal_voltage": "120.09", + "parent": "sx2860491b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3235252b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9593.18", + "base_power_2": "3530.53", + "name": "ld_21388572b0a", + "nominal_voltage": "120.09", + "parent": "sx3235252b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935560c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4253.36", + "base_power_2": "2035.30", + "name": "ld_293659c0b", + "nominal_voltage": "120.09", + "parent": "sx2935560c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2748130b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2785517c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069518", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069517", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069519", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069514", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069513", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069516", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785519a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069515", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254216a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8649.91", + "base_power_2": "3587.21", + "name": "ld_21398563a0a", + "nominal_voltage": "120.09", + "parent": "sx3254216a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973156b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3174.15", + "base_power_2": "2846.47", + "name": "ld_337687b0a", + "nominal_voltage": "120.09", + "parent": "sx2973156b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2727019", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1010004", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673309", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1010003", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1010008", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1010007", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673303", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2708744", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2711234b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1094.77", + "base_power_2": "8936.16", + "name": "ld_207287b0a", + "nominal_voltage": "120.09", + "parent": "sx2711234b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2673308", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673307", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3235251c", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3972.15", + "base_power_2": "6248.94", + "name": "ld_21387206c0b", + "nominal_voltage": "120.09", + "parent": "sx3235251c", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2673306", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673305", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785518c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3027116a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3702.77", + "base_power_2": "4874.55", + "name": "ld_226192684a0b", + "nominal_voltage": "120.09", + "parent": "sx3027116a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2673300", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2933165", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2933164", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3101782a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4303.86", + "base_power_2": "9407.48", + "name": "ld_356808a0a", + "nominal_voltage": "120.09", + "parent": "sx3101782a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069509", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069503", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254217c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10374.89", + "base_power_2": "3202.43", + "name": "ld_21399112c0b", + "nominal_voltage": "120.09", + "parent": "sx3254217c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069505", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973157a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3715.87", + "base_power_2": "8521.25", + "name": "ld_337722a0b", + "nominal_voltage": "120.09", + "parent": "sx2973157a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069504", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3141400a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3405.01", + "base_power_2": "4378.50", + "name": "ld_138313a0a", + "nominal_voltage": "120.09", + "parent": "sx3141400a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2821010a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2727008", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069500", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3235250b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3271.06", + "base_power_2": "3832.04", + "name": "ld_337698b0b", + "nominal_voltage": "120.09", + "parent": "sx3235250b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3728039a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "13681.77", + "base_power_2": "2957.42", + "name": "ld_2224387053a0b", + "nominal_voltage": "120.09", + "parent": "sx3728039a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3234185b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9277.95", + "base_power_2": "3845.76", + "name": "ld_323388b0a", + "nominal_voltage": "120.09", + "parent": "sx3234185b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2973144c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2983432", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2748135a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3236011b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3276.94", + "base_power_2": "2743.68", + "name": "ld_138796b0b", + "nominal_voltage": "120.09", + "parent": "sx3236011b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3140238a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2973158c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2696.97", + "base_power_2": "5653.54", + "name": "ld_138259c0b", + "nominal_voltage": "120.09", + "parent": "sx2973158c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2673326", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "221-308718", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673323", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2861197", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3728038a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3343.74", + "base_power_2": "5800.59", + "name": "ld_2224387019a0b", + "nominal_voltage": "120.09", + "parent": "sx3728038a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3086098", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673322", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2898495", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2936213", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673321", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2936214", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673320", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2936211", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2936212", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916608", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916609", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916606", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916607", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5655682-1_int", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973159a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5086.36", + "base_power_2": "3490.96", + "name": "ld_21398536a0b", + "nominal_voltage": "120.09", + "parent": "sx2973159a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2916605", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916602", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916603", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3159645a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2925506c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2673315", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673314", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673313", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2952003b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2673312", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673319", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673318", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673317", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673316", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2973146b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2916610", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3270814", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673311", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673310", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3728037a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4046.00", + "base_power_2": "8191.11", + "name": "ld_2224386946a0b", + "nominal_voltage": "120.09", + "parent": "sx3728037a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2916619", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916617", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916618", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209748", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209749", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3729298", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827514", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827512", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3729297", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827511", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827515", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136999", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d6504019-6_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673346", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3016088", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3086075", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3086074", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2860492c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5305.29", + "base_power_2": "4076.16", + "name": "ld_21395720c0a", + "nominal_voltage": "120.09", + "parent": "sx2860492c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3086079", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3086078", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209750", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916620", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136993", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136994", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209753", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136995", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673343", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136996", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209751", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136997", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2748133c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1209752", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136998", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209758", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2936216", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916627", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916625", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827503", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691936a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1112.67", + "base_power_2": "4371.87", + "name": "ld_356009a0b", + "nominal_voltage": "120.09", + "parent": "sx2691936a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p827502", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827501", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827500", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827507", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827506", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827505", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827504", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2898515c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3572.09", + "base_power_2": "6912.45", + "name": "ld_260621c0a", + "nominal_voltage": "120.09", + "parent": "sx2898515c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p827509", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827508", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3123452c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2860493a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4295.19", + "base_power_2": "4849.14", + "name": "ld_21397645a0b", + "nominal_voltage": "120.09", + "parent": "sx2860493a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2973148a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879773a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5255.82", + "base_power_2": "3888.51", + "name": "ld_207290a0a", + "nominal_voltage": "120.09", + "parent": "sx2879773a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2992556a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2992556a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2992556a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "2333.79", + "base_power_2": "3954.87", + "name": "ld_346639c0a", + "nominal_voltage": "120.09", + "parent": "sx2992556a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2673331", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209763", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2748132a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2785521c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "11810.42", + "base_power_2": "3921.54", + "name": "ld_338931c0b", + "nominal_voltage": "120.09", + "parent": "sx2785521c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2915542c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2915542b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2915542a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2935568b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5781.02", + "base_power_2": "3332.38", + "name": "ld_2119958b0b", + "nominal_voltage": "120.09", + "parent": "sx2935568b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3108449a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5374.86", + "base_power_2": "3202.46", + "name": "ld_228622562a0b", + "nominal_voltage": "120.09", + "parent": "sx3108449a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2823545a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3197661c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3825.10", + "base_power_2": "5556.34", + "name": "ld_338932c0b", + "nominal_voltage": "120.09", + "parent": "sx3197661c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3236004", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3123509c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1223.56", + "base_power_2": "5065.10", + "name": "ld_2129923c0b", + "nominal_voltage": "120.09", + "parent": "sx3123509c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2973149b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2896685a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3732.87", + "base_power_2": "4844.45", + "name": "ld_227187012a0a", + "nominal_voltage": "120.09", + "parent": "sx2896685a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3103822c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2896685b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2327.65", + "base_power_2": "3692.97", + "name": "ld_227187012b0b", + "nominal_voltage": "120.09", + "parent": "sx2896685b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3235248c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2896685c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3206.85", + "base_power_2": "3081.81", + "name": "ld_227187012c0a", + "nominal_voltage": "120.09", + "parent": "sx2896685c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841627a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841627a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2841627a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "2863.52", + "base_power_2": "2621.01", + "name": "ld_337716a0a", + "nominal_voltage": "120.09", + "parent": "sx2841627a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254210c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6264.62", + "base_power_2": "2404.18", + "name": "ld_138647c0a", + "nominal_voltage": "120.09", + "parent": "sx3254210c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991915b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3029495", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2841626c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2733.36", + "base_power_2": "1462.51", + "name": "ld_302808c0b", + "nominal_voltage": "120.09", + "parent": "sx2841626c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3029497", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1141480", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785522b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3434.52", + "base_power_2": "9689.19", + "name": "ld_2127681b0a", + "nominal_voltage": "120.09", + "parent": "sx2785522b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2913406b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3326.91", + "base_power_2": "11714.32", + "name": "ld_225940756b0a", + "nominal_voltage": "120.09", + "parent": "sx2913406b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3029498", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3029499", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3141388c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3029518b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2642.71", + "base_power_2": "7388.22", + "name": "ld_337666b0a", + "nominal_voltage": "120.09", + "parent": "sx3029518b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m3729981", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2729423c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1499.11", + "base_power_2": "4789.55", + "name": "ld_339017c0b", + "nominal_voltage": "120.09", + "parent": "sx2729423c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2748780a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2728.63", + "base_power_2": "6415.70", + "name": "ld_356803a0a", + "nominal_voltage": "120.09", + "parent": "sx2748780a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2823544a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3197660b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4742.78", + "base_power_2": "5288.15", + "name": "ld_323275b0a", + "nominal_voltage": "120.09", + "parent": "sx3197660b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3252336b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2748781a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1882.57", + "base_power_2": "11828.77", + "name": "ld_21382813a0a", + "nominal_voltage": "120.09", + "parent": "sx2748781a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3254869b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3235247a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3236011", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048210a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9593.60", + "base_power_2": "4117.74", + "name": "ld_302412a0b", + "nominal_voltage": "120.09", + "parent": "sx3048210a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254211b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8644.80", + "base_power_2": "1386.13", + "name": "ld_247084b0b", + "nominal_voltage": "120.09", + "parent": "sx3254211b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991914c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2786274", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2763407c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4110.21", + "base_power_2": "6374.32", + "name": "ld_225906836c0a", + "nominal_voltage": "120.09", + "parent": "sx2763407c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2860499b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10153.71", + "base_power_2": "9897.83", + "name": "ld_338997b0b", + "nominal_voltage": "120.09", + "parent": "sx2860499b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2786273", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2801909c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2785523c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2785523c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2785523c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "2614.21", + "base_power_2": "3674.45", + "name": "ld_138412c0b", + "nominal_voltage": "120.09", + "parent": "sx2785523c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841625c", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1916.15", + "base_power_2": "2279.73", + "name": "ld_302834c0a", + "nominal_voltage": "120.09", + "parent": "sx2841625c", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1141475", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1141474", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1141473", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2935566c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9309.44", + "base_power_2": "1175.10", + "name": "ld_441854c0b", + "nominal_voltage": "120.09", + "parent": "sx2935566c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "196-35813", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3141389a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1141479", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1141478", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2690868c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "12117.95", + "base_power_2": "8851.12", + "name": "ld_227917127c0b", + "nominal_voltage": "120.09", + "parent": "sx2690868c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1141477", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1141476", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2860500b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2955078a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2729424a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3715.27", + "base_power_2": "1769.27", + "name": "ld_339018a0a", + "nominal_voltage": "120.09", + "parent": "sx2729424a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2936271", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048211a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5130.03", + "base_power_2": "4014.30", + "name": "ld_21396015a0b", + "nominal_voltage": "120.09", + "parent": "sx3048211a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3235246b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2936270", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3046854", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2936275", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2936276", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2786266", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2936279", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3032977", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2823592a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1253.99", + "base_power_2": "2632.61", + "name": "ld_223658a0a", + "nominal_voltage": "120.09", + "parent": "sx2823592a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991913a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2935567b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4005.98", + "base_power_2": "2014.64", + "name": "ld_338992b0a", + "nominal_voltage": "120.09", + "parent": "sx2935567b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991911c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841624b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2325.17", + "base_power_2": "3695.44", + "name": "ld_355604b0a", + "nominal_voltage": "120.09", + "parent": "sx2841624b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m3032980", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3032981", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785524c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1185.05", + "base_power_2": "5103.61", + "name": "ld_2044328c0b", + "nominal_voltage": "120.09", + "parent": "sx2785524c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3176656a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3701.20", + "base_power_2": "8535.91", + "name": "ld_226193170a0b", + "nominal_voltage": "120.09", + "parent": "sx3176656a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2860501b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5472350-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048212a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2583.52", + "base_power_2": "1076.27", + "name": "ld_355934a0a", + "nominal_voltage": "120.09", + "parent": "sx3048212a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2766730b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3235245c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2936268", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2991912a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2876796a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4120.28", + "base_power_2": "1364.25", + "name": "ld_226193338a0b", + "nominal_voltage": "120.09", + "parent": "sx2876796a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841623a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3578.85", + "base_power_2": "1905.69", + "name": "ld_294844a0a", + "nominal_voltage": "120.09", + "parent": "sx2841623a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2785525c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2405.00", + "base_power_2": "8079.54", + "name": "ld_21396606c0a", + "nominal_voltage": "120.09", + "parent": "sx2785525c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3029497c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3119793b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3090.11", + "base_power_2": "2930.51", + "name": "ld_226024307b0b", + "nominal_voltage": "120.09", + "parent": "sx3119793b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2820528c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5360.84", + "base_power_2": "5123.70", + "name": "ld_226191778c0b", + "nominal_voltage": "120.09", + "parent": "sx2820528c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3141401a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4956.27", + "base_power_2": "4188.06", + "name": "ld_338970a0a", + "nominal_voltage": "120.09", + "parent": "sx3141401a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973150a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1602.55", + "base_power_2": "3881.98", + "name": "ld_21380528a0a", + "nominal_voltage": "120.09", + "parent": "sx2973150a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1009828", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1009827", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "regxfmr_190-7361", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2991919a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2955076a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1009820", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p904451", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3235244a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "q14734", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254214b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3254214b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3254214b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4703.29", + "base_power_2": "5327.63", + "name": "ld_337706b0b", + "nominal_voltage": "120.09", + "parent": "sx3254214b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1009824", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "q14733", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p904452", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2876797a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3510.52", + "base_power_2": "1974.01", + "name": "ld_226193345a0b", + "nominal_voltage": "120.09", + "parent": "sx2876797a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841622a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1239.14", + "base_power_2": "4245.40", + "name": "ld_21384215a0a", + "nominal_voltage": "120.09", + "parent": "sx2841622a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1009840", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785526b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3478.30", + "base_power_2": "2542.31", + "name": "ld_302374b0a", + "nominal_voltage": "120.09", + "parent": "sx2785526b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3141402c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9173.93", + "base_power_2": "1310.61", + "name": "ld_391978c0b", + "nominal_voltage": "120.09", + "parent": "sx3141402c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729427b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5409.08", + "base_power_2": "3704.32", + "name": "ld_323249b0a", + "nominal_voltage": "120.09", + "parent": "sx2729427b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973151a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4002.62", + "base_power_2": "1481.91", + "name": "ld_138569a0a", + "nominal_voltage": "120.09", + "parent": "sx2973151a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1009839", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1009838", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048214a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3716.26", + "base_power_2": "8520.85", + "name": "ld_302474a0b", + "nominal_voltage": "120.09", + "parent": "sx3048214a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2955077c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3086002", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2804247b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8109.52", + "base_power_2": "1921.41", + "name": "ld_391737b0b", + "nominal_voltage": "120.09", + "parent": "sx2804247b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254215c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6030.33", + "base_power_2": "3351.12", + "name": "ld_302859c0a", + "nominal_voltage": "120.09", + "parent": "sx3254215c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991918b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3235243c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1009832", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1009834", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3029499a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2917359a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5563942-4_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2841621c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2981.95", + "base_power_2": "7502.58", + "name": "ld_338910c0a", + "nominal_voltage": "120.09", + "parent": "sx2841621c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729428a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2729428a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2729428a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3119.88", + "base_power_2": "2364.65", + "name": "ld_21398402a0a", + "nominal_voltage": "120.09", + "parent": "sx2729428a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973152b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2650.21", + "base_power_2": "7380.72", + "name": "ld_323253b0b", + "nominal_voltage": "120.09", + "parent": "sx2973152b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2860504a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3141403a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7601.55", + "base_power_2": "1542.78", + "name": "ld_21399707a0a", + "nominal_voltage": "120.09", + "parent": "sx3141403a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2955074a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3236004c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2785527a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2454.82", + "base_power_2": "3029.71", + "name": "ld_293522a0b", + "nominal_voltage": "120.09", + "parent": "sx2785527a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254212b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3101.07", + "base_power_2": "11940.17", + "name": "ld_138754b0b", + "nominal_voltage": "120.09", + "parent": "sx3254212b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991917b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1009843", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3235242c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3029498c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2729429a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1038.60", + "base_power_2": "8105.73", + "name": "ld_293644a0b", + "nominal_voltage": "120.09", + "parent": "sx2729429a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841620b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5405.24", + "base_power_2": "3708.16", + "name": "ld_2147018b0a", + "nominal_voltage": "120.09", + "parent": "sx2841620b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3048946c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3046854b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2973153a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3734.26", + "base_power_2": "4843.06", + "name": "ld_338925a0a", + "nominal_voltage": "120.09", + "parent": "sx2973153a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3784018", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2916598a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2860506b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2785528b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4305.36", + "base_power_2": "1715.25", + "name": "ld_138752b0a", + "nominal_voltage": "120.09", + "parent": "sx2785528b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2804245b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4914.50", + "base_power_2": "5116.42", + "name": "ld_355598b0a", + "nominal_voltage": "120.09", + "parent": "sx2804245b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991916b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1009855", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx0247171b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2961.53", + "base_power_2": "3059.09", + "name": "ld_247171b0b", + "nominal_voltage": "120.09", + "parent": "sx0247171b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254213b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8605.73", + "base_power_2": "1425.19", + "name": "ld_321859b0a", + "nominal_voltage": "120.09", + "parent": "sx3254213b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3235241c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3197618a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p827495", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991939", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3141399", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3141397", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827499", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2954350c", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3141398", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827498", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3141395", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3141396", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827496", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3141393", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2673320b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6023.22", + "base_power_2": "4007.71", + "name": "ld_392037b0a", + "nominal_voltage": "120.09", + "parent": "sx2673320b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3141394", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2689678", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1230123", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160103c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5447.77", + "base_power_2": "3933.68", + "name": "ld_356063c0b", + "nominal_voltage": "120.09", + "parent": "sx3160103c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3141390", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710514b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8355.94", + "base_power_2": "1674.99", + "name": "ld_323267b0b", + "nominal_voltage": "120.09", + "parent": "sx2710514b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1230121", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1230122", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026366", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000500", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2916599a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026364", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879066b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026363", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048205c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7380.79", + "base_power_2": "3103.74", + "name": "ld_274994c0b", + "nominal_voltage": "120.09", + "parent": "sx3048205c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2861219b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991933", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2766725c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3139086", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3101194c", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991929", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3141388", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3141389", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991927", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048205c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2989600", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2673321a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5085.32", + "base_power_2": "4059.01", + "name": "ld_302674a0a", + "nominal_voltage": "120.09", + "parent": "sx2673321a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160102b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6588.14", + "base_power_2": "3442.79", + "name": "ld_355780b0b", + "nominal_voltage": "120.09", + "parent": "sx3160102b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026361", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710515c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8013.73", + "base_power_2": "7718.23", + "name": "ld_321884c0a", + "nominal_voltage": "120.09", + "parent": "sx2710515c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3632979a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3387.66", + "base_power_2": "2096.88", + "name": "ld_2224192013a0a", + "nominal_voltage": "120.09", + "parent": "sx3632979a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3048206a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7907.30", + "base_power_2": "1237.03", + "name": "ld_138649a0a", + "nominal_voltage": "120.09", + "parent": "sx3048206a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m2001-mt2", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001-mt2_dgmtr", + "nominal_voltage": "277.13", + "parent": "m2001-mt2", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "x2879067a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2689691", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026354", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m2001-mt3", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001-mt3_dgmtr", + "nominal_voltage": "277.13", + "parent": "m2001-mt3", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m2001-mt1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001-mt1_dgmtr", + "nominal_voltage": "277.13", + "parent": "m2001-mt1", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "m1026357", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026356", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991921", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991920", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991923", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2766724c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991922", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3177665a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991918", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3626914c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2748839", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991917", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048206a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2821087", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991919", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991914", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991913", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991916", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2954352c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991915", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2726975b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710512b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5068.88", + "base_power_2": "4962.05", + "name": "ld_323280b0b", + "nominal_voltage": "120.09", + "parent": "sx2710512b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3157718", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047292", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160101a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2198.52", + "base_power_2": "6945.81", + "name": "ld_337678a0b", + "nominal_voltage": "120.09", + "parent": "sx3160101a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026394", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047293", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026393", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048207b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3182.27", + "base_power_2": "2838.35", + "name": "ld_323248b0b", + "nominal_voltage": "120.09", + "parent": "sx3048207b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3141393c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2842330c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2879068b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1009805", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026387", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1009807", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3157710", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1009809", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2748840", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991910", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991912", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691973", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991911", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "regxfmr_190-8593", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2766727b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991907", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3141394b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991906", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048207b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991909", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991908", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991902", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2954351c", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991905", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2726974b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710513b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1928.23", + "base_power_2": "2082.08", + "name": "ld_325245b0a", + "nominal_voltage": "120.09", + "parent": "sx2710513b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3048208a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1502.23", + "base_power_2": "3982.31", + "name": "ld_138260a0b", + "nominal_voltage": "120.09", + "parent": "sx3048208a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3157708", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160100b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4067.53", + "base_power_2": "1953.09", + "name": "ld_321847b0b", + "nominal_voltage": "120.09", + "parent": "sx3160100b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2879069a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026377", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047299", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026378", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2861218c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2766726b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991901", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139250", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139252", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139251", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897807b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5576.19", + "base_power_2": "3537.21", + "name": "ld_21386771b0a", + "nominal_voltage": "120.09", + "parent": "sx2897807b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3048208a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1139254", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3029500", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3029501", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139256", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710510c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710510c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2710510c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3254.61", + "base_power_2": "4034.05", + "name": "ld_138650c0a", + "nominal_voltage": "120.09", + "parent": "sx2710510c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2726973a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3029502", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139255", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d6409775-4_int", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3029503", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3029504", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3029505", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3029506", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3029507", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048209b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9800.41", + "base_power_2": "3323.30", + "name": "ld_2120195b0b", + "nominal_voltage": "120.09", + "parent": "sx3048209b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104144a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104144a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3104144a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3597.05", + "base_power_2": "3155.53", + "name": "ld_339020a0b", + "nominal_voltage": "120.09", + "parent": "sx3104144a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026320", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2766721a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026324", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026323", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879062c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026329", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026328", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026327", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2991923a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1139260", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2820531b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1381.02", + "base_power_2": "8649.91", + "name": "ld_226192936b0b", + "nominal_voltage": "120.09", + "parent": "sx2820531b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991921c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1139263", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2745799", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048209b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1139264", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3083019", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3251854a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8492.23", + "base_power_2": "3744.89", + "name": "ld_226881700a0b", + "nominal_voltage": "120.09", + "parent": "sx3251854a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3226771", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710511a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6247.49", + "base_power_2": "2896.84", + "name": "ld_21357515a0b", + "nominal_voltage": "120.09", + "parent": "sx2710511a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104145b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2031.16", + "base_power_2": "3989.46", + "name": "ld_339011b0b", + "nominal_voltage": "120.09", + "parent": "sx3104145b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729430b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4390.19", + "base_power_2": "5640.73", + "name": "ld_21248901b0a", + "nominal_voltage": "120.09", + "parent": "sx2729430b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2766720a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2879063b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026312", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139258", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139257", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139259", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2991922a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "221-311583", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3123509", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5502543-2_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897805a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1318.32", + "base_power_2": "7826.01", + "name": "ld_21471907a0b", + "nominal_voltage": "120.09", + "parent": "sx2897805a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991920a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3029520", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3086002c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6517.24", + "base_power_2": "3967.29", + "name": "ld_356794c0a", + "nominal_voltage": "120.09", + "parent": "sx3086002c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2673322b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1653.26", + "base_power_2": "2357.05", + "name": "ld_355358b0a", + "nominal_voltage": "120.09", + "parent": "sx2673322b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026344", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026343", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026341", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879064a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254915b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026347", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3270814a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2766723a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841629c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8952.88", + "base_power_2": "6779.08", + "name": "ld_138405c0b", + "nominal_voltage": "120.09", + "parent": "sx2841629c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2785520b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1272.80", + "base_power_2": "2737.51", + "name": "ld_138755b0a", + "nominal_voltage": "120.09", + "parent": "sx2785520b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d6140776-1_int", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897806c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3014.52", + "base_power_2": "3274.14", + "name": "ld_337643c0a", + "nominal_voltage": "120.09", + "parent": "sx2897806c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "221-311595", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3029510", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001215c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673323c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3414.97", + "base_power_2": "10162.34", + "name": "ld_355438c0b", + "nominal_voltage": "120.09", + "parent": "sx2673323c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3029518", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3141390b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026333", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026331", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3235249a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026330", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879065b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2766722b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026335", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991943", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3120484", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026339", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2841628a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8406.61", + "base_power_2": "3830.50", + "name": "ld_2120786a0b", + "nominal_voltage": "120.09", + "parent": "sx2841628a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2991940", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2748127a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2730187a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069499", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069498", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001214c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "226-23745", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069495", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1126016", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691967b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069494", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1126017", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069497", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069496", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "226-23751", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2861158", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2861157", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1126020", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2730108b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4147.41", + "base_power_2": "2141.25", + "name": "ld_223661b0b", + "nominal_voltage": "120.09", + "parent": "sx2730108b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3010585a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2767408c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3199.80", + "base_power_2": "6256.66", + "name": "ld_260517c0a", + "nominal_voltage": "120.09", + "parent": "sx2767408c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3214549a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2748126c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2898457", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069488", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2896685b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069487", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2896685c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3066804a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001213c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069489", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2896685a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069484", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1126005", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069483", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691966b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3626914", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2767409b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2767409b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2767409b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7189.22", + "base_power_2": "2841.71", + "name": "ld_21391242b0a", + "nominal_voltage": "120.09", + "parent": "sx2767409b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2954357a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3270853", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3270854", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729423c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3728043a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3728043a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3728043a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5086.30", + "base_power_2": "8625.04", + "name": "ld_2224387138a0a", + "nominal_voltage": "120.09", + "parent": "sx3728043a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104796c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001212c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3066801c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "hvmv11sub3_lsb", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2673326b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2119.27", + "base_power_2": "3901.35", + "name": "ld_355601b0b", + "nominal_voltage": "120.09", + "parent": "sx2673326b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069481", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2730106c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3825.95", + "base_power_2": "9751.37", + "name": "ld_356814c0a", + "nominal_voltage": "120.09", + "parent": "sx2730106c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026308", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026307", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3231255", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2690941b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2748125c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m4350438", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897801a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7507.49", + "base_power_2": "6203.85", + "name": "ld_21470405a0b", + "nominal_voltage": "120.09", + "parent": "sx2897801a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026309", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3728042a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4960.97", + "base_power_2": "8750.37", + "name": "ld_2224387113a0b", + "nominal_voltage": "120.09", + "parent": "sx3728042a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001211c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069469", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069466", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069465", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069468", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069467", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069462", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069461", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2878848", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069464", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069463", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2730107c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2690.14", + "base_power_2": "7794.39", + "name": "ld_251855c0a", + "nominal_voltage": "120.09", + "parent": "sx2730107c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2879061b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3231269", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2767407b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3489.80", + "base_power_2": "3613.29", + "name": "ld_260495b0b", + "nominal_voltage": "120.09", + "parent": "sx2767407b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3235258c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4679.02", + "base_power_2": "1609.64", + "name": "ld_293652c0a", + "nominal_voltage": "120.09", + "parent": "sx3235258c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3235258a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3983.69", + "base_power_2": "4593.63", + "name": "ld_293652a0a", + "nominal_voltage": "120.09", + "parent": "sx3235258a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2729424a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3235258b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3842.32", + "base_power_2": "14291.70", + "name": "ld_293652b0a", + "nominal_voltage": "120.09", + "parent": "sx3235258b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2748124b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2785511a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3728041a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4915.73", + "base_power_2": "4228.60", + "name": "ld_2224387074a0a", + "nominal_voltage": "120.09", + "parent": "sx3728041a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "190-8581", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691959", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001210c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2691954", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "q16483", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069457", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048200b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3066807c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069456", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069451", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710518a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2678.55", + "base_power_2": "6465.78", + "name": "ld_21209868a0b", + "nominal_voltage": "120.09", + "parent": "sx2710518a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2691952", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691953", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691950", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2954354a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2691951", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748839b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2053.86", + "base_power_2": "1956.45", + "name": "ld_260502b0a", + "nominal_voltage": "120.09", + "parent": "sx2748839b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2766729a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2785512b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "e203026", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2875754", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3068944b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6351.85", + "base_power_2": "8689.39", + "name": "ld_260494b0b", + "nominal_voltage": "120.09", + "parent": "sx3068944b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2691967", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "190-8593", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2745806c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2691965", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3728040a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3969.05", + "base_power_2": "9742.29", + "name": "ld_2224387062a0a", + "nominal_voltage": "120.09", + "parent": "sx3728040a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2691966", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048201b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3066808c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710519a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2522.03", + "base_power_2": "1137.77", + "name": "ld_302676a0b", + "nominal_voltage": "120.09", + "parent": "sx2710519a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2805031", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3119793b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2805035", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2805034", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2954353a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3235256a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3805.24", + "base_power_2": "1679.30", + "name": "ld_138642a0b", + "nominal_voltage": "120.09", + "parent": "sx3235256a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897800b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3016.75", + "base_power_2": "4086.34", + "name": "ld_323277b0a", + "nominal_voltage": "120.09", + "parent": "sx2897800b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2785513a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2805037", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2805036", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691938", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691939", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx_293471a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5295.70", + "base_power_2": "3848.63", + "name": "ld_293471a0a", + "nominal_voltage": "120.09", + "parent": "sx_293471a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2691936", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx_293471b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3735.39", + "base_power_2": "9388.32", + "name": "ld_293471b0b", + "nominal_voltage": "120.09", + "parent": "sx_293471b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx_293471c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5593.51", + "base_power_2": "4891.03", + "name": "ld_293471c0a", + "nominal_voltage": "120.09", + "parent": "sx_293471c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069437", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2896685", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069438", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2748129a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3066805a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710516a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2941.40", + "base_power_2": "6202.93", + "name": "ld_321839a0a", + "nominal_voltage": "120.09", + "parent": "sx2710516a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2691965b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3235255b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3576.78", + "base_power_2": "1526.31", + "name": "ld_293519b0a", + "nominal_voltage": "120.09", + "parent": "sx3235255b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2785514a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2729427b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3143999", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691949", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2748128c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2691947", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691948", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691945", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691946", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048203b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d6049825-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691943", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069428", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691944", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3160793c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1126023", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3178997c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3066806c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069424", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1126025", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069420", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710517a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1239.78", + "base_power_2": "4244.76", + "name": "ld_310568a0a", + "nominal_voltage": "120.09", + "parent": "sx2710517a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1126031", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3235254c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3694.50", + "base_power_2": "6790.03", + "name": "ld_441331c0b", + "nominal_voltage": "120.09", + "parent": "sx3235254c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2691941", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729428a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2691942", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2954355a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2785515c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2913406", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069419", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069418", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209800", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209805", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "221-703009", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069417", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069411", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3195321a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2274.26", + "base_power_2": "3210.28", + "name": "ld_356805a0a", + "nominal_voltage": "120.09", + "parent": "sx3195321a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3139366a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1209807", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069412", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2859391b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3235241c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1492.44", + "base_power_2": "8992.10", + "name": "ld_321888c0a", + "nominal_voltage": "120.09", + "parent": "sx3235241c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2729429a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2936213b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3197645a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3235252b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000902c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2748143a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973153a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069408", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3179673c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4043.87", + "base_power_2": "5337.58", + "name": "ld_260640c0b", + "nominal_voltage": "120.09", + "parent": "sx3179673c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3085403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3832.26", + "base_power_2": "8404.85", + "name": "ld_293668a0b", + "nominal_voltage": "120.09", + "parent": "sx3085403a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1209811", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3195327", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3197643b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1209817", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209814", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209819", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3122827a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4352.27", + "base_power_2": "4792.06", + "name": "ld_293673a0a", + "nominal_voltage": "120.09", + "parent": "sx3122827a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2916605c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3645811", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137956", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3645812", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137957", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137958", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2936212a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3195321", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3197644a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973154a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3645810", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3235251c", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1209823", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209824", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3086074c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3611.03", + "base_power_2": "2677.63", + "name": "ld_260532c0a", + "nominal_voltage": "120.09", + "parent": "sx3086074c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3179674b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8431.58", + "base_power_2": "1599.35", + "name": "ld_157716b0a", + "nominal_voltage": "120.09", + "parent": "sx3179674b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1209822", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209828", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3197642c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3254228b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5626.21", + "base_power_2": "4404.72", + "name": "ld_325474b0a", + "nominal_voltage": "120.09", + "parent": "sx3254228b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3645809", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3728039a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2764399b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5480.74", + "base_power_2": "3632.66", + "name": "ld_226192493b0a", + "nominal_voltage": "120.09", + "parent": "sx2764399b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973144c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8351.51", + "base_power_2": "2133.02", + "name": "ld_138466c0a", + "nominal_voltage": "120.09", + "parent": "sx2973144c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2916606c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3234185b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3195356", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2973155a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2690187b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2936211c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2786273b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2060.86", + "base_power_2": "7970.07", + "name": "ld_275247b0b", + "nominal_voltage": "120.09", + "parent": "sx2786273b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3235250b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3254229b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8516.29", + "base_power_2": "1514.64", + "name": "ld_338998b0a", + "nominal_voltage": "120.09", + "parent": "sx3254229b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197641a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3728038a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2916607c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3236011b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2748140a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973156b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3217064b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3217064b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3217064b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3724.74", + "base_power_2": "9398.97", + "name": "ld_21391390b0b", + "nominal_voltage": "120.09", + "parent": "sx3217064b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "q16642", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3085400c", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1729.10", + "base_power_2": "8755.43", + "name": "ld_302803c0b", + "nominal_voltage": "120.09", + "parent": "sx3085400c", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1136660", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137991", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973146b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8780.88", + "base_power_2": "1250.05", + "name": "ld_2118903b0b", + "nominal_voltage": "120.09", + "parent": "sx2973146b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3727708a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4281.49", + "base_power_2": "1203.04", + "name": "ld_2224386815a0a", + "nominal_voltage": "120.09", + "parent": "sx3727708a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2691947a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1543.00", + "base_power_2": "2116.79", + "name": "ld_337718a0a", + "nominal_voltage": "120.09", + "parent": "sx2691947a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2916608c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3728037a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1136658", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137989", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136659", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3030204a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2077.83", + "base_power_2": "7066.50", + "name": "ld_20107636a0a", + "nominal_voltage": "120.09", + "parent": "sx3030204a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000715b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000715b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000715b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "5402.72", + "name": "ld_2000715b0a", + "nominal_voltage": "120.09", + "parent": "sx2000715b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2898515c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973157a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1137985", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137986", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137987", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3027122a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7879.81", + "base_power_2": "1264.52", + "name": "ld_226194865a0b", + "nominal_voltage": "120.09", + "parent": "sx3027122a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1136657", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137988", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2748146a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1136670", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691946b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2691946b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2691946b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "2221.69", + "base_power_2": "3798.93", + "name": "ld_2147974b0a", + "nominal_voltage": "120.09", + "parent": "sx2691946b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1136671", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2936216c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2916609c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2879794a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1136669", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3030205c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6705.77", + "base_power_2": "3778.77", + "name": "ld_21390038c0b", + "nominal_voltage": "120.09", + "parent": "sx3030205c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1136661", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137992", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3727709a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4138.58", + "base_power_2": "9572.76", + "name": "ld_2224386842a0b", + "nominal_voltage": "120.09", + "parent": "sx3727709a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2973158c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1137993", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136663", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137994", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2914324a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1180.37", + "base_power_2": "3737.16", + "name": "ld_226196642a0b", + "nominal_voltage": "120.09", + "parent": "sx2914324a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1136664", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137995", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136665", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137996", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136666", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136667", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137998", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136668", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137999", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2786274c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2786274c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2786274c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5013.77", + "base_power_2": "5470.77", + "name": "ld_207291c0b", + "nominal_voltage": "120.09", + "parent": "sx2786274c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2954349b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3085402a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9163.16", + "base_power_2": "4548.18", + "name": "ld_302471a0b", + "nominal_voltage": "120.09", + "parent": "sx3085402a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "193-103041", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3195318", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254219", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973148a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2973148a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2973148a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5422.37", + "base_power_2": "3721.96", + "name": "ld_339047a0a", + "nominal_voltage": "120.09", + "parent": "sx2973148a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3179678b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4207.86", + "base_power_2": "1812.76", + "name": "ld_247185b0a", + "nominal_voltage": "120.09", + "parent": "sx3179678b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3195315", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691949b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8671.94", + "base_power_2": "1358.99", + "name": "ld_337689b0b", + "nominal_voltage": "120.09", + "parent": "sx2691949b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000713b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000713b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000713b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "6817.80", + "base_power_2": "7870.80", + "name": "ld_2000713b0b", + "nominal_voltage": "120.09", + "parent": "sx2000713b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3254210", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2973159a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3254213", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254214", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137960", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3197647a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3195310", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254211", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137961", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254212", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254217", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2914323b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2935.62", + "base_power_2": "1074.69", + "name": "ld_355376b0b", + "nominal_voltage": "120.09", + "parent": "sx2914323b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3214112", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254218", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254215", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3027124c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8402.69", + "base_power_2": "2081.84", + "name": "ld_226195194c0b", + "nominal_voltage": "120.09", + "parent": "sx3027124c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3254216", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3085401a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9460.62", + "base_power_2": "4250.72", + "name": "ld_2127253a0b", + "nominal_voltage": "120.09", + "parent": "sx3085401a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3254208", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254209", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973149b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4974.63", + "base_power_2": "1045.98", + "name": "ld_325472b0b", + "nominal_voltage": "120.09", + "parent": "sx2973149b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3727707a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4845.75", + "base_power_2": "4298.58", + "name": "ld_2224386750a0a", + "nominal_voltage": "120.09", + "parent": "sx3727707a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2936214a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2691948b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2742.28", + "base_power_2": "3278.33", + "name": "ld_337703b0b", + "nominal_voltage": "120.09", + "parent": "sx2691948b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3139103a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2684420b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5035.31", + "base_power_2": "4078.09", + "name": "ld_225498968b0b", + "nominal_voltage": "120.09", + "parent": "sx2684420b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000714b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000714b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000714b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4997.72", + "base_power_2": "5402.72", + "name": "ld_2000714b0b", + "nominal_voltage": "120.09", + "parent": "sx2000714b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3030203c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5600.16", + "base_power_2": "4884.38", + "name": "ld_260639c0b", + "nominal_voltage": "120.09", + "parent": "sx3030203c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3235946", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254203", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235945", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3197646b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3254206", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2748144a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3254207", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254204", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254205", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3029520b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1922.40", + "base_power_2": "4098.22", + "name": "ld_21486213b0a", + "nominal_voltage": "120.09", + "parent": "sx3029520b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3122820a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8757.57", + "base_power_2": "3479.55", + "name": "ld_310561a0b", + "nominal_voltage": "120.09", + "parent": "sx3122820a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2691943b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1145.13", + "base_power_2": "4875.49", + "name": "ld_323400b0b", + "nominal_voltage": "120.09", + "parent": "sx2691943b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2933135a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2260.45", + "base_power_2": "6883.88", + "name": "ld_226197070a0b", + "nominal_voltage": "120.09", + "parent": "sx2933135a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3082992a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3082992a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3082992a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "1458.99", + "base_power_2": "4025.55", + "name": "ld_337728a0b", + "nominal_voltage": "120.09", + "parent": "sx3082992a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3030200c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3051.80", + "base_power_2": "3236.86", + "name": "ld_260554c0a", + "nominal_voltage": "120.09", + "parent": "sx3030200c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108269", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2730107c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108276", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108278", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108274", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3232301c", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7127.39", + "base_power_2": "24336.53", + "name": "ld_21458756c0b", + "nominal_voltage": "120.09", + "parent": "sx3232301c", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3066815c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4619.05", + "base_power_2": "5865.49", + "name": "ld_338936c0a", + "nominal_voltage": "120.09", + "parent": "sx3066815c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1009742", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108270", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879081a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2118.78", + "base_power_2": "3365.76", + "name": "ld_391981a0a", + "nominal_voltage": "120.09", + "parent": "sx2879081a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2691942b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1904.72", + "base_power_2": "4115.89", + "name": "ld_247105b0b", + "nominal_voltage": "120.09", + "parent": "sx2691942b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2839305a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1009763", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3086079b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2990.02", + "base_power_2": "4113.08", + "name": "ld_260457b0b", + "nominal_voltage": "120.09", + "parent": "sx3086079b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3263051c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8377.85", + "base_power_2": "2106.68", + "name": "ld_2212371533c0a", + "nominal_voltage": "120.09", + "parent": "sx3263051c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3082993a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6775.71", + "base_power_2": "2368.62", + "name": "ld_226159329a0a", + "nominal_voltage": "120.09", + "parent": "sx3082993a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2859403", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2730108b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2820535b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4512.94", + "base_power_2": "5517.99", + "name": "ld_338981b0b", + "nominal_voltage": "120.09", + "parent": "sx2820535b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729411a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3303.82", + "base_power_2": "3448.76", + "name": "ld_138769a0a", + "nominal_voltage": "120.09", + "parent": "sx2729411a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729410c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "24129.40", + "base_power_2": "27592.25", + "name": "ld_338943c0b", + "nominal_voltage": "120.09", + "parent": "sx2729410c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108286", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3066816a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5318.79", + "base_power_2": "3258.53", + "name": "ld_21398676a0b", + "nominal_voltage": "120.09", + "parent": "sx3066816a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3122822a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2386.50", + "base_power_2": "6757.83", + "name": "ld_391987a0a", + "nominal_voltage": "120.09", + "parent": "sx3122822a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1009770", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691945c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2691945c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2691945c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5181.58", + "base_power_2": "5302.95", + "name": "ld_302812c0b", + "nominal_voltage": "120.09", + "parent": "sx2691945c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1009771", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2729412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3803.21", + "base_power_2": "5341.12", + "name": "ld_2150189a0b", + "nominal_voltage": "120.09", + "parent": "sx2729412a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2861222a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "13547.29", + "base_power_2": "3256.84", + "name": "ld_260473a0a", + "nominal_voltage": "120.09", + "parent": "sx2861222a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2937757c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8160.37", + "base_power_2": "2324.17", + "name": "ld_227411650c0a", + "nominal_voltage": "120.09", + "parent": "sx2937757c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108257", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3235258a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3235258c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2897800b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3235258b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3066813b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3200.13", + "base_power_2": "2820.49", + "name": "ld_337693b0b", + "nominal_voltage": "120.09", + "parent": "sx3066813b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254220c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2317.73", + "base_power_2": "8166.81", + "name": "ld_138717c0b", + "nominal_voltage": "120.09", + "parent": "sx3254220c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3122821b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3937.90", + "base_power_2": "9185.81", + "name": "ld_338953b0b", + "nominal_voltage": "120.09", + "parent": "sx3122821b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1009784", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691944a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8307.80", + "base_power_2": "3929.31", + "name": "ld_321838a0b", + "nominal_voltage": "120.09", + "parent": "sx2691944a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108259", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2820533a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4998.78", + "base_power_2": "4145.55", + "name": "ld_226193298a0a", + "nominal_voltage": "120.09", + "parent": "sx2820533a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2861223b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4599.29", + "base_power_2": "5431.64", + "name": "ld_260461b0b", + "nominal_voltage": "120.09", + "parent": "sx2861223b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108258", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2729413a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2711.06", + "base_power_2": "2773.48", + "name": "ld_21397067a0b", + "nominal_voltage": "120.09", + "parent": "sx2729413a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2730106c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3312692", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2842383a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108266", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108265", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108268", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108267", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108262", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108261", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897801a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108264", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108263", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3066814b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3194.13", + "base_power_2": "3978.37", + "name": "ld_338979b0a", + "nominal_voltage": "120.09", + "parent": "sx3066814b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108260", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2674047c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5181.51", + "base_power_2": "1107.15", + "name": "ld_260514c0b", + "nominal_voltage": "120.09", + "parent": "sx2674047c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2730187a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1795.78", + "base_power_2": "11915.56", + "name": "ld_260464a0b", + "nominal_voltage": "120.09", + "parent": "sx2730187a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3122824a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3720.63", + "base_power_2": "1763.90", + "name": "ld_302402a0a", + "nominal_voltage": "120.09", + "parent": "sx3122824a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2891575", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2729414a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4844.32", + "base_power_2": "4300.01", + "name": "ld_293655a0b", + "nominal_voltage": "120.09", + "parent": "sx2729414a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729414c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8065.79", + "base_power_2": "2418.75", + "name": "ld_293655c0b", + "nominal_voltage": "120.09", + "parent": "sx2729414c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729414b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7573.90", + "base_power_2": "2457.03", + "name": "ld_293655b0b", + "nominal_voltage": "120.09", + "parent": "sx2729414b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2842384c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3066819a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7409.78", + "base_power_2": "1734.55", + "name": "ld_302677a0b", + "nominal_voltage": "120.09", + "parent": "sx3066819a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3235256a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2814529", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3649302", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3649301", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3649304", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2690187", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3649306", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3649305", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1009705", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv69s1s2_5", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3122823b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1108.29", + "base_power_2": "8922.64", + "name": "ld_302370b0a", + "nominal_voltage": "120.09", + "parent": "sx3122823b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "hvmv69s1s2_4", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv69s1s2_7", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv69s1s2_6", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3086075b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1314.42", + "base_power_2": "4706.20", + "name": "ld_260463b0a", + "nominal_voltage": "120.09", + "parent": "sx3086075b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "hvmv69s1s2_1", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254227b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1166.42", + "base_power_2": "2843.89", + "name": "ld_338995b0b", + "nominal_voltage": "120.09", + "parent": "sx3254227b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "228-979371-2_int", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv69s1s2_3", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3649300", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv69s1s2_2", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3036169", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3036167", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3036164", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3036165", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3036162", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3036172", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3036170", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "193-46661", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3235255b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "hvmv69s1s2_9", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv69s1s2_8", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3225319b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1009715", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691941c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10369.67", + "base_power_2": "3207.65", + "name": "ld_321887c0b", + "nominal_voltage": "120.09", + "parent": "sx2691941c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3122826a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6998.34", + "base_power_2": "2145.99", + "name": "ld_302731a0a", + "nominal_voltage": "120.09", + "parent": "sx3122826a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3086078a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1564.26", + "base_power_2": "7580.07", + "name": "ld_218473a0a", + "nominal_voltage": "120.09", + "parent": "sx3086078a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2898457a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4041.13", + "base_power_2": "2711.45", + "name": "ld_260594a0a", + "nominal_voltage": "120.09", + "parent": "sx2898457a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108299", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108298", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2983432a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3608.66", + "base_power_2": "8628.45", + "name": "ld_225534325a0b", + "nominal_voltage": "120.09", + "parent": "sx2983432a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108295", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3066817a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "12664.62", + "base_power_2": "5624.04", + "name": "ld_21373784a0b", + "nominal_voltage": "120.09", + "parent": "sx3066817a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2000800", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1009720", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3235254c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1009724", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000413a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1009726", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000415a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3122825a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6946.48", + "base_power_2": "6764.86", + "name": "ld_2118808a0b", + "nominal_voltage": "120.09", + "parent": "sx3122825a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3156034a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "221-240988", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001309a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "221-240991", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3102793", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3066818b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9888.98", + "base_power_2": "3234.73", + "name": "ld_138751b0a", + "nominal_voltage": "120.09", + "parent": "sx3066818b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3181545", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3159645", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916598", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916599", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3235253a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000414a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879078a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879078a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2879078a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "1866.94", + "base_power_2": "3617.60", + "name": "ld_21399229a0b", + "nominal_voltage": "120.09", + "parent": "sx2879078a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2973150", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2929261a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2973152", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2804249c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "hvmv69s1s2_10", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973151", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p901946", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p901945", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5956499-2_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160793c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4095.32", + "base_power_2": "5286.13", + "name": "ld_2147899c0a", + "nominal_voltage": "120.09", + "parent": "sx3160793c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108302", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "196-31070", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879054a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108311", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2822863c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p901941", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104123c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3649299a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2674052", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973144", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2955005b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2955005b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2955005b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3489.40", + "base_power_2": "5624.01", + "name": "ld_260589b0b", + "nominal_voltage": "120.09", + "parent": "sx2955005b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "e192258", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973146", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3160103c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2973149", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973148", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879077b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3408.17", + "base_power_2": "2612.45", + "name": "ld_337709b0a", + "nominal_voltage": "120.09", + "parent": "sx2879077b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2674051", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973161", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973160", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973163", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973162", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3649298a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108317", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p901934", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216342b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3276.26", + "base_power_2": "6754.67", + "name": "ld_337645b0b", + "nominal_voltage": "120.09", + "parent": "sx3216342b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3215385c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3215385b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p901936", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3215385a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108316", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108315", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895075", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e184626", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2822864c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2879055c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p901931", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104124b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p901933", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p901932", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2802481", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973154", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3010557a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2116.87", + "base_power_2": "3367.67", + "name": "ld_21380453a0b", + "nominal_voltage": "120.09", + "parent": "sx3010557a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2802480", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973153", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973156", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973155", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2857591a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4643.21", + "base_power_2": "3934.11", + "name": "ld_226101460a0b", + "nominal_voltage": "120.09", + "parent": "sx2857591a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2955006c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1311.54", + "base_power_2": "9172.99", + "name": "ld_356797c0b", + "nominal_voltage": "120.09", + "parent": "sx2955006c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2973158", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2674047", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973157", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3160102b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2973159", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879076c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879076c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2879076c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "2693.63", + "base_power_2": "1502.25", + "name": "ld_138380c0b", + "nominal_voltage": "120.09", + "parent": "sx2879076c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p895080", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895082", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3160100b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3649297a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2804247b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3226771a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p895089", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216343c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3454.22", + "base_power_2": "10123.10", + "name": "ld_337626c0b", + "nominal_voltage": "120.09", + "parent": "sx3216343c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3189189b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p895087", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2822865c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2688692", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3177665a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3912.86", + "base_power_2": "12891.26", + "name": "ld_227731863a0a", + "nominal_voltage": "120.09", + "parent": "sx3177665a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104121a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2711224", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3067507c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160101a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2711225", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879075a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1898.39", + "base_power_2": "3586.14", + "name": "ld_337724a0b", + "nominal_voltage": "120.09", + "parent": "sx2879075a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2711226", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3010556a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3110.44", + "base_power_2": "2374.10", + "name": "ld_138655a0b", + "nominal_voltage": "120.09", + "parent": "sx3010556a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2917328b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2764403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2804248b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673331b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673331b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2673331b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "2307.02", + "base_power_2": "17744.53", + "name": "ld_338990b0b", + "nominal_voltage": "120.09", + "parent": "sx2673331b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2688693", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216344b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2318.41", + "base_power_2": "17733.14", + "name": "ld_323264b0a", + "nominal_voltage": "120.09", + "parent": "sx3216344b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2801902b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9416.05", + "base_power_2": "5625.19", + "name": "ld_226194002b0b", + "nominal_voltage": "120.09", + "parent": "sx2801902b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2822866b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p901951", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108300", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841619c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3626914c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4714.67", + "base_power_2": "1573.99", + "name": "ld_2224179616c0b", + "nominal_voltage": "120.09", + "parent": "sx3626914c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104122a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2711234", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2859391", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3067506c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879074a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4476.12", + "base_power_2": "4101.20", + "name": "ld_310560a0a", + "nominal_voltage": "120.09", + "parent": "sx2879074a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p901909", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710546b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108347", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p901905", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001315a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2897807b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108354", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897806c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108353", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108356", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108355", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108350", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108352", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254230a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1259.43", + "base_power_2": "3658.09", + "name": "ld_338989a0a", + "nominal_voltage": "120.09", + "parent": "sx3254230a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3189188c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "e192201", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3037538", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3037537", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729430b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104157c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6295.02", + "base_power_2": "4189.52", + "name": "ld_293427c0b", + "nominal_voltage": "120.09", + "parent": "sx3104157c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2841618a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001314a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3104120b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108364", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108361", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2692655c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4908.68", + "base_power_2": "5575.86", + "name": "ld_21389307c0b", + "nominal_voltage": "120.09", + "parent": "sx2692655c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108360", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3214055c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2822860b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3198356c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3198358", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3198356", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3198355", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254231a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3254231a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3254231a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3608.45", + "base_power_2": "5134.09", + "name": "ld_338988a0a", + "nominal_voltage": "120.09", + "parent": "sx3254231a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2878848c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8795.70", + "base_power_2": "6936.26", + "name": "ld_2212168887c0a", + "nominal_voltage": "120.09", + "parent": "sx2878848c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m3949154", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104154c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9814.51", + "base_power_2": "5917.45", + "name": "ld_337642c0a", + "nominal_voltage": "120.09", + "parent": "sx3104154c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m3949157", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3178969b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5224.41", + "base_power_2": "3888.99", + "name": "ld_355596b0b", + "nominal_voltage": "120.09", + "parent": "sx3178969b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2973171", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108329", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710544a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108328", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3037540", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p901927", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069398", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001313a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108331", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108334", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841616a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2822861a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3198355b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2973165", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973164", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973167", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973166", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973169", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3066821a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7935.10", + "base_power_2": "1209.23", + "name": "ld_391994a0a", + "nominal_voltage": "120.09", + "parent": "sx3066821a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104155c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104155c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3104155c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "2591.78", + "base_power_2": "7892.76", + "name": "ld_21474587c0a", + "nominal_voltage": "120.09", + "parent": "sx3104155c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2973180", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879079b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3601.52", + "base_power_2": "2419.10", + "name": "ld_391756b0a", + "nominal_voltage": "120.09", + "parent": "sx2879079b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p901913", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001312a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p901912", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3157718a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001009b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2710543c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069384", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108335", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "regxfmr_hvmv11sub2_lsb", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841615a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2897805a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108345", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748840b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1442.16", + "base_power_2": "4578.46", + "name": "ld_157717b0b", + "nominal_voltage": "120.09", + "parent": "sx2748840b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3047058a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069393", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108344", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2822862c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069390", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108340", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p901910", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973178", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3010559a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3221.11", + "base_power_2": "5356.21", + "name": "ld_337679a0b", + "nominal_voltage": "120.09", + "parent": "sx3010559a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3216349b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5366.77", + "base_power_2": "3746.63", + "name": "ld_337708b0a", + "nominal_voltage": "120.09", + "parent": "sx3216349b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2748139b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2804248", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804249", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2767342a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001311a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001008b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2710542b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069376", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785519", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001315", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000711b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000711b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000711b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3382.28", + "base_power_2": "4710.87", + "name": "ld_2000711b0a", + "nominal_voltage": "120.09", + "parent": "sx2000711b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2785518", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3215549", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001314", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785517", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001313", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785516", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069382", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001312", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785515", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254231", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785514", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804250", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000408a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000408a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000408a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "6774.98", + "name": "ld_2000408a0a", + "nominal_voltage": "120.09", + "parent": "sx2000408a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "e193509", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785513", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3157710b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2785512", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254230", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785511", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804253", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2690941", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804254", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209772", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3101789a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4059.65", + "base_power_2": "5084.68", + "name": "ld_294842a0b", + "nominal_voltage": "120.09", + "parent": "sx3101789a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2804251", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804252", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254234", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804257", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209775", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001311", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2954346b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2804258", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209776", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001310", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3030126c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2804255", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254237", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3235249a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1490.49", + "base_power_2": "2169.31", + "name": "ld_356014a0a", + "nominal_voltage": "120.09", + "parent": "sx3235249a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2804256", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254238", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209774", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3120504", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3120503", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3195318b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1915.06", + "base_power_2": "4105.56", + "name": "ld_226194280b0a", + "nominal_voltage": "120.09", + "parent": "sx3195318b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2804259", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729434b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5712587-2_int", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2767343c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3139103", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001007b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2989565", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001310a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2989566", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001309", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d6141147-1_int", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069363", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069365", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069364", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001304", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2989571", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001303", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001302", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001301", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000712b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000712b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000712b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7826.98", + "base_power_2": "5045.74", + "name": "ld_2000712b0b", + "nominal_voltage": "120.09", + "parent": "sx2000712b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2804260", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254220", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001308", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2786266a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3718.08", + "base_power_2": "4859.24", + "name": "ld_260631a0b", + "nominal_voltage": "120.09", + "parent": "sx2786266a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2804261", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001307", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001306", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000909c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2001305", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209782", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2990826c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9275.26", + "base_power_2": "1209.28", + "name": "ld_337619c0b", + "nominal_voltage": "120.09", + "parent": "sx2990826c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2804262", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000409a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000409a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000409a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5165.33", + "base_power_2": "9755.56", + "name": "ld_2000409a0a", + "nominal_voltage": "120.09", + "parent": "sx2000409a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2990826a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9022.45", + "base_power_2": "3214.66", + "name": "ld_337619a0b", + "nominal_voltage": "120.09", + "parent": "sx2990826a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3101788a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2137.75", + "base_power_2": "7006.58", + "name": "ld_321878a0a", + "nominal_voltage": "120.09", + "parent": "sx3101788a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2954345c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2990826b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2387.00", + "base_power_2": "7643.93", + "name": "ld_337619b0b", + "nominal_voltage": "120.09", + "parent": "sx2990826b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3254228", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001300", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804269", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254229", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209787", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3235248c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1376.83", + "base_power_2": "4911.83", + "name": "ld_321861c0a", + "nominal_voltage": "120.09", + "parent": "sx3235248c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3120502", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254227", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3011229a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3141412", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv69sub2_lnb", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2876797", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209788", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2876798", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3141411", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3207907", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2876796", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3085410b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3085410b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3085410b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7513.53", + "base_power_2": "5945.48", + "name": "ld_339097b0a", + "nominal_voltage": "120.09", + "parent": "sx3085410b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3195751a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5234.47", + "base_power_2": "3909.86", + "name": "ld_293681a0a", + "nominal_voltage": "120.09", + "parent": "sx3195751a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069356", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001006b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "293471", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3195315a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5911.74", + "base_power_2": "3232.59", + "name": "ld_226193662a0a", + "nominal_voltage": "120.09", + "parent": "sx3195315a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2745811c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2916610b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2801909c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3772.93", + "base_power_2": "3515.73", + "name": "ld_226195333c0b", + "nominal_voltage": "120.09", + "parent": "sx2801909c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3142098b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2989564", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209790", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2692654a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4285.41", + "base_power_2": "1199.12", + "name": "ld_260487a0b", + "nominal_voltage": "120.09", + "parent": "sx2692654a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000406a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000406a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000406a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "10744.60", + "base_power_2": "3735.48", + "name": "ld_2000406a0b", + "nominal_voltage": "120.09", + "parent": "sx2000406a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3081380", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136672", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2767340c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3198348", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000908c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3198347", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209791", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2767340a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160109b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m1089-dies1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089-dies1_dgmtr", + "nominal_voltage": "277.13", + "parent": "m1089-dies1", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "x2767340b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d6108145-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209797", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p1164481", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3235247a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3831.67", + "base_power_2": "4745.65", + "name": "ld_321836a0a", + "nominal_voltage": "120.09", + "parent": "sx3235247a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1209795", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104129a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2954348a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3141401", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3141402", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3141400", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069348", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2991640c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001005b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000710b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000710b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000710b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "6757.41", + "base_power_2": "5256.39", + "name": "ld_2000710b0a", + "nominal_voltage": "120.09", + "parent": "sx2000710b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3176656a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069350", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3142099b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3198358b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000407a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000407a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000407a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5091.80", + "base_power_2": "8606.83", + "name": "ld_2000407a0a", + "nominal_voltage": "120.09", + "parent": "sx2000407a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2898522a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000907c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3235246b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2926.95", + "base_power_2": "3093.67", + "name": "ld_323279b0a", + "nominal_voltage": "120.09", + "parent": "sx3235246b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2767341c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160108b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2804247", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2954347b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3141403", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804245", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3727712a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4014.75", + "base_power_2": "5129.58", + "name": "ld_2224386889a0a", + "nominal_voltage": "120.09", + "parent": "sx3727712a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197640c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3216345b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7328.67", + "base_power_2": "7712.57", + "name": "ld_338933b0b", + "nominal_voltage": "120.09", + "parent": "sx3216345b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069335", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5860423-3_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001004b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000404a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000404a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000404a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7219.24", + "base_power_2": "3941.14", + "name": "ld_2000404a0a", + "nominal_voltage": "120.09", + "parent": "sx2000404a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3065750b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6851.75", + "base_power_2": "3179.18", + "name": "ld_323389b0b", + "nominal_voltage": "120.09", + "parent": "sx3065750b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3235245c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5233.85", + "base_power_2": "1054.81", + "name": "ld_337712c0b", + "nominal_voltage": "120.09", + "parent": "sx3235245c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2724120c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2804245b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3048196b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2374.63", + "base_power_2": "3645.99", + "name": "ld_138237b0a", + "nominal_voltage": "120.09", + "parent": "sx3048196b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2000906c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3104127b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160107a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3120534", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2822867b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973150a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3216346a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4595.48", + "base_power_2": "3981.84", + "name": "ld_391991a0a", + "nominal_voltage": "120.09", + "parent": "sx3216346a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069328", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2842379a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2604.47", + "base_power_2": "11106.87", + "name": "ld_260488a0b", + "nominal_voltage": "120.09", + "parent": "sx2842379a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001003b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2917310b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5162.48", + "base_power_2": "3950.92", + "name": "ld_260503b0b", + "nominal_voltage": "120.09", + "parent": "sx2917310b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3122835b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p901972", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2972704", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3253570c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000405a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000405a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000405a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "9632.76", + "name": "ld_2000405a0a", + "nominal_voltage": "120.09", + "parent": "sx2000405a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d5774457-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3160106a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3104128a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000905c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3235244a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6169.24", + "base_power_2": "2975.09", + "name": "ld_337676a0a", + "nominal_voltage": "120.09", + "parent": "sx3235244a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2822868a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3118855c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3380.62", + "base_power_2": "12351.33", + "name": "ld_339052c0b", + "nominal_voltage": "120.09", + "parent": "sx3118855c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3216347c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3216347c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3216347c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4804.44", + "base_power_2": "1484.22", + "name": "ld_138413c0a", + "nominal_voltage": "120.09", + "parent": "sx3216347c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069312", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069311", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001002b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069310", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3179682c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4876.13", + "base_power_2": "1412.53", + "name": "ld_207292c0b", + "nominal_voltage": "120.09", + "parent": "sx3179682c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3727710a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "11732.01", + "base_power_2": "1979.33", + "name": "ld_2224386863a0b", + "nominal_voltage": "120.09", + "parent": "sx3727710a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3233353", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000402a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000402a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000402a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "5402.72", + "name": "ld_2000402a0a", + "nominal_voltage": "120.09", + "parent": "sx2000402a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2804271", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804272", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104125b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3235243c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3235243c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3235243c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "9227.85", + "base_power_2": "1256.69", + "name": "ld_275008c0b", + "nominal_voltage": "120.09", + "parent": "sx3235243c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2804270", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2954344c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3179637c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3101787a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4834.76", + "base_power_2": "4309.57", + "name": "ld_321877a0a", + "nominal_voltage": "120.09", + "parent": "sx3101787a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2822869a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2933120", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3120376a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3667.85", + "base_power_2": "8569.26", + "name": "ld_226163467a0b", + "nominal_voltage": "120.09", + "parent": "sx3120376a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2000904c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973151a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2804277", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2767414c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2340.59", + "base_power_2": "3948.07", + "name": "ld_351019c0b", + "nominal_voltage": "120.09", + "parent": "sx2767414c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3160105c", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3216348a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3216348a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3216348a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "2008.17", + "base_power_2": "3476.37", + "name": "ld_337717a0b", + "nominal_voltage": "120.09", + "parent": "sx3216348a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "r20185", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3139121", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069300", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3236004c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2323.12", + "base_power_2": "3965.54", + "name": "ld_260572c0b", + "nominal_voltage": "120.09", + "parent": "sx3236004c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3727711a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3255.18", + "base_power_2": "5322.14", + "name": "ld_2224386874a0a", + "nominal_voltage": "120.09", + "parent": "sx3727711a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000403a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000403a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5906.56", + "base_power_2": "8533.21", + "name": "ld_2000403a0b", + "nominal_voltage": "120.09", + "parent": "sx2000403a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2674027", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122837c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2804282", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2989596", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804283", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104126c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3048199b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2822.73", + "base_power_2": "3197.89", + "name": "ld_323237b0a", + "nominal_voltage": "120.09", + "parent": "sx3048199b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3235242c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6752.14", + "base_power_2": "3732.39", + "name": "ld_21380500c0a", + "nominal_voltage": "120.09", + "parent": "sx3235242c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2000903c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973152b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3231255c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160104b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2935557", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2935555", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2935556", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3649305a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2147.35", + "base_power_2": "3337.19", + "name": "ld_2224237718a0a", + "nominal_voltage": "120.09", + "parent": "sx3649305a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001012b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3122816b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2795.79", + "base_power_2": "7235.14", + "name": "ld_356062b0b", + "nominal_voltage": "120.09", + "parent": "sx3122816b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197632b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2935559", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2729406c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1714.36", + "base_power_2": "4574.30", + "name": "ld_337633c0b", + "nominal_voltage": "120.09", + "parent": "sx2729406c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3143999a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3143999a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3143999a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "2620.55", + "base_power_2": "6523.78", + "name": "ld_226193696a0b", + "nominal_voltage": "120.09", + "parent": "sx3143999a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2729423", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729424", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897769c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2935560", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000707b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000707b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000707b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "3849.14", + "name": "ld_2000707b0b", + "nominal_voltage": "120.09", + "parent": "sx2000707b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197633a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3214055", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3215385", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000914c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973165a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3252336", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2935547", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3649304a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "11646.74", + "base_power_2": "2064.60", + "name": "ld_2224237713a0b", + "nominal_voltage": "120.09", + "parent": "sx3649304a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001011b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3197631a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3122815b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2099.42", + "base_power_2": "3921.20", + "name": "ld_321858b0a", + "nominal_voltage": "120.09", + "parent": "sx3122815b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2935549", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729408", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729409", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2729407b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6015.39", + "base_power_2": "5226.03", + "name": "ld_247100b0a", + "nominal_voltage": "120.09", + "parent": "sx2729407b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2916617b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3784018a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2729405", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729406", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729407", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729411", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973833", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729412", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729413", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729414", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729410", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3157167", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000708b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000708b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000708b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "9005.45", + "base_power_2": "5041.35", + "name": "ld_2000708b0b", + "nominal_voltage": "120.09", + "parent": "sx2000708b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2935550", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2935553", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2935554", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2935551", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2935552", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000913c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973166c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000911c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001010b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2991909a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5121.67", + "base_power_2": "4022.66", + "name": "ld_355773a0b", + "nominal_voltage": "120.09", + "parent": "sx2991909a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx1108407b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "21492.05", + "base_power_2": "18801.51", + "name": "ld_2221108407b0b", + "nominal_voltage": "120.09", + "parent": "sx1108407b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729408b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1288.57", + "base_power_2": "10018.04", + "name": "ld_355768b0b", + "nominal_voltage": "120.09", + "parent": "sx2729408b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841641b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2540.20", + "base_power_2": "3480.42", + "name": "ld_21380156b0a", + "nominal_voltage": "120.09", + "parent": "sx2841641b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197630a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2916618b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3122818c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2080.65", + "base_power_2": "8403.88", + "name": "ld_2120183c0a", + "nominal_voltage": "120.09", + "parent": "sx3122818c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000705b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000705b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000705b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "6084.88", + "base_power_2": "5032.91", + "name": "ld_2000705b0b", + "nominal_voltage": "120.09", + "parent": "sx2000705b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2674052c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1405.03", + "base_power_2": "4883.63", + "name": "ld_21393570c0a", + "nominal_voltage": "120.09", + "parent": "sx2674052c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2897767c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973167b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879752b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5250.97", + "base_power_2": "3862.43", + "name": "ld_330122b0a", + "nominal_voltage": "120.09", + "parent": "sx2879752b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2000912c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2935568", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000910c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2821770", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2935566", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2935567", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3122817c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2720.96", + "base_power_2": "3567.70", + "name": "ld_355779c0a", + "nominal_voltage": "120.09", + "parent": "sx3122817c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2991908a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4746.24", + "base_power_2": "3831.08", + "name": "ld_338900a0a", + "nominal_voltage": "120.09", + "parent": "sx2991908a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729409b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2117.79", + "base_power_2": "7913.14", + "name": "ld_355605b0a", + "nominal_voltage": "120.09", + "parent": "sx2729409b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2916619b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3141411c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104830c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3055.34", + "base_power_2": "1140.54", + "name": "ld_328367c0b", + "nominal_voltage": "120.09", + "parent": "sx3104830c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3215549b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3649302a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "13546.68", + "base_power_2": "3257.45", + "name": "ld_2224237653a0b", + "nominal_voltage": "120.09", + "parent": "sx3649302a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2729427", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729428", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729429", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2989571a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2674051a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2674051a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2674051a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "1155.53", + "base_power_2": "4329.00", + "name": "ld_21389831a0a", + "nominal_voltage": "120.09", + "parent": "sx2674051a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2729434", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3179650b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2729430", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000706b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000706b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000706b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "6205.46", + "base_power_2": "7341.95", + "name": "ld_2000706b0a", + "nominal_voltage": "120.09", + "parent": "sx2000706b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2897768c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3141412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2748152b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3045895c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879753b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2607.19", + "base_power_2": "7423.74", + "name": "ld_21249674b0a", + "nominal_voltage": "120.09", + "parent": "sx2879753b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2763153a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3067447a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2766499c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "17273.48", + "base_power_2": "3695.60", + "name": "ld_2212168880c0a", + "nominal_voltage": "120.09", + "parent": "sx2766499c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3160793", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691959b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "15599.89", + "base_power_2": "24503.20", + "name": "ld_21400253b0a", + "nominal_voltage": "120.09", + "parent": "sx2691959b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2861158c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000703b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000703b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000703b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5906.56", + "base_power_2": "5056.04", + "name": "ld_2000703b0a", + "nominal_voltage": "120.09", + "parent": "sx2000703b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2897765b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3197637c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3215340", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2973169a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2954338b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2748158a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3122819c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4974.64", + "base_power_2": "10757.32", + "name": "ld_302860c0b", + "nominal_voltage": "120.09", + "parent": "sx3122819c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2804250c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000704b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000704b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000704b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7856.24", + "base_power_2": "3895.83", + "name": "ld_2000704b0b", + "nominal_voltage": "120.09", + "parent": "sx2000704b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2785547", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785546", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "r42246", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897766c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3197636b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2785543", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "r42247", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048230c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7091.85", + "base_power_2": "3392.69", + "name": "ld_293490c0b", + "nominal_voltage": "120.09", + "parent": "sx3048230c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1009691", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2748157a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2858175a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3936.97", + "base_power_2": "1547.56", + "name": "ld_225668688a0a", + "nominal_voltage": "120.09", + "parent": "sx2858175a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m1089-lng1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089-lng1_dgmtr", + "nominal_voltage": "277.13", + "parent": "m1089-lng1", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "l2729401", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2763811c", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3125349c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2785538", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785537", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785536", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2842390c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2785535", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785534", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048231b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "17978.10", + "base_power_2": "2073.45", + "name": "ld_21400215b0a", + "nominal_voltage": "120.09", + "parent": "sx3048231b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2785531", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785530", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3197635b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2731712", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3649306a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "11291.37", + "base_power_2": "2419.97", + "name": "ld_2224238167a0a", + "nominal_voltage": "120.09", + "parent": "sx3649306a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2917255c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3984.68", + "base_power_2": "6499.86", + "name": "ld_21386065c0a", + "nominal_voltage": "120.09", + "parent": "sx2917255c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3097861", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2763812c", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2954339b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2785529", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785528", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000702b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000702b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000702b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "6693.57", + "base_power_2": "5402.72", + "name": "ld_2000702b0a", + "nominal_voltage": "120.09", + "parent": "sx2000702b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2861157c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2785527", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785526", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785525", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785524", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785523", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785522", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785521", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1009698", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897764b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2785520", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2898526c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3197634b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3254915", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3010562b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2077.32", + "base_power_2": "3943.30", + "name": "ld_325473b0a", + "nominal_voltage": "120.09", + "parent": "sx3010562b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2992624a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1219.92", + "base_power_2": "4264.62", + "name": "ld_260484a0b", + "nominal_voltage": "120.09", + "parent": "sx2992624a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3448661b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1572.10", + "base_power_2": "4448.52", + "name": "ld_2223878647b0b", + "nominal_voltage": "120.09", + "parent": "sx3448661b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3159448a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108398", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108393", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108395", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860504", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254234b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7517.57", + "base_power_2": "2513.36", + "name": "ld_355586b0b", + "nominal_voltage": "120.09", + "parent": "sx3254234b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991939b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2860506", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3029183b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3386.31", + "base_power_2": "5727.09", + "name": "ld_228580047b0b", + "nominal_voltage": "120.09", + "parent": "sx3029183b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2860500", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860501", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3010561a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4998.93", + "base_power_2": "3578.39", + "name": "ld_337650a0b", + "nominal_voltage": "120.09", + "parent": "sx3010561a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3142079", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691954b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5510.00", + "base_power_2": "4520.93", + "name": "ld_21399361b0b", + "nominal_voltage": "120.09", + "parent": "sx2691954b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673303c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2970811a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1945.46", + "base_power_2": "7198.87", + "name": "ld_321881a0b", + "nominal_voltage": "120.09", + "parent": "sx2970811a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3142078", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785546a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8152.17", + "base_power_2": "4084.94", + "name": "ld_21399752a0a", + "nominal_voltage": "120.09", + "parent": "sx2785546a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2895461a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5991.50", + "base_power_2": "3152.83", + "name": "ld_294789a0a", + "nominal_voltage": "120.09", + "parent": "sx2895461a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2897800", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897801", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3142050c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5569.11", + "base_power_2": "3812.34", + "name": "ld_251865c0a", + "nominal_voltage": "120.09", + "parent": "sx3142050c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2897806", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897807", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3082981c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1174.36", + "base_power_2": "5114.30", + "name": "ld_226193737c0b", + "nominal_voltage": "120.09", + "parent": "sx3082981c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2897805", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2858200", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2917330a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879092c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "29602.88", + "base_power_2": "32428.05", + "name": "ld_21399326c0a", + "nominal_voltage": "120.09", + "parent": "sx2879092c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3122810b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9418.32", + "base_power_2": "3705.40", + "name": "ld_323242b0b", + "nominal_voltage": "120.09", + "parent": "sx3122810b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1009651", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1009650", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785547b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4645.18", + "base_power_2": "5385.75", + "name": "ld_337705b0a", + "nominal_voltage": "120.09", + "parent": "sx2785547b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3010560b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3529.56", + "base_power_2": "6501.37", + "name": "ld_338955b0a", + "nominal_voltage": "120.09", + "parent": "sx3010560b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108368", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2763072b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1656.01", + "base_power_2": "8374.92", + "name": "ld_226924200b0b", + "nominal_voltage": "120.09", + "parent": "sx2763072b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2692660", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108375", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108378", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108372", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897554c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10173.51", + "base_power_2": "10795.56", + "name": "ld_2212168870c0a", + "nominal_voltage": "120.09", + "parent": "sx2897554c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197639a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2692664", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2692661", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3067448c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3253995c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3082983b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8934.21", + "base_power_2": "1096.71", + "name": "ld_226193899b0a", + "nominal_voltage": "120.09", + "parent": "sx3082983b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3142050", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108379", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2729401b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4282.44", + "base_power_2": "1738.18", + "name": "ld_355597b0b", + "nominal_voltage": "120.09", + "parent": "sx2729401b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "hvmv69s2s3_1", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108387", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2955055b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "hvmv69s2s3_2", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1009655", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2821087a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "21064.64", + "base_power_2": "6358.05", + "name": "ld_226308720a0b", + "nominal_voltage": "120.09", + "parent": "sx2821087a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3066826b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9312.75", + "base_power_2": "5728.48", + "name": "ld_339003b0a", + "nominal_voltage": "120.09", + "parent": "sx3066826b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108381", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108380", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2823544", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2823545", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2841648a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4079.88", + "base_power_2": "4497.44", + "name": "ld_337720a0a", + "nominal_voltage": "120.09", + "parent": "sx2841648a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197638a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3122812b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5003.94", + "base_power_2": "10037.30", + "name": "ld_21031694b0b", + "nominal_voltage": "120.09", + "parent": "sx3122812b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2691951c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2691951c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2691951c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5705.50", + "base_power_2": "4779.04", + "name": "ld_138379c0a", + "nominal_voltage": "120.09", + "parent": "sx2691951c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254238b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1581.70", + "base_power_2": "8449.23", + "name": "ld_293487b0b", + "nominal_voltage": "120.09", + "parent": "sx3254238b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2000707", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000706", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000705", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000704", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000709", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000708", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3649301a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "11296.81", + "base_power_2": "2414.53", + "name": "ld_2224237643a0a", + "nominal_voltage": "120.09", + "parent": "sx3649301a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2000703", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766718c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4308.06", + "base_power_2": "11423.90", + "name": "ld_138652c0a", + "nominal_voltage": "120.09", + "parent": "sx2766718c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2000702", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000701", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000700", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3235268c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3178971a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3344.94", + "base_power_2": "5232.38", + "name": "ld_338896a0a", + "nominal_voltage": "120.09", + "parent": "sx3178971a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3010566c", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1625.28", + "base_power_2": "4663.38", + "name": "ld_138776c0a", + "nominal_voltage": "120.09", + "parent": "sx3010566c", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2917333a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2860478b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3302.83", + "base_power_2": "5810.57", + "name": "ld_355590b0b", + "nominal_voltage": "120.09", + "parent": "sx2860478b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673309c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3122811a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7783.49", + "base_power_2": "1360.84", + "name": "ld_337669a0b", + "nominal_voltage": "120.09", + "parent": "sx3122811a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673307c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3010565c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3010565c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3010565c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "1966.31", + "base_power_2": "2229.57", + "name": "ld_138343c0b", + "nominal_voltage": "120.09", + "parent": "sx3010565c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3065665a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2708744b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2203.78", + "base_power_2": "27878.69", + "name": "ld_226308710b0b", + "nominal_voltage": "120.09", + "parent": "sx2708744b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2766717c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2689.64", + "base_power_2": "1506.23", + "name": "ld_138470c0b", + "nominal_voltage": "120.09", + "parent": "sx2766717c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935549b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10422.84", + "base_power_2": "4618.40", + "name": "ld_337668b0b", + "nominal_voltage": "120.09", + "parent": "sx2935549b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3649300a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3539.94", + "base_power_2": "10171.40", + "name": "ld_2224237546a0a", + "nominal_voltage": "120.09", + "parent": "sx3649300a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3235267c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3178972c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "16824.16", + "base_power_2": "4144.91", + "name": "ld_338923c0b", + "nominal_voltage": "120.09", + "parent": "sx3178972c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2860479b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2322.49", + "base_power_2": "1687.82", + "name": "ld_355595b0b", + "nominal_voltage": "120.09", + "parent": "sx2860479b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2691950c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1424.65", + "base_power_2": "9059.89", + "name": "ld_138374c0a", + "nominal_voltage": "120.09", + "parent": "sx2691950c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673308b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3010564c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2599.65", + "base_power_2": "3689.01", + "name": "ld_321883c0b", + "nominal_voltage": "120.09", + "parent": "sx3010564c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673306c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2691953a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3477.97", + "base_power_2": "5099.35", + "name": "ld_302732a0a", + "nominal_voltage": "120.09", + "parent": "sx2691953a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841645c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8616.62", + "base_power_2": "1867.92", + "name": "ld_321893c0a", + "nominal_voltage": "120.09", + "parent": "sx2841645c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3122814c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "35099.19", + "base_power_2": "33045.14", + "name": "ld_338899c0a", + "nominal_voltage": "120.09", + "parent": "sx3122814c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3172805a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3950.16", + "base_power_2": "8286.95", + "name": "ld_226964880a0a", + "nominal_voltage": "120.09", + "parent": "sx3172805a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3066829c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4436.97", + "base_power_2": "6047.57", + "name": "ld_321894c0b", + "nominal_voltage": "120.09", + "parent": "sx3066829c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3178973a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3794.98", + "base_power_2": "5349.35", + "name": "ld_21149420a0b", + "nominal_voltage": "120.09", + "parent": "sx3178973a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000709b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000709b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000709b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4613.78", + "base_power_2": "5402.72", + "name": "ld_2000709b0a", + "nominal_voltage": "120.09", + "parent": "sx2000709b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3235266c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m3327098", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691952a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2801.55", + "base_power_2": "2682.99", + "name": "ld_391980a0a", + "nominal_voltage": "120.09", + "parent": "sx2691952a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935547b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5127.10", + "base_power_2": "3986.30", + "name": "ld_21383553b0b", + "nominal_voltage": "120.09", + "parent": "sx2935547b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673305b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m3327097", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3010563a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3555.15", + "base_power_2": "1929.39", + "name": "ld_294845a0b", + "nominal_voltage": "120.09", + "parent": "sx3010563a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254237a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1151.57", + "base_power_2": "9132.81", + "name": "ld_21482181a0b", + "nominal_voltage": "120.09", + "parent": "sx3254237a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2823592", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3214071", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3142099", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3122813a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2368.40", + "base_power_2": "3116.14", + "name": "ld_138685a0a", + "nominal_voltage": "120.09", + "parent": "sx3122813a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3142098", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2729405b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8668.13", + "base_power_2": "1362.79", + "name": "ld_21393412b0a", + "nominal_voltage": "120.09", + "parent": "sx2729405b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2766750c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2766719a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5949.95", + "base_power_2": "3194.38", + "name": "ld_21357865a0a", + "nominal_voltage": "120.09", + "parent": "sx2766719a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3214064", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3178974b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2126.72", + "base_power_2": "3893.90", + "name": "ld_323399b0b", + "nominal_voltage": "120.09", + "parent": "sx3178974b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3214069", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2917336c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2860477a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2231.72", + "base_power_2": "3252.82", + "name": "ld_2121587a0a", + "nominal_voltage": "120.09", + "parent": "sx2860477a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3082988b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4588.83", + "base_power_2": "1431.79", + "name": "ld_226195153b0b", + "nominal_voltage": "120.09", + "parent": "sx3082988b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3178975b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9778.82", + "base_power_2": "3344.89", + "name": "ld_321845b0a", + "nominal_voltage": "120.09", + "parent": "sx3178975b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2746587c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6658.52", + "base_power_2": "3826.02", + "name": "ld_227653310c0a", + "nominal_voltage": "120.09", + "parent": "sx2746587c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2876814", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108423", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2876812", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2876813", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3085398b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2879092", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108433", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3027116", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138598", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138597", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2692600", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138599", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2766749b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160115b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879089c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "15390.86", + "base_power_2": "3433.88", + "name": "ld_21455388c0a", + "nominal_voltage": "120.09", + "parent": "sx2879089c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2897765", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3178976a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1544.70", + "base_power_2": "3939.84", + "name": "ld_21397721a0b", + "nominal_voltage": "120.09", + "parent": "sx3178976a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2897766", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710537b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2897764", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897769", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3176661c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2897767", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897768", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3085397b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3157708c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "196-35541", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879081", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2858163", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5686080-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2858166", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3010569a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7588.56", + "base_power_2": "6122.78", + "name": "ld_302673a0a", + "nominal_voltage": "120.09", + "parent": "sx3010569a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2879089", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3027124", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860478", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879087", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3027122", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860477", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2766748a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2860479", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3160114a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2916234a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1949.84", + "base_power_2": "1709.95", + "name": "ld_228549643a0b", + "nominal_voltage": "120.09", + "parent": "sx2916234a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2786204a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2710536a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2804259a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2991940c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2688692b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2790.49", + "base_power_2": "3230.13", + "name": "ld_225918926b0a", + "nominal_voltage": "120.09", + "parent": "sx2688692b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3178977c", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2617.10", + "base_power_2": "3671.56", + "name": "ld_302810c0a", + "nominal_voltage": "120.09", + "parent": "sx3178977c", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108406", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108405", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3176660b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2860490", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766716c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5428.14", + "base_power_2": "3953.31", + "name": "ld_337713c0b", + "nominal_voltage": "120.09", + "parent": "sx2766716c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d6047588-1_int", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108407", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108402", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108401", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108404", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108403", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2858175", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860485", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860484", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860487", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860486", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108410", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860481", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860480", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860483", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860482", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3010568a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3361.17", + "base_power_2": "8875.94", + "name": "ld_338965a0a", + "nominal_voltage": "120.09", + "parent": "sx3010568a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2860489", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3027133", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860488", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3027132", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3160113b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2766499", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879087a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1299.39", + "base_power_2": "4185.15", + "name": "ld_21399762a0a", + "nominal_voltage": "120.09", + "parent": "sx2879087a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3178978a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3648.65", + "base_power_2": "4928.67", + "name": "ld_337723a0b", + "nominal_voltage": "120.09", + "parent": "sx3178978a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1138594", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138593", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138596", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138595", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2688693c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3538.12", + "base_power_2": "5843.32", + "name": "ld_225918936c0b", + "nominal_voltage": "120.09", + "parent": "sx2688693c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3091052a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2109.40", + "base_power_2": "11601.94", + "name": "ld_228532641a0a", + "nominal_voltage": "120.09", + "parent": "sx3091052a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2766715b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3746.13", + "base_power_2": "2274.49", + "name": "ld_355593b0b", + "nominal_voltage": "120.09", + "parent": "sx2766715b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2000715", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2673343b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5874.83", + "base_power_2": "3238.58", + "name": "ld_21470122b0b", + "nominal_voltage": "120.09", + "parent": "sx2673343b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108413", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108412", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3085399c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2000710", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860492", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000714", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860491", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000713", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000712", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860493", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000711", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3179607b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3280.01", + "base_power_2": "6750.92", + "name": "ld_260591b0b", + "nominal_voltage": "120.09", + "parent": "sx3179607b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2860499", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3010567c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3053.05", + "base_power_2": "3235.61", + "name": "ld_302813c0b", + "nominal_voltage": "120.09", + "parent": "sx3010567c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3066830b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3297.36", + "base_power_2": "9826.35", + "name": "ld_21469960b0a", + "nominal_voltage": "120.09", + "parent": "sx3066830b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p850072", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3142049", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2689678b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2970804c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8627.76", + "base_power_2": "1856.77", + "name": "ld_356787c0a", + "nominal_voltage": "120.09", + "parent": "sx2970804c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3178979c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "27991.27", + "base_power_2": "28977.80", + "name": "ld_338968c0a", + "nominal_voltage": "120.09", + "parent": "sx3178979c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673300b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2001der480-2", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3085394c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2001der480-1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2820556a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1998.02", + "base_power_2": "7146.31", + "name": "ld_226196648a0a", + "nominal_voltage": "120.09", + "parent": "sx2820556a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2879055", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879054", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3179608c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "12655.25", + "base_power_2": "3076.71", + "name": "ld_356793c0b", + "nominal_voltage": "120.09", + "parent": "sx3179608c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p850083", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048887b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3085393c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2862616c", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "14603.11", + "base_power_2": "16860.81", + "name": "ld_227447984c0a", + "nominal_voltage": "120.09", + "parent": "sx2862616c", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2970804", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069285", + "nominal_voltage": "7200.00", + "phases": "ACN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108410b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "30235.84", + "base_power_2": "26905.60", + "name": "ld_2226061820b0a", + "nominal_voltage": "120.09", + "parent": "sx1108410b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p850080", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216350a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9044.56", + "base_power_2": "9976.50", + "name": "ld_391977a0b", + "nominal_voltage": "120.09", + "parent": "sx3216350a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108486", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3233353a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2766744b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108484", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108483", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3030199c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2692654", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2692655", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048888c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2785543b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9094.32", + "base_power_2": "4029.39", + "name": "ld_321860b0a", + "nominal_voltage": "120.09", + "parent": "sx2785543b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3216351a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4261.91", + "base_power_2": "4882.42", + "name": "ld_21398815a0a", + "nominal_voltage": "120.09", + "parent": "sx3216351a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2710532c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673346c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8381.79", + "base_power_2": "2102.75", + "name": "ld_293486c0a", + "nominal_voltage": "120.09", + "parent": "sx2673346c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3085396a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2879072", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879071", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879070", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069284", + "nominal_voltage": "7200.00", + "phases": "ACN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p1123251", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879079", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2766747a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2879078", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879077", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2685805a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6234.27", + "base_power_2": "2910.06", + "name": "ld_225533531a0b", + "nominal_voltage": "120.09", + "parent": "sx2685805a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2879076", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879075", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879074", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879073", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2991943c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3048889c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2955047a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3085395a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2823611a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d2000401_int", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108459", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879061", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108464", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108460", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108462", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3315860b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2580.72", + "base_power_2": "3439.90", + "name": "ld_2223664050b0b", + "nominal_voltage": "120.09", + "parent": "sx3315860b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2879069", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2692635", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879068", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879067", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2766746c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2692633", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879066", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879065", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879064", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879063", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879062", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3778577c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160861c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "e182729", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3085390b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p893163", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e182727", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e182726", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2692664c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1324.07", + "base_power_2": "4964.59", + "name": "ld_351021c0b", + "nominal_voltage": "120.09", + "parent": "sx2692664c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "e182725", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2728247a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "e182724", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710530b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "e182723", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e182722", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2916620a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2916620c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2916620b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5806920-1_int", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2728247b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2728247c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2858166a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2178.55", + "base_power_2": "1481.24", + "name": "ld_226192994a0a", + "nominal_voltage": "120.09", + "parent": "sx2858166a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2897773a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160862c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d6048634-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2804253a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "hvmv69sub1_lsb2", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2822859b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3104119a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m4113345", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069249", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m4113347", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m4113348", + "nominal_voltage": "7200.00", + "phases": "ACN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140830", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3064514c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069248", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991902b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1770.22", + "base_power_2": "8260.71", + "name": "ld_391748b0b", + "nominal_voltage": "120.09", + "parent": "sx2991902b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069247", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e182733", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140832", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e182732", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140831", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e182731", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e182730", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2970841", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2970842", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026997", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069250", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026990", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2970845", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2804254a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2897774b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3231269b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3263051", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3085392c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "221-282818", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e182748", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e182746", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140823", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e182745", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069230", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140822", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991901b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7331.43", + "base_power_2": "2699.50", + "name": "ld_354851b0a", + "nominal_voltage": "120.09", + "parent": "sx2991901b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3198348a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "e182744", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140821", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3195327a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1448.43", + "base_power_2": "4036.10", + "name": "ld_225901711a0b", + "nominal_voltage": "120.09", + "parent": "sx3195327a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1140820", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140827", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3198347c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3027132a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2574.02", + "base_power_2": "2910.51", + "name": "ld_321876a0a", + "nominal_voltage": "120.09", + "parent": "sx3027132a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2992657a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1140825", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140824", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2970811", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "221-282819", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140829", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140828", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2685809a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2129.58", + "base_power_2": "3354.96", + "name": "ld_225533162a0b", + "nominal_voltage": "120.09", + "parent": "sx2685809a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104117c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2804251a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2897771b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973160b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3085391b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069227", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069224", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069226", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069225", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2798067", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3215203b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3972.21", + "base_power_2": "19172.12", + "name": "ld_227760024b0a", + "nominal_voltage": "120.09", + "parent": "sx3215203b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3215203a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3215203a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3215203a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "6634.30", + "base_power_2": "11654.36", + "name": "ld_227760024a0a", + "nominal_voltage": "120.09", + "parent": "sx3215203a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2992656a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3215203c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3215203c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3215203c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4761.00", + "base_power_2": "16208.07", + "name": "ld_227760024c0a", + "nominal_voltage": "120.09", + "parent": "sx3215203c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2989432", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140819", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140818", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140817", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104118c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3179646b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2897772a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2804252a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3027133a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4353.38", + "base_power_2": "4790.95", + "name": "ld_226101449a0a", + "nominal_voltage": "120.09", + "parent": "sx3027133a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2897792", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2973161a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2897793", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069217", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991907a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6004.85", + "base_power_2": "3139.48", + "name": "ld_138574a0a", + "nominal_voltage": "120.09", + "parent": "sx2991907a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2690868", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2876813a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2951.45", + "base_power_2": "6192.88", + "name": "ld_355842a0b", + "nominal_voltage": "120.09", + "parent": "sx2876813a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069218", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3645812c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069213", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2692660a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2775.62", + "base_power_2": "15513.04", + "name": "ld_260643a0a", + "nominal_voltage": "120.09", + "parent": "sx2692660a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069215", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069210", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026961", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122848c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026960", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026969", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2804257b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3104115b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3142049c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2441.79", + "base_power_2": "1754.08", + "name": "ld_356810c0a", + "nominal_voltage": "120.09", + "parent": "sx3142049c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3048890", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2972930a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973162b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069206", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069205", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069208", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2876814a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3721.19", + "base_power_2": "3031.39", + "name": "ld_225806974a0a", + "nominal_voltage": "120.09", + "parent": "sx2876814a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2991906a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3635.68", + "base_power_2": "3116.90", + "name": "ld_247060a0a", + "nominal_voltage": "120.09", + "parent": "sx2991906a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3216358a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6404.29", + "base_power_2": "2740.04", + "name": "ld_21399826a0a", + "nominal_voltage": "120.09", + "parent": "sx3216358a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2804258b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069202", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069201", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2876847", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p841985", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2916625b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001015b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2876846", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048889", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026950", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026951", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108400", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122847a", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026953", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048887", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048888", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3195365", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026954", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897770c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2897772", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897773", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897770", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2861197c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2861197c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2861197c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3407.94", + "base_power_2": "2880.72", + "name": "ld_21474711c0b", + "nominal_voltage": "120.09", + "parent": "sx2861197c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2897771", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897776", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897777", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897774", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991905a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5381.12", + "base_power_2": "8330.22", + "name": "ld_2148633a0b", + "nominal_voltage": "120.09", + "parent": "sx2991905a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2897775", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3102286b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3645810c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2897778", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897779", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001014b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026984", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001215", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001214", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026986", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001213", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104113a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2936268c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3268.61", + "base_power_2": "3020.05", + "name": "ld_223655c0b", + "nominal_voltage": "120.09", + "parent": "sx2936268c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3160117b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2804255b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026987", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001212", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897780", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001211", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2973163b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026989", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001210", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2822857b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2897784", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897781", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2876812a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4971.03", + "base_power_2": "3606.29", + "name": "ld_321880a0b", + "nominal_voltage": "120.09", + "parent": "sx2876812a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3645811c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3342743c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2692661a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8934.94", + "base_power_2": "3302.18", + "name": "ld_260650a0b", + "nominal_voltage": "120.09", + "parent": "sx2692661a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2897789", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2916627a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001013b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026972", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001205", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001204", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001203", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001202", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001209", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001208", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104114b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3122849b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026970", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001207", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5534969-2_int", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001206", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2804256b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2897790", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3140238", + "nominal_voltage": "7200.00", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001201", + "nominal_voltage": "7200.00", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897791", + "nominal_voltage": "7200.00", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026977", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001200", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000915c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2822858b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026978", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026979", + "nominal_voltage": "7200.00", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2973164a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "cap_nominal_voltage": "7200.00", + "capacitor_A": "300000.00", + "capacitor_B": "300000.00", + "capacitor_C": "300000.00", + "name": "cap_capbank4", + "nominal_voltage": "7200.00", + "parent": "r18242", + "phases": "ABCN", + "phases_connected": "ABCN", + "switchA": "CLOSED", + "switchB": "CLOSED", + "switchC": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "200000.00", + "VAr_set_low": "-300000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_A": "400000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "100.00", + "name": "cap_capbank3a", + "nominal_voltage": "7200.00", + "parent": "r42246", + "phases": "AN", + "phases_connected": "AN", + "pt_phase": "A", + "remote_sense": "line_cap_3a", + "switchA": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "150000.00", + "VAr_set_low": "-225000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_A": "300000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "100.00", + "name": "cap_capbank2a", + "nominal_voltage": "7200.00", + "parent": "r42247", + "phases": "AN", + "phases_connected": "AN", + "pt_phase": "A", + "remote_sense": "line_cap_2a", + "switchA": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "200000.00", + "VAr_set_low": "-300000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_B": "400000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "101.00", + "name": "cap_capbank3b", + "nominal_voltage": "7200.00", + "parent": "r42246", + "phases": "BN", + "phases_connected": "BN", + "pt_phase": "B", + "remote_sense": "line_cap_3b", + "switchB": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "150000.00", + "VAr_set_low": "-225000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_A": "300000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "100.00", + "name": "cap_capbank1a", + "nominal_voltage": "7200.00", + "parent": "r20185", + "phases": "AN", + "phases_connected": "AN", + "pt_phase": "A", + "remote_sense": "line_cap_1a", + "switchA": "OPEN" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "150000.00", + "VAr_set_low": "-225000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_B": "300000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "101.00", + "name": "cap_capbank2b", + "nominal_voltage": "7200.00", + "parent": "r42247", + "phases": "BN", + "phases_connected": "BN", + "pt_phase": "B", + "remote_sense": "line_cap_2b", + "switchB": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "200000.00", + "VAr_set_low": "-300000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_C": "400000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "102.00", + "name": "cap_capbank3c", + "nominal_voltage": "7200.00", + "parent": "r42246", + "phases": "CN", + "phases_connected": "CN", + "pt_phase": "C", + "remote_sense": "line_cap_3c", + "switchC": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "150000.00", + "VAr_set_low": "-225000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_B": "300000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "101.00", + "name": "cap_capbank1b", + "nominal_voltage": "7200.00", + "parent": "r20185", + "phases": "BN", + "phases_connected": "BN", + "pt_phase": "B", + "remote_sense": "line_cap_1b", + "switchB": "OPEN" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "150000.00", + "VAr_set_low": "-225000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_C": "300000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "102.00", + "name": "cap_capbank2c", + "nominal_voltage": "7200.00", + "parent": "r42247", + "phases": "CN", + "phases_connected": "CN", + "pt_phase": "C", + "remote_sense": "line_cap_2c", + "switchC": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "150000.00", + "VAr_set_low": "-225000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_C": "300000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "102.00", + "name": "cap_capbank1c", + "nominal_voltage": "7200.00", + "parent": "r20185", + "phases": "CN", + "phases_connected": "CN", + "pt_phase": "C", + "remote_sense": "line_cap_1c", + "switchC": "OPEN" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_A": "0.00", + "compensator_x_setting_A": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_feeder_reg3a", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_A": "-1" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg3a", + "continuous_rating_A": "4201.39", + "emergency_rating_A": "5729.17", + "from": "regxfmr_hvmv11sub3_lsb", + "name": "reg_feeder_reg3a", + "phases": "A", + "to": "hvmv11sub3_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_A": "0.00", + "compensator_x_setting_A": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_feeder_reg2a", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_A": "-2" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg2a", + "continuous_rating_A": "4201.39", + "emergency_rating_A": "5729.17", + "from": "regxfmr_hvmv11sub2_lsb", + "name": "reg_feeder_reg2a", + "phases": "A", + "to": "hvmv11sub2_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_B": "0.00", + "compensator_x_setting_B": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_feeder_reg3b", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_B": "0" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg3b", + "continuous_rating_B": "4201.39", + "emergency_rating_B": "5729.17", + "from": "regxfmr_hvmv11sub3_lsb", + "name": "reg_feeder_reg3b", + "phases": "B", + "to": "hvmv11sub3_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_A": "0.00", + "compensator_x_setting_A": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_vreg2_a", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_A": "-5" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg2_a", + "continuous_rating_A": "1527.78", + "emergency_rating_A": "2083.33", + "from": "regxfmr_190-8593", + "name": "reg_vreg2_a", + "phases": "A", + "to": "190-8593" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_B": "0.00", + "compensator_x_setting_B": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_vreg2_b", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_B": "-5" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg2_b", + "continuous_rating_B": "1527.78", + "emergency_rating_B": "2083.33", + "from": "regxfmr_190-8593", + "name": "reg_vreg2_b", + "phases": "B", + "to": "190-8593" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_A": "0.00", + "compensator_x_setting_A": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_vreg3_a", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_A": "5" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg3_a", + "continuous_rating_A": "1527.78", + "emergency_rating_A": "2083.33", + "from": "regxfmr_190-8581", + "name": "reg_vreg3_a", + "phases": "A", + "to": "190-8581" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_C": "0.00", + "compensator_x_setting_C": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_feeder_reg1c", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_C": "-3" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg1c", + "continuous_rating_C": "4201.39", + "emergency_rating_C": "5729.17", + "from": "regxfmr_hvmv11sub1_lsb", + "name": "reg_feeder_reg1c", + "phases": "C", + "to": "hvmv11sub1_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_A": "0.00", + "compensator_x_setting_A": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_feeder_reg1a", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_A": "-3" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg1a", + "continuous_rating_A": "4201.39", + "emergency_rating_A": "5729.17", + "from": "regxfmr_hvmv11sub1_lsb", + "name": "reg_feeder_reg1a", + "phases": "A", + "to": "hvmv11sub1_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_B": "0.00", + "compensator_x_setting_B": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_feeder_reg2b", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_B": "-2" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg2b", + "continuous_rating_B": "4201.39", + "emergency_rating_B": "5729.17", + "from": "regxfmr_hvmv11sub2_lsb", + "name": "reg_feeder_reg2b", + "phases": "B", + "to": "hvmv11sub2_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_C": "0.00", + "compensator_x_setting_C": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_feeder_reg3c", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_C": "-1" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg3c", + "continuous_rating_C": "4201.39", + "emergency_rating_C": "5729.17", + "from": "regxfmr_hvmv11sub3_lsb", + "name": "reg_feeder_reg3c", + "phases": "C", + "to": "hvmv11sub3_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_B": "0.00", + "compensator_x_setting_B": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_feeder_reg1b", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_B": "-3" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg1b", + "continuous_rating_B": "4201.39", + "emergency_rating_B": "5729.17", + "from": "regxfmr_hvmv11sub1_lsb", + "name": "reg_feeder_reg1b", + "phases": "B", + "to": "hvmv11sub1_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_C": "0.00", + "compensator_x_setting_C": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_feeder_reg2c", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_C": "-2" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg2c", + "continuous_rating_C": "4201.39", + "emergency_rating_C": "5729.17", + "from": "regxfmr_hvmv11sub2_lsb", + "name": "reg_feeder_reg2c", + "phases": "C", + "to": "hvmv11sub2_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_C": "0.00", + "compensator_x_setting_C": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_vreg4_c", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_C": "-4" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg4_c", + "continuous_rating_C": "1527.78", + "emergency_rating_C": "2083.33", + "from": "regxfmr_190-7361", + "name": "reg_vreg4_c", + "phases": "C", + "to": "190-7361" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_C": "0.00", + "compensator_x_setting_C": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_vreg2_c", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_C": "-2" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg2_c", + "continuous_rating_C": "1527.78", + "emergency_rating_C": "2083.33", + "from": "regxfmr_190-8593", + "name": "reg_vreg2_c", + "phases": "C", + "to": "190-8593" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_B": "0.00", + "compensator_x_setting_B": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_vreg3_b", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_B": "5" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg3_b", + "continuous_rating_B": "1527.78", + "emergency_rating_B": "2083.33", + "from": "regxfmr_190-8581", + "name": "reg_vreg3_b", + "phases": "B", + "to": "190-8581" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_A": "0.00", + "compensator_x_setting_A": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_vreg4_a", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_A": "-3" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg4_a", + "continuous_rating_A": "1527.78", + "emergency_rating_A": "2083.33", + "from": "regxfmr_190-7361", + "name": "reg_vreg4_a", + "phases": "A", + "to": "190-7361" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_C": "0.00", + "compensator_x_setting_C": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_vreg3_c", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_C": "4" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg3_c", + "continuous_rating_C": "1527.78", + "emergency_rating_C": "2083.33", + "from": "regxfmr_190-8581", + "name": "reg_vreg3_c", + "phases": "C", + "to": "190-8581" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_B": "0.00", + "compensator_x_setting_B": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_vreg4_b", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_B": "-4" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg4_b", + "continuous_rating_B": "1527.78", + "emergency_rating_B": "2083.33", + "from": "regxfmr_190-7361", + "name": "reg_vreg4_b", + "phases": "B", + "to": "190-7361" + }, + "children": [], + "name": "regulator" + } + ], + "schedules": [] +} \ No newline at end of file diff --git a/local-server/tests/golden/9500__Inverters.json b/local-server/tests/golden/9500__Inverters.json new file mode 100644 index 00000000..bb18675d --- /dev/null +++ b/local-server/tests/golden/9500__Inverters.json @@ -0,0 +1,5257 @@ +{ + "classes": [], + "clock": {}, + "definitions": [], + "directives": [], + "includes": [], + "modules": [], + "objects": [ + { + "attributes": { + "P_Out": "9710.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_6", + "parent": "sx2000404a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "12140.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_6", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9710.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "14930.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_8", + "parent": "sx2000405a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "18660.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_8", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14930.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_2", + "parent": "sx2000402a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "14060.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_2", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12560.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_4", + "parent": "sx2000403a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "15700.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_4", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12560.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5840.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1043", + "parent": "sx2804272b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1043", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5840.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_156", + "parent": "sx2001309a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "10310.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_156", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1163", + "parent": "sx2879078a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1163", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5320.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "19450.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1041", + "parent": "sx2803199b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "24300.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1041", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "19450.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "18150.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_158", + "parent": "sx2001310a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "22680.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_158", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "18150.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1161", + "parent": "sx2730149c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7700.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1161", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6100.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11200.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_50", + "parent": "sx2000712b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "14000.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_50", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11200.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12780.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_52", + "parent": "sx2000713b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "15970.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_52", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12780.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9050.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_54", + "parent": "sx2000714b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "11320.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_54", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9050.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "20340.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1049", + "parent": "sx2814529c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "25400.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1049", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "20340.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9470.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_150", + "parent": "sx2001306a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11840.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_150", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9470.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1169", + "parent": "sx2673317a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1169", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5320.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_56", + "parent": "sx2000715b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "14060.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_56", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1047", + "parent": "sx3104155c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1047", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10170.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "13990.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_152", + "parent": "sx2001307a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "17480.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_152", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "13990.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1167", + "parent": "sx2897792a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1167", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5320.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_58", + "parent": "sx2000902c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_58", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1045", + "parent": "sx3216347c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1045", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6100.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "14650.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_154", + "parent": "sx2001308a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "18300.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_154", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14650.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "4070.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1165", + "parent": "sx3197637c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "5100.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1165", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "4070.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1153", + "parent": "sx2748143a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1153", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8870.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9730.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1031", + "parent": "sx3178981b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12100.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1031", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9730.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "21450.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_166", + "parent": "sx2001314a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "26810.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_166", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "21450.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "30520.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1151", + "parent": "sx3101194c_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "38100.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1151", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "30520.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "19930.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_168", + "parent": "sx2001315a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "24910.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_168", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "19930.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9900.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_40", + "parent": "sx2000707b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12370.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_40", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9900.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12220.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_42", + "parent": "sx2000708b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "15270.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_42", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12220.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8710.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_44", + "parent": "sx2000709b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "10900.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_44", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8710.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1039", + "parent": "sx2766721a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1039", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8870.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "3550.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1159", + "parent": "sx3104144a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "4400.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1159", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "3550.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10450.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_46", + "parent": "sx2000710b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "13070.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_46", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10450.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1037", + "parent": "sx2729428a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1037", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5320.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "16040.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_160", + "parent": "sx2001311a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "20060.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_160", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "16040.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1157", + "parent": "sx2710521a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1157", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8870.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "7040.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_48", + "parent": "sx2000711b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "8800.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_48", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7040.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1035", + "parent": "sx2935551c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1035", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6100.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "14540.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_162", + "parent": "sx2001312a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "18170.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_162", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14540.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "14590.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1155", + "parent": "sx3252336b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "18300.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1155", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14590.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "4070.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1033", + "parent": "sx2710510c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "5100.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1033", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "4070.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "22370.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_164", + "parent": "sx2001313a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "27960.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_164", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "22370.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5840.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1019", + "parent": "sx2841636b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1019", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5840.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5840.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1021", + "parent": "sx2955005b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1021", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5840.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "17880.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_134", + "parent": "sx2001212c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "22350.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_134", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "17880.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "15260.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1141", + "parent": "sx2766750c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "19100.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1141", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "15260.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "18080.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_136", + "parent": "sx2001213c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "22600.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_136", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "18080.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "16870.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_138", + "parent": "sx2001214c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "21100.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_138", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "16870.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10520.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_30", + "parent": "sx2000702b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "13160.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_30", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10520.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1029", + "parent": "sx2804252a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1029", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8870.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1149", + "parent": "sx2992657a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1149", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8870.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9540.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_32", + "parent": "sx2000703b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "11920.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_32", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9540.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1027", + "parent": "sx2674051a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6600.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1027", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5320.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5840.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1147", + "parent": "sx2822867b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1147", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5840.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10220.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_34", + "parent": "sx2000704b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12780.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_34", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10220.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "14590.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1025", + "parent": "sx3048965b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "18200.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1025", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14590.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "13440.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_130", + "parent": "sx2001210c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "16800.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_130", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "13440.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1145", + "parent": "sx3235243c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1145", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10170.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9670.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_36", + "parent": "sx2000705b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12090.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_36", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9670.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9730.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1023", + "parent": "sx3254214b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12200.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1023", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9730.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "23420.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_132", + "parent": "sx2001211c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "29270.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_132", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "23420.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1143", + "parent": "sx2973148a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1143", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8870.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11790.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_38", + "parent": "sx2000706b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "14730.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_38", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11790.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "14490.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_18", + "parent": "sx2000410a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "18120.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_18", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14490.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5850.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1009", + "parent": "sx2691946b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1009", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5850.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1129", + "parent": "sx3104134c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1129", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10170.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1131", + "parent": "sx2955077c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1131", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10170.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "13300.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1097", + "parent": "sx3067478a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "16700.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1097", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "13300.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12910.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_144", + "parent": "sx2001303a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "16150.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_144", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12910.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9730.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1095", + "parent": "sx2767409b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12100.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1095", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9730.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9620.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_146", + "parent": "sx2001304a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "12030.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_146", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9620.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1093", + "parent": "sx2936279c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1093", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10170.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10860.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_148", + "parent": "sx2001305a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "13570.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_148", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10860.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9980.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_20", + "parent": "sx2000411a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "12480.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_20", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9980.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "3550.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1091", + "parent": "sx3254231a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "4500.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1091", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "3550.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "20340.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1139", + "parent": "sx3011293c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "25400.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1139", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "20340.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "19620.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_22", + "parent": "sx2000412a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "24520.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_22", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "19620.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1017", + "parent": "sx2861197c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1017", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6100.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1137", + "parent": "sx2841616a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1137", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8870.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10630.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_24", + "parent": "sx2000413a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "13290.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_24", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10630.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5840.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1015", + "parent": "sx3085410b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1015", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5840.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1135", + "parent": "sx2804283a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1135", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8870.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10590.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_26", + "parent": "sx2000414a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "13240.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_26", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10590.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1013", + "parent": "sx2710543c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1013", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10170.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "21390.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_140", + "parent": "sx2001215c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "26730.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_140", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "21390.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1133", + "parent": "sx2954350c_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7600.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1133", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6100.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10770.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_28", + "parent": "sx2000415a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "13460.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_28", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10770.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "4070.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1011", + "parent": "sx3010565c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "5100.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1011", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "4070.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1099", + "parent": "sx2691945c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1099", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10170.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8820.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_142", + "parent": "sx2001302a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11020.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_142", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8820.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1119", + "parent": "sx2786274c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1119", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10170.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "17570.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_108", + "parent": "sx2001013b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "21960.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_108", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "17570.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1087", + "parent": "sx3160106a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1087", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8870.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "24220.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_112", + "parent": "sx2001015b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "30260.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_112", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "24220.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9710.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_90", + "parent": "sx2001004b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12140.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_90", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9710.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1085", + "parent": "sx2897772a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6600.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1085", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5320.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12430.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_114", + "parent": "sx2001202c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "15530.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_114", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12430.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11080.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_92", + "parent": "sx2001005b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "13850.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_92", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11080.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5840.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1083", + "parent": "sx3179650b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1083", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5840.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "16020.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_116", + "parent": "sx2001203c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "20030.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_116", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "16020.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9760.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_94", + "parent": "sx2001006b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12190.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_94", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9760.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "1000000.00", + "Q_Out": "0.00", + "V_base": "12470.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pvfarm1", + "parent": "m1047pv-3_pvmtr", + "phases": "ABCN", + "power_factor": "1.0", + "rated_power": "1500000.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pvfarm1", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "1000000.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1081", + "parent": "sx2897767c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1081", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10170.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12950.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_118", + "parent": "sx2001204c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "16180.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_118", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12950.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9360.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_96", + "parent": "sx2001007b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "11710.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_96", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9360.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "4070.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1007", + "parent": "sx3104126c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "5100.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1007", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "4070.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12600.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_10", + "parent": "sx2000406a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "15740.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_10", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12600.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1127", + "parent": "sx2936214a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1127", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8870.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12720.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_98", + "parent": "sx2001008b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "15900.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_98", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12720.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1005", + "parent": "sx3045895c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1005", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10170.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1125", + "parent": "sx3160862c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1125", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6100.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11920.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_12", + "parent": "sx2000407a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "14900.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_12", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11920.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "19450.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1003", + "parent": "sx2673331b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "24300.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1003", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "19450.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "3890.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1123", + "parent": "sx2805036b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "4800.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1123", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "3890.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12440.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_14", + "parent": "sx2000408a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "15550.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_14", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12440.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1001", + "parent": "sx3216348a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6600.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1001", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5320.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1089", + "parent": "sx3143999a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1089", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8870.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "28330.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_110", + "parent": "sx2001014b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "35410.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_110", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "28330.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9730.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1121", + "parent": "sx3217064b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12200.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1121", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9730.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12980.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_16", + "parent": "sx2000409a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "16230.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_16", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12980.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1109", + "parent": "sx3178997c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7700.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1109", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6100.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1107", + "parent": "sx3082992a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1107", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5320.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_80", + "parent": "sx2000913c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_80", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1075", + "parent": "sx2673319c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1075", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6100.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10530.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_122", + "parent": "sx2001206c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "13170.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_122", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10530.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_82", + "parent": "sx2000914c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_82", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1073", + "parent": "sx3197641a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1073", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5320.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8850.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_124", + "parent": "sx2001207c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "11060.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_124", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8850.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_84", + "parent": "sx2000915c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_84", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1071", + "parent": "sx2841627a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1071", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5320.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11890.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_126", + "parent": "sx2001208c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14850.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_126", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11890.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_86", + "parent": "sx2001002b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "14060.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_86", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "13930.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_128", + "parent": "sx2001209c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "17410.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_128", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "13930.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1117", + "parent": "sx2897768c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12800.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1117", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10170.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12560.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_88", + "parent": "sx2001003b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "15700.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_88", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12560.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "13300.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1115", + "parent": "sx3728043a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "16700.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1115", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "13300.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "17740.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1113", + "parent": "sx3215203a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "22100.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1113", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "17740.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1079", + "parent": "sx2891575c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1079", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6100.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "17740.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1111", + "parent": "sx3233412a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "22200.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1111", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "17740.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1077", + "parent": "sx2991943c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12800.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1077", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10170.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8560.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_120", + "parent": "sx2001205c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "10700.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_120", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8560.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1065", + "parent": "sx2785523c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7700.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1065", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6100.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "17740.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1063", + "parent": "sx2814529a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "22100.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1063", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "17740.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "17740.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1183", + "parent": "sx2990098a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "22170.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1183", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "17740.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_70", + "parent": "sx2000908c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_70", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1061", + "parent": "sx2992556a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "7600.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1061", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6100.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "4070.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1181", + "parent": "sx2879076c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "5100.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1181", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "4070.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_72", + "parent": "sx2000909c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_72", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_74", + "parent": "sx2000910c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_74", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "40520.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_170", + "parent": "sx2001400c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "50650.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_170", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "40520.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1105", + "parent": "sx2785513a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11000.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1105", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8870.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_76", + "parent": "sx2000911c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_76", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1103", + "parent": "sx2785538a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1103", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8870.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_78", + "parent": "sx2000912c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_78", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1069", + "parent": "sx3216368c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7700.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1069", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6100.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1101", + "parent": "sx3104132a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6600.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1101", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5320.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1067", + "parent": "sx2841638c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1067", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6100.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1175", + "parent": "sx2691951c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1175", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10170.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "13970.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_100", + "parent": "sx2001009b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "17460.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_100", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "13970.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1053", + "parent": "sx2710544a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1053", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5320.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5840.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1173", + "parent": "sx2897789b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1173", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5840.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12560.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_60", + "parent": "sx2000903c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "15700.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_60", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12560.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "16900.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_102", + "parent": "sx2001010b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "21120.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_102", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "16900.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1051", + "parent": "sx3048937c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1051", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6100.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1171", + "parent": "sx3198347c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1171", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6100.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9710.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_62", + "parent": "sx2000904c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12140.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_62", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9710.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "7480.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_104", + "parent": "sx2001011b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "9350.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_104", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7480.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_64", + "parent": "sx2000905c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_64", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "13750.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_106", + "parent": "sx2001012b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "17200.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_106", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "13750.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_66", + "parent": "sx2000906c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_66", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_68", + "parent": "sx2000907c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_68", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1059", + "parent": "sx2673318c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1059", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10170.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "20340.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1179", + "parent": "sx3215203c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "25500.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1179", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "20340.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9730.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1057", + "parent": "sx3160113b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12100.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1057", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9730.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "14590.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1177", + "parent": "sx2673308b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "18300.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1177", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14590.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5330.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1055", + "parent": "sx2839305a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.00" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1055", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5330.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "0.00", + "Q_Out": "0.00", + "V_base": "480.00", + "charge_lockout_time": "1", + "charge_off_threshold": "0.00", + "charge_on_threshold": "-5000.00", + "discharge_lockout_time": "1", + "discharge_off_threshold": "100000.00", + "discharge_on_threshold": "150000.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "0.975", + "inverter_type": "FOUR_QUADRANT", + "max_charge_rate": "250000.00", + "max_discharge_rate": "150000.00", + "name": "inv_bat_battery1", + "parent": "m2001-ess1_stmtr", + "phases": "ABCN", + "rated_power": "250000.00", + "sense_object": "m2001-ess1_stmtr" + }, + "children": [ + { + "attributes": { + "battery_capacity": "500000.0", + "battery_type": "LI_ION", + "name": "bat_battery1", + "nominal_voltage": "48", + "rated_power": "250000.00", + "round_trip_efficiency": "0.86", + "state_of_charge": "1.0000", + "use_internal_battery_model": "true" + }, + "children": [], + "name": "battery" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "0.00", + "Q_Out": "0.00", + "V_base": "480.00", + "charge_lockout_time": "1", + "charge_off_threshold": "0.00", + "charge_on_threshold": "-5000.00", + "discharge_lockout_time": "1", + "discharge_off_threshold": "100000.00", + "discharge_on_threshold": "150000.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "0.975", + "inverter_type": "FOUR_QUADRANT", + "max_charge_rate": "250000.00", + "max_discharge_rate": "150000.00", + "name": "inv_bat_battery2", + "parent": "m2001-ess2_stmtr", + "phases": "ABCN", + "rated_power": "250000.00", + "sense_object": "m2001-ess2_stmtr" + }, + "children": [ + { + "attributes": { + "battery_capacity": "500000.0", + "battery_type": "LI_ION", + "name": "bat_battery2", + "nominal_voltage": "48", + "rated_power": "250000.00", + "round_trip_efficiency": "0.86", + "state_of_charge": "1.0000", + "use_internal_battery_model": "true" + }, + "children": [], + "name": "battery" + } + ], + "name": "inverter" + } + ], + "schedules": [] +} \ No newline at end of file diff --git a/local-server/tests/golden/9500__Recorders.json b/local-server/tests/golden/9500__Recorders.json new file mode 100644 index 00000000..32909a15 --- /dev/null +++ b/local-server/tests/golden/9500__Recorders.json @@ -0,0 +1,27 @@ +{ + "classes": [], + "clock": {}, + "definitions": [], + "directives": [], + "includes": [], + "modules": [], + "objects": [ + { + "attributes": { + "filename": "ieee9500unbal_volt.csv", + "mode": "POLAR" + }, + "children": [], + "name": "voltdump" + }, + { + "attributes": { + "filename": "ieee9500unbal_curr.csv", + "mode": "POLAR" + }, + "children": [], + "name": "currdump" + } + ], + "schedules": [] +} \ No newline at end of file diff --git a/local-server/tests/golden/9500__Rotating_Machines.json b/local-server/tests/golden/9500__Rotating_Machines.json new file mode 100644 index 00000000..2071eb46 --- /dev/null +++ b/local-server/tests/golden/9500__Rotating_Machines.json @@ -0,0 +1,179 @@ +{ + "classes": [], + "clock": {}, + "definitions": [], + "directives": [], + "includes": [], + "modules": [], + "objects": [ + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "775000.00", + "name": "dg_diesel620", + "parent": "m1209-dies1_dgmtr", + "power_out_A": "0.00+0.00j", + "power_out_B": "0.00+0.00j", + "power_out_C": "0.00+0.00j" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "125000.00", + "name": "dg_lngengine100", + "parent": "m1142-lng1_dgmtr", + "power_out_A": "0.00+0.00j", + "power_out_B": "0.00+0.00j", + "power_out_C": "0.00+0.00j" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "737000.00", + "name": "dg_diesel590", + "parent": "m1089-dies1_dgmtr", + "power_out_A": "0.00+0.00j", + "power_out_B": "0.00+0.00j", + "power_out_C": "0.00+0.00j" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "2250000.00", + "name": "m1089-lng1_gen", + "parent": "m1089-lng1", + "power_out_A": "0.00+0.00j", + "power_out_B": "0.00+0.00j", + "power_out_C": "0.00+0.00j" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "75000.00", + "name": "dg_windturb-1", + "parent": "m1186-wt1_dgmtr", + "power_out_A": "6666.67+2191.23j", + "power_out_B": "6666.67+2191.23j", + "power_out_C": "6666.67+2191.23j" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "75000.00", + "name": "dg_windturb-2", + "parent": "m1186-wt2_dgmtr", + "power_out_A": "6666.67+2191.23j", + "power_out_B": "6666.67+2191.23j", + "power_out_C": "6666.67+2191.23j" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "75000.00", + "name": "dg_windturb-3", + "parent": "m1186-wt3_dgmtr", + "power_out_A": "6666.67+2191.23j", + "power_out_B": "6666.67+2191.23j", + "power_out_C": "6666.67+2191.23j" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "250000.00", + "name": "dg_microturb-1", + "parent": "m2001-mt1_dgmtr", + "power_out_A": "16666.67+5478.07j", + "power_out_B": "16666.67+5478.07j", + "power_out_C": "16666.67+5478.07j" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "250000.00", + "name": "dg_microturb-2", + "parent": "m2001-mt2_dgmtr", + "power_out_A": "0.00+0.00j", + "power_out_B": "0.00+0.00j", + "power_out_C": "0.00+0.00j" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "250000.00", + "name": "dg_microturb-3", + "parent": "m2001-mt3_dgmtr", + "power_out_A": "0.00+0.00j", + "power_out_B": "0.00+0.00j", + "power_out_C": "0.00+0.00j" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "250000.00", + "name": "dg_microturb-4", + "parent": "m1069-mt1_dgmtr", + "power_out_A": "33333.33+10956.14j", + "power_out_B": "33333.33+10956.14j", + "power_out_C": "33333.33+10956.14j" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "12470.00", + "Rated_VA": "4000000.00", + "name": "dg_steamgen1", + "parent": "m1026chp-3_dgmtr", + "power_out_A": "333333.33-345864.40j", + "power_out_B": "333333.33-345864.40j", + "power_out_C": "333333.33-345864.40j" + }, + "children": [], + "name": "diesel_dg" + } + ], + "schedules": [] +} \ No newline at end of file diff --git a/local-server/tests/golden/9500_with_coordinates__IEEE_9500.json b/local-server/tests/golden/9500_with_coordinates__IEEE_9500.json new file mode 100644 index 00000000..d8930f98 --- /dev/null +++ b/local-server/tests/golden/9500_with_coordinates__IEEE_9500.json @@ -0,0 +1,160802 @@ +{ + "classes": [], + "clock": { + "starttime": "2000-01-01 0:00:00", + "stoptime": "2000-01-01 0:00:00", + "timezone": "EST+5EDT" + }, + "definitions": [ + { + "name": "VSOURCE", + "value": "69715.045" + } + ], + "directives": [ + { + "name": "relax_naming_rules", + "value": "1" + }, + { + "name": "profiler", + "value": "1" + } + ], + "includes": [ + { + "value": "Rotating_Machines.glm" + }, + { + "value": "Inverters.glm" + } + ], + "modules": [ + { + "attributes": {}, + "name": "tape" + }, + { + "attributes": { + "line_capacitance": "true", + "lu_solver": "KLU", + "solver_method": "NR" + }, + "name": "powerflow" + }, + { + "attributes": {}, + "name": "generators" + }, + { + "attributes": { + "report_event_log": "false" + }, + "name": "reliability" + } + ], + "objects": [ + { + "attributes": { + "check_mode": "ONCHANGE", + "grid_association": "true", + "name": "base_fault_check_object", + "output_filename": "testtopo.txt", + "strictly_radial": "false" + }, + "children": [], + "name": "fault_check" + }, + { + "attributes": { + "diameter": "0.39800", + "geometric_mean_radius": "0.011417", + "name": "wire_1/0_3w_cs", + "rating": ".winter.emergency 200.00", + "resistance": "0.971519" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.39800", + "geometric_mean_radius": "0.004458", + "name": "wire_1/0_acsr", + "rating": ".winter.emergency 260.00", + "resistance": "1.040999" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.25000", + "geometric_mean_radius": "0.00700", + "name": "wire_4_wpal", + "rating": ".winter.emergency 150.00", + "resistance": "2.459419" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.25000", + "geometric_mean_radius": "0.004367", + "name": "wire_4_acsr", + "rating": ".winter.emergency 150.00", + "resistance": "2.530689" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.25000", + "geometric_mean_radius": "0.00700", + "name": "wire_4_dpx", + "rating": ".winter.emergency 136.00", + "resistance": "2.449900" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.44700", + "geometric_mean_radius": "0.005100", + "name": "wire_2/0_wpal", + "rating": ".winter.emergency 300.00", + "resistance": "0.853001" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.74300", + "geometric_mean_radius": "0.02400", + "name": "wire_397_acsr", + "rating": ".winter.emergency 630.00", + "resistance": "0.256999" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.74300", + "geometric_mean_radius": "0.02400", + "name": "wire_397_aac_treewire", + "rating": ".winter.emergency 526.00", + "resistance": "0.283008" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.31600", + "geometric_mean_radius": "0.004183", + "name": "wire_2_acsr", + "rating": ".winter.emergency 200.00", + "resistance": "1.625700" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.31600", + "geometric_mean_radius": "0.004183", + "name": "wire_2_wpal", + "rating": ".winter.emergency 155.00", + "resistance": "1.690130" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.19800", + "geometric_mean_radius": "0.003942", + "name": "wire_6_wpal", + "rating": ".winter.emergency 115.00", + "resistance": "3.910899" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.25000", + "geometric_mean_radius": "0.00700", + "name": "wire_4_tpx", + "rating": ".winter.emergency 115.00", + "resistance": "2.449900" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.39800", + "geometric_mean_radius": "0.011417", + "name": "wire_1/0_tpx", + "rating": ".winter.emergency 205.00", + "resistance": "0.18400" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.56300", + "geometric_mean_radius": "0.015767", + "name": "wire_4/0_tpx", + "rating": ".winter.emergency 318.00", + "resistance": "0.485760" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.44700", + "geometric_mean_radius": "0.005100", + "name": "wire_2/0_acsr", + "rating": ".winter.emergency 300.00", + "resistance": "0.853001" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "conductor_diameter": "0.368110", + "conductor_gmr": "0.011089", + "conductor_resistance": "0.970434", + "insulation_relative_permitivitty": "2.30", + "name": "cncab_1/0_al_15kv_1/3", + "neutral_diameter": "0.025197", + "neutral_gmr": "0.000819", + "neutral_resistance": "4.103827", + "neutral_strands": "6", + "outer_diameter": "1.078740" + }, + "children": [], + "name": "underground_line_conductor" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.000", + "distance_AE": "32.000", + "distance_AN": "5.5902", + "distance_BC": "2.500", + "distance_BE": "34.000", + "distance_BN": "7.000", + "distance_CE": "32.000", + "distance_CN": "5.2202", + "distance_NE": "27.000", + "name": "spc_3ph_h-4_acsr2_acsr2_acsr4_wpal_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-4_acsrxx1/0_tpx_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x4_wpalx4_wpal_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x4_wpalx1/0_tpx_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.000", + "distance_AE": "32.000", + "distance_AN": "5.5902", + "distance_BC": "2.500", + "distance_BE": "34.000", + "distance_BN": "7.000", + "distance_CE": "32.000", + "distance_CN": "5.2202", + "distance_NE": "27.000", + "name": "spc_3ph_h-4_wpal4_wpal4_wpal1/0_tpx_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.000", + "distance_AE": "32.000", + "distance_AN": "5.5902", + "distance_BC": "2.500", + "distance_BE": "34.000", + "distance_BN": "7.000", + "distance_CE": "32.000", + "distance_CN": "5.2202", + "distance_NE": "27.000", + "name": "spc_3ph_h-4_acsr4_acsr4_acsr4_wpal_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.000", + "distance_AE": "32.000", + "distance_AN": "5.5902", + "distance_BC": "2.500", + "distance_BE": "34.000", + "distance_BN": "7.000", + "distance_CE": "32.000", + "distance_CN": "5.2202", + "distance_NE": "27.000", + "name": "spc_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x4_wpalx2_acsr_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx6_wpal6_wpal_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x4_acsrx4_wpal_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx4_wpal4_wpal_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-2_acsrxx4_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x4_acsrx1/0_tpx_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x2_acsrx1/0_tpx_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x4_acsrx4_tpx_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.000", + "distance_AE": "32.000", + "distance_AN": "5.5902", + "distance_BC": "2.500", + "distance_BE": "34.000", + "distance_BN": "7.000", + "distance_CE": "32.000", + "distance_CN": "5.2202", + "distance_NE": "27.000", + "name": "spc_3ph_h-2_acsr2_acsr4_acsr4_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.000", + "distance_AE": "32.000", + "distance_AN": "5.5902", + "distance_BC": "2.500", + "distance_BE": "34.000", + "distance_BN": "7.000", + "distance_CE": "32.000", + "distance_CN": "5.2202", + "distance_NE": "27.000", + "name": "spc_3ph_h-397_acsr397_acsr397_acsr2/0_wpal_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x4_acsrx1/0_3w_cs_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "-4.0026", + "name": "spc_1p_1/0_axnj_db_A" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "-4.0026", + "name": "spc_1p_1/0_axnj_db_B" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "-4.0026", + "name": "spc_1p_1/0_axnj_db_C" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-2_acsrxx4_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx4_acsr1/0_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-2_acsrxx2_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-2_acsrxx2_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx4_wpal4_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "0.500", + "distance_AC": "1.000", + "distance_AE": "-4.0026", + "distance_BC": "0.500", + "distance_BE": "-4.0026", + "distance_CE": "-4.0026", + "name": "spc_3p_1/0_axnj_db_ABC" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-4_acsrxx4_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-4_acsrxx4_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-2_acsrxx4/0_tpx_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x4_acsrx4_dpx_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx4_acsr4_tpx_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-4_acsrxx6_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x4_acsrx2_wpal_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x4_wpalx4_acsr_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx4_acsr4_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx4_acsr4_acsr_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx4_acsr4_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx4_wpal1/0_tpx_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AC": "4.000", + "distance_AE": "32.000", + "distance_AN": "5.5902", + "distance_CE": "32.000", + "distance_CN": "5.2202", + "distance_NE": "27.000", + "name": "spc_2ph_h-2_acsrx2_acsr2_acsr_ACN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.000", + "distance_AE": "32.000", + "distance_AN": "5.5902", + "distance_BC": "2.500", + "distance_BE": "34.000", + "distance_BN": "7.000", + "distance_CE": "32.000", + "distance_CN": "5.2202", + "distance_NE": "27.000", + "name": "spc_3ph_h-4_wpal4_wpal4_wpal4_wpal_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-2_acsrxx1/0_tpx_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x2_acsrx1/0_3w_cs_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.000", + "distance_AE": "32.000", + "distance_AN": "5.5902", + "distance_BC": "2.500", + "distance_BE": "34.000", + "distance_BN": "7.000", + "distance_CE": "32.000", + "distance_CN": "5.2202", + "distance_NE": "27.000", + "name": "spc_3ph_h-2/0_acsr2/0_acsr2/0_acsr4_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-4_wpalxx2_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x2_acsrx4_tpx_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "6.4185", + "distance_AC": "10.0066", + "distance_AE": "39.9934", + "distance_AN": "16.0806", + "distance_BC": "6.3929", + "distance_BE": "45.0131", + "distance_BN": "11.2716", + "distance_CE": "50.000", + "distance_CN": "6.1885", + "distance_NE": "56.0039", + "name": "spc_3ph-69kv_397_treewire_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x2_acsrx4_acsr_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-4_wpalxx4_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-2_wpalxx2_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-4_acsrxx2_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-4_acsrxx2_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x4_acsrx4_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x4_acsrx4_acsr_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.000", + "distance_AE": "32.000", + "distance_AN": "5.5902", + "distance_BC": "2.500", + "distance_BE": "34.000", + "distance_BN": "7.000", + "distance_CE": "32.000", + "distance_CN": "5.2202", + "distance_NE": "27.000", + "name": "spc_3ph_h-4_acsr4_acsr4_acsr4_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx2_acsr4_dpx_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x2_acsrx2_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.500", + "distance_BN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x2_acsrx2_acsr_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-x2_acsrx2_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-4_acsrxx4_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx4_acsr2_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-4_wpalxx1/0_tpx_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.000", + "distance_AE": "32.000", + "distance_AN": "5.5902", + "distance_BC": "2.500", + "distance_BE": "34.000", + "distance_BN": "7.000", + "distance_CE": "32.000", + "distance_CN": "5.2202", + "distance_NE": "27.000", + "name": "spc_3ph_h-397_acsr397_acsr397_acsr397_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx2_acsr1/0_tpx_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.000", + "distance_AE": "32.000", + "distance_AN": "5.5902", + "distance_BC": "2.500", + "distance_BE": "34.000", + "distance_BN": "7.000", + "distance_CE": "32.000", + "distance_CN": "5.2202", + "distance_NE": "27.000", + "name": "spc_3ph_h-2_acsr2_acsr2_acsr2_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx4_acsr4_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx4_acsr4_wpal_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-2/0_acsrxx2_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx2/0_acsr1/0_tpx_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.000", + "distance_AE": "32.000", + "distance_AN": "5.5902", + "distance_BC": "2.500", + "distance_BE": "34.000", + "distance_BN": "7.000", + "distance_CE": "32.000", + "distance_CN": "5.2202", + "distance_NE": "27.000", + "name": "spc_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx2_acsr2_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-xx2_acsr2_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.000", + "distance_AE": "32.000", + "distance_AN": "5.5902", + "distance_BC": "2.500", + "distance_BE": "34.000", + "distance_BN": "7.000", + "distance_CE": "32.000", + "distance_CN": "5.2202", + "distance_NE": "27.000", + "name": "spc_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_wpal_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-4_wpalxx4_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.500", + "distance_CN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-4_wpalxx4_wpal_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.000", + "distance_AE": "32.000", + "distance_AN": "5.5902", + "distance_BC": "2.500", + "distance_BE": "34.000", + "distance_BN": "7.000", + "distance_CE": "32.000", + "distance_CN": "5.2202", + "distance_NE": "27.000", + "name": "spc_3ph_h-4_acsr4_acsr4_acsr4_tpx_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.500", + "distance_AN": "7.5664", + "distance_NE": "27.000", + "name": "spc_1ph-4_acsrxx1/0_3w_cs_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "conductor_A": "wire_397_acsr", + "conductor_B": "wire_397_acsr", + "conductor_C": "wire_397_acsr", + "conductor_N": "wire_397_acsr", + "name": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "spacing": "spc_3ph_h-397_acsr397_acsr397_acsr397_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "spacing": "spc_1ph-4_acsrxx4_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_wpal", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-4_wpalxx1/0_tpx_ln5895784-1", + "spacing": "spc_1ph-4_wpalxx1/0_tpx_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-4_acsrxx2_acsr_ln6019479-1", + "spacing": "spc_1ph-4_acsrxx2_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_2_acsr", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "spacing": "spc_1ph-x2_acsrx1/0_tpx_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_2_wpal", + "name": "lcon_1ph-x4_acsrx2_wpal_ln5496577-1", + "spacing": "spc_1ph-x4_acsrx2_wpal_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_2_acsr", + "conductor_N": "wire_1/0_3w_cs", + "name": "lcon_1ph-x2_acsrx1/0_3w_cs_ln6043468-3", + "spacing": "spc_1ph-x2_acsrx1/0_3w_cs_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_6_wpal", + "name": "lcon_1ph-4_acsrxx6_wpal_ln5895785-1", + "spacing": "spc_1ph-4_acsrxx6_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_397_acsr", + "conductor_B": "wire_397_acsr", + "conductor_C": "wire_397_acsr", + "conductor_N": "wire_2/0_wpal", + "name": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_wpal_ln6291244-1", + "spacing": "spc_3ph_h-397_acsr397_acsr397_acsr2/0_wpal_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_4_dpx", + "name": "lcon_1ph-xx2_acsr4_dpx_ln5744331-1", + "spacing": "spc_1ph-xx2_acsr4_dpx_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_1/0_3w_cs", + "name": "lcon_1ph-4_acsrxx1/0_3w_cs_ln5686244-1", + "spacing": "spc_1ph-4_acsrxx1/0_3w_cs_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_wpal", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-4_wpalxx4_wpal_ln6198049-1", + "spacing": "spc_1ph-4_wpalxx4_wpal_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "cncab_1/0_al_15kv_1/3", + "name": "lcon_1p_1/0_axnj_db_ln8945010-1", + "spacing": "spc_1p_1/0_axnj_db_C" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "spacing": "spc_1ph-2_acsrxx1/0_tpx_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "spacing": "spc_1ph-2_acsrxx2_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_B": "wire_4_acsr", + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_tpx", + "name": "lcon_3ph_h-4_acsr4_acsr4_acsr4_tpx_ln5742835-1", + "spacing": "spc_3ph_h-4_acsr4_acsr4_acsr4_tpx_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_1/0_acsr", + "name": "lcon_1ph-xx4_acsr1/0_acsr_ln5852082-1", + "spacing": "spc_1ph-xx4_acsr1/0_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_2_acsr", + "conductor_N": "wire_4_tpx", + "name": "lcon_1ph-x2_acsrx4_tpx_ln6169266-1", + "spacing": "spc_1ph-x2_acsrx4_tpx_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_B": "wire_2_acsr", + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "spacing": "spc_3ph_h-4_acsr2_acsr2_acsr4_wpal_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_wpal", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-xx4_wpal1/0_tpx_ln5956462-1", + "spacing": "spc_1ph-xx4_wpal1/0_tpx_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-xx2_acsr2_acsr_ln6411379-1", + "spacing": "spc_1ph-xx2_acsr2_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2/0_acsr", + "conductor_B": "wire_2/0_acsr", + "conductor_C": "wire_2/0_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr4_acsr_ln5898194-1", + "spacing": "spc_3ph_h-2/0_acsr2/0_acsr2/0_acsr4_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-x4_acsrx1/0_tpx_ln5562952-1", + "spacing": "spc_1ph-x4_acsrx1/0_tpx_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_4/0_tpx", + "name": "lcon_1ph-2_acsrxx4/0_tpx_ln6103927-1", + "spacing": "spc_1ph-2_acsrxx4/0_tpx_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_wpal", + "conductor_N": "wire_2_wpal", + "name": "lcon_1ph-4_wpalxx2_wpal_ln5561444-1", + "spacing": "spc_1ph-4_wpalxx2_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2/0_acsr", + "conductor_B": "wire_2/0_acsr", + "conductor_C": "wire_2/0_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "spacing": "spc_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_wpal", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-x4_wpalx2_acsr_ln5472350-1", + "spacing": "spc_1ph-x4_wpalx2_acsr_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_wpal", + "conductor_N": "wire_2_wpal", + "name": "lcon_1ph-2_wpalxx2_wpal_ln6409800-1", + "spacing": "spc_1ph-2_wpalxx2_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_B": "wire_2_acsr", + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_3ph_h-2_acsr2_acsr4_acsr4_acsr_ln5655838-1", + "spacing": "spc_3ph_h-2_acsr2_acsr4_acsr4_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "spacing": "spc_1ph-xx4_acsr4_wpal_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "cncab_1/0_al_15kv_1/3", + "conductor_B": "cncab_1/0_al_15kv_1/3", + "conductor_C": "cncab_1/0_al_15kv_1/3", + "name": "lcon_3p_1/0_axnj_db_ln8979254-2", + "spacing": "spc_3p_1/0_axnj_db_ABC" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-2_acsrxx4_acsr_ln5589097-1", + "spacing": "spc_1ph-2_acsrxx4_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "spacing": "spc_1ph-xx2_acsr2_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_B": "wire_2_acsr", + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "spacing": "spc_3ph_h-2_acsr2_acsr2_acsr2_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_6_wpal", + "conductor_N": "wire_6_wpal", + "name": "lcon_1ph-xx6_wpal6_wpal_ln6108128-2", + "spacing": "spc_1ph-xx6_wpal6_wpal_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_tpx", + "name": "lcon_1ph-xx4_acsr4_tpx_ln5531226-1", + "spacing": "spc_1ph-xx4_acsr4_tpx_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_wpal", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "spacing": "spc_1ph-xx4_wpal4_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "spacing": "spc_1ph-x4_acsrx4_acsr_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_wpal", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "spacing": "spc_1ph-4_wpalxx4_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-2_acsrxx4_wpal_ln5686245-2", + "spacing": "spc_1ph-2_acsrxx4_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_wpal", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-x4_wpalx1/0_tpx_ln6077771-1", + "spacing": "spc_1ph-x4_wpalx1/0_tpx_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "spacing": "spc_1ph-4_acsrxx4_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_397_aac_treewire", + "conductor_B": "wire_397_aac_treewire", + "conductor_C": "wire_397_aac_treewire", + "conductor_N": "wire_2/0_acsr", + "name": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "spacing": "spc_3ph-69kv_397_treewire_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-xx4_acsr4_acsr_ln5744357-1", + "spacing": "spc_1ph-xx4_acsr4_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_wpal", + "conductor_B": "wire_4_wpal", + "conductor_C": "wire_4_wpal", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_3ph_h-4_wpal4_wpal4_wpal1/0_tpx_ln6411371-1", + "spacing": "spc_3ph_h-4_wpal4_wpal4_wpal1/0_tpx_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_1/0_3w_cs", + "name": "lcon_1ph-x4_acsrx1/0_3w_cs_ln5775368-1", + "spacing": "spc_1ph-x4_acsrx1/0_3w_cs_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_B": "wire_4_acsr", + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "spacing": "spc_3ph_h-4_acsr4_acsr4_acsr4_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-xx2_acsr1/0_tpx_ln6229827-1", + "spacing": "spc_1ph-xx2_acsr1/0_tpx_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "cncab_1/0_al_15kv_1/3", + "name": "lcon_1p_1/0_axnj_db_ln81048087-1", + "spacing": "spc_1p_1/0_axnj_db_B" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "spacing": "spc_1ph-2_acsrxx2_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-x4_acsrx4_acsr_ln5683000-1", + "spacing": "spc_1ph-x4_acsrx4_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_wpal", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "spacing": "spc_1ph-4_wpalxx4_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-xx4_acsr4_wpal_ln5593235-1", + "spacing": "spc_1ph-xx4_acsr4_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_4_dpx", + "name": "lcon_1ph-x4_acsrx4_dpx_ln6506308-1", + "spacing": "spc_1ph-x4_acsrx4_dpx_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_wpal", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "spacing": "spc_1ph-x4_wpalx4_wpal_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-4_acsrxx4_acsr_ln6320366-1", + "spacing": "spc_1ph-4_acsrxx4_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_2_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-x2_acsrx4_acsr_ln6201698-2", + "spacing": "spc_1ph-x2_acsrx4_acsr_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-4_acsrxx2_acsr_ln5775367-1", + "spacing": "spc_1ph-4_acsrxx2_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "spacing": "spc_1ph-x2_acsrx2_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2/0_acsr", + "conductor_B": "wire_2/0_acsr", + "conductor_C": "wire_2/0_acsr", + "conductor_N": "wire_2_wpal", + "name": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_wpal_ln6259996-1", + "spacing": "spc_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_wpal_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2/0_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-2/0_acsrxx2_acsr_ln6129680-2", + "spacing": "spc_1ph-2/0_acsrxx2_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_wpal", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "spacing": "spc_1ph-xx4_wpal4_wpal_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-4_acsrxx1/0_tpx_ln6138596-1", + "spacing": "spc_1ph-4_acsrxx1/0_tpx_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "cncab_1/0_al_15kv_1/3", + "name": "lcon_1p_1/0_axnj_db_ln8979370-1", + "spacing": "spc_1p_1/0_axnj_db_A" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_B": "wire_4_acsr", + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "spacing": "spc_3ph_h-4_acsr4_acsr4_acsr4_wpal_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_2/0_acsr", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-xx2/0_acsr1/0_tpx_ln5866260-1", + "spacing": "spc_1ph-xx2/0_acsr1/0_tpx_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_4_tpx", + "name": "lcon_1ph-x4_acsrx4_tpx_ln5804795-1", + "spacing": "spc_1ph-x4_acsrx4_tpx_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-xx4_acsr4_acsr_ln6138606-1", + "spacing": "spc_1ph-xx4_acsr4_acsr_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "spacing": "spc_1ph-x2_acsrx2_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "spacing": "spc_1ph-x4_acsrx4_wpal_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "spacing": "spc_1ph-x2_acsrx2_acsr_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_wpal", + "conductor_B": "wire_4_wpal", + "conductor_C": "wire_4_wpal", + "conductor_N": "wire_4_wpal", + "name": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "spacing": "spc_3ph_h-4_wpal4_wpal4_wpal4_wpal_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_397_acsr", + "conductor_B": "wire_397_acsr", + "conductor_C": "wire_397_acsr", + "conductor_N": "wire_2/0_acsr", + "name": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "spacing": "spc_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-xx4_acsr2_acsr_ln5741170-3", + "spacing": "spc_1ph-xx4_acsr2_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_wpal", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "spacing": "spc_1ph-x4_wpalx4_acsr_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "spacing": "spc_1ph-xx4_acsr4_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_2ph_h-2_acsrx2_acsr2_acsr_ln5637597-1", + "spacing": "spc_2ph_h-2_acsrx2_acsr2_acsr_ACN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c33": "0.000", + "name": "lcon_cap_1c_PUZ_C", + "z33": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c22": "0.000", + "name": "lcon_cap_3b_PUZ_B", + "z22": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c22": "0.000", + "name": "lcon_cap_1b_PUZ_B", + "z22": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c11": "0.000", + "name": "lcon_cap_3a_PUZ_A", + "z11": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c11": "0.000", + "name": "lcon_cap_1a_PUZ_A", + "z11": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c11": "0.000", + "name": "lcon_cap_2a_PUZ_A", + "z11": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c33": "0.000", + "name": "lcon_cap_3c_PUZ_C", + "z33": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "name": "tcon_4/0triplex_12", + "z11": "2.16454+0.880800j", + "z12": "0.623542+0.673688j", + "z21": "0.623542+0.673688j", + "z22": "2.16454+0.880800j" + }, + "children": [], + "name": "triplex_line_configuration" + }, + { + "attributes": { + "c33": "0.000", + "name": "lcon_cap_2c_PUZ_C", + "z33": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "name": "tcon_750_triplex_12", + "z11": "0.262666+0.146913j", + "z12": "0.123666+0.0353481j", + "z21": "0.123666+0.0353481j", + "z22": "0.262666+0.146913j" + }, + "children": [], + "name": "triplex_line_configuration" + }, + { + "attributes": { + "c22": "0.000", + "name": "lcon_cap_2b_PUZ_B", + "z22": "1.00000+1.00000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct100B", + "power_rating": "100.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct250A", + "power_rating": "250.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct250B", + "power_rating": "250.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct250C", + "power_rating": "250.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct25A", + "power_rating": "25.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct25B", + "power_rating": "25.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct25C", + "power_rating": "25.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct75A", + "power_rating": "75.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct75B", + "power_rating": "75.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct75C", + "power_rating": "75.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct50A", + "power_rating": "50.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct50B", + "power_rating": "50.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct50C", + "power_rating": "50.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct5A", + "power_rating": "5.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct5B", + "power_rating": "5.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct5C", + "power_rating": "5.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct15A", + "power_rating": "15.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct15B", + "power_rating": "15.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct15C", + "power_rating": "15.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct37A", + "power_rating": "37.500", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct37B", + "power_rating": "37.500", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct37C", + "power_rating": "37.500", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct10A", + "power_rating": "10.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct10B", + "power_rating": "10.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0136000j", + "impedance1": "0.0120000+0.00680000j", + "impedance2": "0.0120000+0.00680000j", + "name": "xcon_ct10C", + "power_rating": "10.00", + "primary_voltage": "7200.00", + "secondary_voltage": "120.00", + "shunt_reactance": "200.00", + "shunt_resistance": "500.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047671", + "length": "199.6940", + "name": "line_ln6320335-1", + "phases": "AN", + "to": "l2710511" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027080", + "length": "217.0226", + "name": "line_ln6392977-2", + "phases": "AN", + "to": "l3215340" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3215340", + "length": "113.9520", + "name": "line_ln6392977-1", + "phases": "AN", + "to": "m1027087" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069574", + "length": "164.8425", + "name": "line_ln5835159-1", + "phases": "BN", + "to": "l2710530" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047755", + "length": "51.9306", + "name": "line_ln5653456-1", + "phases": "AN", + "to": "l3066812" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026848", + "length": "196.8740", + "name": "line_ln5683825-1", + "phases": "AN", + "to": "l2935557" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p901927", + "length": "53.6051", + "name": "line_ln5621848-2", + "phases": "BN", + "to": "n1136353" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047pv-3", + "length": "347.4188", + "name": "line_ln1047pvfrm-2", + "phases": "ABCN", + "to": "m1047pv-2" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108400", + "length": "274.7637", + "name": "line_ln6422014-1", + "phases": "ABCN", + "to": "m1108404" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047pv-1", + "length": "395.6069", + "name": "line_ln1047pvfrm-1", + "phases": "ABCN", + "to": "m1047520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069582", + "length": "206.9402", + "name": "line_ln5833720-1", + "phases": "BN", + "to": "l2933165" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2726973", + "length": "277.6810", + "name": "line_ln5739188-1", + "phases": "ABCN", + "to": "m1047485" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209797", + "length": "218.5031", + "name": "line_ln6291242-1", + "phases": "ABCN", + "to": "m1209791" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027019", + "length": "198.1320", + "name": "line_ln5593228-1", + "phases": "BN", + "to": "l2785522" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001312", + "length": "158.2381", + "name": "line_ln2001313-1", + "phases": "AN", + "to": "m2001313" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047812", + "length": "71.6005", + "name": "line_ln6137086-2", + "phases": "BN", + "to": "m4350438" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209817", + "length": "82.8487", + "name": "line_ln5742828-1", + "phases": "ABCN", + "to": "l2801909" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001214", + "length": "158.2381", + "name": "line_ln2001215-1", + "phases": "CN", + "to": "m2001215" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069174", + "length": "241.7164", + "name": "line_ln5833622-1", + "phases": "CN", + "to": "l3216347" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2801909", + "length": "227.2727", + "name": "line_ln5742828-2", + "phases": "ABCN", + "to": "m1209814" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010017", + "length": "280.2416", + "name": "line_ln6106583-2", + "phases": "AN", + "to": "l2858175" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2858175", + "length": "15.1668", + "name": "line_ln6106583-3", + "phases": "AN", + "to": "m1027110" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026658", + "length": "350.0012", + "name": "line_ln6439600-1", + "phases": "AN", + "to": "l3172805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027121", + "length": "28.6949", + "name": "line_ln6106583-4", + "phases": "AN", + "to": "n1134469" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1134469", + "length": "1051.9214", + "name": "line_ln6106583-5", + "phases": "AN", + "to": "m1010017" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3037537", + "length": "560.000", + "name": "line_ln5951197-2", + "phases": "BN", + "to": "l3231269" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3048965", + "length": "168.4396", + "name": "line_ln5805761-1", + "phases": "ABCN", + "to": "m1142843" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089177", + "length": "439.2533", + "name": "line_ln5865230-1", + "phases": "ABCN", + "to": "l2822863" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108529", + "length": "20.0056", + "name": "line_ln5563852-1", + "phases": "CN", + "to": "p829796" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1069248", + "length": "823.2027", + "name": "line_ln8979370-1", + "phases": "A", + "to": "l2915534" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l2915534", + "length": "555.2803", + "name": "line_ln8979370-2", + "phases": "A", + "to": "193-48013" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026681", + "length": "211.5975", + "name": "line_ln6047580-2", + "phases": "ABCN", + "to": "l3048221" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1142843", + "length": "32.4347", + "name": "line_ln5746705-1", + "phases": "AN", + "to": "p829976" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2879794", + "length": "110.7480", + "name": "line_ln6109190-1", + "phases": "AN", + "to": "m1142811" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089165", + "length": "141.1667", + "name": "line_ln5804789-1", + "phases": "CN", + "to": "l2748128" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2936275", + "length": "297.8728", + "name": "line_ln6048632-1", + "phases": "BN", + "to": "l3179674" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1140528", + "length": "161.6146", + "name": "line_ln6900591-29", + "phases": "AN", + "to": "l3649297" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2691952", + "length": "7.1516", + "name": "line_ln6505949-1", + "phases": "ABCN", + "to": "m3036170" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3197638", + "length": "200.8744", + "name": "line_ln6290213-1", + "phases": "AN", + "to": "m1026849" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p1123251", + "length": "20.7333", + "name": "line_ln6900591-28", + "phases": "AN", + "to": "n1140528" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3772794", + "length": "200.0169", + "name": "line_ln6900591-27", + "phases": "AN", + "to": "l3649300" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649299", + "length": "12.7263", + "name": "line_ln6900591-26", + "phases": "AN", + "to": "m3772794" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069481", + "length": "32.1703", + "name": "line_ln5565091-1", + "phases": "CN", + "to": "p827507" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649304", + "length": "220.1037", + "name": "line_ln6900591-22", + "phases": "AN", + "to": "l3649305" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2936211", + "length": "265.2143", + "name": "line_ln6018241-1", + "phases": "CN", + "to": "l2842329" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000403", + "length": "158.2381", + "name": "line_ln2000404-1", + "phases": "AN", + "to": "m2000404" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649302", + "length": "205.9075", + "name": "line_ln6900591-20", + "phases": "AN", + "to": "l3649304" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3160100", + "length": "219.3886", + "name": "line_ln5472346-1", + "phases": "BN", + "to": "l3085390" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069731", + "length": "182.6228", + "name": "line_ln5835124-1", + "phases": "BN", + "to": "l2710504" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1089143", + "length": "84.3570", + "name": "line_ln6411382-1", + "phases": "AN", + "to": "m1089144" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2711234", + "length": "389.8882", + "name": "line_ln5654485-1", + "phases": "BN", + "to": "l3198355" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3254207", + "length": "232.5779", + "name": "line_ln5532739-1", + "phases": "AN", + "to": "m1069390" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026942", + "length": "100.0009", + "name": "line_ln5621826-1", + "phases": "AN", + "to": "l3270814" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089155", + "length": "334.0872", + "name": "line_ln5562921-1", + "phases": "CN", + "to": "m1089158" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2860485", + "length": "683.6319", + "name": "line_ln5744361-1", + "phases": "BN", + "to": "l2860506" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1126005", + "length": "264.1840", + "name": "line_ln6351417-1", + "phases": "AN", + "to": "l3011229" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649301", + "length": "206.8914", + "name": "line_ln6900591-14", + "phases": "AN", + "to": "l3649302" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649300", + "length": "200.7040", + "name": "line_ln6900591-12", + "phases": "AN", + "to": "l3649301" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000500", + "length": "487.0451", + "name": "line_ln2000600-1", + "phases": "ABCN", + "to": "m2000600" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1108278", + "length": "377.7532", + "name": "line_ln5987964-1", + "phases": "BN", + "to": "l3179699" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827521", + "length": "29.9894", + "name": "line_ln5955074-3", + "phases": "BN", + "to": "n1139546" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "d5955074-2_int", + "length": "280.7366", + "name": "line_ln5955074-2", + "phases": "BN", + "to": "l2970842" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m3037449", + "length": "60.2699", + "name": "line_ln6170199-2", + "phases": "CN", + "to": "m1108375" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3104131", + "length": "200.5200", + "name": "line_ln5835146-1", + "phases": "AN", + "to": "m1026377" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2879055", + "length": "298.3053", + "name": "line_ln6320322-1", + "phases": "CN", + "to": "l2973144" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142798", + "length": "260.6238", + "name": "line_ln6078773-1", + "phases": "BN", + "to": "m1142801" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047732", + "length": "284.4418", + "name": "line_ln6380810-1", + "phases": "ABCN", + "to": "m1047737" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047613", + "length": "1.2596", + "name": "line_ln6268990-2", + "phases": "CN", + "to": "m1047612" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026907", + "length": "242.8592", + "name": "line_ln5774458-1", + "phases": "ABCN", + "to": "m1026915" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1136995", + "length": "41.4644", + "name": "line_ln6268990-4", + "phases": "CN", + "to": "m1047613" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2954355", + "length": "78.1149", + "name": "line_ln5502544-1", + "phases": "AN", + "to": "m1026665" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1137998", + "length": "78.1837", + "name": "line_ln6318740-3", + "phases": "CN", + "to": "m1026895" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p895409", + "length": "39.6171", + "name": "line_ln6318740-2", + "phases": "CN", + "to": "n1137998" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047615", + "length": "44.2254", + "name": "line_ln6268990-3", + "phases": "CN", + "to": "n1136995" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047623", + "length": "194.1592", + "name": "line_ln6167816-1", + "phases": "AN", + "to": "l3008279" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2730163", + "length": "277.3370", + "name": "line_ln6200527-1", + "phases": "ABCN", + "to": "l2992624" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047780", + "length": "403.1257", + "name": "line_ln5714046-1", + "phases": "BN", + "to": "l3066811" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108381", + "length": "249.1960", + "name": "line_ln6350574-1", + "phases": "ABCN", + "to": "l3254237" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1139552", + "length": "287.6527", + "name": "line_ln5895789-2", + "phases": "ABCN", + "to": "m1026702" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "r18243", + "length": "101.5793", + "name": "line_ln5895789-3", + "phases": "ABCN", + "to": "n1139552" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1209800", + "length": "33.1031", + "name": "line_ln5958865-1", + "phases": "ABCN", + "to": "p829957" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026978", + "length": "14.9607", + "name": "line_ln6169251-1", + "phases": "ABCN", + "to": "m1026979" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108316", + "length": "27.5072", + "name": "line_ln5686489-1", + "phases": "CN", + "to": "196-35541" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026693", + "length": "279.6714", + "name": "line_ln6327237-1", + "phases": "BN", + "to": "m1026699" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166402", + "length": "307.1436", + "name": "line_ln5866187-1", + "phases": "CN", + "to": "l3048889" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026699", + "length": "172.3687", + "name": "line_ln6327237-2", + "phases": "BN", + "to": "m1026704" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047513", + "length": "20.5212", + "name": "line_ln5773033-1", + "phases": "CN", + "to": "p901913" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047358", + "length": "317.3828", + "name": "line_ln5472368-1", + "phases": "AN", + "to": "l2729411" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026485", + "length": "24.1743", + "name": "line_ln5504714-1", + "phases": "BN", + "to": "p827542" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1089204", + "length": "144.0990", + "name": "line_ln5774449-1", + "phases": "AN", + "to": "l3010557" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069560", + "length": "267.1529", + "name": "line_ln5773046-1", + "phases": "BN", + "to": "m1069567" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069551", + "length": "399.6649", + "name": "line_ln5773046-2", + "phases": "BN", + "to": "m1069560" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "d2001201_int", + "length": "158.2381", + "name": "line_ln2001202-1", + "phases": "CN", + "to": "m2001202" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2710542", + "length": "116.0424", + "name": "line_ln6229831-1", + "phases": "BN", + "to": "l2729430" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "q14411", + "length": "148.8129", + "name": "line_ln5956499-3", + "phases": "ABCN", + "to": "m1069428" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "d5804798-3_int", + "length": "101.0477", + "name": "line_ln5804798-3", + "phases": "BN", + "to": "m1047766" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010013", + "length": "179.8845", + "name": "line_ln6379375-1", + "phases": "AN", + "to": "l3120503" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2766749", + "length": "133.6583", + "name": "line_ln5956499-2", + "phases": "ABCN", + "to": "d5956499-2_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047763", + "length": "57.4980", + "name": "line_ln5804798-2", + "phases": "BN", + "to": "n1136030" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3036165", + "length": "214.2790", + "name": "line_ln5986931-2", + "phases": "BN", + "to": "l3235252" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827553", + "length": "17.5673", + "name": "line_ln6110366-1", + "phases": "BN", + "to": "m1047826" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047793", + "length": "21.4713", + "name": "line_ln6108170-1", + "phases": "BN", + "to": "m1047795" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx1/0_tpx_ln6138596-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069390", + "length": "151.3047", + "name": "line_ln6138596-1", + "phases": "AN", + "to": "l2841618" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026800", + "length": "191.5363", + "name": "line_ln5562934-1", + "phases": "ABCN", + "to": "m1026797" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047388", + "length": "161.6154", + "name": "line_ln5623394-1", + "phases": "BN", + "to": "l2729407" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027039", + "length": "15.0026", + "name": "line_ln5806920-1", + "phases": "BN", + "to": "d5806920-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069418", + "length": "287.9597", + "name": "line_ln5926291-1", + "phases": "ABCN", + "to": "m1069417" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1147864", + "length": "225.2904", + "name": "line_ln6411373-3", + "phases": "AN", + "to": "l2710536" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026902", + "length": "34.6914", + "name": "line_ln6411373-2", + "phases": "AN", + "to": "n1147864" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001005", + "length": "158.2381", + "name": "line_ln2001006-1", + "phases": "BN", + "to": "m2001006" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047406", + "length": "95.9172", + "name": "line_ln5472359-1", + "phases": "AN", + "to": "l3216348" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069610", + "length": "199.9990", + "name": "line_ln5650048-1", + "phases": "BN", + "to": "m1069600" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3263051", + "length": "234.3533", + "name": "line_ln5623404-1", + "phases": "CN", + "to": "m1069199" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008733", + "length": "45.0140", + "name": "line_ln5644817-1", + "phases": "BN", + "to": "l3225319" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108375", + "length": "176.6469", + "name": "line_ln6048521-1", + "phases": "CN", + "to": "l3160793" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209791", + "length": "181.2432", + "name": "line_ln5654472-1", + "phases": "ABCN", + "to": "m1209790" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3048937", + "length": "354.9205", + "name": "line_ln5651998-1", + "phases": "CN", + "to": "l3176661" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2841638", + "length": "299.2758", + "name": "line_ln6199531-1", + "phases": "CN", + "to": "l2860492" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026961", + "length": "281.3834", + "name": "line_ln6262263-1", + "phases": "AN", + "to": "l2710516" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026366", + "length": "205.1962", + "name": "line_ln5653465-1", + "phases": "AN", + "to": "l3122824" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p901905", + "length": "84.6481", + "name": "line_ln5682333-1", + "phases": "BN", + "to": "l2804257" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln6138606-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2954350", + "length": "376.7449", + "name": "line_ln6138606-1", + "phases": "BN", + "to": "m1069206" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047669", + "length": "11.1371", + "name": "line_ln5956464-1", + "phases": "ABCN", + "to": "m1047672" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e183493", + "length": "292.8446", + "name": "line_ln6201850-1", + "phases": "ABCN", + "to": "m1125902" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026926", + "length": "46.1475", + "name": "line_ln5926301-1", + "phases": "ABCN", + "to": "m1026927" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089189", + "length": "260.3491", + "name": "line_ln5593219-1", + "phases": "ABCN", + "to": "l2841619" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1139549", + "length": "144.2126", + "name": "line_ln6259994-2", + "phases": "AN", + "to": "l2879074" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009843", + "length": "187.1711", + "name": "line_ln6350552-1", + "phases": "BN", + "to": "l3160108" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026646", + "length": "170.0540", + "name": "line_ln6259994-3", + "phases": "AN", + "to": "n1139549" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p827514", + "length": "19.9923", + "name": "line_ln6352699-1", + "phases": "ABCN", + "to": "m1026876" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1089143", + "length": "243.0012", + "name": "line_ln5604685-1", + "phases": "ABCN", + "to": "m1089145" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e203026", + "length": "890.6524", + "name": "line_ln6044631-1", + "phases": "ABCN", + "to": "m1009650" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026947", + "length": "454.8803", + "name": "line_ln6077775-1", + "phases": "BN", + "to": "m1026946" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1089145", + "length": "242.9986", + "name": "line_ln5604685-2", + "phases": "ABCN", + "to": "l3047289" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3104125", + "length": "125.4820", + "name": "line_ln5502531-1", + "phases": "ABCN", + "to": "m1089131" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108276", + "length": "135.7889", + "name": "line_ln6048641-1", + "phases": "BN", + "to": "l2786273" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1136357", + "length": "131.1798", + "name": "line_ln5651985-3", + "phases": "CN", + "to": "l2897790" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069554", + "length": "109.3238", + "name": "line_ln5653478-1", + "phases": "BN", + "to": "l3160115" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069548", + "length": "61.2269", + "name": "line_ln5651985-2", + "phases": "CN", + "to": "n1136357" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p830058", + "length": "29.0941", + "name": "line_ln5776833-1", + "phases": "CN", + "to": "m1166370" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4_wpal_ln5686245-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "p829961", + "length": "32.4484", + "name": "line_ln5686245-2", + "phases": "AN", + "to": "n1141476" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3027133", + "length": "197.8748", + "name": "line_ln5528079-3", + "phases": "CN", + "to": "m3037453" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4_wpal_ln5686245-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "n1141476", + "length": "250.6023", + "name": "line_ln5686245-3", + "phases": "AN", + "to": "l2692654" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166396", + "length": "220.5660", + "name": "line_ln6324073-1", + "phases": "CN", + "to": "m1166399" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2767342", + "length": "160.3960", + "name": "line_ln5503479-1", + "phases": "AN", + "to": "l2748780" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047471", + "length": "60.3665", + "name": "line_ln6108139-1", + "phases": "BN", + "to": "l3216349" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2804257", + "length": "194.9624", + "name": "line_ln5895776-1", + "phases": "BN", + "to": "l2860485" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047503", + "length": "77.9737", + "name": "line_ln5863706-1", + "phases": "ABCN", + "to": "l2841635" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1134479", + "length": "207.8554", + "name": "line_ln5682346-3", + "phases": "ABCN", + "to": "d5682346-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009834", + "length": "1.000", + "name": "line_ln6259981-1", + "phases": "BN", + "to": "l3178969" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3178969", + "length": "251.3492", + "name": "line_ln6259981-2", + "phases": "BN", + "to": "l2729401" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089207", + "length": "77.7636", + "name": "line_ln6290200-1", + "phases": "ABCN", + "to": "l3160098" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069503", + "length": "92.9115", + "name": "line_ln5682346-2", + "phases": "ABCN", + "to": "n1134479" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108364", + "length": "315.4201", + "name": "line_ln5683812-1", + "phases": "CN", + "to": "l2897766" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3029500", + "length": "299.3577", + "name": "line_ln5835137-1", + "phases": "AN", + "to": "m1026764" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p901932", + "length": "16.3308", + "name": "line_ln6439986-2", + "phases": "CN", + "to": "n1136359" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1136359", + "length": "94.4867", + "name": "line_ln6439986-3", + "phases": "CN", + "to": "l3008237" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6320366-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3010585", + "length": "190.3332", + "name": "line_ln6320366-1", + "phases": "CN", + "to": "m1026798" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000710", + "length": "158.2381", + "name": "line_ln2000711-1", + "phases": "BN", + "to": "m2000711" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069590", + "length": "32.0210", + "name": "line_ln5744352-1", + "phases": "BN", + "to": "l2801902" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3949157", + "length": "345.7758", + "name": "line_ln6991377-17", + "phases": "AN", + "to": "l3728037" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3727708", + "length": "16.6515", + "name": "line_ln6991377-16", + "phases": "AN", + "to": "m3949157" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069551", + "length": "185.1575", + "name": "line_ln5562947-1", + "phases": "BN", + "to": "m1069555" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3728037", + "length": "340.1826", + "name": "line_ln6991377-18", + "phases": "AN", + "to": "m3949154" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln5775367-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "m1126025", + "length": "182.4373", + "name": "line_ln5775367-1", + "phases": "AN", + "to": "l2823545" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3729298", + "length": "195.4934", + "name": "line_ln6991377-13", + "phases": "AN", + "to": "l3727707" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3727707", + "length": "180.7032", + "name": "line_ln6991377-15", + "phases": "AN", + "to": "l3727708" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047819", + "length": "222.4577", + "name": "line_ln6350530-1", + "phases": "BN", + "to": "m1047821" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "n1136353", + "length": "34.7951", + "name": "line_ln5621848-3", + "phases": "BN", + "to": "l2820535" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069627", + "length": "454.5724", + "name": "line_ln6077797-1", + "phases": "BN", + "to": "l2897791" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1009655", + "length": "23.2483", + "name": "line_ln8945010-1", + "phases": "C", + "to": "p827528" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2674027", + "length": "222.7092", + "name": "line_ln5684836-1", + "phases": "ABCN", + "to": "l2692633" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3729297", + "length": "205.3445", + "name": "line_ln6991377-11", + "phases": "AN", + "to": "l3729298" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2001200", + "length": "475.1801", + "name": "line_ln2001300-1", + "phases": "ABCN", + "to": "m2001300" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1126023", + "length": "251.9183", + "name": "line_ln6291153-1", + "phases": "AN", + "to": "m1126017" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "l2763407", + "length": "553.3025", + "name": "line_ln6073917-1", + "phases": "ABCN", + "to": "m1186000" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047750", + "length": "276.6073", + "name": "line_ln5865234-1", + "phases": "AN", + "to": "m1047744" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3085396", + "length": "765.8110", + "name": "line_ln6320331-1", + "phases": "AN", + "to": "l3122813" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000407", + "length": "158.2381", + "name": "line_ln2000408-1", + "phases": "AN", + "to": "m2000408" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009820", + "length": "261.9346", + "name": "line_ln5774489-1", + "phases": "BN", + "to": "l3254234" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "221-311905", + "length": "45.8719", + "name": "line_ln8979254-2", + "phases": "ABC", + "to": "l3215203" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "p850080", + "length": "16.6850", + "name": "line_ln8979254-1", + "phases": "ABC", + "to": "221-311905" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1089103", + "length": "358.9835", + "name": "line_ln6047558-1", + "phases": "BN", + "to": "l2673305" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx4_acsr_ln6201698-2", + "continuous_rating_B": "200.00", + "emergency_rating_B": "200.00", + "from": "p827529", + "length": "14.9005", + "name": "line_ln6201698-2", + "phases": "BN", + "to": "n1136668" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx4_acsr_ln6201698-2", + "continuous_rating_B": "200.00", + "emergency_rating_B": "200.00", + "from": "n1136668", + "length": "142.0386", + "name": "line_ln6201698-3", + "phases": "BN", + "to": "l3029506" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3235249", + "length": "307.3018", + "name": "line_ln6350539-1", + "phases": "AN", + "to": "l2954348" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2954347", + "length": "99.9999", + "name": "line_ln5500962-1", + "phases": "BN", + "to": "m1026953" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2992624", + "length": "167.4908", + "name": "line_ln6170293-1", + "phases": "ABCN", + "to": "m1125919" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026953", + "length": "99.9983", + "name": "line_ln5500962-2", + "phases": "BN", + "to": "l3008232" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047592", + "length": "131.5331", + "name": "line_ln5532748-5", + "phases": "ABCN", + "to": "m3763619" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2917328", + "length": "211.9463", + "name": "line_ln6351511-1", + "phases": "ABCN", + "to": "l2861218" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m3763619", + "length": "138.0636", + "name": "line_ln5532748-6", + "phases": "ABCN", + "to": "m1026830" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069169", + "length": "275.2756", + "name": "line_ln6108126-1", + "phases": "AN", + "to": "l2879064" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln6019479-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1026851", + "length": "22.0635", + "name": "line_ln6019479-1", + "phases": "CN", + "to": "p827536" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m3036164", + "length": "553.8933", + "name": "line_ln5593224-2", + "phases": "BN", + "to": "l3085397" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2860482", + "length": "2024.8548", + "name": "line_ln5744330-1", + "phases": "AN", + "to": "l3254204" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3104154", + "length": "132.6220", + "name": "line_ln5859993-1", + "phases": "ABCN", + "to": "l3104155" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2933120", + "length": "821.7893", + "name": "line_ln5804785-1", + "phases": "CN", + "to": "l3104117" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026940", + "length": "376.8252", + "name": "line_ln6017291-1", + "phases": "BN", + "to": "m1026935" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010011", + "length": "268.9972", + "name": "line_ln6198052-1", + "phases": "AN", + "to": "l3120504" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m3036167", + "length": "10.2360", + "name": "line_ln6505945-1", + "phases": "ABCN", + "to": "l2973156" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "l3207907", + "length": "7.9535", + "name": "line_ln6506307-4", + "phases": "ABCN", + "to": "m3037441" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166386", + "length": "207.0463", + "name": "line_ln6381856-1", + "phases": "CN", + "to": "l3048966" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026826", + "length": "198.3684", + "name": "line_ln5683843-1", + "phases": "CN", + "to": "m1026820" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009843", + "length": "116.6676", + "name": "line_ln6167749-1", + "phases": "BN", + "to": "l3251806" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047340", + "length": "320.4652", + "name": "line_ln6411391-1", + "phases": "AN", + "to": "m1047342" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000700", + "length": "467.5028", + "name": "line_ln2000800-1", + "phases": "ABCN", + "to": "m2000800" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069572", + "length": "129.9611", + "name": "line_ln6320353-1", + "phases": "BN", + "to": "m1069574" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2711225", + "length": "324.5392", + "name": "line_ln6018330-1", + "phases": "CN", + "to": "l3030200" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2973833", + "length": "135.8307", + "name": "line_ln5866308-1", + "phases": "ABCN", + "to": "m1166373" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "d2000701_int", + "length": "158.2381", + "name": "line_ln2000702-1", + "phases": "BN", + "to": "m2000702" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1136366", + "length": "15.5673", + "name": "line_ln5472390-3", + "phases": "ABCN", + "to": "l2916620" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2936271", + "length": "457.8621", + "name": "line_ln5927423-1", + "phases": "ABCN", + "to": "m1142815" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142835", + "length": "122.5707", + "name": "line_ln5896824-1", + "phases": "CN", + "to": "l3104853" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026883", + "length": "202.1878", + "name": "line_ln5653491-1", + "phases": "CN", + "to": "m1026898" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026667", + "length": "181.3996", + "name": "line_ln5956473-1", + "phases": "AN", + "to": "m1026661" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3027122", + "length": "23.6139", + "name": "line_ln5500984-1", + "phases": "AN", + "to": "m1108506" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069632", + "length": "121.5221", + "name": "line_ln5985349-1", + "phases": "BN", + "to": "l2726974" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2726974", + "length": "292.5053", + "name": "line_ln5985349-2", + "phases": "BN", + "to": "l2916618" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1069312", + "length": "24.0663", + "name": "line_ln81018875-1", + "phases": "A", + "to": "p873800" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069518", + "length": "54.0050", + "name": "line_ln5472390-2", + "phases": "ABCN", + "to": "n1136366" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047483", + "length": "25.6840", + "name": "line_ln5958701-1", + "phases": "CN", + "to": "p827505" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1142105", + "length": "37.9834", + "name": "line_ln5500984-3", + "phases": "AN", + "to": "l3027122" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p901946", + "length": "11.6131", + "name": "line_ln5500984-4", + "phases": "AN", + "to": "n1142105" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3225319", + "length": "167.4470", + "name": "line_ln5644817-2", + "phases": "BN", + "to": "l3048201" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026463", + "length": "68.0446", + "name": "line_ln6292462-1", + "phases": "BN", + "to": "p827495" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069469", + "length": "27.1370", + "name": "line_ln5683856-2", + "phases": "AN", + "to": "n1139263" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1139263", + "length": "85.2588", + "name": "line_ln5683856-3", + "phases": "AN", + "to": "l3048227" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047388", + "length": "704.6352", + "name": "line_ln5774454-1", + "phases": "BN", + "to": "l2691942" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047344", + "length": "246.9700", + "name": "line_ln6108148-1", + "phases": "AN", + "to": "l3029499" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx1/0_tpx_ln5562952-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "l2766742", + "length": "296.0435", + "name": "line_ln5562952-1", + "phases": "BN", + "to": "m1009820" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047441", + "length": "199.4172", + "name": "line_ln6380814-1", + "phases": "BN", + "to": "l3197635" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3327097", + "length": "140.9987", + "name": "line_ln6660515-2", + "phases": "BN", + "to": "l3448661" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3066830", + "length": "438.1156", + "name": "line_ln6350570-1", + "phases": "BN", + "to": "l3197660" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1166373", + "length": "30.6673", + "name": "line_ln6412354-1", + "phases": "ABCN", + "to": "m1166374" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047335", + "length": "279.9589", + "name": "line_ln6169255-1", + "phases": "AN", + "to": "l2710519" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln6138606-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069217", + "length": "289.9192", + "name": "line_ln5683821-1", + "phases": "BN", + "to": "l2954350" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3216336", + "length": "219.6505", + "name": "line_ln5926286-1", + "phases": "AN", + "to": "l2691936" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3772794", + "length": "242.3239", + "name": "line_ln6900592-3", + "phases": "AN", + "to": "l3649306" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx6_wpal_ln5895785-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "l2710520", + "length": "140.3767", + "name": "line_ln5895785-1", + "phases": "AN", + "to": "m1069131" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069556", + "length": "21.1804", + "name": "line_ln6258445-1", + "phases": "CN", + "to": "p901932" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047423", + "length": "165.5683", + "name": "line_ln5835142-1", + "phases": "AN", + "to": "m1047420" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "p827580", + "length": "26.2790", + "name": "line_ln5686080-1", + "phases": "ABCN", + "to": "d5686080-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2673300", + "length": "160.3374", + "name": "line_ln5532735-1", + "phases": "BN", + "to": "m1008753" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089205", + "length": "201.2179", + "name": "line_ln6015794-1", + "phases": "AN", + "to": "m1089200" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069555", + "length": "158.7335", + "name": "line_ln5502557-1", + "phases": "BN", + "to": "l3085410" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001205", + "length": "158.2381", + "name": "line_ln2001206-1", + "phases": "CN", + "to": "m2001206" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047292", + "length": "290.6972", + "name": "line_ln6229835-1", + "phases": "ABCN", + "to": "l2691954" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089132", + "length": "154.2096", + "name": "line_ln6077779-1", + "phases": "ABCN", + "to": "l3029503" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026366", + "length": "307.2730", + "name": "line_ln5593237-1", + "phases": "AN", + "to": "l3104131" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1145955", + "length": "44.7302", + "name": "line_ln5744343-3", + "phases": "AN", + "to": "m1026335" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p829974", + "length": "217.0724", + "name": "line_ln5989328-1", + "phases": "AN", + "to": "l2805034" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026468", + "length": "307.9261", + "name": "line_ln6380827-1", + "phases": "BN", + "to": "l2766732" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047324", + "length": "303.7952", + "name": "line_ln5986935-1", + "phases": "ABCN", + "to": "l2897780" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047769", + "length": "536.6278", + "name": "line_ln5954962-1", + "phases": "BN", + "to": "l3197632" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069300", + "length": "773.7466", + "name": "line_ln5637600-1", + "phases": "ABCN", + "to": "m1069310" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026333", + "length": "45.1793", + "name": "line_ln5744343-2", + "phases": "AN", + "to": "n1145955" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "p895114", + "length": "19.4388", + "name": "line_ln5528573-2", + "phases": "AN", + "to": "n1141479" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "n1141479", + "length": "34.1189", + "name": "line_ln5528573-3", + "phases": "AN", + "to": "l3198348" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "m1009715", + "length": "168.9329", + "name": "line_ln5804808-1", + "phases": "AN", + "to": "l3010563" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3122817", + "length": "182.9897", + "name": "line_ln5623400-1", + "phases": "CN", + "to": "l2673314" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069181", + "length": "247.4824", + "name": "line_ln5804794-1", + "phases": "AN", + "to": "l2973151" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009827", + "length": "285.8982", + "name": "line_ln5623390-1", + "phases": "BN", + "to": "m1009832" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1089119", + "length": "22.3474", + "name": "line_ln5625547-1", + "phases": "BN", + "to": "p827521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089165", + "length": "502.0109", + "name": "line_ln5926295-1", + "phases": "CN", + "to": "l3216343" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047325", + "length": "31.5972", + "name": "line_ln5837356-1", + "phases": "AN", + "to": "p827532" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089188", + "length": "217.5801", + "name": "line_ln6229790-1", + "phases": "ABCN", + "to": "m1089189" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026341", + "length": "224.9589", + "name": "line_ln5683830-1", + "phases": "ABCN", + "to": "l2973162" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026829", + "length": "449.6545", + "name": "line_ln5531256-1", + "phases": "ABCN", + "to": "m1026824" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069208", + "length": "363.5149", + "name": "line_ln5865243-1", + "phases": "CN", + "to": "l3010567" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m4362181", + "length": "214.7358", + "name": "line_ln5588016-4", + "phases": "BN", + "to": "l3254214" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2710546", + "length": "84.9655", + "name": "line_ln5588016-3", + "phases": "BN", + "to": "m4362181" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2917330", + "length": "293.7465", + "name": "line_ln5654476-1", + "phases": "AN", + "to": "l2861222" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "d5653469-1_int", + "length": "196.0954", + "name": "line_ln5653469-1", + "phases": "BN", + "to": "l3178981" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3118855", + "length": "165.6336", + "name": "line_ln5769126-1", + "phases": "ABCN", + "to": "l3231255" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2841630", + "length": "93.0966", + "name": "line_ln5926305-1", + "phases": "CN", + "to": "l2954352" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p901913", + "length": "75.8156", + "name": "line_ln5803262-1", + "phases": "CN", + "to": "l3157708" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069513", + "length": "288.9093", + "name": "line_ln5895804-1", + "phases": "ABCN", + "to": "m1069516" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026327", + "length": "834.7717", + "name": "line_ln6320340-1", + "phases": "BN", + "to": "l3197643" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026648", + "length": "171.3321", + "name": "line_ln6229800-1", + "phases": "AN", + "to": "m1026647" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069192", + "length": "303.5315", + "name": "line_ln5562930-1", + "phases": "AN", + "to": "l2991913" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m4113345", + "length": "264.5570", + "name": "line_ln5803262-6", + "phases": "CN", + "to": "l3197640" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047447", + "length": "175.3764", + "name": "line_ln6047567-1", + "phases": "BN", + "to": "l2954349" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108484", + "length": "29.0082", + "name": "line_ln5565229-1", + "phases": "AN", + "to": "p829797" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1136029", + "length": "358.6205", + "name": "line_ln5898058-2", + "phases": "BN", + "to": "m1047767" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3157708", + "length": "46.3637", + "name": "line_ln5803262-7", + "phases": "CN", + "to": "n1137991" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3010563", + "length": "201.8673", + "name": "line_ln6259990-1", + "phases": "AN", + "to": "l2841623" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1137991", + "length": "142.3776", + "name": "line_ln5803262-8", + "phases": "CN", + "to": "m4113345" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827509", + "length": "21.7017", + "name": "line_ln5898058-3", + "phases": "BN", + "to": "n1136029" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209772", + "length": "571.9677", + "name": "line_ln5542283-1", + "phases": "ABCN", + "to": "e192258" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "l2879062", + "length": "295.8508", + "name": "line_ln5956460-1", + "phases": "CN", + "to": "m1089173" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125952", + "length": "18.0264", + "name": "line_ln5591708-1", + "phases": "CN", + "to": "p901936" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1142811", + "length": "169.0989", + "name": "line_ln5745385-1", + "phases": "AN", + "to": "l2992657" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1142874", + "length": "26.4957", + "name": "line_ln6346338-1", + "phases": "CN", + "to": "p895111" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108270", + "length": "404.7947", + "name": "line_ln6199509-1", + "phases": "BN", + "to": "l2785516" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047344", + "length": "184.8542", + "name": "line_ln5532757-1", + "phases": "AN", + "to": "l3066819" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108524", + "length": "115.7786", + "name": "line_ln5679770-2", + "phases": "CN", + "to": "n1136031" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1136031", + "length": "193.1453", + "name": "line_ln5679770-3", + "phases": "CN", + "to": "l3197625" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125961", + "length": "21.8286", + "name": "line_ln5864458-1", + "phases": "CN", + "to": "m1125959" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089179", + "length": "373.4157", + "name": "line_ln5835133-1", + "phases": "ABCN", + "to": "m1069451" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2748133", + "length": "279.8956", + "name": "line_ln6108135-1", + "phases": "CN", + "to": "l3085399" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026309", + "length": "716.4803", + "name": "line_ln5774467-1", + "phases": "BN", + "to": "l2804260" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3104114", + "length": "182.2345", + "name": "line_ln5593215-1", + "phases": "BN", + "to": "m1009824" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108526", + "length": "329.1713", + "name": "line_ln6380805-1", + "phases": "ABCN", + "to": "m1089199" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3082993", + "length": "199.9984", + "name": "line_ln6492183-1", + "phases": "AN", + "to": "m3016088" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125914", + "length": "14.3215", + "name": "line_ln6049963-1", + "phases": "BN", + "to": "p829963" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2823544", + "length": "101.4394", + "name": "line_ln6379357-1", + "phases": "AN", + "to": "m1126016" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "e182722", + "length": "43.8206", + "name": "line_ln5534966-2", + "phases": "AN", + "to": "n1138596" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2001400", + "length": "620.8775", + "name": "line_ln2001500-1", + "phases": "ABCN", + "to": "m2001500" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000910", + "length": "158.2381", + "name": "line_ln2000911-1", + "phases": "CN", + "to": "m2000911" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m4113348", + "length": "27.2254", + "name": "line_ln8979343-3", + "phases": "C", + "to": "p850400" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2691938", + "length": "145.1821", + "name": "line_ln6169242-1", + "phases": "BN", + "to": "m1009840" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125987", + "length": "221.2588", + "name": "line_ln6413700-1", + "phases": "ABCN", + "to": "m1125989" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1138596", + "length": "80.3522", + "name": "line_ln5534966-3", + "phases": "AN", + "to": "l3254207" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069181", + "length": "60.3124", + "name": "line_ln5532744-1", + "phases": "AN", + "to": "l2804253" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108353", + "length": "279.4725", + "name": "line_ln5895772-1", + "phases": "CN", + "to": "l3048205" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166387", + "length": "383.3727", + "name": "line_ln5624375-1", + "phases": "CN", + "to": "l3198347" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027073", + "length": "151.8441", + "name": "line_ln6320362-1", + "phases": "CN", + "to": "l2879089" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027004", + "length": "125.0111", + "name": "line_ln5986922-1", + "phases": "BN", + "to": "l2804248" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3214071", + "length": "176.9274", + "name": "line_ln5561442-2", + "phases": "ABCN", + "to": "m1125952" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000714", + "length": "158.2381", + "name": "line_ln2000715-1", + "phases": "BN", + "to": "m2000715" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125947", + "length": "192.6220", + "name": "line_ln5561442-1", + "phases": "ABCN", + "to": "l3214071" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069629", + "length": "479.9941", + "name": "line_ln5894218-1", + "phases": "BN", + "to": "m1069640" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069550", + "length": "13.6101", + "name": "line_ln5956482-1", + "phases": "BN", + "to": "m1069551" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108268", + "length": "1395.4919", + "name": "line_ln5500971-1", + "phases": "BN", + "to": "m1108267" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1149233", + "length": "319.5395", + "name": "line_ln5896833-1", + "phases": "ABCN", + "to": "l3048965" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001303", + "length": "158.2381", + "name": "line_ln2001304-1", + "phases": "AN", + "to": "m2001304" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1139550", + "length": "79.6687", + "name": "line_ln6017301-3", + "phases": "AN", + "to": "l3197639" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m3036169", + "length": "76.7350", + "name": "line_ln6017301-4", + "phases": "AN", + "to": "n1139550" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069564", + "length": "21.4534", + "name": "line_ln6076243-1", + "phases": "AN", + "to": "p901933" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3011298", + "length": "262.9788", + "name": "line_ln6351524-1", + "phases": "ABCN", + "to": "m1108295" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3342743", + "length": "926.5728", + "name": "line_ln6140775-3", + "phases": "CN", + "to": "m1026883" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p827511", + "length": "38.9976", + "name": "line_ln6140775-4", + "phases": "CN", + "to": "n1140527" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3104830", + "length": "244.3330", + "name": "line_ln5563901-2", + "phases": "ABCN", + "to": "n1142104" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1140527", + "length": "462.6533", + "name": "line_ln6140775-5", + "phases": "CN", + "to": "l3342743" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1142104", + "length": "149.2205", + "name": "line_ln5563901-3", + "phases": "ABCN", + "to": "m1108500" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047406", + "length": "215.2559", + "name": "line_ln6108134-1", + "phases": "AN", + "to": "l2691947" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2879069", + "length": "401.0548", + "name": "line_ln6350535-1", + "phases": "AN", + "to": "l3197633" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047404", + "length": "203.9987", + "name": "line_ln5480058-1", + "phases": "AN", + "to": "l3091052" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008752", + "length": "98.9431", + "name": "line_ln6047554-1", + "phases": "BN", + "to": "l3085389" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "n1139251", + "length": "572.7039", + "name": "line_ln8979344-4", + "phases": "C", + "to": "m1069249" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "221-311595", + "length": "12.6733", + "name": "line_ln8979344-3", + "phases": "C", + "to": "n1139251" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l3101194", + "length": "732.6219", + "name": "line_ln81001717-1", + "phases": "A", + "to": "l2862616" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186065", + "length": "226.6728", + "name": "line_ln5927383-1", + "phases": "ABCN", + "to": "m1186064" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p850400", + "length": "22.9941", + "name": "line_ln8979344-1", + "phases": "C", + "to": "221-311595" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p901936", + "length": "116.9831", + "name": "line_ln6258453-1", + "phases": "CN", + "to": "m1125955" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069462", + "length": "98.5273", + "name": "line_ln5958706-1", + "phases": "BN", + "to": "l3216342" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008743", + "length": "270.0996", + "name": "line_ln6017283-1", + "phases": "BN", + "to": "m1008742" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2935554", + "length": "143.9965", + "name": "line_ln6169247-1", + "phases": "ABCN", + "to": "m1047713" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3217053", + "length": "8.7063", + "name": "line_ln6506315-4", + "phases": "CN", + "to": "m3037455" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069155", + "length": "329.8877", + "name": "line_ln5532743-1", + "phases": "ABCN", + "to": "m1069154" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3122816", + "length": "1669.6394", + "name": "line_ln6290209-1", + "phases": "ABCN", + "to": "l3160103" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009828", + "length": "223.8775", + "name": "line_ln5865226-1", + "phases": "BN", + "to": "l2766715" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3159448", + "length": "8.1644", + "name": "line_ln5965099-2", + "phases": "ABCN", + "to": "m1069311" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5744357-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069224", + "length": "392.4829", + "name": "line_ln5744357-1", + "phases": "AN", + "to": "m1069218" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m3037540", + "length": "191.4795", + "name": "line_ln5593220-2", + "phases": "CN", + "to": "l2822862" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089198", + "length": "580.8660", + "name": "line_ln6290199-1", + "phases": "ABCN", + "to": "m1089201" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m4113347", + "length": "76.1845", + "name": "line_ln5965099-8", + "phases": "ABCN", + "to": "n1138607" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1138607", + "length": "211.0022", + "name": "line_ln5965099-9", + "phases": "ABCN", + "to": "l3159448" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3120534", + "length": "341.3378", + "name": "line_ln5501092-1", + "phases": "AN", + "to": "m1126020" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026796", + "length": "99.7777", + "name": "line_ln5498301-1", + "phases": "ABCN", + "to": "m1026795" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001308", + "length": "158.2381", + "name": "line_ln2001309-1", + "phases": "AN", + "to": "m2001309" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026895", + "length": "199.9986", + "name": "line_ln5863691-1", + "phases": "CN", + "to": "l2820528" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2820528", + "length": "99.9972", + "name": "line_ln5863691-2", + "phases": "CN", + "to": "l2745799" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108372", + "length": "220.9181", + "name": "line_ln6230694-1", + "phases": "BN", + "to": "l3179607" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026906", + "length": "407.0203", + "name": "line_ln6260001-1", + "phases": "AN", + "to": "l2916598" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108484", + "length": "340.7855", + "name": "line_ln5503480-1", + "phases": "ABCN", + "to": "l2730106" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026886", + "length": "31.7445", + "name": "line_ln6225673-1", + "phases": "CN", + "to": "p895409" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2897772", + "length": "185.1879", + "name": "line_ln6318859-1", + "phases": "AN", + "to": "l3101814" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069738", + "length": "314.0668", + "name": "line_ln5878934-1", + "phases": "BN", + "to": "l3234185" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069640", + "length": "308.8674", + "name": "line_ln6015793-1", + "phases": "BN", + "to": "l3160113" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069514", + "length": "23.7761", + "name": "line_ln6171506-1", + "phases": "AN", + "to": "p827548" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p895105", + "length": "32.4333", + "name": "line_ln6134417-2", + "phases": "AN", + "to": "n1142110" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1142110", + "length": "29.2652", + "name": "line_ln6134417-3", + "phases": "AN", + "to": "l2673316" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137961", + "length": "404.0814", + "name": "line_ln6301772-3", + "phases": "AN", + "to": "l3104133" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026935", + "length": "300.0929", + "name": "line_ln5865239-1", + "phases": "BN", + "to": "l2935556" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026320", + "length": "240.9853", + "name": "line_ln6138611-1", + "phases": "BN", + "to": "l3104130" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3160108", + "length": "192.4131", + "name": "line_ln6108156-1", + "phases": "BN", + "to": "l3029510" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047314", + "length": "63.3856", + "name": "line_ln6301772-2", + "phases": "AN", + "to": "n1137961" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026830", + "length": "9.0484", + "name": "line_ln5928545-1", + "phases": "CN", + "to": "p827511" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069192", + "length": "180.7519", + "name": "line_ln5804793-1", + "phases": "AN", + "to": "m1069191" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209753", + "length": "675.8795", + "name": "line_ln5866267-1", + "phases": "BN", + "to": "m1209748" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108315", + "length": "38.0823", + "name": "line_ln6332133-1", + "phases": "CN", + "to": "p860843" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3949157", + "length": "160.9836", + "name": "line_ln6991379-2", + "phases": "AN", + "to": "l3727711" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026744", + "length": "552.4778", + "name": "line_ln5835150-1", + "phases": "ABCN", + "to": "m1026724" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166356", + "length": "167.1554", + "name": "line_ln6078810-1", + "phases": "AN", + "to": "l2730187" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3727711", + "length": "139.6416", + "name": "line_ln6991379-4", + "phases": "AN", + "to": "l3727712" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047552", + "length": "28.7631", + "name": "line_ln6292466-1", + "phases": "BN", + "to": "p827529" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1027002", + "length": "300.7900", + "name": "line_ln6199518-1", + "phases": "ABCN", + "to": "l2673313" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1125979", + "length": "298.1567", + "name": "line_ln5957413-1", + "phases": "CN", + "to": "l2917255" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2839305", + "length": "331.0724", + "name": "line_ln5712498-1", + "phases": "AN", + "to": "m1166361" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1136363", + "length": "184.1536", + "name": "line_ln6290240-2", + "phases": "ABCN", + "to": "r18245" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166386", + "length": "656.1756", + "name": "line_ln6261020-1", + "phases": "CN", + "to": "l2898515" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069564", + "length": "117.8675", + "name": "line_ln6290240-3", + "phases": "ABCN", + "to": "n1136363" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2879074", + "length": "242.9692", + "name": "line_ln5714050-1", + "phases": "AN", + "to": "l3122820" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047368", + "length": "208.7599", + "name": "line_ln6350548-1", + "phases": "BN", + "to": "l2748130" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069202", + "length": "69.2928", + "name": "line_ln6017296-1", + "phases": "CN", + "to": "l2785524" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3160103", + "length": "78.8841", + "name": "line_ln5744335-1", + "phases": "ABCN", + "to": "m1026950" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026670", + "length": "156.9190", + "name": "line_ln6380818-1", + "phases": "ABCN", + "to": "m1026662" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3231255", + "length": "84.3936", + "name": "line_ln5527264-8", + "phases": "ABCN", + "to": "n1144663" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1144663", + "length": "83.5482", + "name": "line_ln5527264-7", + "phases": "ABCN", + "to": "m1089215" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3254234", + "length": "271.8348", + "name": "line_ln6077802-1", + "phases": "BN", + "to": "l3104114" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2973150", + "length": "310.8869", + "name": "line_ln5774450-1", + "phases": "AN", + "to": "m1047733" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000705", + "length": "158.2381", + "name": "line_ln2000706-1", + "phases": "BN", + "to": "m2000706" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069310", + "length": "1.8394", + "name": "line_ln5486729-1", + "phases": "ABCN", + "to": "m1069311" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2785546", + "length": "390.6958", + "name": "line_ln6376200-2", + "phases": "CN", + "to": "m1026810" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1108380", + "length": "21.4618", + "name": "line_ln81048087-1", + "phases": "B", + "to": "p904452" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "d2000901_int", + "length": "158.2381", + "name": "line_ln2000902-1", + "phases": "CN", + "to": "m2000902" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2822865", + "length": "253.7941", + "name": "line_ln6411368-1", + "phases": "CN", + "to": "l2916606" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047750", + "length": "621.1769", + "name": "line_ln6349051-1", + "phases": "AN", + "to": "l2708293" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3082983", + "length": "75.8287", + "name": "line_ln6228303-1", + "phases": "BN", + "to": "m1069588" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089120", + "length": "190.0732", + "name": "line_ln5472360-1", + "phases": "ABCN", + "to": "m1089119" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "e206614", + "length": "76.2763", + "name": "line_ln6228303-2", + "phases": "BN", + "to": "l3082983" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001010", + "length": "158.2381", + "name": "line_ln2001011-1", + "phases": "BN", + "to": "m2001011" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166355", + "length": "367.4939", + "name": "line_ln6015891-1", + "phases": "AN", + "to": "l2858200" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009838", + "length": "133.9208", + "name": "line_ln6108121-1", + "phases": "BN", + "to": "l2804245" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108526", + "length": "31.5597", + "name": "line_ln6437384-1", + "phases": "CN", + "to": "p895075" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3729981", + "length": "109.9996", + "name": "line_ln6879075-2", + "phases": "AN", + "to": "l3632979" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069213", + "length": "516.1740", + "name": "line_ln6259999-1", + "phases": "ABCN", + "to": "m1069215" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026783", + "length": "96.2012", + "name": "line_ln6259999-2", + "phases": "AN", + "to": "n1140524" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1140524", + "length": "385.6779", + "name": "line_ln6259999-3", + "phases": "AN", + "to": "l3197641" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3066821", + "length": "208.2708", + "name": "line_ln5804812-1", + "phases": "AN", + "to": "m1009691" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026660", + "length": "1114.9021", + "name": "line_ln5895781-1", + "phases": "AN", + "to": "l3160106" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069384", + "length": "252.7979", + "name": "line_ln5683808-1", + "phases": "AN", + "to": "l2785514" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069208", + "length": "464.4419", + "name": "line_ln5593233-1", + "phases": "ABCN", + "to": "m1069213" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142880", + "length": "400.7440", + "name": "line_ln5803293-1", + "phases": "CN", + "to": "l2764411" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2764411", + "length": "180.1956", + "name": "line_ln5803293-2", + "phases": "CN", + "to": "l2767343" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026357", + "length": "191.9472", + "name": "line_ln5653492-1", + "phases": "CN", + "to": "l3178997" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026823", + "length": "214.1239", + "name": "line_ln6047598-1", + "phases": "CN", + "to": "l2879087" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m4122658", + "length": "5.4763", + "name": "line_ln5591731-3", + "phases": "ABCN", + "to": "l2933135" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108311", + "length": "291.4256", + "name": "line_ln6170302-1", + "phases": "ABCN", + "to": "d6170302-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2973151", + "length": "251.8477", + "name": "line_ln5472351-1", + "phases": "AN", + "to": "m1069187" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010015", + "length": "266.9984", + "name": "line_ln6409799-1", + "phases": "AN", + "to": "m1010014" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026972", + "length": "199.0720", + "name": "line_ln5926299-1", + "phases": "BN", + "to": "l2860483" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047471", + "length": "249.8715", + "name": "line_ln5532787-1", + "phases": "BN", + "to": "l2973180" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p829975", + "length": "40.8586", + "name": "line_ln6352834-1", + "phases": "CN", + "to": "l3160871" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108345", + "length": "127.0213", + "name": "line_ln5715018-1", + "phases": "CN", + "to": "m1108347" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr1/0_tpx_ln6229827-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027066", + "length": "40.200", + "name": "line_ln6229827-1", + "phases": "CN", + "to": "l2841645" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108535", + "length": "999.0619", + "name": "line_ln6167731-2", + "phases": "ABCN", + "to": "m1108534" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1139539", + "length": "387.1667", + "name": "line_ln5926309-3", + "phases": "AN", + "to": "l2710520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m3763623", + "length": "469.3288", + "name": "line_ln81353936-2", + "phases": "C", + "to": "l3645811" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3197631", + "length": "173.5395", + "name": "line_ln6047563-1", + "phases": "AN", + "to": "l2748127" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4_wpal_ln5686245-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "m1125919", + "length": "34.2754", + "name": "line_ln6171683-1", + "phases": "AN", + "to": "p829961" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l3645811", + "length": "18.7425", + "name": "line_ln81353936-3", + "phases": "C", + "to": "193-103041" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108534", + "length": "421.7653", + "name": "line_ln6167731-1", + "phases": "ABCN", + "to": "m1108526" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026656", + "length": "612.1344", + "name": "line_ln6322630-1", + "phases": "AN", + "to": "l2729428" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1137989", + "length": "118.0485", + "name": "line_ln5502526-3", + "phases": "CN", + "to": "l3122814" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047737", + "length": "38.6335", + "name": "line_ln5502526-2", + "phases": "CN", + "to": "n1137989" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1125974", + "length": "131.4407", + "name": "line_ln6260930-1", + "phases": "CN", + "to": "m1125979" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026925", + "length": "51.1042", + "name": "line_ln5986927-1", + "phases": "AN", + "to": "l2916599" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3027157", + "length": "362.4135", + "name": "line_ln6076346-1", + "phases": "ABCN", + "to": "l2973155" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069135", + "length": "94.7900", + "name": "line_ln5926309-2", + "phases": "AN", + "to": "n1139539" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000914", + "length": "158.2381", + "name": "line_ln2000915-1", + "phases": "CN", + "to": "m2000915" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_3w_cs_ln6043468-3", + "continuous_rating_B": "200.00", + "emergency_rating_B": "200.00", + "from": "n1142106", + "length": "85.9263", + "name": "line_ln6043468-3", + "phases": "BN", + "to": "l2936213" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_3w_cs_ln6043468-3", + "continuous_rating_B": "200.00", + "emergency_rating_B": "200.00", + "from": "p895082", + "length": "54.9478", + "name": "line_ln6043468-2", + "phases": "BN", + "to": "n1142106" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047338", + "length": "495.8364", + "name": "line_ln6169256-1", + "phases": "AN", + "to": "l2691953" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3254217", + "length": "202.9635", + "name": "line_ln6108143-1", + "phases": "ABCN", + "to": "m1026800" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108328", + "length": "119.5824", + "name": "line_ln6076248-1", + "phases": "CN", + "to": "l2767414" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069463", + "length": "7.6540", + "name": "line_ln5746549-1", + "phases": "BN", + "to": "m1069462" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009832", + "length": "118.2637", + "name": "line_ln6199505-1", + "phases": "BN", + "to": "l2860479" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1089113", + "length": "249.3881", + "name": "line_ln5835141-1", + "phases": "BN", + "to": "l2691946" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069565", + "length": "58.9521", + "name": "line_ln5472386-1", + "phases": "BN", + "to": "l3178988" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137003", + "length": "21.4357", + "name": "line_ln6229795-2", + "phases": "AN", + "to": "l2935555" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009784", + "length": "199.5001", + "name": "line_ln5501004-1", + "phases": "ABCN", + "to": "m1009770" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047713", + "length": "31.5486", + "name": "line_ln6229795-3", + "phases": "AN", + "to": "n1137003" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125978", + "length": "254.6899", + "name": "line_ln6286261-1", + "phases": "BN", + "to": "m1125982" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3197641", + "length": "427.7555", + "name": "line_ln5502539-1", + "phases": "AN", + "to": "l2973161" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3104155", + "length": "209.1141", + "name": "line_ln5562961-1", + "phases": "ABCN", + "to": "m1069456" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2973153", + "length": "34.5424", + "name": "line_ln6380809-2", + "phases": "ABCN", + "to": "n1136998" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125994", + "length": "349.3076", + "name": "line_ln5775438-1", + "phases": "ABCN", + "to": "m1125997" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069175", + "length": "251.0187", + "name": "line_ln5774463-1", + "phases": "CN", + "to": "l3197637" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047490", + "length": "237.7077", + "name": "line_ln6047576-1", + "phases": "ABCN", + "to": "l2726973" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026907", + "length": "270.2730", + "name": "line_ln5916435-1", + "phases": "BN", + "to": "p875742" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2990828", + "length": "700.7450", + "name": "line_ln8979259-1", + "phases": "ABCN", + "to": "l2841619" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026702", + "length": "163.7076", + "name": "line_ln5653470-1", + "phases": "ABCN", + "to": "l2729414" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p860843", + "length": "130.5385", + "name": "line_ln5957502-1", + "phases": "CN", + "to": "l3179682" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108335", + "length": "657.9772", + "name": "line_ln5625542-1", + "phases": "CN", + "to": "m1108340" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166393", + "length": "405.4388", + "name": "line_ln5894226-3", + "phases": "CN", + "to": "l2745811" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2727008", + "length": "614.1295", + "name": "line_ln6440071-1", + "phases": "BN", + "to": "m1069629" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125905", + "length": "431.2216", + "name": "line_ln6170292-1", + "phases": "BN", + "to": "l2917310" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047368", + "length": "138.7250", + "name": "line_ln5472373-1", + "phases": "BN", + "to": "l2785528" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1136998", + "length": "219.2522", + "name": "line_ln6380809-3", + "phases": "ABCN", + "to": "m1047669" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2745811", + "length": "178.5924", + "name": "line_ln6228316-5", + "phases": "CN", + "to": "m4122657" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047580", + "length": "22.8381", + "name": "line_ln5843536-1", + "phases": "ABCN", + "to": "p828362" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026344", + "length": "966.6990", + "name": "line_ln5804803-1", + "phases": "AN", + "to": "m1026364" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108302", + "length": "115.4989", + "name": "line_ln6164818-1", + "phases": "BN", + "to": "l3236011" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009771", + "length": "244.9402", + "name": "line_ln6167753-1", + "phases": "BN", + "to": "l2914323" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026363", + "length": "293.3935", + "name": "line_ln6229805-1", + "phases": "CN", + "to": "l2897779" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047346", + "length": "141.5543", + "name": "line_ln5865248-1", + "phases": "ABCN", + "to": "m1047345" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008753", + "length": "283.0691", + "name": "line_ln5623389-1", + "phases": "BN", + "to": "l3141390" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx1/0_tpx_ln5562952-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1069555", + "length": "148.6485", + "name": "line_ln5593246-1", + "phases": "BN", + "to": "m1069557" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2933135", + "length": "246.4160", + "name": "line_ln5591731-1", + "phases": "ABCN", + "to": "m1108484" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3083019", + "length": "94.2325", + "name": "line_ln6106658-1", + "phases": "AN", + "to": "m1027080" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142818", + "length": "305.6182", + "name": "line_ln6200532-1", + "phases": "ABCN", + "to": "l2955074" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008743", + "length": "216.4264", + "name": "line_ln5804780-1", + "phases": "BN", + "to": "l3104115" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069597", + "length": "333.5780", + "name": "line_ln6108165-1", + "phases": "BN", + "to": "l3197653" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2804283", + "length": "441.2577", + "name": "line_ln6017328-1", + "phases": "AN", + "to": "l2916627" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1136660", + "length": "129.9708", + "name": "line_ln5532752-3", + "phases": "AN", + "to": "l3010568" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047534", + "length": "32.5950", + "name": "line_ln5532752-2", + "phases": "AN", + "to": "n1136660" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3254218", + "length": "233.8074", + "name": "line_ln6199527-1", + "phases": "ABCN", + "to": "l2860490" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108356", + "length": "227.8037", + "name": "line_ln6139656-1", + "phases": "CN", + "to": "l2842390" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2804272", + "length": "260.7050", + "name": "line_ln6229818-1", + "phases": "BN", + "to": "l2841641" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m3327098", + "length": "655.5251", + "name": "line_ln6108130-6", + "phases": "BN", + "to": "l2691943" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3178974", + "length": "236.0199", + "name": "line_ln6108130-5", + "phases": "BN", + "to": "m3327098" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089158", + "length": "590.3205", + "name": "line_ln5956459-1", + "phases": "CN", + "to": "m1089162" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "d5712587-2_int", + "length": "308.5341", + "name": "line_ln5712587-2", + "phases": "AN", + "to": "l3083019" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027056", + "length": "104.1847", + "name": "line_ln5712587-3", + "phases": "AN", + "to": "n1144667" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069487", + "length": "224.9077", + "name": "line_ln6017287-1", + "phases": "CN", + "to": "l2954344" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009832", + "length": "312.9267", + "name": "line_ln5744326-1", + "phases": "BN", + "to": "m1009838" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1089213", + "length": "30.6809", + "name": "line_ln5861081-1", + "phases": "CN", + "to": "p895089" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089196", + "length": "350.5924", + "name": "line_ln5653452-1", + "phases": "ABCN", + "to": "m1089198" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047484", + "length": "193.8633", + "name": "line_ln6290205-1", + "phases": "ABCN", + "to": "l3010560" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089187", + "length": "180.2454", + "name": "line_ln6311089-1", + "phases": "ABCN", + "to": "m1089186" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1144668", + "length": "97.1474", + "name": "line_ln5965099-11", + "phases": "ABCN", + "to": "m4113347" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001210", + "length": "158.2381", + "name": "line_ln2001211-1", + "phases": "CN", + "to": "m2001211" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069350", + "length": "87.7562", + "name": "line_ln5965099-10", + "phases": "ABCN", + "to": "n1144668" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209758", + "length": "397.2803", + "name": "line_ln5624380-1", + "phases": "BN", + "to": "m1209753" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4_acsr_ln5589097-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "p895112", + "length": "84.0031", + "name": "line_ln5589097-1", + "phases": "AN", + "to": "l3048962" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089204", + "length": "176.4241", + "name": "line_ln5620694-1", + "phases": "AN", + "to": "l3157167" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2767340", + "length": "6.3565", + "name": "line_ln6506311-4", + "phases": "ABCN", + "to": "m3037449" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047766", + "length": "180.8842", + "name": "line_ln5683817-1", + "phases": "BN", + "to": "l3216344" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142851", + "length": "45.4595", + "name": "line_ln5558790-1", + "phases": "ABCN", + "to": "196-31070" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2991907", + "length": "187.6227", + "name": "line_ln6199514-1", + "phases": "AN", + "to": "m1069192" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069730", + "length": "117.5775", + "name": "line_ln5636753-1", + "phases": "BN", + "to": "l3159037" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108493", + "length": "122.0679", + "name": "line_ln6321372-3", + "phases": "ABCN", + "to": "n1142103" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p829986", + "length": "70.4096", + "name": "line_ln5837516-1", + "phases": "AN", + "to": "m1125904" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1142103", + "length": "36.7077", + "name": "line_ln6321372-2", + "phases": "ABCN", + "to": "l3104830" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166394", + "length": "216.4705", + "name": "line_ln6230698-1", + "phases": "CN", + "to": "m1166398" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3552667", + "length": "653.2207", + "name": "line_ln5987955-3", + "phases": "CN", + "to": "l3160862" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1142873", + "length": "181.4936", + "name": "line_ln5987955-2", + "phases": "CN", + "to": "l3552667" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2970845", + "length": "288.1765", + "name": "line_ln5501096-1", + "phases": "BN", + "to": "l2897771" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2955074", + "length": "292.5181", + "name": "line_ln5594239-1", + "phases": "ABCN", + "to": "l3030199" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047824", + "length": "1364.0031", + "name": "line_ln6350531-1", + "phases": "BN", + "to": "m1047834" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "m1047522", + "length": "29.5395", + "name": "line_ln6411386-2", + "phases": "AN", + "to": "n1136664" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069588", + "length": "37.5536", + "name": "line_ln6077796-1", + "phases": "BN", + "to": "l2804270" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "n1136664", + "length": "26.6857", + "name": "line_ln6411386-3", + "phases": "AN", + "to": "l3085401" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026931", + "length": "184.8143", + "name": "line_ln5472342-1", + "phases": "AN", + "to": "l3216337" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2804248", + "length": "194.8036", + "name": "line_ln5835128-1", + "phases": "BN", + "to": "m1027005" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3216348", + "length": "617.8429", + "name": "line_ln6320339-1", + "phases": "AN", + "to": "l2841627" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3047060", + "length": "266.5589", + "name": "line_ln6153059-1", + "phases": "ABCN", + "to": "l3048221" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4_wpal_ln5686245-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "l2692654", + "length": "7.7822", + "name": "line_ln5957492-1", + "phases": "AN", + "to": "m1125929" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069464", + "length": "263.5708", + "name": "line_ln5593251-1", + "phases": "ABCN", + "to": "m1069461" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_3w_cs_ln6043468-3", + "continuous_rating_B": "200.00", + "emergency_rating_B": "200.00", + "from": "m1108532", + "length": "35.7986", + "name": "line_ln5830952-1", + "phases": "BN", + "to": "p895082" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827506", + "length": "23.1305", + "name": "line_ln6171502-1", + "phases": "AN", + "to": "m1069469" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m3763619", + "length": "47.1994", + "name": "line_ln6896673-6", + "phases": "ABCN", + "to": "m3763624" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026877", + "length": "402.1833", + "name": "line_ln6138615-1", + "phases": "AN", + "to": "l2729413" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m3763624", + "length": "17.9002", + "name": "line_ln6896673-7", + "phases": "ABCN", + "to": "m3763618" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1137001", + "length": "162.8399", + "name": "line_ln5924696-3", + "phases": "AN", + "to": "l2929261" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000905", + "length": "158.2381", + "name": "line_ln2000906-1", + "phases": "CN", + "to": "m2000906" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047702", + "length": "139.9706", + "name": "line_ln5924696-2", + "phases": "AN", + "to": "n1137001" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047485", + "length": "645.7020", + "name": "line_ln5829831-1", + "phases": "ABCN", + "to": "l3122821" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1108395", + "length": "282.4792", + "name": "line_ln6364659-1", + "phases": "ABCN", + "to": "l2728247" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047835", + "length": "635.6389", + "name": "line_ln5926290-1", + "phases": "BN", + "to": "m1047836" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3195327", + "length": "226.1117", + "name": "line_ln6258471-1", + "phases": "AN", + "to": "l3139103" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p827575", + "length": "16.6823", + "name": "line_ln5776673-1", + "phases": "CN", + "to": "m1069437" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026463", + "length": "134.3368", + "name": "line_ln6380799-1", + "phases": "BN", + "to": "m1026468" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047309", + "length": "14.9972", + "name": "line_ln6049825-1", + "phases": "ABCN", + "to": "d6049825-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209788", + "length": "351.7394", + "name": "line_ln6351519-1", + "phases": "ABCN", + "to": "m1209787" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047335", + "length": "194.8645", + "name": "line_ln6077783-1", + "phases": "AN", + "to": "l2954354" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166400", + "length": "241.9037", + "name": "line_ln6103754-1", + "phases": "CN", + "to": "l3179637" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069376", + "length": "31.5847", + "name": "line_ln5867449-1", + "phases": "ABCN", + "to": "p827563" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l3645809", + "length": "484.3841", + "name": "line_ln81354564-8", + "phases": "C", + "to": "l3645810" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln6019479-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "l2914324", + "length": "351.8392", + "name": "line_ln6047585-1", + "phases": "CN", + "to": "m1026805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3104122", + "length": "289.7381", + "name": "line_ln5986962-1", + "phases": "AN", + "to": "l2804283" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m4113347", + "length": "49.2996", + "name": "line_ln7061777-3", + "phases": "CN", + "to": "n1138606" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827573", + "length": "69.0895", + "name": "line_ln6383061-1", + "phases": "BN", + "to": "l2710542" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p1121283", + "length": "10.6117", + "name": "line_ln81354564-4", + "phases": "C", + "to": "221-559682" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2991919", + "length": "279.8266", + "name": "line_ln5744339-1", + "phases": "AN", + "to": "m1026361" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089162", + "length": "354.6057", + "name": "line_ln6320326-1", + "phases": "CN", + "to": "l3197626" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1136671", + "length": "140.1646", + "name": "line_ln5752776-3", + "phases": "ABCN", + "to": "m1047593" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "p828362", + "length": "20.4457", + "name": "line_ln5752776-2", + "phases": "ABCN", + "to": "n1136671" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1136669", + "length": "198.7252", + "name": "line_ln6350544-3", + "phases": "ABCN", + "to": "l3103822" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047552", + "length": "94.0267", + "name": "line_ln6350544-2", + "phases": "ABCN", + "to": "n1136669" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2897779", + "length": "316.7869", + "name": "line_ln5714054-1", + "phases": "CN", + "to": "l2804261" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1089097", + "length": "468.9415", + "name": "line_ln5803267-1", + "phases": "BN", + "to": "m1108268" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1138606", + "length": "105.8303", + "name": "line_ln7061777-4", + "phases": "CN", + "to": "m1069335" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p827507", + "length": "36.8432", + "name": "line_ln6079949-2", + "phases": "CN", + "to": "n1137956" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3216346", + "length": "430.9737", + "name": "line_ln5621834-1", + "phases": "ABCN", + "to": "l2858163" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1137956", + "length": "166.6514", + "name": "line_ln6079949-3", + "phases": "CN", + "to": "l3141396" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l3645810", + "length": "32.1743", + "name": "line_ln81354564-9", + "phases": "C", + "to": "m3763623" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069457", + "length": "35.8999", + "name": "line_ln6352701-1", + "phases": "ABCN", + "to": "e182745" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001014", + "length": "158.2381", + "name": "line_ln2001015-1", + "phases": "BN", + "to": "m2001015" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2954348", + "length": "255.8138", + "name": "line_ln5562926-1", + "phases": "AN", + "to": "l2841615" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3066812", + "length": "227.1708", + "name": "line_ln5926300-1", + "phases": "AN", + "to": "l2841622" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089141", + "length": "362.7016", + "name": "line_ln6259995-1", + "phases": "ABCN", + "to": "l3160107" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069364", + "length": "151.5872", + "name": "line_ln6411364-1", + "phases": "CN", + "to": "m1069365" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047434", + "length": "275.1566", + "name": "line_ln5472364-1", + "phases": "AN", + "to": "m1047435" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2710514", + "length": "504.4597", + "name": "line_ln5623417-1", + "phases": "BN", + "to": "m1047787" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l2916625", + "length": "456.9982", + "name": "line_ln81048230-1", + "phases": "B", + "to": "l3139598" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026366", + "length": "196.5563", + "name": "line_ln6290218-1", + "phases": "AN", + "to": "l2860489" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p859135", + "length": "22.2726", + "name": "line_ln6288693-1", + "phases": "AN", + "to": "m1047702" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047737", + "length": "531.9166", + "name": "line_ln5742898-1", + "phases": "ABCN", + "to": "l3027157" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026777", + "length": "202.1688", + "name": "line_ln5773980-1", + "phases": "CN", + "to": "l3233353" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2001000", + "length": "421.2904", + "name": "line_ln2001100-1", + "phases": "ABCN", + "to": "m2001100" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089096", + "length": "286.9073", + "name": "line_ln5683804-1", + "phases": "CN", + "to": "m1089093" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l2763811", + "length": "330.7410", + "name": "line_ln81043320-2", + "phases": "A", + "to": "l2763812" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2952003", + "length": "351.8623", + "name": "line_ln5561437-1", + "phases": "ABCN", + "to": "m1108381" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l2763812", + "length": "607.6806", + "name": "line_ln81043320-3", + "phases": "A", + "to": "l2951995" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1069328", + "length": "629.7497", + "name": "line_ln81043320-1", + "phases": "A", + "to": "l2763811" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l2951995", + "length": "496.5919", + "name": "line_ln81043320-4", + "phases": "A", + "to": "l3101194" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026939", + "length": "80.6309", + "name": "line_ln5623398-1", + "phases": "BN", + "to": "l3104124" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_3", + "length": "2460.6299", + "name": "line_hvmv69s1s2-3", + "phases": "ABCN", + "to": "hvmv69s1s2_4" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_2", + "length": "2460.6299", + "name": "line_hvmv69s1s2-2", + "phases": "ABCN", + "to": "hvmv69s1s2_3" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_5", + "length": "6561.6798", + "name": "line_hvmv69s1s2-5", + "phases": "ABCN", + "to": "hvmv69s1s2_6" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_4", + "length": "6561.6798", + "name": "line_hvmv69s1s2-4", + "phases": "ABCN", + "to": "hvmv69s1s2_5" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_1", + "length": "3280.8399", + "name": "line_hvmv69s1s2-1", + "phases": "ABCN", + "to": "hvmv69s1s2_2" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "d2001001_int", + "length": "158.2381", + "name": "line_ln2001002-1", + "phases": "BN", + "to": "m2001002" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2691973", + "length": "111.7040", + "name": "line_ln5865270-1", + "phases": "AN", + "to": "m1026890" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2691944", + "length": "297.4028", + "name": "line_ln5472355-1", + "phases": "AN", + "to": "l2673312" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047420", + "length": "438.4849", + "name": "line_ln6411377-1", + "phases": "AN", + "to": "l2820556" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026347", + "length": "167.1517", + "name": "line_ln5623408-1", + "phases": "ABCN", + "to": "m1026341" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026760", + "length": "377.7376", + "name": "line_ln6229809-1", + "phases": "ABCN", + "to": "m1026744" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3048890", + "length": "203.4246", + "name": "line_ln6048525-1", + "phases": "CN", + "to": "m1166402" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m3036170", + "length": "53.3630", + "name": "line_ln6505950-1", + "phases": "ABCN", + "to": "m1026670" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186064", + "length": "16.8845", + "name": "line_ln5654480-1", + "phases": "ABCN", + "to": "m1186063" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069428", + "length": "251.5122", + "name": "line_ln6047604-1", + "phases": "ABCN", + "to": "m1069424" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108361", + "length": "417.5564", + "name": "line_ln6199558-1", + "phases": "CN", + "to": "m1089155" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2673326", + "length": "145.2524", + "name": "line_ln6320348-1", + "phases": "BN", + "to": "l2691938" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026848", + "length": "222.8653", + "name": "line_ln5653461-1", + "phases": "AN", + "to": "m1026847" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1209823", + "length": "302.2674", + "name": "line_ln5624291-1", + "phases": "ABCN", + "to": "m1209824" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3008279", + "length": "304.0445", + "name": "line_ln5712578-1", + "phases": "AN", + "to": "l2785537" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p901912", + "length": "122.7824", + "name": "line_ln6349077-1", + "phases": "BN", + "to": "l3195365" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_7", + "length": "3280.8399", + "name": "line_hvmv69s1s2-7", + "phases": "ABCN", + "to": "hvmv69s1s2_8" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_6", + "length": "6561.6798", + "name": "line_hvmv69s1s2-6", + "phases": "ABCN", + "to": "hvmv69s1s2_7" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1089132", + "length": "124.7876", + "name": "line_ln5956468-1", + "phases": "CN", + "to": "l2691950" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108489", + "length": "80.6557", + "name": "line_ln5533710-1", + "phases": "AN", + "to": "m1108492" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_9", + "length": "3280.8399", + "name": "line_hvmv69s1s2-9", + "phases": "ABCN", + "to": "hvmv69s1s2_10" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_8", + "length": "3280.8399", + "name": "line_hvmv69s1s2-8", + "phases": "ABCN", + "to": "hvmv69s1s2_9" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108490", + "length": "144.7282", + "name": "line_ln5927298-1", + "phases": "ABCN", + "to": "l3142049" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1139259", + "length": "116.8984", + "name": "line_ln5744370-3", + "phases": "CN", + "to": "l2710543" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1108501", + "length": "188.2163", + "name": "line_ln6137015-1", + "phases": "AN", + "to": "m1108499" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827554", + "length": "25.8487", + "name": "line_ln6258440-1", + "phases": "BN", + "to": "m1047769" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069437", + "length": "148.7518", + "name": "line_ln5744370-2", + "phases": "CN", + "to": "n1139259" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047403", + "length": "225.0011", + "name": "line_ln6207101-1", + "phases": "AN", + "to": "m1047404" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047497", + "length": "26.1309", + "name": "line_ln5682337-1", + "phases": "BN", + "to": "p901912" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3178971", + "length": "130.6121", + "name": "line_ln6138602-1", + "phases": "AN", + "to": "l2879067" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2691939", + "length": "204.2736", + "name": "line_ln5714041-1", + "phases": "BN", + "to": "l2860478" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6320366-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026792", + "length": "567.0685", + "name": "line_ln5652982-1", + "phases": "CN", + "to": "l2821010" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108295", + "length": "274.7327", + "name": "line_ln6109158-1", + "phases": "ABCN", + "to": "l2936279" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026662", + "length": "107.8891", + "name": "line_ln6199523-2", + "phases": "CN", + "to": "n1140831" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1140831", + "length": "400.8076", + "name": "line_ln6199523-3", + "phases": "CN", + "to": "l3141402" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026874", + "length": "341.4809", + "name": "line_ln6229799-1", + "phases": "AN", + "to": "l3197638" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3784018", + "length": "158.5263", + "name": "line_ln6077815-5", + "phases": "ABCN", + "to": "n1136028" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2973155", + "length": "209.9994", + "name": "line_ln6077815-4", + "phases": "ABCN", + "to": "l3784018" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l3214549", + "length": "26.2528", + "name": "line_ln81048110-3", + "phases": "A", + "to": "m1108393" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l2802481", + "length": "292.0375", + "name": "line_ln81048110-2", + "phases": "A", + "to": "l3214549" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1136028", + "length": "25.5993", + "name": "line_ln6077815-3", + "phases": "ABCN", + "to": "l2876797" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1136365", + "length": "97.8384", + "name": "line_ln5714063-2", + "phases": "ABCN", + "to": "m1069517" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069516", + "length": "168.6767", + "name": "line_ln5714063-3", + "phases": "ABCN", + "to": "n1136365" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1108423", + "length": "135.1265", + "name": "line_ln81048110-1", + "phases": "A", + "to": "l2802481" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1009698", + "length": "165.6349", + "name": "line_ln5773028-1", + "phases": "AN", + "to": "l3156034" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125982", + "length": "200.0005", + "name": "line_ln5588822-1", + "phases": "BN", + "to": "l3029055" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125944", + "length": "569.2057", + "name": "line_ln6348948-1", + "phases": "ABCN", + "to": "m1125947" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069613", + "length": "324.3558", + "name": "line_ln6290227-1", + "phases": "BN", + "to": "m1069597" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2842384", + "length": "222.3513", + "name": "line_ln5805762-1", + "phases": "ABCN", + "to": "m1149236" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000411", + "length": "158.2381", + "name": "line_ln2000412-1", + "phases": "AN", + "to": "m2000412" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3101827", + "length": "493.8388", + "name": "line_ln5591811-1", + "phases": "CN", + "to": "m1108540" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069169", + "length": "36.8585", + "name": "line_ln6413565-1", + "phases": "AN", + "to": "p827508" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1134476", + "length": "130.9107", + "name": "line_ln6247127-2", + "phases": "ABCN", + "to": "l3066814" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069499", + "length": "110.8892", + "name": "line_ln6247127-3", + "phases": "ABCN", + "to": "n1134476" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125940", + "length": "582.4009", + "name": "line_ln5775469-1", + "phases": "BN", + "to": "l3254915" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1125994", + "length": "11.1985", + "name": "line_ln5867591-1", + "phases": "ABCN", + "to": "d5867591-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "l3253570", + "length": "291.0369", + "name": "line_ln6359077-2", + "phases": "ABCN", + "to": "l2937757" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "l2937757", + "length": "265.2627", + "name": "line_ln6359077-1", + "phases": "ABCN", + "to": "l3067448" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008742", + "length": "91.2244", + "name": "line_ln5895768-1", + "phases": "BN", + "to": "l3029495" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047732", + "length": "39.2111", + "name": "line_ln5682448-2", + "phases": "CN", + "to": "n1137987" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1137987", + "length": "128.2705", + "name": "line_ln5682448-3", + "phases": "CN", + "to": "l3027156" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026941", + "length": "382.5806", + "name": "line_ln6077770-1", + "phases": "AN", + "to": "l3197618" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009726", + "length": "238.6456", + "name": "line_ln5833652-1", + "phases": "ABCN", + "to": "m1009724" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "196-29520", + "length": "212.1015", + "name": "line_ln5800830-1", + "phases": "ABCN", + "to": "l3160109" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069505", + "length": "102.7858", + "name": "line_ln5653479-1", + "phases": "ABCN", + "to": "m1069509" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p901941", + "length": "160.9522", + "name": "line_ln5651988-1", + "phases": "AN", + "to": "l3251799" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047826", + "length": "194.0111", + "name": "line_ln5742816-1", + "phases": "BN", + "to": "m1047825" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3036162", + "length": "189.5831", + "name": "line_ln5563909-2", + "phases": "BN", + "to": "l2879753" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2/0_acsr1/0_tpx_ln5866260-1", + "continuous_rating_C": "225.00", + "emergency_rating_C": "300.00", + "from": "m1142839", + "length": "137.9641", + "name": "line_ln5866260-1", + "phases": "CN", + "to": "l3067507" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2710508", + "length": "455.9082", + "name": "line_ln5562920-1", + "phases": "BN", + "to": "l2822860" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "d6138609-1_int", + "length": "213.3883", + "name": "line_ln6138609-1", + "phases": "ABCN", + "to": "l2691951" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026997", + "length": "69.2830", + "name": "line_ln5744360-1", + "phases": "BN", + "to": "l3216361" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5744357-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3178977", + "length": "195.6623", + "name": "line_ln5895777-1", + "phases": "AN", + "to": "l3160105" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1125905", + "length": "797.7942", + "name": "line_ln6505937-2", + "phases": "BN", + "to": "l3142079" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1138593", + "length": "134.7077", + "name": "line_ln6411394-3", + "phases": "AN", + "to": "l2804262" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026859", + "length": "55.9744", + "name": "line_ln6411394-2", + "phases": "AN", + "to": "n1138593" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108261", + "length": "160.2717", + "name": "line_ln6320323-1", + "phases": "BN", + "to": "m1108260" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026387", + "length": "309.9874", + "name": "line_ln5835147-1", + "phases": "AN", + "to": "l3085402" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1142819", + "length": "8.2335", + "name": "line_ln5625715-1", + "phases": "BN", + "to": "p829960" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3160123", + "length": "301.0830", + "name": "line_ln6199556-1", + "phases": "AN", + "to": "l2897805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069469", + "length": "70.0389", + "name": "line_ln5683813-1", + "phases": "AN", + "to": "m1069467" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1047612", + "length": "17.6235", + "name": "line_ln8961760-1", + "phases": "C", + "to": "p828360" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026872", + "length": "299.2513", + "name": "line_ln5502543-2", + "phases": "ABCN", + "to": "d5502543-2_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "p827530", + "length": "22.3769", + "name": "line_ln8945013-1", + "phases": "A", + "to": "221-240991" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3179678", + "length": "386.3635", + "name": "line_ln6079946-1", + "phases": "ABCN", + "to": "l2804249" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3195315", + "length": "276.1570", + "name": "line_ln6015788-2", + "phases": "AN", + "to": "m1069181" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209752", + "length": "516.5925", + "name": "line_ln6200528-1", + "phases": "BN", + "to": "m1209751" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089203", + "length": "183.0138", + "name": "line_ln5986921-1", + "phases": "ABCN", + "to": "m1089207" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069191", + "length": "155.4463", + "name": "line_ln6015788-1", + "phases": "AN", + "to": "l3195315" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2804250", + "length": "226.7636", + "name": "line_ln5531326-1", + "phases": "CN", + "to": "l2820583" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2804256", + "length": "177.0438", + "name": "line_ln6169250-1", + "phases": "ABCN", + "to": "m1026960" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1140819", + "length": "88.3550", + "name": "line_ln6347196-2", + "phases": "ABCN", + "to": "m1026700" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2955047", + "length": "156.3391", + "name": "line_ln5594212-1", + "phases": "ABCN", + "to": "l3179646" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p827501", + "length": "14.1267", + "name": "line_ln6231992-3", + "phases": "ABCN", + "to": "n1140516" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069564", + "length": "125.9561", + "name": "line_ln6041764-1", + "phases": "AN", + "to": "l3104144" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2973167", + "length": "226.3412", + "name": "line_ln6347196-3", + "phases": "ABCN", + "to": "n1140819" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1140516", + "length": "413.3409", + "name": "line_ln6231992-2", + "phases": "ABCN", + "to": "m1089176" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1108258", + "length": "149.9981", + "name": "line_ln5500978-1", + "phases": "BN", + "to": "l3195318" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047825", + "length": "282.3593", + "name": "line_ln5742816-2", + "phases": "BN", + "to": "m1069731" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3030203", + "length": "177.7100", + "name": "line_ln5957496-1", + "phases": "CN", + "to": "l3179673" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027013", + "length": "33.0816", + "name": "line_ln5863699-1", + "phases": "BN", + "to": "p901905" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001300", + "length": "158.2381", + "name": "line_ln2001301-1", + "phases": "AN", + "to": "m2001301" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2952007", + "length": "415.1787", + "name": "line_ln5894230-1", + "phases": "CN", + "to": "l2861158" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3104134", + "length": "152.5305", + "name": "line_ln5472369-1", + "phases": "ABCN", + "to": "m1047346" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m3037455", + "length": "233.9571", + "name": "line_ln5927379-2", + "phases": "CN", + "to": "l3217052" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069148", + "length": "90.2965", + "name": "line_ln5865231-1", + "phases": "CN", + "to": "l2785518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166395", + "length": "25.3822", + "name": "line_ln6142227-1", + "phases": "CN", + "to": "m1166396" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026854", + "length": "430.5370", + "name": "line_ln6380822-1", + "phases": "ABCN", + "to": "m1026852" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "d5653457-1_int", + "length": "281.1952", + "name": "line_ln5653457-1", + "phases": "ABCN", + "to": "m1026891" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069557", + "length": "231.7329", + "name": "line_ln5502556-1", + "phases": "BN", + "to": "m1069558" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1142099", + "length": "114.4182", + "name": "line_ln5920279-4", + "phases": "ABCN", + "to": "n1142100" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3178978", + "length": "545.1464", + "name": "line_ln5683826-1", + "phases": "AN", + "to": "m1047432" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089115", + "length": "235.6243", + "name": "line_ln6199521-1", + "phases": "CN", + "to": "l2991911" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1142100", + "length": "43.6121", + "name": "line_ln5920279-2", + "phases": "ABCN", + "to": "m1108490" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001202", + "length": "158.2381", + "name": "line_ln2001203-1", + "phases": "CN", + "to": "m2001203" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2730106", + "length": "73.3892", + "name": "line_ln5920279-5", + "phases": "ABCN", + "to": "n1142099" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p827576", + "length": "31.5525", + "name": "line_ln5746550-2", + "phases": "BN", + "to": "n1139256" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108402", + "length": "194.7087", + "name": "line_ln6422013-1", + "phases": "ABCN", + "to": "m1108403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026784", + "length": "51.5380", + "name": "line_ln5562933-3", + "phases": "CN", + "to": "n1140523" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1140523", + "length": "71.7126", + "name": "line_ln5562933-2", + "phases": "CN", + "to": "l2766724" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "n1139256", + "length": "208.8205", + "name": "line_ln5746550-3", + "phases": "BN", + "to": "l2973178" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5744357-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069213", + "length": "134.2713", + "name": "line_ln5623401-1", + "phases": "AN", + "to": "l3178977" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2973144", + "length": "550.6881", + "name": "line_ln5706733-1", + "phases": "CN", + "to": "l2724120" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1009720", + "length": "319.3397", + "name": "line_ln5804809-1", + "phases": "AN", + "to": "l3178982" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108368", + "length": "230.8129", + "name": "line_ln5926294-1", + "phases": "CN", + "to": "l3085393" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001313", + "length": "158.2381", + "name": "line_ln2001314-1", + "phases": "AN", + "to": "m2001314" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3235242", + "length": "451.5061", + "name": "line_ln5623391-1", + "phases": "CN", + "to": "m1089195" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2724120", + "length": "16.7527", + "name": "line_ln5706733-2", + "phases": "CN", + "to": "m1069149" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1108433", + "length": "438.1140", + "name": "line_ln81048090-1", + "phases": "B", + "to": "228-1048090-1_int" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001006", + "length": "158.2381", + "name": "line_ln2001007-1", + "phases": "BN", + "to": "m2001007" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010011", + "length": "265.9987", + "name": "line_ln6106584-1", + "phases": "AN", + "to": "m1010008" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1009809", + "length": "296.3194", + "name": "line_ln6077787-1", + "phases": "CN", + "to": "l2710525" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108507", + "length": "203.9994", + "name": "line_ln6206103-1", + "phases": "AN", + "to": "l3108449" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047442", + "length": "211.6151", + "name": "line_ln5472356-1", + "phases": "BN", + "to": "l3235250" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "150.00", + "continuous_rating_B": "150.00", + "continuous_rating_C": "150.00", + "emergency_rating_A": "150.00", + "emergency_rating_B": "150.00", + "emergency_rating_C": "150.00", + "from": "m1047672", + "length": "126.3833", + "name": "line_ln6411372-1", + "phases": "ABCN", + "to": "l2822866" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047728", + "length": "311.3993", + "name": "line_ln6108129-1", + "phases": "BN", + "to": "l2804255" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_2ph_h-2_acsrx2_acsr2_acsr_ln5637597-1", + "continuous_rating_A": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_C": "175.00", + "from": "m1069311", + "length": "271.5456", + "name": "line_ln5637597-1", + "phases": "ACN", + "to": "m1069285" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_wpalxx2_wpal_ln6409800-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1009726", + "length": "128.3298", + "name": "line_ln6409800-1", + "phases": "AN", + "to": "l3101789" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1069250", + "length": "67.4379", + "name": "line_ln8979371-1", + "phases": "C", + "to": "l2690868" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2690868", + "length": "37.6003", + "name": "line_ln8979371-2", + "phases": "C", + "to": "228-979371-2_int" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026330", + "length": "98.7141", + "name": "line_ln6047581-1", + "phases": "BN", + "to": "l2766726" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009840", + "length": "179.8843", + "name": "line_ln5502521-1", + "phases": "BN", + "to": "l2991901" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142863", + "length": "220.3141", + "name": "line_ln5836178-1", + "phases": "ABCN", + "to": "m1142865" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026925", + "length": "361.9230", + "name": "line_ln5926304-1", + "phases": "AN", + "to": "l3235249" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047722", + "length": "115.9987", + "name": "line_ln5863709-1", + "phases": "BN", + "to": "l3214064" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026949", + "length": "285.9999", + "name": "line_ln6259991-1", + "phases": "BN", + "to": "m1026951" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3104117", + "length": "412.6218", + "name": "line_ln5593218-1", + "phases": "CN", + "to": "m1069494" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000402", + "length": "158.2381", + "name": "line_ln2000403-1", + "phases": "AN", + "to": "m2000403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "630.00", + "continuous_rating_B": "630.00", + "continuous_rating_C": "630.00", + "emergency_rating_A": "630.00", + "emergency_rating_B": "630.00", + "emergency_rating_C": "630.00", + "from": "m1142843", + "length": "245.0563", + "name": "line_ln6381853-1", + "phases": "ABCN", + "to": "l2955077" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069412", + "length": "202.6285", + "name": "line_ln5502530-1", + "phases": "BN", + "to": "l3066813" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1147858", + "length": "173.5152", + "name": "line_ln5943422-4", + "phases": "CN", + "to": "l2991933" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2746587", + "length": "74.8762", + "name": "line_ln5943422-3", + "phases": "CN", + "to": "n1147858" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3216338", + "length": "192.1953", + "name": "line_ln6380800-1", + "phases": "BN", + "to": "l2973146" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p859694", + "length": "52.8032", + "name": "line_ln5943422-1", + "phases": "CN", + "to": "l2746587" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3198355", + "length": "363.5686", + "name": "line_ln6048642-1", + "phases": "BN", + "to": "l2805037" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026487", + "length": "31.3441", + "name": "line_ln5956476-1", + "phases": "BN", + "to": "l2897784" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009855", + "length": "384.1764", + "name": "line_ln6138618-1", + "phases": "BN", + "to": "l2991927" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5744357-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2860486", + "length": "331.2041", + "name": "line_ln6350540-1", + "phases": "AN", + "to": "l3141399" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1166377", + "length": "110.7603", + "name": "line_ln5992960-1", + "phases": "ABCN", + "to": "m1166376" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026726", + "length": "129.8445", + "name": "line_ln6286965-1", + "phases": "ABCN", + "to": "l2814529" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m3032980", + "length": "844.6338", + "name": "line_ln6504020-2", + "phases": "ABCN", + "to": "m3032977" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln6019479-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1026826", + "length": "274.2567", + "name": "line_ln6258470-1", + "phases": "CN", + "to": "l2952013" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3254206", + "length": "162.4430", + "name": "line_ln6259982-1", + "phases": "BN", + "to": "m1009827" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2729409", + "length": "284.6575", + "name": "line_ln5835138-1", + "phases": "BN", + "to": "l2841624" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047312", + "length": "49.7678", + "name": "line_ln6320367-3", + "phases": "ABCN", + "to": "n1137960" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047713", + "length": "361.5376", + "name": "line_ln6132680-1", + "phases": "ABCN", + "to": "m1047720" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1137960", + "length": "82.5199", + "name": "line_ln6320367-2", + "phases": "ABCN", + "to": "m1047309" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166362", + "length": "338.9136", + "name": "line_ln6078774-1", + "phases": "AN", + "to": "m1166355" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1138599", + "length": "207.3272", + "name": "line_ln6375549-3", + "phases": "ABCN", + "to": "l3181545" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649297", + "length": "208.8374", + "name": "line_ln6900591-6", + "phases": "AN", + "to": "l3649298" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069376", + "length": "72.1641", + "name": "line_ln6375549-4", + "phases": "ABCN", + "to": "n1138599" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1138603", + "length": "72.4415", + "name": "line_ln6375549-5", + "phases": "ABCN", + "to": "l3125349" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2991914", + "length": "116.9621", + "name": "line_ln5651975-1", + "phases": "ABCN", + "to": "m1047503" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186der480-1", + "length": "1640.4199", + "name": "line_ln1186der-1", + "phases": "ABCN", + "to": "m1186der-1" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3181545", + "length": "257.6932", + "name": "line_ln6375549-6", + "phases": "ABCN", + "to": "n1138603" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026906", + "length": "603.8226", + "name": "line_ln5683857-1", + "phases": "AN", + "to": "l2691973" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649298", + "length": "212.0840", + "name": "line_ln6900591-8", + "phases": "AN", + "to": "l3649299" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186der480-1", + "length": "1640.4199", + "name": "line_ln1186der-2", + "phases": "ABCN", + "to": "m1186der-2" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186der480-1", + "length": "1640.4199", + "name": "line_ln1186der-3", + "phases": "ABCN", + "to": "m1186der-3" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1047371", + "length": "8.0701", + "name": "line_ln8968081-1", + "phases": "B", + "to": "p841985" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026997", + "length": "197.8808", + "name": "line_ln5653488-1", + "phases": "ABCN", + "to": "m1027000" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000709", + "length": "158.2381", + "name": "line_ln2000710-1", + "phases": "BN", + "to": "m2000710" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069526", + "length": "126.3206", + "name": "line_ln5562946-1", + "phases": "BN", + "to": "l2673331" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089173", + "length": "275.8782", + "name": "line_ln5714045-1", + "phases": "CN", + "to": "l2673307" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2897790", + "length": "231.0816", + "name": "line_ln5744351-1", + "phases": "CN", + "to": "l2935566" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2861218", + "length": "522.7618", + "name": "line_ln5958866-1", + "phases": "ABCN", + "to": "d5958866-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026364", + "length": "196.0519", + "name": "line_ln5895786-1", + "phases": "AN", + "to": "l3010570" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026357", + "length": "97.0941", + "name": "line_ln5532791-1", + "phases": "ABCN", + "to": "m1026356" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2783231", + "length": "498.4894", + "name": "line_ln5985355-1", + "phases": "BN", + "to": "l3254227" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "196-29521", + "length": "33.6241", + "name": "line_ln5985355-4", + "phases": "BN", + "to": "n1136355" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026786", + "length": "12.6962", + "name": "line_ln5770318-1", + "phases": "ABCN", + "to": "m1026785" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047424", + "length": "213.0033", + "name": "line_ln5683822-1", + "phases": "ABCN", + "to": "l2691949" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1136355", + "length": "237.7126", + "name": "line_ln5985355-3", + "phases": "BN", + "to": "l2783231" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2684420", + "length": "273.7943", + "name": "line_ln5532738-1", + "phases": "BN", + "to": "m1047824" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der480-2", + "length": "164.0420", + "name": "line_ln2001der-5", + "phases": "ABCN", + "to": "m2001der-5" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026646", + "length": "645.2267", + "name": "line_ln5986930-1", + "phases": "AN", + "to": "l3178978" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2841620", + "length": "786.4903", + "name": "line_ln6320332-1", + "phases": "BN", + "to": "l2785520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3104118", + "length": "261.7321", + "name": "line_ln5774448-1", + "phases": "CN", + "to": "l2748126" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027027", + "length": "141.4624", + "name": "line_ln6137083-1", + "phases": "CN", + "to": "l3270853" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047568", + "length": "52.2934", + "name": "line_ln6383059-1", + "phases": "ABCN", + "to": "p827527" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3197661", + "length": "222.9381", + "name": "line_ln6229832-2", + "phases": "CN", + "to": "l3122848" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026898", + "length": "9.5487", + "name": "line_ln6229832-1", + "phases": "CN", + "to": "l3197661" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108534", + "length": "20.8795", + "name": "line_ln5863718-1", + "phases": "AN", + "to": "p901934" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der480-1", + "length": "164.0420", + "name": "line_ln2001der-2", + "phases": "ABCN", + "to": "m2001der-2" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der480-1", + "length": "164.0420", + "name": "line_ln2001der-1", + "phases": "ABCN", + "to": "m2001der-1" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026847", + "length": "199.3449", + "name": "line_ln5804799-1", + "phases": "AN", + "to": "l2673311" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1139258", + "length": "133.4013", + "name": "line_ln5956498-3", + "phases": "CN", + "to": "l3066810" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der480-2", + "length": "164.0420", + "name": "line_ln2001der-4", + "phases": "ABCN", + "to": "m2001der-4" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069437", + "length": "36.9406", + "name": "line_ln5956498-2", + "phases": "CN", + "to": "n1139258" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der480-1", + "length": "164.0420", + "name": "line_ln2001der-3", + "phases": "ABCN", + "to": "m2001der-3" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125957", + "length": "124.2129", + "name": "line_ln5982822-1", + "phases": "CN", + "to": "l2936211" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1126005", + "length": "228.4898", + "name": "line_ln6381764-1", + "phases": "AN", + "to": "l2767342" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "p862322", + "length": "17.0721", + "name": "line_ln8979251-1", + "phases": "ABC", + "to": "221-308718" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108540", + "length": "80.6036", + "name": "line_ln6078689-1", + "phases": "CN", + "to": "l2955006" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069497", + "length": "50.1280", + "name": "line_ln6138595-1", + "phases": "ABCN", + "to": "m1069495" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "221-308718", + "length": "110.4897", + "name": "line_ln8979251-2", + "phases": "ABC", + "to": "l2803199" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026699", + "length": "304.0888", + "name": "line_ln5993742-1", + "phases": "BN", + "to": "m1026722" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3177894", + "length": "301.9982", + "name": "line_ln5486878-2", + "phases": "AN", + "to": "l3082993" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010004", + "length": "817.9995", + "name": "line_ln5486878-1", + "phases": "AN", + "to": "l3177894" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2876797", + "length": "161.9968", + "name": "line_ln6258439-1", + "phases": "ABCN", + "to": "r18241" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx1/0_tpx_ln6138596-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026942", + "length": "13.9425", + "name": "line_ln6228279-2", + "phases": "AN", + "to": "l3141389" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx1/0_tpx_ln6138596-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026941", + "length": "70.5666", + "name": "line_ln6228279-1", + "phases": "AN", + "to": "m1026942" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p829979", + "length": "106.8486", + "name": "line_ln5746706-2", + "phases": "BN", + "to": "m3036172" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "r18242", + "length": "124.2330", + "name": "line_ln6199530-1", + "phases": "ABCN", + "to": "l3254218" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209805", + "length": "346.3260", + "name": "line_ln5775442-1", + "phases": "ABCN", + "to": "l2823592" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1126020", + "length": "415.6890", + "name": "line_ln5651997-1", + "phases": "AN", + "to": "m1126025" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1209828", + "length": "131.7993", + "name": "line_ln5873976-1", + "phases": "ABCN", + "to": "l3253570" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026377", + "length": "417.4933", + "name": "line_ln5653466-1", + "phases": "AN", + "to": "l3048210" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125955", + "length": "22.3954", + "name": "line_ln5740283-1", + "phases": "CN", + "to": "m1125957" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069521", + "length": "163.7328", + "name": "line_ln6380835-1", + "phases": "AN", + "to": "l3254231" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2766718", + "length": "301.1730", + "name": "line_ln5956463-1", + "phases": "ABCN", + "to": "l3048206" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047386", + "length": "438.7305", + "name": "line_ln5562924-1", + "phases": "BN", + "to": "m1047388" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026745", + "length": "298.6107", + "name": "line_ln5841919-1", + "phases": "BN", + "to": "l3029183" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3142049", + "length": "277.7893", + "name": "line_ln5889821-1", + "phases": "ABCN", + "to": "m1108493" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3216347", + "length": "282.0301", + "name": "line_ln6138605-1", + "phases": "CN", + "to": "l2785523" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3235946", + "length": "573.5413", + "name": "line_ln5836089-1", + "phases": "AN", + "to": "m1126005" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010004", + "length": "54.9990", + "name": "line_ln6198053-1", + "phases": "AN", + "to": "m1010003" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089131", + "length": "314.2059", + "name": "line_ln6290212-1", + "phases": "ABCN", + "to": "l3029502" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "190-8593", + "length": "26.3387", + "name": "line_ln5860423-3", + "phases": "ABCN", + "to": "d5860423-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "q14733", + "length": "49.0914", + "name": "line_ln5860423-4", + "phases": "ABCN", + "to": "m1047568" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3029505", + "length": "326.700", + "name": "line_ln6411385-1", + "phases": "CN", + "to": "l2673318" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142819", + "length": "199.4670", + "name": "line_ln5684859-1", + "phases": "BN", + "to": "l2861219" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142874", + "length": "180.3117", + "name": "line_ln5987954-1", + "phases": "ABCN", + "to": "m1142875" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108274", + "length": "173.3900", + "name": "line_ln5472347-1", + "phases": "BN", + "to": "m1108276" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2841632", + "length": "82.4335", + "name": "line_ln5860423-1", + "phases": "ABCN", + "to": "d5860450-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1008758", + "length": "146.2914", + "name": "line_ln5835125-1", + "phases": "BN", + "to": "l2822859" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047592", + "length": "11.9952", + "name": "line_ln5565092-1", + "phases": "CN", + "to": "p827512" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026979", + "length": "252.7146", + "name": "line_ln5865240-1", + "phases": "BN", + "to": "l2748152" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047480", + "length": "373.9578", + "name": "line_ln6077774-1", + "phases": "ABCN", + "to": "m1069483" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047575", + "length": "29.1779", + "name": "line_ln5860423-2", + "phases": "ABCN", + "to": "regxfmr_190-8593" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047340", + "length": "212.5868", + "name": "line_ln6411390-1", + "phases": "AN", + "to": "l2991923" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln6019479-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "p827536", + "length": "41.1314", + "name": "line_ln6440002-3", + "phases": "CN", + "to": "n1137999" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2954361", + "length": "177.7903", + "name": "line_ln6320354-1", + "phases": "BN", + "to": "m1069627" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln6019479-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "d6440002-2_int", + "length": "264.7575", + "name": "line_ln6440002-2", + "phases": "CN", + "to": "l2876813" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m3032980", + "length": "84.9058", + "name": "line_ln0504020-1", + "phases": "ABCN", + "to": "m3032981" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026339", + "length": "237.5256", + "name": "line_ln5774466-1", + "phases": "BN", + "to": "l2766727" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "l2730108", + "length": "276.7673", + "name": "line_ln5896731-1", + "phases": "ABCN", + "to": "l2786204" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142832", + "length": "220.0777", + "name": "line_ln6018331-1", + "phases": "ABCN", + "to": "l3160865" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027036", + "length": "70.3821", + "name": "line_ln5744364-1", + "phases": "BN", + "to": "l3010580" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000700", + "length": "158.2381", + "name": "line_ln2000701-1", + "phases": "BN", + "to": "m2000701" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p860892", + "length": "35.2094", + "name": "line_ln6108138-2", + "phases": "CN", + "to": "n1139543" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1139543", + "length": "162.8453", + "name": "line_ln6108138-3", + "phases": "CN", + "to": "l2727795" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2692655", + "length": "175.6027", + "name": "line_ln5896825-1", + "phases": "ABCN", + "to": "m1142821" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2955077", + "length": "197.7215", + "name": "line_ln6413954-1", + "phases": "ABCN", + "to": "m1142851" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3214112", + "length": "339.3827", + "name": "line_ln5803984-2", + "phases": "BN", + "to": "l3160104" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3254214", + "length": "273.9079", + "name": "line_ln5803984-1", + "phases": "BN", + "to": "l3214112" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1137958", + "length": "291.0776", + "name": "line_ln5958702-3", + "phases": "CN", + "to": "m1047478" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1089145", + "length": "117.9983", + "name": "line_ln6028890-1", + "phases": "ABCN", + "to": "l3215385" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3030197", + "length": "231.4216", + "name": "line_ln6381844-1", + "phases": "ABCN", + "to": "m1142868" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026485", + "length": "216.2311", + "name": "line_ln6290243-1", + "phases": "BN", + "to": "m1026492" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p827505", + "length": "15.0179", + "name": "line_ln5958702-2", + "phases": "CN", + "to": "n1137958" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142880", + "length": "324.5371", + "name": "line_ln5591718-1", + "phases": "CN", + "to": "l2891575" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026468", + "length": "31.6182", + "name": "line_ln6167715-1", + "phases": "BN", + "to": "p901909" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2748130", + "length": "236.7777", + "name": "line_ln5895773-1", + "phases": "BN", + "to": "l3254212" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2897773", + "length": "398.2518", + "name": "line_ln5532747-1", + "phases": "AN", + "to": "l3197631" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026970", + "length": "205.1592", + "name": "line_ln6380813-1", + "phases": "ABCN", + "to": "m1026977" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1144666", + "length": "102.8843", + "name": "line_ln6318745-2", + "phases": "CN", + "to": "m1027041" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2861197", + "length": "241.4746", + "name": "line_ln6292461-1", + "phases": "CN", + "to": "l3160896" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3234185", + "length": "326.2019", + "name": "line_ln6121686-1", + "phases": "BN", + "to": "l3065750" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2897769", + "length": "180.8482", + "name": "line_ln5986925-2", + "phases": "CN", + "to": "l3778577" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1136362", + "length": "89.8397", + "name": "line_ln6409781-3", + "phases": "AN", + "to": "l3197652" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3778577", + "length": "209.7532", + "name": "line_ln5986925-3", + "phases": "CN", + "to": "l3141395" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069563", + "length": "62.6215", + "name": "line_ln6409781-2", + "phases": "AN", + "to": "n1136362" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1027042", + "length": "76.8770", + "name": "line_ln6318745-3", + "phases": "CN", + "to": "n1144666" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2841645", + "length": "98.4813", + "name": "line_ln6077810-1", + "phases": "CN", + "to": "l3066829" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3327098", + "length": "260.9987", + "name": "line_ln6660514-2", + "phases": "BN", + "to": "m3327097" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069582", + "length": "80.9746", + "name": "line_ln6231996-1", + "phases": "BN", + "to": "d6231996-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3159645", + "length": "312.3154", + "name": "line_ln5511594-2", + "phases": "AN", + "to": "l2983432" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3085402", + "length": "48.1460", + "name": "line_ln6169254-1", + "phases": "AN", + "to": "m1026394" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047515", + "length": "369.7093", + "name": "line_ln5593236-6", + "phases": "ABCN", + "to": "m1047513" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047707", + "length": "7.6842", + "name": "line_ln5511594-1", + "phases": "AN", + "to": "l3159645" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026855", + "length": "121.4666", + "name": "line_ln5623410-1", + "phases": "ABCN", + "to": "m1026861" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026356", + "length": "127.1115", + "name": "line_ln5895818-1", + "phases": "ABCN", + "to": "m1026354" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001304", + "length": "158.2381", + "name": "line_ln2001305-1", + "phases": "AN", + "to": "m2001305" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1166374", + "length": "221.9383", + "name": "line_ln6412355-1", + "phases": "ABCN", + "to": "l2786266" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1186078", + "length": "271.6133", + "name": "line_ln6254100-1", + "phases": "CN", + "to": "l2806553" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2748780", + "length": "227.0885", + "name": "line_ln6291152-1", + "phases": "AN", + "to": "l2823544" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3235945", + "length": "104.9336", + "name": "line_ln6200439-1", + "phases": "CN", + "to": "l2842330" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089118", + "length": "530.5390", + "name": "line_ln5835143-1", + "phases": "ABCN", + "to": "m1089115" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3156034", + "length": "195.1084", + "name": "line_ln5739003-1", + "phases": "AN", + "to": "l3066821" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1108403", + "length": "485.3304", + "name": "line_ln6422017-1", + "phases": "B", + "to": "m1108407" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001206", + "length": "158.2381", + "name": "line_ln2001207-1", + "phases": "CN", + "to": "m2001207" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108328", + "length": "684.8549", + "name": "line_ln5621860-1", + "phases": "CN", + "to": "l3160878" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3235255", + "length": "168.0069", + "name": "line_ln5714080-1", + "phases": "ABCN", + "to": "m1047316" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1136996", + "length": "45.5437", + "name": "line_ln5867683-3", + "phases": "ABCN", + "to": "m1047649" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p895080", + "length": "274.8686", + "name": "line_ln6195470-1", + "phases": "AN", + "to": "l2917333" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3216123", + "length": "342.0485", + "name": "line_ln5867683-2", + "phases": "ABCN", + "to": "n1136996" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2841621", + "length": "113.3906", + "name": "line_ln5865235-2", + "phases": "ABCN", + "to": "n1137986" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6320366-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026805", + "length": "296.9883", + "name": "line_ln6106580-1", + "phases": "CN", + "to": "l3120502" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1137986", + "length": "141.2823", + "name": "line_ln5865235-3", + "phases": "ABCN", + "to": "m1047732" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2933165", + "length": "420.7509", + "name": "line_ln5863825-1", + "phases": "BN", + "to": "l3235273" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1009651", + "length": "172.9994", + "name": "line_ln5774488-1", + "phases": "CN", + "to": "l2879092" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p828360", + "length": "103.3396", + "name": "line_ln8961799-1", + "phases": "C", + "to": "l2729206" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2729207", + "length": "40.0028", + "name": "line_ln8961799-3", + "phases": "C", + "to": "228-961799-3_int" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p827532", + "length": "23.9262", + "name": "line_ln6201699-1", + "phases": "AN", + "to": "m1047326" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089155", + "length": "239.3236", + "name": "line_ln6047559-2", + "phases": "CN", + "to": "m3037540" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2729206", + "length": "961.5595", + "name": "line_ln8961799-2", + "phases": "C", + "to": "l2729207" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2785527", + "length": "237.2403", + "name": "line_ln5744342-1", + "phases": "AN", + "to": "l2766729" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108524", + "length": "123.1716", + "name": "line_ln5649361-1", + "phases": "CN", + "to": "m1108520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108520", + "length": "176.8171", + "name": "line_ln5649361-2", + "phases": "CN", + "to": "l2804277" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3048228", + "length": "297.7465", + "name": "line_ln6260030-1", + "phases": "CN", + "to": "l2991940" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3235257", + "length": "362.4646", + "name": "line_ln5804805-1", + "phases": "ABCN", + "to": "l2822871" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2992656", + "length": "195.1540", + "name": "line_ln5533838-1", + "phases": "AN", + "to": "m1166356" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047752", + "length": "234.0867", + "name": "line_ln5926298-1", + "phases": "AN", + "to": "m1047750" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e206217", + "length": "183.5830", + "name": "line_ln6318767-1", + "phases": "ABCN", + "to": "m1125969" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089215", + "length": "289.8554", + "name": "line_ln6108125-4", + "phases": "ABCN", + "to": "m1089220" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089215", + "length": "149.8210", + "name": "line_ln6108125-3", + "phases": "ABCN", + "to": "n1134474" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1134474", + "length": "186.3653", + "name": "line_ln6108125-2", + "phases": "ABCN", + "to": "m1069496" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m3037452", + "length": "390.0956", + "name": "line_ln6320341-2", + "phases": "AN", + "to": "m1026387" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3217064", + "length": "753.5136", + "name": "line_ln6315098-1", + "phases": "BN", + "to": "l3200222" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l3232301", + "length": "48.4164", + "name": "line_ln81037792-1", + "phases": "A", + "to": "m1069328" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2710511", + "length": "220.7415", + "name": "line_ln5502525-1", + "phases": "AN", + "to": "l2766719" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "q14412", + "length": "111.3681", + "name": "line_ln5926308-2", + "phases": "ABCN", + "to": "m1047325" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2860491", + "length": "112.6780", + "name": "line_ln5926308-3", + "phases": "ABCN", + "to": "d5926308-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p860847", + "length": "248.9151", + "name": "line_ln5472401-1", + "phases": "AN", + "to": "m1026880" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026891", + "length": "286.3286", + "name": "line_ln6017292-1", + "phases": "ABCN", + "to": "l3160102" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009742", + "length": "39.2541", + "name": "line_ln6076268-1", + "phases": "ABCN", + "to": "p901972" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_dpx_ln6506308-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1026726", + "length": "215.9070", + "name": "line_ln6506308-1", + "phases": "BN", + "to": "l2916610" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3254237", + "length": "460.0012", + "name": "line_ln6425615-1", + "phases": "ABCN", + "to": "m1108387" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m3036167", + "length": "240.6005", + "name": "line_ln6505946-1", + "phases": "ABCN", + "to": "l3085391" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000406", + "length": "158.2381", + "name": "line_ln2000407-1", + "phases": "AN", + "to": "m2000407" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1136368", + "length": "23.1710", + "name": "line_ln5776669-3", + "phases": "AN", + "to": "l2897792" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108514", + "length": "320.0007", + "name": "line_ln5735714-1", + "phases": "CN", + "to": "m1108508" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827548", + "length": "25.1910", + "name": "line_ln5776669-2", + "phases": "AN", + "to": "n1136368" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047374", + "length": "723.3373", + "name": "line_ln5835134-1", + "phases": "BN", + "to": "l3197629" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3254870", + "length": "1568.1469", + "name": "line_ln6030576-1", + "phases": "CN", + "to": "m1125943" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047432", + "length": "150.3908", + "name": "line_ln5502534-1", + "phases": "AN", + "to": "m1047433" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089093", + "length": "198.8770", + "name": "line_ln5593214-1", + "phases": "CN", + "to": "m1089094" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3197624", + "length": "455.1837", + "name": "line_ln6380804-1", + "phases": "BN", + "to": "m1027101" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l3027671", + "length": "438.7701", + "name": "line_ln81048108-2", + "phases": "A", + "to": "m1108423" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1108462", + "length": "390.3665", + "name": "line_ln81048108-1", + "phases": "A", + "to": "l3027671" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026693", + "length": "333.9055", + "name": "line_ln5956472-1", + "phases": "BN", + "to": "l2991916" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000909", + "length": "158.2381", + "name": "line_ln2000910-1", + "phases": "CN", + "to": "m2000910" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "d5534967-1_int", + "length": "348.0490", + "name": "line_ln5534967-1", + "phases": "ABCN", + "to": "p827501" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "p901945", + "length": "18.9474", + "name": "line_ln6228311-1", + "phases": "ABCN", + "to": "m1125988" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026902", + "length": "326.1111", + "name": "line_ln5985039-1", + "phases": "ABCN", + "to": "m1026905" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2935568", + "length": "604.5797", + "name": "line_ln5895805-1", + "phases": "BN", + "to": "l3235246" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2911069", + "length": "725.4830", + "name": "line_ln6506317-2", + "phases": "BN", + "to": "l2948732" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3160862", + "length": "433.6122", + "name": "line_ln6412346-1", + "phases": "CN", + "to": "l3104850" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2897801", + "length": "179.1460", + "name": "line_ln5683853-1", + "phases": "AN", + "to": "m1069384" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069390", + "length": "143.3637", + "name": "line_ln5865266-1", + "phases": "AN", + "to": "l2897801" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047316", + "length": "218.6250", + "name": "line_ln6138640-1", + "phases": "AN", + "to": "l2785527" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "d5774457-1_int", + "length": "134.0110", + "name": "line_ln5774457-1", + "phases": "ABCN", + "to": "m1026920" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069181", + "length": "325.5628", + "name": "line_ln5593249-1", + "phases": "AN", + "to": "l2748146" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026323", + "length": "143.2690", + "name": "line_ln6108147-1", + "phases": "BN", + "to": "l2991917" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069202", + "length": "297.3697", + "name": "line_ln5714049-1", + "phases": "CN", + "to": "l3104126" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000713", + "length": "158.2381", + "name": "line_ln2000714-1", + "phases": "BN", + "to": "m2000714" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2973162", + "length": "174.3787", + "name": "line_ln6017302-1", + "phases": "ABCN", + "to": "m1026333" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1166375", + "length": "317.6957", + "name": "line_ln5896834-1", + "phases": "ABCN", + "to": "l2842383" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2973163", + "length": "281.7672", + "name": "line_ln5895782-1", + "phases": "BN", + "to": "m1026309" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2801896", + "length": "248.3697", + "name": "line_ln5532734-1", + "phases": "BN", + "to": "m1009839" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010007", + "length": "524.4936", + "name": "line_ln6102293-1", + "phases": "AN", + "to": "m1010004" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166387", + "length": "280.2922", + "name": "line_ln5624374-1", + "phases": "CN", + "to": "l3048946" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108360", + "length": "180.3697", + "name": "line_ln5624387-1", + "phases": "CN", + "to": "l3048968" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026328", + "length": "15.5178", + "name": "line_ln6140778-1", + "phases": "BN", + "to": "d6140778-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069192", + "length": "267.5248", + "name": "line_ln6077778-1", + "phases": "AN", + "to": "l3235253" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069504", + "length": "350.0465", + "name": "line_ln6290230-1", + "phases": "ABCN", + "to": "m1069500" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1149235", + "length": "20.5020", + "name": "line_ln5989329-1", + "phases": "CN", + "to": "p829975" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "m1108387", + "length": "10.7692", + "name": "line_ln8979255-1", + "phases": "ABC", + "to": "p850080" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047292", + "length": "191.0345", + "name": "line_ln6199561-1", + "phases": "CN", + "to": "l2766750" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1141480", + "length": "20.4502", + "name": "line_ln5528574-3", + "phases": "CN", + "to": "p895113" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047358", + "length": "298.3989", + "name": "line_ln5986934-1", + "phases": "AN", + "to": "l2897781" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108372", + "length": "261.2420", + "name": "line_ln5624289-1", + "phases": "BN", + "to": "l3216988" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1147857", + "length": "179.6358", + "name": "line_ln5531255-3", + "phases": "ABCN", + "to": "m1009742" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_tpx_ln5804795-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1047386", + "length": "180.3879", + "name": "line_ln5804795-1", + "phases": "BN", + "to": "l3254211" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142863", + "length": "15.1088", + "name": "line_ln5528574-2", + "phases": "CN", + "to": "n1141480" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069487", + "length": "446.8440", + "name": "line_ln6138599-1", + "phases": "CN", + "to": "m1069488" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027068", + "length": "298.4033", + "name": "line_ln5956494-1", + "phases": "CN", + "to": "l3235268" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166373", + "length": "33.6693", + "name": "line_ln5594243-1", + "phases": "AN", + "to": "m1166369" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p827523", + "length": "115.9341", + "name": "line_ln5837355-1", + "phases": "ABCN", + "to": "l2879076" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2801950", + "length": "107.9364", + "name": "line_ln6137087-1", + "phases": "ABCN", + "to": "m1069224" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047702", + "length": "62.1370", + "name": "line_ln6258435-2", + "phases": "AN", + "to": "n1137002" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2860490", + "length": "207.8671", + "name": "line_ln5683831-1", + "phases": "ABCN", + "to": "l3104134" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1137002", + "length": "303.4152", + "name": "line_ln6258435-3", + "phases": "AN", + "to": "m1047707" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3104859", + "length": "370.3232", + "name": "line_ln5742901-1", + "phases": "BN", + "to": "l2970845" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1142811", + "length": "261.1304", + "name": "line_ln6321458-1", + "phases": "AN", + "to": "l2917330" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009770", + "length": "26.3917", + "name": "line_ln5531255-2", + "phases": "ABCN", + "to": "n1147857" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2954344", + "length": "167.0633", + "name": "line_ln6229791-1", + "phases": "CN", + "to": "l2897767" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209750", + "length": "27.9721", + "name": "line_ln6351512-1", + "phases": "BN", + "to": "m1209749" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4/0_tpx_ln6103927-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "m1142860", + "length": "21.6015", + "name": "line_ln6103927-1", + "phases": "AN", + "to": "p895114" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2710517", + "length": "160.1356", + "name": "line_ln5865244-1", + "phases": "AN", + "to": "m1026646" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2879072", + "length": "755.7369", + "name": "line_ln6047568-1", + "phases": "BN", + "to": "m1047441" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2786273", + "length": "354.3113", + "name": "line_ln6018340-1", + "phases": "BN", + "to": "m1108278" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047766", + "length": "155.8307", + "name": "line_ln6108169-1", + "phases": "BN", + "to": "m1047768" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026948", + "length": "29.6163", + "name": "line_ln5593227-1", + "phases": "BN", + "to": "m1026949" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069438", + "length": "223.1525", + "name": "line_ln5502569-1", + "phases": "ABCN", + "to": "l2766749" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108340", + "length": "229.5993", + "name": "line_ln5744333-1", + "phases": "CN", + "to": "m1108344" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e182729", + "length": "25.0043", + "name": "line_ln5863714-2", + "phases": "ABCN", + "to": "m1069503" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1134478", + "length": "36.8855", + "name": "line_ln5863714-3", + "phases": "ABCN", + "to": "m1069505" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026986", + "length": "498.8567", + "name": "line_ln6260021-1", + "phases": "ABCN", + "to": "m1026997" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069503", + "length": "79.1886", + "name": "line_ln5863714-4", + "phases": "ABCN", + "to": "n1134478" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069468", + "length": "27.9336", + "name": "line_ln5898057-1", + "phases": "AN", + "to": "p827506" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "196-29519", + "length": "112.2456", + "name": "line_ln6383460-1", + "phases": "ABCN", + "to": "l3066815" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3104133", + "length": "418.7163", + "name": "line_ln5532756-1", + "phases": "AN", + "to": "m1047323" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1126017", + "length": "150.7892", + "name": "line_ln6018242-1", + "phases": "AN", + "to": "l2748781" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e182724", + "length": "305.1032", + "name": "line_ln5806919-1", + "phases": "ABCN", + "to": "m1069169" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2991912", + "length": "368.7581", + "name": "line_ln6411381-1", + "phases": "AN", + "to": "l3104128" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047819", + "length": "234.1256", + "name": "line_ln6199508-1", + "phases": "BN", + "to": "l2916603" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p827525", + "length": "325.1113", + "name": "line_ln5686079-1", + "phases": "ABCN", + "to": "m1026902" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "d5621886-1_int", + "length": "841.5384", + "name": "line_ln5621886-1", + "phases": "ABCN", + "to": "m1009784" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069420", + "length": "25.2099", + "name": "line_ln6201694-1", + "phases": "AN", + "to": "p827499" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069535", + "length": "332.7017", + "name": "line_ln5714062-1", + "phases": "BN", + "to": "l2804271" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026307", + "length": "410.7347", + "name": "line_ln5981121-1", + "phases": "BN", + "to": "l3085388" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m3036165", + "length": "647.8154", + "name": "line_ln5774462-2", + "phases": "ABCN", + "to": "l3197636" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166369", + "length": "13.6831", + "name": "line_ln6049964-1", + "phases": "AN", + "to": "p829978" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3139086", + "length": "220.6385", + "name": "line_ln5472406-1", + "phases": "BN", + "to": "l3029520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1089113", + "length": "1447.2934", + "name": "line_ln6046042-1", + "phases": "BN", + "to": "m1089103" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047513", + "length": "228.0833", + "name": "line_ln6047577-1", + "phases": "ABCN", + "to": "m1047507" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089197", + "length": "309.7714", + "name": "line_ln6290198-1", + "phases": "ABCN", + "to": "m1089196" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026807", + "length": "60.1946", + "name": "line_ln6073575-2", + "phases": "ABCN", + "to": "n1140521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3030204", + "length": "220.4711", + "name": "line_ln5866268-1", + "phases": "ABCN", + "to": "m1186072" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1140521", + "length": "117.8455", + "name": "line_ln6073575-3", + "phases": "ABCN", + "to": "l3254217" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3949157", + "length": "206.9161", + "name": "line_ln6991378-3", + "phases": "AN", + "to": "l3727709" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "d6017316-1_int", + "length": "356.4345", + "name": "line_ln6017316-1", + "phases": "BN", + "to": "l2766742" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2785530", + "length": "378.8578", + "name": "line_ln5835151-1", + "phases": "AN", + "to": "l2822868" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3727709", + "length": "237.1944", + "name": "line_ln6991378-5", + "phases": "AN", + "to": "l3727710" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1069247", + "length": "402.8709", + "name": "line_ln8979367-1", + "phases": "A", + "to": "m1069248" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3122849", + "length": "275.5296", + "name": "line_ln5956503-1", + "phases": "ABCN", + "to": "m1026357" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1139542", + "length": "70.8509", + "name": "line_ln6292465-3", + "phases": "ABCN", + "to": "p827523" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2766716", + "length": "225.3106", + "name": "line_ln6229792-1", + "phases": "CN", + "to": "l3235245" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2691951", + "length": "75.8457", + "name": "line_ln6292465-2", + "phases": "ABCN", + "to": "n1139542" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026chp-2", + "length": "408.4581", + "name": "line_ln5002chp-1", + "phases": "ABCN", + "to": "m1026chp-3" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125969", + "length": "21.7525", + "name": "line_ln6103926-1", + "phases": "BN", + "to": "p895102" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1126031", + "length": "435.9819", + "name": "line_ln5957412-1", + "phases": "CN", + "to": "l2730107" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026665", + "length": "278.8758", + "name": "line_ln6229802-1", + "phases": "AN", + "to": "m1026660" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026697", + "length": "202.8895", + "name": "line_ln5865249-1", + "phases": "ABCN", + "to": "m1026690" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108529", + "length": "81.3941", + "name": "line_ln5473349-1", + "phases": "ABCN", + "to": "m1108532" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069155", + "length": "353.2070", + "name": "line_ln5744334-1", + "phases": "CN", + "to": "l3254210" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069504", + "length": "148.7936", + "name": "line_ln6138623-1", + "phases": "AN", + "to": "l3197654" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3027116", + "length": "226.0073", + "name": "line_ln5774497-1", + "phases": "ABCN", + "to": "m1047300" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047574", + "length": "39.4479", + "name": "line_ln6380817-1", + "phases": "ABCN", + "to": "l2841632" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001011", + "length": "158.2381", + "name": "line_ln2001012-1", + "phases": "BN", + "to": "m2001012" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166361", + "length": "55.1820", + "name": "line_ln6015890-1", + "phases": "AN", + "to": "l2989600" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000704", + "length": "158.2381", + "name": "line_ln2000705-1", + "phases": "BN", + "to": "m2000705" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026876", + "length": "344.8937", + "name": "line_ln5894238-2", + "phases": "ABCN", + "to": "m1026866" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000900", + "length": "158.2381", + "name": "line_ln2000901-1", + "phases": "CN", + "to": "m2000901" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008752", + "length": "260.2435", + "name": "line_ln5804781-1", + "phases": "BN", + "to": "m1008746" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089143", + "length": "312.1977", + "name": "line_ln5472361-1", + "phases": "AN", + "to": "l3141400" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026866", + "length": "441.3043", + "name": "line_ln5894238-1", + "phases": "ABCN", + "to": "m1026844" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3216342", + "length": "203.0221", + "name": "line_ln6411367-1", + "phases": "BN", + "to": "l2879063" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047424", + "length": "154.0260", + "name": "line_ln5562929-1", + "phases": "BN", + "to": "l3104127" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047792", + "length": "1213.3654", + "name": "line_ln6349052-1", + "phases": "BN", + "to": "l2876846" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2936213", + "length": "285.1097", + "name": "line_ln5533709-1", + "phases": "BN", + "to": "m1108527" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1139540", + "length": "274.3890", + "name": "line_ln5806918-3", + "phases": "AN", + "to": "l2991907" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827508", + "length": "29.6228", + "name": "line_ln5806918-2", + "phases": "AN", + "to": "n1139540" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047836", + "length": "966.1595", + "name": "line_ln5926289-1", + "phases": "BN", + "to": "l3254203" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1069226", + "length": "27.3351", + "name": "line_ln5712486-1", + "phases": "CN", + "to": "d5712486-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2806553", + "length": "2063.2990", + "name": "line_ln6435650-1", + "phases": "CN", + "to": "m1166391" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx1/0_tpx_ln5562952-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1008746", + "length": "133.1792", + "name": "line_ln6017284-1", + "phases": "BN", + "to": "l2954339" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "221-559682", + "length": "43.8021", + "name": "line_ln81354564-10", + "phases": "C", + "to": "n1140525" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "n1140525", + "length": "209.6262", + "name": "line_ln81354564-11", + "phases": "C", + "to": "l3645809" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2673312", + "length": "545.4504", + "name": "line_ln6350536-1", + "phases": "AN", + "to": "l3235247" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069451", + "length": "673.1938", + "name": "line_ln5744369-1", + "phases": "ABCN", + "to": "l2804282" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1142815", + "length": "59.5738", + "name": "line_ln6048681-1", + "phases": "AN", + "to": "l2917359" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1142107", + "length": "364.7522", + "name": "line_ln5712584-3", + "phases": "CN", + "to": "l3101827" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069488", + "length": "186.9206", + "name": "line_ln6047555-1", + "phases": "CN", + "to": "l2748125" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1027041", + "length": "229.2448", + "name": "line_ln5623399-1", + "phases": "CN", + "to": "l2916607" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p829796", + "length": "88.3173", + "name": "line_ln5712584-2", + "phases": "CN", + "to": "n1142107" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3010565", + "length": "462.0274", + "name": "line_ln5593232-1", + "phases": "CN", + "to": "l2897775" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1125987", + "length": "15.8048", + "name": "line_ln5621864-1", + "phases": "ABCN", + "to": "p901945" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1108464", + "length": "352.5445", + "name": "line_ln81048109-1", + "phases": "B", + "to": "l3102286" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l3102286", + "length": "128.1097", + "name": "line_ln81048109-2", + "phases": "B", + "to": "m1108433" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3037537", + "length": "9.5158", + "name": "line_ln6506316-6", + "phases": "BN", + "to": "l2911069" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1069284", + "length": "30.1745", + "name": "line_ln8979345-1", + "phases": "A", + "to": "p850401" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827515", + "length": "215.1570", + "name": "line_ln5534968-1", + "phases": "AN", + "to": "l2991909" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027091", + "length": "129.6678", + "name": "line_ln6409798-1", + "phases": "AN", + "to": "l2764412" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2991901", + "length": "1529.9997", + "name": "line_ln6506316-3", + "phases": "BN", + "to": "m3037537" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047483", + "length": "261.1153", + "name": "line_ln6259987-1", + "phases": "ABCN", + "to": "m1047480" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069149", + "length": "203.1106", + "name": "line_ln5532742-1", + "phases": "CN", + "to": "m1069148" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3216367", + "length": "135.6523", + "name": "line_ln5835173-1", + "phases": "ABCN", + "to": "m1069468" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047319", + "length": "243.0128", + "name": "line_ln5623409-1", + "phases": "CN", + "to": "m1047318" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "m1186052", + "length": "19.1571", + "name": "line_ln8978752-1", + "phases": "ABC", + "to": "198-5320" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089205", + "length": "47.3969", + "name": "line_ln6167732-2", + "phases": "AN", + "to": "n1134472" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027114", + "length": "204.6812", + "name": "line_ln5803300-1", + "phases": "AN", + "to": "l2876812" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1134472", + "length": "631.8925", + "name": "line_ln6167732-3", + "phases": "AN", + "to": "l2973148" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125916", + "length": "117.0334", + "name": "line_ln5563935-1", + "phases": "BN", + "to": "m1125913" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1136658", + "length": "140.7334", + "name": "line_ln5716230-3", + "phases": "ABCN", + "to": "m1047566" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209776", + "length": "218.1065", + "name": "line_ln5533797-1", + "phases": "ABCN", + "to": "m1209775" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000913", + "length": "158.2381", + "name": "line_ln2000914-1", + "phases": "CN", + "to": "m2000914" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1209824", + "length": "824.1896", + "name": "line_ln6139544-1", + "phases": "ABCN", + "to": "m1209828" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "p827527", + "length": "20.1495", + "name": "line_ln5716230-2", + "phases": "ABCN", + "to": "n1136658" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026915", + "length": "10.0032", + "name": "line_ln5502529-1", + "phases": "BN", + "to": "m1026916" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047763", + "length": "15.2269", + "name": "line_ln5776665-1", + "phases": "BN", + "to": "p827509" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1126016", + "length": "219.0485", + "name": "line_ln5531242-1", + "phases": "AN", + "to": "l3195321" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2841636", + "length": "169.7904", + "name": "line_ln6260000-1", + "phases": "BN", + "to": "m1026324" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2935551", + "length": "105.1192", + "name": "line_ln5746546-1", + "phases": "ABCN", + "to": "d5746546-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069393", + "length": "362.1980", + "name": "line_ln6505942-2", + "phases": "ABCN", + "to": "l3029501" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026320", + "length": "220.6522", + "name": "line_ln6017303-1", + "phases": "BN", + "to": "l2879079" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3176661", + "length": "252.7557", + "name": "line_ln6348954-1", + "phases": "CN", + "to": "l2970804" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2916627", + "length": "254.8547", + "name": "line_ln5804835-1", + "phases": "AN", + "to": "l2673310" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047430", + "length": "547.2258", + "name": "line_ln5479790-1", + "phases": "AN", + "to": "l2916234" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2879773", + "length": "304.0401", + "name": "line_ln6321427-1", + "phases": "ABCN", + "to": "m1108298" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027114", + "length": "239.9990", + "name": "line_ln5501003-1", + "phases": "AN", + "to": "l3195327" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047751", + "length": "30.5371", + "name": "line_ln5865236-1", + "phases": "AN", + "to": "l2973154" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1144665", + "length": "89.8573", + "name": "line_ln6138610-2", + "phases": "ABCN", + "to": "m1047515" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "190-8581", + "length": "27.4004", + "name": "line_ln5587291-3", + "phases": "ABCN", + "to": "d5587291-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2822869", + "length": "310.9686", + "name": "line_ln5502538-1", + "phases": "ABCN", + "to": "m1026808" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2897777", + "length": "88.9644", + "name": "line_ln6138610-3", + "phases": "ABCN", + "to": "n1144665" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026969", + "length": "298.5116", + "name": "line_ln6380808-1", + "phases": "BN", + "to": "l2879066" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2692633", + "length": "131.1356", + "name": "line_ln5587291-1", + "phases": "ABCN", + "to": "d5578300-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108334", + "length": "128.5511", + "name": "line_ln5957501-1", + "phases": "CN", + "to": "l2692664" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047793", + "length": "20.0022", + "name": "line_ln5928546-1", + "phases": "BN", + "to": "p827555" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000200", + "length": "463.8770", + "name": "line_ln2000300-1", + "phases": "ABCN", + "to": "m2000300" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "226-23745", + "length": "1709.3225", + "name": "line_ln6109068-1", + "phases": "ABCN", + "to": "m1209822" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125959", + "length": "226.0757", + "name": "line_ln5924709-1", + "phases": "CN", + "to": "l2861197" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "q14734", + "length": "182.0291", + "name": "line_ln5587291-4", + "phases": "ABCN", + "to": "m1108529" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "l2729406", + "length": "639.0177", + "name": "line_ln5804790-1", + "phases": "CN", + "to": "l2897768" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142810", + "length": "61.2206", + "name": "line_ln5894225-1", + "phases": "BN", + "to": "m1142808" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026834", + "length": "29.2536", + "name": "line_ln5487004-6", + "phases": "CN", + "to": "n1147860" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1147860", + "length": "60.7478", + "name": "line_ln5487004-7", + "phases": "CN", + "to": "l3177881" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3122827", + "length": "191.9471", + "name": "line_ln5472374-1", + "phases": "AN", + "to": "l2954355" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "m1108381", + "length": "24.2609", + "name": "line_ln8989758-1", + "phases": "ABC", + "to": "p862322" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069382", + "length": "36.9636", + "name": "line_ln6049822-1", + "phases": "AN", + "to": "d6049822-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026977", + "length": "196.1792", + "name": "line_ln6199517-1", + "phases": "ABCN", + "to": "m1026978" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026858", + "length": "160.0845", + "name": "line_ln5804804-1", + "phases": "ABCN", + "to": "m1026854" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2916234", + "length": "850.3986", + "name": "line_ln5479790-2", + "phases": "AN", + "to": "m1047423" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026829", + "length": "34.1922", + "name": "line_ln6167754-2", + "phases": "BN", + "to": "n1147859" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1147859", + "length": "22.2186", + "name": "line_ln6167754-3", + "phases": "BN", + "to": "p827573" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108489", + "length": "47.3109", + "name": "line_ln5837496-3", + "phases": "AN", + "to": "n1142101" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1142101", + "length": "121.2179", + "name": "line_ln5837496-4", + "phases": "AN", + "to": "l2936214" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p829798", + "length": "0.8525", + "name": "line_ln5837496-1", + "phases": "AN", + "to": "m1108489" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069156", + "length": "409.9835", + "name": "line_ln5774453-1", + "phases": "ABCN", + "to": "m1069155" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069632", + "length": "274.5454", + "name": "line_ln5593245-1", + "phases": "BN", + "to": "l2954361" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069224", + "length": "404.1378", + "name": "line_ln6077801-1", + "phases": "CN", + "to": "m1069226" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047319", + "length": "118.9971", + "name": "line_ln6350549-1", + "phases": "CN", + "to": "l2991921" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047497", + "length": "75.8955", + "name": "line_ln6134514-1", + "phases": "ABCN", + "to": "l3104136" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108331", + "length": "323.9899", + "name": "line_ln6139655-1", + "phases": "CN", + "to": "m1108334" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3160109", + "length": "236.0120", + "name": "line_ln6134514-2", + "phases": "ABCN", + "to": "m1047497" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2691967", + "length": "150.0208", + "name": "line_ln5653480-1", + "phases": "ABCN", + "to": "m1069504" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026960", + "length": "260.6159", + "name": "line_ln6017293-1", + "phases": "ABCN", + "to": "m1026970" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209774", + "length": "205.1555", + "name": "line_ln6381858-1", + "phases": "ABCN", + "to": "l3123509" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125989", + "length": "16.0851", + "name": "line_ln5807070-1", + "phases": "ABCN", + "to": "m1125990" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1108506", + "length": "258.9301", + "name": "line_ln5565240-1", + "phases": "AN", + "to": "m1108501" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3123452", + "length": "218.3128", + "name": "line_ln6198039-1", + "phases": "ABCN", + "to": "d6198039-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137993", + "length": "211.0393", + "name": "line_ln6140774-2", + "phases": "AN", + "to": "l2860482" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827502", + "length": "76.4748", + "name": "line_ln6140774-3", + "phases": "AN", + "to": "n1137993" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047507", + "length": "130.8015", + "name": "line_ln5742811-1", + "phases": "ABCN", + "to": "l2820531" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2785514", + "length": "214.3984", + "name": "line_ln5683809-1", + "phases": "AN", + "to": "l3235244" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2820531", + "length": "122.7704", + "name": "line_ln5742811-3", + "phases": "ABCN", + "to": "d5742811-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1137992", + "length": "14.8934", + "name": "line_ln5742811-4", + "phases": "ABCN", + "to": "196-29520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "q14414", + "length": "260.9642", + "name": "line_ln6047599-3", + "phases": "ABCN", + "to": "l2691952" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1209828", + "length": "241.7631", + "name": "line_ln5775370-1", + "phases": "CN", + "to": "l2861157" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047457", + "length": "131.6258", + "name": "line_ln5653493-1", + "phases": "BN", + "to": "l2710546" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2860478", + "length": "208.7905", + "name": "line_ln5744325-1", + "phases": "BN", + "to": "l2822858" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3198358", + "length": "348.6653", + "name": "line_ln6170303-1", + "phases": "BN", + "to": "l3104859" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069428", + "length": "31.2008", + "name": "line_ln5958707-1", + "phases": "BN", + "to": "p827576" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3010560", + "length": "106.9941", + "name": "line_ln6169246-1", + "phases": "ABCN", + "to": "m1047483" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m3763618", + "length": "12.4152", + "name": "line_ln81354561-2", + "phases": "C", + "to": "p1121282" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108500", + "length": "83.4259", + "name": "line_ln5503544-1", + "phases": "ABCN", + "to": "m1108505" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027038", + "length": "340.7628", + "name": "line_ln5472396-1", + "phases": "BN", + "to": "m1027036" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069428", + "length": "54.0570", + "name": "line_ln5532786-2", + "phases": "BN", + "to": "n1139257" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "n1139257", + "length": "89.4306", + "name": "line_ln5532786-3", + "phases": "BN", + "to": "l3029518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027091", + "length": "90.5298", + "name": "line_ln6348967-1", + "phases": "AN", + "to": "m1027092" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047831", + "length": "263.7188", + "name": "line_ln6290208-1", + "phases": "BN", + "to": "l3178974" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1126031", + "length": "109.2904", + "name": "line_ln5896727-1", + "phases": "CN", + "to": "l3179608" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108355", + "length": "286.5117", + "name": "line_ln5715019-1", + "phases": "CN", + "to": "m1108352" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1144664", + "length": "216.4742", + "name": "line_ln5986926-3", + "phases": "CN", + "to": "l3178972" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "p873801", + "length": "23.9456", + "name": "line_ln81018878-2", + "phases": "A", + "to": "n1138608" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069607", + "length": "125.9248", + "name": "line_ln5895801-1", + "phases": "BN", + "to": "l2916617" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069227", + "length": "327.7225", + "name": "line_ln6019478-1", + "phases": "CN", + "to": "l2748133" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047688", + "length": "50.7776", + "name": "line_ln5986926-2", + "phases": "CN", + "to": "n1144664" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "n1138608", + "length": "275.6792", + "name": "line_ln81018878-3", + "phases": "A", + "to": "l3232301" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026951", + "length": "218.4411", + "name": "line_ln6047564-1", + "phases": "BN", + "to": "l2954347" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2935553", + "length": "429.8725", + "name": "line_ln5593223-1", + "phases": "BN", + "to": "m1026987" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l3047073", + "length": "697.3183", + "name": "line_ln8979358-3", + "phases": "C", + "to": "m1069250" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2803194", + "length": "289.8126", + "name": "line_ln8979358-2", + "phases": "C", + "to": "l3047073" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1069249", + "length": "194.9453", + "name": "line_ln8979358-1", + "phases": "C", + "to": "l2803194" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827537", + "length": "228.7663", + "name": "line_ln6079950-1", + "phases": "AN", + "to": "l3122827" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069335", + "length": "38.7523", + "name": "line_ln6231997-1", + "phases": "CN", + "to": "p827564" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069461", + "length": "160.8152", + "name": "line_ln6258443-1", + "phases": "ABCN", + "to": "l2876798" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e206209", + "length": "408.6547", + "name": "line_ln6108142-1", + "phases": "ABCN", + "to": "l2897777" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027055", + "length": "22.0209", + "name": "line_ln6228328-1", + "phases": "AN", + "to": "m1027056" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069494", + "length": "199.9999", + "name": "line_ln6076247-1", + "phases": "CN", + "to": "l2745806" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "d5712477-3_int", + "length": "338.2957", + "name": "line_ln5712477-3", + "phases": "CN", + "to": "m1069174" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2841615", + "length": "132.3679", + "name": "line_ln6199504-1", + "phases": "AN", + "to": "m1026931" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p827520", + "length": "21.0143", + "name": "line_ln5712477-2", + "phases": "CN", + "to": "n1139545" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125940", + "length": "110.0780", + "name": "line_ln5957491-1", + "phases": "BN", + "to": "l3048963" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2991908", + "length": "330.8007", + "name": "line_ln6229796-1", + "phases": "AN", + "to": "l3178973" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026647", + "length": "345.3250", + "name": "line_ln6047573-2", + "phases": "AN", + "to": "m3036169" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx1/0_3w_cs_ln5686244-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "m1209791", + "length": "11.0551", + "name": "line_ln5686244-1", + "phases": "AN", + "to": "p903354" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2766744", + "length": "175.1901", + "name": "line_ln5895810-1", + "phases": "BN", + "to": "m1027038" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000904", + "length": "158.2381", + "name": "line_ln2000905-1", + "phases": "CN", + "to": "m2000905" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3179650", + "length": "139.7566", + "name": "line_ln5591710-2", + "phases": "ABCN", + "to": "l3232902" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3232902", + "length": "127.6094", + "name": "line_ln5591710-3", + "phases": "ABCN", + "to": "m4122658" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p903490", + "length": "8.2162", + "name": "line_ln6137794-1", + "phases": "CN", + "to": "m1125961" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047725", + "length": "287.6655", + "name": "line_ln5738651-1", + "phases": "BN", + "to": "m1047728" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p829962", + "length": "20.1075", + "name": "line_ln5807087-1", + "phases": "CN", + "to": "m1142835" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000410", + "length": "158.2381", + "name": "line_ln2000411-1", + "phases": "AN", + "to": "m2000411" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089197", + "length": "39.5377", + "name": "line_ln5867448-1", + "phases": "AN", + "to": "p827498" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1139538", + "length": "114.1778", + "name": "line_ln6383060-3", + "phases": "BN", + "to": "l3066818" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827533", + "length": "30.7170", + "name": "line_ln6383060-2", + "phases": "BN", + "to": "n1139538" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p903360", + "length": "31.8685", + "name": "line_ln6413566-1", + "phases": "AN", + "to": "m1047430" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026312", + "length": "175.4824", + "name": "line_ln5744338-1", + "phases": "BN", + "to": "l2973163" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2748128", + "length": "570.6542", + "name": "line_ln6320327-1", + "phases": "CN", + "to": "m1089170" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2954354", + "length": "189.4181", + "name": "line_ln6229806-1", + "phases": "AN", + "to": "l2673321" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2897792", + "length": "309.4213", + "name": "line_ln6260017-1", + "phases": "AN", + "to": "l2785538" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1140829", + "length": "18.3405", + "name": "line_ln5621833-3", + "phases": "CN", + "to": "m1026703" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026705", + "length": "23.0099", + "name": "line_ln5621833-2", + "phases": "CN", + "to": "n1140829" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p895107", + "length": "287.4650", + "name": "line_ln5740282-1", + "phases": "CN", + "to": "l3030126" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047386", + "length": "311.9474", + "name": "line_ln5774493-1", + "phases": "BN", + "to": "m1047379" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026690", + "length": "316.1544", + "name": "line_ln6290217-1", + "phases": "ABCN", + "to": "l2879078" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026940", + "length": "215.9216", + "name": "line_ln5562925-1", + "phases": "BN", + "to": "m1026939" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209811", + "length": "402.2457", + "name": "line_ln5714974-1", + "phases": "ABCN", + "to": "m1209807" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2897789", + "length": "200.7313", + "name": "line_ln6350554-1", + "phases": "BN", + "to": "m1069662" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2879076", + "length": "79.5410", + "name": "line_ln5532751-1", + "phases": "ABCN", + "to": "m1089122" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000708", + "length": "158.2381", + "name": "line_ln2000709-1", + "phases": "BN", + "to": "m2000709" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008758", + "length": "135.1973", + "name": "line_ln5895769-1", + "phases": "BN", + "to": "l2673300" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3254227", + "length": "155.6866", + "name": "line_ln6108164-1", + "phases": "BN", + "to": "m1069550" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1089097", + "length": "272.7132", + "name": "line_ln6077773-1", + "phases": "BN", + "to": "m1108270" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_wpal_ln6259996-1", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047521", + "length": "137.7578", + "name": "line_ln6259996-1", + "phases": "ABCN", + "to": "m1047526" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2822868", + "length": "193.0094", + "name": "line_ln5472365-1", + "phases": "AN", + "to": "l2766723" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047733", + "length": "340.4195", + "name": "line_ln6411363-1", + "phases": "AN", + "to": "l3066804" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3122825", + "length": "199.6921", + "name": "line_ln6199526-1", + "phases": "AN", + "to": "l2991920" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2766738", + "length": "181.9563", + "name": "line_ln5623418-1", + "phases": "ABCN", + "to": "m1069513" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069517", + "length": "80.5233", + "name": "line_ln6229819-1", + "phases": "ABCN", + "to": "m1069518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s2s3_1", + "length": "14763.7795", + "name": "line_hvmv69s2s3-1", + "phases": "ABCN", + "to": "hvmv69s2s3_2" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1108269", + "length": "237.9491", + "name": "line_ln5956458-1", + "phases": "BN", + "to": "l2729405" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3141396", + "length": "526.1914", + "name": "line_ln6017288-1", + "phases": "CN", + "to": "l3066808" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027005", + "length": "127.3645", + "name": "line_ln5653453-1", + "phases": "BN", + "to": "l3160100" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p827500", + "length": "322.1691", + "name": "line_ln6110365-1", + "phases": "AN", + "to": "l2822861" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1089144", + "length": "8.5031", + "name": "line_ln6352700-1", + "phases": "AN", + "to": "p827522" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069567", + "length": "501.8222", + "name": "line_ln5774480-1", + "phases": "BN", + "to": "m1069582" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "d5623395-1_int", + "length": "355.5194", + "name": "line_ln5623395-1", + "phases": "BN", + "to": "l2879068" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001002", + "length": "158.2381", + "name": "line_ln2001003-1", + "phases": "BN", + "to": "m2001003" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001211", + "length": "158.2381", + "name": "line_ln2001212-1", + "phases": "CN", + "to": "m2001212" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027101", + "length": "537.7496", + "name": "line_ln6259983-1", + "phases": "BN", + "to": "l2860480" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166407", + "length": "1228.6008", + "name": "line_ln6318771-1", + "phases": "CN", + "to": "l3064514" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047688", + "length": "224.7488", + "name": "line_ln5472352-1", + "phases": "ABCN", + "to": "m1047699" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166398", + "length": "230.3660", + "name": "line_ln6048526-1", + "phases": "CN", + "to": "l3142050" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001309", + "length": "158.2381", + "name": "line_ln2001310-1", + "phases": "AN", + "to": "m2001310" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069217", + "length": "13.3473", + "name": "line_ln6411376-1", + "phases": "ABCN", + "to": "l2841626" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142869", + "length": "97.9326", + "name": "line_ln5715002-1", + "phases": "ABCN", + "to": "m1142871" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026378", + "length": "294.3394", + "name": "line_ln6506312-2", + "phases": "AN", + "to": "l2897778" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026660", + "length": "325.9950", + "name": "line_ln5623405-1", + "phases": "AN", + "to": "m1026657" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026954", + "length": "691.4081", + "name": "line_ln5683818-1", + "phases": "ABCN", + "to": "l2804256" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047478", + "length": "139.4813", + "name": "line_ln6199513-1", + "phases": "CN", + "to": "l2766716" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv_sub1_48332", + "length": "63.7665", + "name": "line_ln5710794-3", + "phases": "ABCN", + "to": "d5710794-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5683000-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2691949", + "length": "506.5679", + "name": "line_ln5683000-1", + "phases": "AN", + "to": "l2692000" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108499", + "length": "204.0005", + "name": "line_ln6417942-1", + "phases": "AN", + "to": "m1108507" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr1/0_tpx_ln6229827-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1125974", + "length": "2.1608", + "name": "line_ln5927299-1", + "phases": "CN", + "to": "l3104796" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069384", + "length": "131.6854", + "name": "line_ln6350532-1", + "phases": "AN", + "to": "l3066805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069556", + "length": "296.9676", + "name": "line_ln5894212-2", + "phases": "ABCN", + "to": "m1069564" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069549", + "length": "194.1824", + "name": "line_ln5894212-1", + "phases": "ABCN", + "to": "m1069556" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026333", + "length": "151.3151", + "name": "line_ln6198013-2", + "phases": "ABCN", + "to": "m1026331" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026331", + "length": "186.2342", + "name": "line_ln6198013-1", + "phases": "ABCN", + "to": "m1026330" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027087", + "length": "297.0002", + "name": "line_ln6015811-1", + "phases": "AN", + "to": "l2726983" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3047058", + "length": "495.1403", + "name": "line_ln6153058-1", + "phases": "ABCN", + "to": "l3047059" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069565", + "length": "267.2170", + "name": "line_ln5472387-1", + "phases": "BN", + "to": "m1069572" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1140832", + "length": "85.7112", + "name": "line_ln5683827-3", + "phases": "CN", + "to": "l2841631" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108352", + "length": "302.5568", + "name": "line_ln6230805-1", + "phases": "CN", + "to": "m1108356" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026662", + "length": "29.1314", + "name": "line_ln5683827-2", + "phases": "CN", + "to": "n1140832" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2692660", + "length": "487.6130", + "name": "line_ln5473438-1", + "phases": "AN", + "to": "l2955076" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108260", + "length": "116.9874", + "name": "line_ln6078744-1", + "phases": "BN", + "to": "m1108259" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3065665", + "length": "356.1330", + "name": "line_ln5775433-3", + "phases": "AN", + "to": "l3235946" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069135", + "length": "232.9077", + "name": "line_ln6138614-1", + "phases": "ABCN", + "to": "r18242" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089213", + "length": "264.2370", + "name": "line_ln5799408-1", + "phases": "ABCN", + "to": "l3118855" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3254869", + "length": "235.9296", + "name": "line_ln5644788-1", + "phases": "BN", + "to": "l2798067" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069563", + "length": "127.3109", + "name": "line_ln5924705-2", + "phases": "AN", + "to": "n1136360" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026657", + "length": "19.7194", + "name": "line_ln5655683-1", + "phases": "AN", + "to": "m1026656" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047615", + "length": "6.5023", + "name": "line_ln6298585-2", + "phases": "ABCN", + "to": "l3216123" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047593", + "length": "428.3360", + "name": "line_ln6298585-1", + "phases": "ABCN", + "to": "m1047615" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1136360", + "length": "146.7622", + "name": "line_ln5924705-3", + "phases": "AN", + "to": "l2729424" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "p904452", + "length": "20.8247", + "name": "line_ln81048100-6", + "phases": "B", + "to": "221-282818" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "n1230123", + "length": "183.0816", + "name": "line_ln81048100-5", + "phases": "B", + "to": "l2708744" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "221-282818", + "length": "21.2881", + "name": "line_ln81048100-7", + "phases": "B", + "to": "n1230123" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2804957", + "length": "195.6736", + "name": "line_ln5957460-1", + "phases": "CN", + "to": "l3048937" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047568", + "length": "297.1146", + "name": "line_ln5804800-1", + "phases": "ABCN", + "to": "m1047558" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026774", + "length": "391.3442", + "name": "line_ln6077782-1", + "phases": "ABCN", + "to": "m1026769" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069619", + "length": "8.7989", + "name": "line_ln6290226-1", + "phases": "BN", + "to": "m1069620" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047293", + "length": "65.9258", + "name": "line_ln6047605-1", + "phases": "ABCN", + "to": "m1047292" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2898515", + "length": "195.5573", + "name": "line_ln6018326-1", + "phases": "CN", + "to": "m1166387" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2804261", + "length": "319.0817", + "name": "line_ln6047582-1", + "phases": "CN", + "to": "l3178980" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108361", + "length": "107.7460", + "name": "line_ln5986961-1", + "phases": "CN", + "to": "l3048228" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2673323", + "length": "234.7150", + "name": "line_ln6199535-1", + "phases": "CN", + "to": "m1009809" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p829963", + "length": "21.9034", + "name": "line_ln5535142-1", + "phases": "BN", + "to": "m1125916" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3027156", + "length": "373.3943", + "name": "line_ln5773136-1", + "phases": "CN", + "to": "l2860481" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e183473", + "length": "21.1388", + "name": "line_ln5576174-3", + "phases": "ABCN", + "to": "r20703" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l2708744", + "length": "312.6824", + "name": "line_ln81048100-2", + "phases": "B", + "to": "l2690187" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1209800", + "length": "179.7399", + "name": "line_ln6198133-1", + "phases": "CN", + "to": "l2839332" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2859403", + "length": "124.5329", + "name": "line_ln5576174-2", + "phases": "ABCN", + "to": "l2973791" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026323", + "length": "386.3576", + "name": "line_ln5714053-1", + "phases": "BN", + "to": "m1026320" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l2690187", + "length": "293.8702", + "name": "line_ln81048100-3", + "phases": "B", + "to": "m1108412" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3029506", + "length": "290.2646", + "name": "line_ln6350545-1", + "phases": "BN", + "to": "m1047518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2820556", + "length": "129.5582", + "name": "line_ln6017297-1", + "phases": "AN", + "to": "m1047410" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000400", + "length": "503.8947", + "name": "line_ln2000500-1", + "phases": "ABCN", + "to": "m2000500" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "r20703", + "length": "140.3046", + "name": "line_ln5576174-4", + "phases": "ABCN", + "to": "l2859403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069515", + "length": "150.1989", + "name": "line_ln5835160-1", + "phases": "ABCN", + "to": "m1069514" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "d2000401_int", + "length": "158.2381", + "name": "line_ln2000402-1", + "phases": "AN", + "to": "m2000402" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026767", + "length": "144.6877", + "name": "line_ln5500957-1", + "phases": "ABCN", + "to": "l3216346" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2822862", + "length": "212.0336", + "name": "line_ln5744329-1", + "phases": "CN", + "to": "l3066806" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2954346", + "length": "575.0969", + "name": "line_ln6320336-1", + "phases": "BN", + "to": "m1047831" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069533", + "length": "389.5949", + "name": "line_ln6047595-2", + "phases": "ABCN", + "to": "n1136356" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2767341", + "length": "96.2097", + "name": "line_ln6260929-1", + "phases": "ABCN", + "to": "m1125968" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026953", + "length": "99.9999", + "name": "line_ln5651966-1", + "phases": "BN", + "to": "l2764399" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3235241", + "length": "505.8775", + "name": "line_ln5683805-1", + "phases": "CN", + "to": "l2691941" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027109", + "length": "219.7670", + "name": "line_ln6379372-1", + "phases": "AN", + "to": "l3101788" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047409", + "length": "418.4975", + "name": "line_ln6138636-1", + "phases": "AN", + "to": "l2841648" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1009828", + "length": "135.7214", + "name": "line_ln6138591-1", + "phases": "BN", + "to": "l3254206" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1136356", + "length": "84.6741", + "name": "line_ln6047595-3", + "phases": "ABCN", + "to": "m1069549" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2876814", + "length": "261.9987", + "name": "line_ln6001653-2", + "phases": "ABCN", + "to": "m1026834" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2897800", + "length": "86.9148", + "name": "line_ln5532782-1", + "phases": "BN", + "to": "m1047809" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3019248", + "length": "299.9992", + "name": "line_ln6495088-1", + "phases": "BN", + "to": "m3021569" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026844", + "length": "9.7449", + "name": "line_ln6001653-3", + "phases": "ABCN", + "to": "l2876814" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047572", + "length": "114.8210", + "name": "line_ln5631690-1", + "phases": "ABCN", + "to": "m1047580" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026854", + "length": "19.4377", + "name": "line_ln5682327-1", + "phases": "AN", + "to": "p901894" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026834", + "length": "177.1741", + "name": "line_ln6001653-1", + "phases": "ABCN", + "to": "m1026829" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m3036170", + "length": "169.5723", + "name": "line_ln6505951-1", + "phases": "CN", + "to": "l3197642" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026354", + "length": "235.6899", + "name": "line_ln5865271-1", + "phases": "ABCN", + "to": "l3235275" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2766499", + "length": "27.1196", + "name": "line_ln8961800-3", + "phases": "C", + "to": "m1047633" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2879767", + "length": "230.3393", + "name": "line_ln6109148-1", + "phases": "BN", + "to": "l2767407" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "l2786204", + "length": "236.3634", + "name": "line_ln5589094-1", + "phases": "ABCN", + "to": "m1209819" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069465", + "length": "249.4192", + "name": "line_ln6047560-1", + "phases": "AN", + "to": "l3010561" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2673308", + "length": "369.4543", + "name": "line_ln6199557-1", + "phases": "ABCN", + "to": "l2991939" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p828359", + "length": "582.3726", + "name": "line_ln8961800-1", + "phases": "C", + "to": "l2878848" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2878848", + "length": "474.0810", + "name": "line_ln8961800-2", + "phases": "C", + "to": "l2766499" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p895111", + "length": "229.1842", + "name": "line_ln5591834-1", + "phases": "CN", + "to": "l2895496" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026648", + "length": "317.8778", + "name": "line_ln5653462-1", + "phases": "AN", + "to": "l2973159" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2804282", + "length": "267.0625", + "name": "line_ln5714075-1", + "phases": "ABCN", + "to": "l3104154" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1209782", + "length": "127.1404", + "name": "line_ln6048633-1", + "phases": "AN", + "to": "l3217057" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069202", + "length": "398.8543", + "name": "line_ln5956467-1", + "phases": "ABCN", + "to": "l2879073" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2710513", + "length": "620.8249", + "name": "line_ln5625550-1", + "phases": "BN", + "to": "p827553" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1142098", + "length": "170.0548", + "name": "line_ln5805676-3", + "phases": "AN", + "to": "l2936212" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108483", + "length": "22.0663", + "name": "line_ln5805676-2", + "phases": "AN", + "to": "n1142098" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026343", + "length": "30.8785", + "name": "line_ln6411389-1", + "phases": "AN", + "to": "m1026344" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2804254", + "length": "43.6442", + "name": "line_ln6138601-1", + "phases": "AN", + "to": "m1047752" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009838", + "length": "155.0878", + "name": "line_ln5472343-1", + "phases": "BN", + "to": "l2801896" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3160871", + "length": "293.5436", + "name": "line_ln5957495-1", + "phases": "CN", + "to": "l3030203" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2897765", + "length": "374.7407", + "name": "line_ln5835129-1", + "phases": "BN", + "to": "m1047819" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e192201", + "length": "182.6842", + "name": "line_ln6321409-1", + "phases": "ABCN", + "to": "m1209800" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069363", + "length": "303.8930", + "name": "line_ln6290239-1", + "phases": "CN", + "to": "m1069364" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m4118754", + "length": "444.3335", + "name": "line_ln6380821-3", + "phases": "BN", + "to": "m1026312" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3030126", + "length": "157.4342", + "name": "line_ln6260928-1", + "phases": "CN", + "to": "l3254870" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001203", + "length": "158.2381", + "name": "line_ln2001204-1", + "phases": "CN", + "to": "m2001204" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2954338", + "length": "292.4521", + "name": "line_ln5774447-1", + "phases": "BN", + "to": "m1009828" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p901933", + "length": "27.0691", + "name": "line_ln6288699-1", + "phases": "AN", + "to": "m1069563" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069565", + "length": "337.8521", + "name": "line_ln5501089-1", + "phases": "BN", + "to": "l2989596" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6320366-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026798", + "length": "80.5107", + "name": "line_ln5803299-1", + "phases": "CN", + "to": "l2952014" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027109", + "length": "205.3368", + "name": "line_ln6379373-1", + "phases": "AN", + "to": "m1027114" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000908", + "length": "158.2381", + "name": "line_ln2000909-1", + "phases": "CN", + "to": "m2000909" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047480", + "length": "41.3036", + "name": "line_ln5504712-1", + "phases": "AN", + "to": "p827504" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047410", + "length": "306.8765", + "name": "line_ln5623402-1", + "phases": "AN", + "to": "m1047409" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3066810", + "length": "425.3221", + "name": "line_ln5623392-1", + "phases": "CN", + "to": "l2897769" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2860504", + "length": "683.6655", + "name": "line_ln6108172-1", + "phases": "AN", + "to": "l2860493" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1149236", + "length": "14.0555", + "name": "line_ln6232159-1", + "phases": "AN", + "to": "p829974" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2991906", + "length": "211.0557", + "name": "line_ln6138598-1", + "phases": "AN", + "to": "l2879054" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089170", + "length": "256.8719", + "name": "line_ln5926293-1", + "phases": "CN", + "to": "l3085392" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "n1139252", + "length": "20.4742", + "name": "line_ln5621837-3", + "phases": "BN", + "to": "l3122812" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001007", + "length": "158.2381", + "name": "line_ln2001008-1", + "phases": "BN", + "to": "m2001008" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000414", + "length": "158.2381", + "name": "line_ln2000415-1", + "phases": "AN", + "to": "m2000415" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal1/0_tpx_ln6411371-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047649", + "length": "79.0974", + "name": "line_ln6411371-1", + "phases": "ABCN", + "to": "l2973153" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027100", + "length": "229.9990", + "name": "line_ln6122719-1", + "phases": "AN", + "to": "l3140238" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166391", + "length": "348.3422", + "name": "line_ln6048523-1", + "phases": "CN", + "to": "l3254873" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2822867", + "length": "12.3683", + "name": "line_ln5472357-1", + "phases": "BN", + "to": "m1069412" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx2_wpal_ln5496577-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1125913", + "length": "130.2641", + "name": "line_ln5496577-1", + "phases": "BN", + "to": "l3068944" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026393", + "length": "87.4701", + "name": "line_ln5653467-1", + "phases": "AN", + "to": "l2804252" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "221-240988", + "length": "134.7809", + "name": "line_ln8939784-1", + "phases": "C", + "to": "l3141411" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027101", + "length": "11.8843", + "name": "line_ln6229788-1", + "phases": "BN", + "to": "l2710508" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p901910", + "length": "22.2087", + "name": "line_ln5621837-2", + "phases": "BN", + "to": "n1139252" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2785523", + "length": "327.0579", + "name": "line_ln5926303-1", + "phases": "CN", + "to": "l3141388" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125905", + "length": "280.6758", + "name": "line_ln5836177-1", + "phases": "BN", + "to": "l2748839" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137985", + "length": "811.9327", + "name": "line_ln5803264-3", + "phases": "AN", + "to": "l3176656" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047722", + "length": "31.5895", + "name": "line_ln5803264-2", + "phases": "AN", + "to": "n1137985" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047520", + "length": "170.7420", + "name": "line_ln5562932-1", + "phases": "ABCN", + "to": "m1047521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1027043", + "length": "144.9393", + "name": "line_ln5956466-1", + "phases": "ABCN", + "to": "m1027055" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069590", + "length": "443.9831", + "name": "line_ln5591702-1", + "phases": "BN", + "to": "m1069595" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx1/0_tpx_ln6138596-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089148", + "length": "158.8097", + "name": "line_ln6259992-1", + "phases": "AN", + "to": "l2766721" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069483", + "length": "27.3050", + "name": "line_ln5898056-1", + "phases": "CN", + "to": "p827503" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2673316", + "length": "175.2488", + "name": "line_ln6077777-1", + "phases": "AN", + "to": "m1089138" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2858163", + "length": "529.3433", + "name": "line_ln5833611-1", + "phases": "ABCN", + "to": "l2766747" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047441", + "length": "138.2927", + "name": "line_ln5865241-1", + "phases": "BN", + "to": "m1047442" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026852", + "length": "26.5131", + "name": "line_ln5774469-1", + "phases": "CN", + "to": "l2785529" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1125944", + "length": "28.7524", + "name": "line_ln5651987-1", + "phases": "AN", + "to": "p901941" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108354", + "length": "256.3779", + "name": "line_ln6379351-1", + "phases": "CN", + "to": "m1108350" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089143", + "length": "450.6489", + "name": "line_ln5502533-1", + "phases": "ABCN", + "to": "m1089141" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108299", + "length": "22.2995", + "name": "line_ln5686247-1", + "phases": "BN", + "to": "m1108300" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2766732", + "length": "45.0560", + "name": "line_ln5926316-1", + "phases": "BN", + "to": "m1026485" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3029502", + "length": "280.5672", + "name": "line_ln6138608-3", + "phases": "ABCN", + "to": "d6138608-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "q14404", + "length": "15.0822", + "name": "line_ln6138608-2", + "phases": "ABCN", + "to": "regxfmr_190-7361" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069738", + "length": "323.7003", + "name": "line_ln6212942-1", + "phases": "BN", + "to": "l2690941" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2727795", + "length": "105.1792", + "name": "line_ln5895778-1", + "phases": "CN", + "to": "l2972704" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026700", + "length": "72.5888", + "name": "line_ln6286966-3", + "phases": "BN", + "to": "n1140820" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1140820", + "length": "135.6907", + "name": "line_ln6286966-2", + "phases": "BN", + "to": "l3189189" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3142079", + "length": "8.2369", + "name": "line_ln6505938-4", + "phases": "BN", + "to": "m3036162" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2823611", + "length": "273.9171", + "name": "line_ln5473440-1", + "phases": "ABCN", + "to": "l3030204" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069411", + "length": "184.8419", + "name": "line_ln6290202-1", + "phases": "AN", + "to": "l2991905" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3064514", + "length": "204.5053", + "name": "line_ln5591715-1", + "phases": "CN", + "to": "l3048888" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108258", + "length": "141.9639", + "name": "line_ln5894220-1", + "phases": "BN", + "to": "m1108257" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3214069", + "length": "166.0049", + "name": "line_ln6137009-1", + "phases": "ABCN", + "to": "m1125960" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108356", + "length": "204.5835", + "name": "line_ln5503584-1", + "phases": "CN", + "to": "l2674052" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125952", + "length": "41.8933", + "name": "line_ln6137009-2", + "phases": "ABCN", + "to": "l3214069" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108259", + "length": "151.6662", + "name": "line_ln5894220-2", + "phases": "BN", + "to": "m1108258" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m3036164", + "length": "156.6655", + "name": "line_ln5835135-2", + "phases": "BN", + "to": "l2935553" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2691954", + "length": "210.6527", + "name": "line_ln6320368-1", + "phases": "ABCN", + "to": "l3122849" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3048200", + "length": "220.1672", + "name": "line_ln5986920-1", + "phases": "BN", + "to": "m1008733" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089131", + "length": "165.6768", + "name": "line_ln6409869-1", + "phases": "AN", + "to": "l3270854" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2989600", + "length": "326.1218", + "name": "line_ln5591813-1", + "phases": "AN", + "to": "m1166362" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1026661", + "length": "16.6482", + "name": "line_ln8945012-1", + "phases": "A", + "to": "p827530" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2804252", + "length": "205.3900", + "name": "line_ln5683814-1", + "phases": "AN", + "to": "l3195310" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142819", + "length": "246.0130", + "name": "line_ln5745348-1", + "phases": "ABCN", + "to": "m1142818" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "221-306687", + "length": "436.3281", + "name": "line_ln8968082-2", + "phases": "B", + "to": "l2916625" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "p841985", + "length": "5.6226", + "name": "line_ln8968082-1", + "phases": "B", + "to": "221-306687" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2001300", + "length": "436.0067", + "name": "line_ln2001400-1", + "phases": "ABCN", + "to": "m2001400" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1142815", + "length": "79.3849", + "name": "line_ln6291288-3", + "phases": "AN", + "to": "n1141477" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx2_wpal_ln5561444-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "m1125988", + "length": "154.7468", + "name": "line_ln5561444-1", + "phases": "AN", + "to": "l2898457" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1141477", + "length": "92.9323", + "name": "line_ln6291288-2", + "phases": "AN", + "to": "l2879794" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2876846", + "length": "954.6560", + "name": "line_ln5531325-1", + "phases": "BN", + "to": "l3048203" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln6019479-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "l2785531", + "length": "299.9911", + "name": "line_ln5956488-1", + "phases": "CN", + "to": "l3216358" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047577", + "length": "337.9466", + "name": "line_ln5619489-1", + "phases": "ABCN", + "to": "m1047592" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108315", + "length": "236.8860", + "name": "line_ln6291253-1", + "phases": "ABCN", + "to": "m1108311" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069607", + "length": "107.6571", + "name": "line_ln5744350-1", + "phases": "BN", + "to": "m1069619" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "d2001301_int", + "length": "158.2381", + "name": "line_ln2001302-1", + "phases": "AN", + "to": "m2001302" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108286", + "length": "260.1462", + "name": "line_ln5955063-1", + "phases": "ABCN", + "to": "l2933164" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "l2936216", + "length": "307.2721", + "name": "line_ln5473351-1", + "phases": "ABCN", + "to": "226-23745" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108387", + "length": "100.0005", + "name": "line_ln5728479-1", + "phases": "ABCN", + "to": "m1108398" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047773", + "length": "221.5927", + "name": "line_ln6320333-1", + "phases": "BN", + "to": "l2973152" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069201", + "length": "473.8642", + "name": "line_ln6199520-1", + "phases": "CN", + "to": "l3010565" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166364", + "length": "244.8668", + "name": "line_ln5805804-1", + "phases": "CN", + "to": "m1166358" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026905", + "length": "18.1094", + "name": "line_ln6383058-1", + "phases": "AN", + "to": "p827515" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "e182744", + "length": "199.9987", + "name": "line_ln5803255-1", + "phases": "BN", + "to": "l2801895" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069398", + "length": "339.5027", + "name": "line_ln5653454-1", + "phases": "AN", + "to": "l3010559" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108401", + "length": "434.6776", + "name": "line_ln6422012-1", + "phases": "ABCN", + "to": "m1108402" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001212", + "length": "158.2381", + "name": "line_ln2001213-1", + "phases": "CN", + "to": "m2001213" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001310", + "length": "158.2381", + "name": "line_ln2001311-1", + "phases": "AN", + "to": "m2001311" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1134471", + "length": "243.6564", + "name": "line_ln6137084-2", + "phases": "AN", + "to": "l2839331" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108347", + "length": "300.4353", + "name": "line_ln5684869-1", + "phases": "CN", + "to": "m1108355" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027080", + "length": "73.1785", + "name": "line_ln6137084-3", + "phases": "AN", + "to": "n1134471" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1108393", + "length": "5.8961", + "name": "line_ln81048093-1", + "phases": "A", + "to": "193-51796" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx6_wpal6_wpal_ln6108128-2", + "continuous_rating_C": "115.00", + "emergency_rating_C": "115.00", + "from": "m1047649", + "length": "20.0682", + "name": "line_ln6108128-2", + "phases": "CN", + "to": "n1136997" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026857", + "length": "28.0186", + "name": "line_ln6228278-1", + "phases": "AN", + "to": "m1026859" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2766746", + "length": "362.4657", + "name": "line_ln6077809-1", + "phases": "CN", + "to": "m1027073" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr1/0_tpx_ln6229827-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1125917", + "length": "27.0313", + "name": "line_ln7064337-2", + "phases": "CN", + "to": "p1197121" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069627", + "length": "162.9672", + "name": "line_ln6380834-1", + "phases": "BN", + "to": "l3254228" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1108527", + "length": "12.6755", + "name": "line_ln5804787-1", + "phases": "BN", + "to": "l3141394" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009720", + "length": "93.7123", + "name": "line_ln5714057-1", + "phases": "ABCN", + "to": "m1009715" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx6_wpal6_wpal_ln6108128-2", + "continuous_rating_C": "115.00", + "emergency_rating_C": "115.00", + "from": "n1136997", + "length": "82.9683", + "name": "line_ln6108128-3", + "phases": "CN", + "to": "l3104123" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089173", + "length": "97.0016", + "name": "line_ln5562923-1", + "phases": "ABCN", + "to": "m1089174" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2785517", + "length": "328.1981", + "name": "line_ln6506309-1", + "phases": "CN", + "to": "l3066809" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2766722", + "length": "172.7240", + "name": "line_ln6290211-1", + "phases": "BN", + "to": "l2879071" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000405", + "length": "158.2381", + "name": "line_ln2000406-1", + "phases": "AN", + "to": "m2000406" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2933164", + "length": "221.4275", + "name": "line_ln6440069-1", + "phases": "ABCN", + "to": "l3029498" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026824", + "length": "623.7895", + "name": "line_ln5985378-1", + "phases": "ABCN", + "to": "m1009807" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009698", + "length": "264.9150", + "name": "line_ln6258429-1", + "phases": "ABCN", + "to": "m1026767" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089162", + "length": "846.4428", + "name": "line_ln5472348-1", + "phases": "CN", + "to": "m1089165" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3160104", + "length": "366.0667", + "name": "line_ln6411384-1", + "phases": "BN", + "to": "m1047471" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "e182727", + "length": "20.0645", + "name": "line_ln6439975-1", + "phases": "CN", + "to": "m1027042" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047303", + "length": "325.8324", + "name": "line_ln6380847-1", + "phases": "ABCN", + "to": "l3254238" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3179646", + "length": "253.8216", + "name": "line_ln5805728-1", + "phases": "ABCN", + "to": "l2674027" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3160872", + "length": "190.3807", + "name": "line_ln6321420-1", + "phases": "ABCN", + "to": "m1142860" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3160115", + "length": "263.7184", + "name": "line_ln6320355-1", + "phases": "BN", + "to": "l2935567" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000600", + "length": "372.3127", + "name": "line_ln2000700-1", + "phases": "ABCN", + "to": "m2000700" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2820590", + "length": "181.8499", + "name": "line_ln5531334-1", + "phases": "CN", + "to": "m1108328" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209749", + "length": "666.6055", + "name": "line_ln5896826-1", + "phases": "BN", + "to": "l2748840" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069133", + "length": "59.6443", + "name": "line_ln5742808-1", + "phases": "AN", + "to": "l2710521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l3027670", + "length": "472.5929", + "name": "line_ln81048103-2", + "phases": "B", + "to": "m1108459" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx2_wpal_ln5496577-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "l3068944", + "length": "7.2842", + "name": "line_ln5708136-1", + "phases": "BN", + "to": "m1125911" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166361", + "length": "226.6312", + "name": "line_ln6198041-1", + "phases": "AN", + "to": "l2692661" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3160107", + "length": "353.7660", + "name": "line_ln6350541-1", + "phases": "ABCN", + "to": "l3104125" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2936270", + "length": "198.8142", + "name": "line_ln6351517-1", + "phases": "AN", + "to": "l3086078" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2935559", + "length": "124.2438", + "name": "line_ln6411397-1", + "phases": "AN", + "to": "l3048214" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026851", + "length": "98.5616", + "name": "line_ln5502542-1", + "phases": "ABCN", + "to": "l3235257" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047303", + "length": "926.0535", + "name": "line_ln5986964-1", + "phases": "CN", + "to": "l3048230" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047756", + "length": "18.3622", + "name": "line_ln6380812-1", + "phases": "AN", + "to": "m1047755" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3119793", + "length": "141.3341", + "name": "line_ln6102834-2", + "phases": "BN", + "to": "m1047371" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047322", + "length": "243.9281", + "name": "line_ln5835148-1", + "phases": "AN", + "to": "l3048211" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p901909", + "length": "67.7247", + "name": "line_ln6379342-1", + "phases": "BN", + "to": "m1026472" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047379", + "length": "170.6674", + "name": "line_ln6102834-1", + "phases": "BN", + "to": "l3119793" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2860506", + "length": "821.2778", + "name": "line_ln5653489-1", + "phases": "BN", + "to": "m1027019" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3216368", + "length": "90.8688", + "name": "line_ln5683858-2", + "phases": "ABCN", + "to": "n1140827" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209775", + "length": "531.7275", + "name": "line_ln6078775-1", + "phases": "ABCN", + "to": "m1209774" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1140827", + "length": "56.6568", + "name": "line_ln5683858-3", + "phases": "ABCN", + "to": "m1026726" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125955", + "length": "370.2767", + "name": "line_ln5625527-1", + "phases": "CN", + "to": "l3236004" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026701", + "length": "200.6493", + "name": "line_ln6411407-1", + "phases": "ABCN", + "to": "m1026697" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1108412", + "length": "196.3753", + "name": "line_ln81048103-1", + "phases": "B", + "to": "l3027670" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p895117", + "length": "16.9985", + "name": "line_ln6409780-1", + "phases": "BN", + "to": "m1069532" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3949154", + "length": "12.4230", + "name": "line_ln6991381-2", + "phases": "AN", + "to": "l3728038" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069467", + "length": "51.6392", + "name": "line_ln5714044-1", + "phases": "AN", + "to": "m1069466" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3728038", + "length": "259.5434", + "name": "line_ln6991381-4", + "phases": "AN", + "to": "l3728039" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2991943", + "length": "254.2215", + "name": "line_ln5532790-1", + "phases": "CN", + "to": "m1047319" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1108499", + "length": "118.9067", + "name": "line_ln5833633-4", + "phases": "AN", + "to": "l3065665" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026329", + "length": "112.0985", + "name": "line_ln5895787-1", + "phases": "ABCN", + "to": "m1026328" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3768670", + "length": "14.6639", + "name": "line_ln6900590-2", + "phases": "AN", + "to": "p1123251" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089119", + "length": "258.8058", + "name": "line_ln5683823-1", + "phases": "ABCN", + "to": "m1089118" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3048889", + "length": "286.9790", + "name": "line_ln6137018-1", + "phases": "CN", + "to": "m1166407" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108331", + "length": "6.6651", + "name": "line_ln5712492-1", + "phases": "CN", + "to": "l3045895" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3728039", + "length": "197.9911", + "name": "line_ln6991381-6", + "phases": "AN", + "to": "l3728040" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3045895", + "length": "293.9298", + "name": "line_ln5712492-2", + "phases": "CN", + "to": "m1108329" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069544", + "length": "10.4787", + "name": "line_ln5623415-1", + "phases": "BN", + "to": "m1069543" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3728040", + "length": "124.9685", + "name": "line_ln6991381-8", + "phases": "AN", + "to": "l3728041" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047724", + "length": "139.0173", + "name": "line_ln5773040-1", + "phases": "ABCN", + "to": "m1047722" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069532", + "length": "192.1886", + "name": "line_ln6046046-1", + "phases": "BN", + "to": "l2785534" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047722", + "length": "353.9081", + "name": "line_ln5773040-2", + "phases": "ABCN", + "to": "l2841621" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026857", + "length": "273.7427", + "name": "line_ln5651961-1", + "phases": "AN", + "to": "l2973165" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001207", + "length": "158.2381", + "name": "line_ln2001208-1", + "phases": "CN", + "to": "m2001208" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_tpx_ln5742835-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1009770", + "length": "182.7023", + "name": "line_ln5742835-1", + "phases": "ABCN", + "to": "l2689691" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m3037538", + "length": "237.1998", + "name": "line_ln5501001-2", + "phases": "CN", + "to": "l2857591" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2689726", + "length": "446.4914", + "name": "line_ln5647724-1", + "phases": "AN", + "to": "m1047400" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026701", + "length": "16.9465", + "name": "line_ln5837358-1", + "phases": "AN", + "to": "p827560" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3216351", + "length": "103.9953", + "name": "line_ln5986937-1", + "phases": "AN", + "to": "l2879081" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5593235-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3141399", + "length": "252.2085", + "name": "line_ln5593235-1", + "phases": "AN", + "to": "m1069210" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142871", + "length": "19.4870", + "name": "line_ln5989326-1", + "phases": "CN", + "to": "p829956" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2897780", + "length": "142.9531", + "name": "line_ln5744341-1", + "phases": "ABCN", + "to": "l3235255" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047794", + "length": "289.2147", + "name": "line_ln5502559-1", + "phases": "BN", + "to": "m1047792" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009715", + "length": "263.6724", + "name": "line_ln6380825-1", + "phases": "ABCN", + "to": "m1009705" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2841639", + "length": "145.4316", + "name": "line_ln5804806-1", + "phases": "AN", + "to": "m1026877" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2973152", + "length": "56.7954", + "name": "line_ln5804796-1", + "phases": "BN", + "to": "m1047777" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047623", + "length": "207.5506", + "name": "line_ln5956497-1", + "phases": "AN", + "to": "l2748157" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "p829965", + "length": "91.6011", + "name": "line_ln5928744-1", + "phases": "ABCN", + "to": "l2936271" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069558", + "length": "126.8093", + "name": "line_ln6017312-1", + "phases": "BN", + "to": "l3254229" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx4_tpx_ln6169266-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "200.00", + "from": "m1069597", + "length": "111.5238", + "name": "line_ln6169266-1", + "phases": "BN", + "to": "l2785535" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047342", + "length": "241.7915", + "name": "line_ln5683832-1", + "phases": "AN", + "to": "l3197645" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069156", + "length": "68.8429", + "name": "line_ln5926297-1", + "phases": "CN", + "to": "l2710510" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209790", + "length": "193.9492", + "name": "line_ln5594242-1", + "phases": "ABCN", + "to": "m1209788" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3142078", + "length": "442.0581", + "name": "line_ln6230759-1", + "phases": "BN", + "to": "l2879752" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142860", + "length": "165.9460", + "name": "line_ln6139646-1", + "phases": "ABCN", + "to": "m1142863" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108505", + "length": "179.0075", + "name": "line_ln5624342-1", + "phases": "ABCN", + "to": "l2955047" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2989566", + "length": "283.4381", + "name": "line_ln6318768-1", + "phases": "ABCN", + "to": "m1108378" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186067", + "length": "164.5040", + "name": "line_ln6504019-5", + "phases": "ABCN", + "to": "m3032980" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089148", + "length": "516.6344", + "name": "line_ln5865245-1", + "phases": "AN", + "to": "l2991906" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3197646", + "length": "323.8198", + "name": "line_ln6320342-1", + "phases": "ABCN", + "to": "m1026851" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2691942", + "length": "245.7255", + "name": "line_ln5502524-1", + "phases": "BN", + "to": "m1047374" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5683000-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2841000", + "length": "196.2395", + "name": "line_ln6128000-1", + "phases": "AN", + "to": "l2841648" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6504019-6_int", + "length": "526.2791", + "name": "line_ln6504019-6", + "phases": "ABCN", + "to": "m1186065" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027036", + "length": "263.4325", + "name": "line_ln5714070-1", + "phases": "BN", + "to": "l2785543" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5744357-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069218", + "length": "296.1215", + "name": "line_ln6047569-1", + "phases": "AN", + "to": "l2954351" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009824", + "length": "217.2309", + "name": "line_ln6350528-1", + "phases": "BN", + "to": "l2691939" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2925506", + "length": "102.5315", + "name": "line_ln5472402-1", + "phases": "ABCN", + "to": "m1069438" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3159037", + "length": "162.1578", + "name": "line_ln5727681-1", + "phases": "BN", + "to": "m1069738" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3235266", + "length": "260.5275", + "name": "line_ln6046144-1", + "phases": "ABCN", + "to": "l2801950" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p895106", + "length": "131.7627", + "name": "line_ln5952393-1", + "phases": "BN", + "to": "l3048887" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026655", + "length": "206.9838", + "name": "line_ln6260020-1", + "phases": "ABCN", + "to": "m1009651" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal1/0_tpx_ln5956462-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1108344", + "length": "129.3679", + "name": "line_ln5956462-1", + "phases": "CN", + "to": "l2804250" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108520", + "length": "320.0004", + "name": "line_ln5524067-1", + "phases": "CN", + "to": "m1108514" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2935549", + "length": "315.0343", + "name": "line_ln5835131-1", + "phases": "ABCN", + "to": "m1069420" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069174", + "length": "191.1439", + "name": "line_ln5742813-1", + "phases": "CN", + "to": "l2841629" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e192860", + "length": "64.2826", + "name": "line_ln5815900-1", + "phases": "ABCN", + "to": "m1209817" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1186061", + "length": "119.6550", + "name": "line_ln6230800-1", + "phases": "BN", + "to": "l2861223" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3066816", + "length": "398.4986", + "name": "line_ln5774465-1", + "phases": "AN", + "to": "m1026667" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2688692", + "length": "16.7214", + "name": "line_ln5527400-1", + "phases": "ABCN", + "to": "m1108286" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p893163", + "length": "12.8809", + "name": "line_ln5741249-1", + "phases": "AN", + "to": "m1047314" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2879077", + "length": "392.6912", + "name": "line_ln5502537-1", + "phases": "BN", + "to": "m1026693" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026931", + "length": "161.3726", + "name": "line_ln5714039-1", + "phases": "AN", + "to": "l3216336" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089122", + "length": "249.6044", + "name": "line_ln6108137-1", + "phases": "ABCN", + "to": "m1089132" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047836", + "length": "460.9661", + "name": "line_ln6380803-1", + "phases": "BN", + "to": "l3048199" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p827495", + "length": "54.9327", + "name": "line_ln5534964-1", + "phases": "BN", + "to": "m1026466" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "d5863704-2_int", + "length": "291.5319", + "name": "line_ln5863704-2", + "phases": "ABCN", + "to": "n1136667" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1136667", + "length": "115.3725", + "name": "line_ln5863704-3", + "phases": "ABCN", + "to": "196-29519" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089200", + "length": "88.0921", + "name": "line_ln6169244-1", + "phases": "AN", + "to": "l2916602" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125962", + "length": "19.0035", + "name": "line_ln6289479-1", + "phases": "CN", + "to": "p903490" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027087", + "length": "76.0140", + "name": "line_ln5924721-1", + "phases": "AN", + "to": "m1027091" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1209795", + "length": "205.1412", + "name": "line_ln6381845-1", + "phases": "CN", + "to": "l2936268" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069419", + "length": "159.0934", + "name": "line_ln5683810-1", + "phases": "ABCN", + "to": "m1069418" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026797", + "length": "8.3705", + "name": "line_ln5649275-1", + "phases": "ABCN", + "to": "m1026796" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2879068", + "length": "317.5824", + "name": "line_ln5895774-1", + "phases": "BN", + "to": "m1047773" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal1/0_tpx_ln6411371-1", + "continuous_rating_A": "150.00", + "continuous_rating_B": "150.00", + "continuous_rating_C": "150.00", + "emergency_rating_A": "150.00", + "emergency_rating_B": "150.00", + "emergency_rating_C": "150.00", + "from": "l2822866", + "length": "106.9255", + "name": "line_ln5532746-1", + "phases": "ABCN", + "to": "m1047688" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3029518", + "length": "302.9064", + "name": "line_ln6320364-1", + "phases": "BN", + "to": "l2897807" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047794", + "length": "435.2080", + "name": "line_ln5593248-1", + "phases": "BN", + "to": "m1047796" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3236011", + "length": "372.8639", + "name": "line_ln5866274-1", + "phases": "BN", + "to": "l3198358" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000712", + "length": "158.2381", + "name": "line_ln2000713-1", + "phases": "BN", + "to": "m2000713" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069548", + "length": "67.5869", + "name": "line_ln5561440-2", + "phases": "CN", + "to": "n1136358" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047721", + "length": "312.8201", + "name": "line_ln5986924-1", + "phases": "AN", + "to": "m1047723" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1136358", + "length": "62.3526", + "name": "line_ln5561440-3", + "phases": "CN", + "to": "l2729423" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p829797", + "length": "19.1484", + "name": "line_ln6262430-1", + "phases": "AN", + "to": "m1108483" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4_acsr_ln5589097-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "m1142865", + "length": "28.6412", + "name": "line_ln5800724-1", + "phases": "AN", + "to": "p895112" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001305", + "length": "158.2381", + "name": "line_ln2001306-1", + "phases": "AN", + "to": "m2001306" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3036162", + "length": "141.2795", + "name": "line_ln6048598-2", + "phases": "BN", + "to": "l2955055" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1186063", + "length": "12.8481", + "name": "line_ln6322801-1", + "phases": "BN", + "to": "p829979" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2973791", + "length": "211.9683", + "name": "line_ln5684838-1", + "phases": "ABCN", + "to": "l3179650" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026709", + "length": "192.2961", + "name": "line_ln6290233-1", + "phases": "ABCN", + "to": "m1026701" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069225", + "length": "211.3958", + "name": "line_ln5591696-1", + "phases": "CN", + "to": "l3122819" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2989564", + "length": "348.9539", + "name": "line_ln6076245-1", + "phases": "BN", + "to": "l2897789" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "d5504876-1_int", + "length": "221.3697", + "name": "line_ln5504876-1", + "phases": "ABCN", + "to": "p829965" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166356", + "length": "266.7313", + "name": "line_ln5715051-1", + "phases": "AN", + "to": "l3104856" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069147", + "length": "119.4135", + "name": "line_ln6138589-1", + "phases": "CN", + "to": "l3066801" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2785520", + "length": "440.7660", + "name": "line_ln5865232-1", + "phases": "BN", + "to": "m1047386" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069408", + "length": "122.0087", + "name": "line_ln5653458-1", + "phases": "BN", + "to": "l2897774" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108403", + "length": "1062.6553", + "name": "line_ln6422016-1", + "phases": "ABCN", + "to": "m1108406" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026341", + "length": "30.6328", + "name": "line_ln6140777-1", + "phases": "AN", + "to": "p827531" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047435", + "length": "151.1237", + "name": "line_ln5863824-1", + "phases": "AN", + "to": "l2970841" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p827512", + "length": "52.7476", + "name": "line_ln6201696-2", + "phases": "CN", + "to": "n1136994" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1136994", + "length": "128.0348", + "name": "line_ln6201696-3", + "phases": "CN", + "to": "l2785521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089183", + "length": "170.8605", + "name": "line_ln8979256-1", + "phases": "ABCN", + "to": "l2990826" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1089195", + "length": "369.8621", + "name": "line_ln6047556-1", + "phases": "CN", + "to": "l3141393" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089201", + "length": "13.1633", + "name": "line_ln5679696-1", + "phases": "ABCN", + "to": "m1089202" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125968", + "length": "131.1754", + "name": "line_ln5624288-1", + "phases": "ABCN", + "to": "m1125976" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e206211", + "length": "490.9394", + "name": "line_ln5833624-2", + "phases": "ABCN", + "to": "n1134480" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001314", + "length": "158.2381", + "name": "line_ln2001315-1", + "phases": "AN", + "to": "m2001315" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1134480", + "length": "62.4852", + "name": "line_ln5833624-3", + "phases": "ABCN", + "to": "m1069519" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2692635", + "length": "27.6863", + "name": "line_ln5587295-1", + "phases": "ABCN", + "to": "regxfmr_190-8581" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047339", + "length": "271.9089", + "name": "line_ln5472370-1", + "phases": "ABCN", + "to": "l2860491" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069224", + "length": "763.5976", + "name": "line_ln6137088-1", + "phases": "ABCN", + "to": "m1069230" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "221-311359", + "length": "158.0726", + "name": "line_ln8978753-2", + "phases": "ABC", + "to": "l3234149" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "198-5320", + "length": "12.7691", + "name": "line_ln8978753-1", + "phases": "ABC", + "to": "221-311359" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2748144", + "length": "387.4846", + "name": "line_ln5532768-1", + "phases": "ABCN", + "to": "m1069533" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089118", + "length": "282.9783", + "name": "line_ln6411380-1", + "phases": "CN", + "to": "l2973158" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2766741", + "length": "200.5805", + "name": "line_ln6380838-1", + "phases": "ABCN", + "to": "m1069382" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026987", + "length": "156.0327", + "name": "line_ln6108124-1", + "phases": "BN", + "to": "m1026989" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2955081", + "length": "310.6459", + "name": "line_ln6018341-1", + "phases": "ABCN", + "to": "m1108315" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2935555", + "length": "164.8861", + "name": "line_ln5593226-1", + "phases": "AN", + "to": "l2897773" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069535", + "length": "289.0493", + "name": "line_ln5986946-1", + "phases": "BN", + "to": "m1069530" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2916606", + "length": "202.4228", + "name": "line_ln5744332-1", + "phases": "CN", + "to": "l2822864" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3101788", + "length": "179.9939", + "name": "line_ln6198050-1", + "phases": "AN", + "to": "l3101787" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069565", + "length": "606.9908", + "name": "line_ln5804819-1", + "phases": "BN", + "to": "l2785536" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m3036169", + "length": "8.5239", + "name": "line_ln6505947-4", + "phases": "AN", + "to": "l2673317" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026960", + "length": "35.8708", + "name": "line_ln5776666-1", + "phases": "AN", + "to": "m1026961" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010016", + "length": "266.9993", + "name": "line_ln6076267-1", + "phases": "AN", + "to": "m1010015" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047409", + "length": "216.9670", + "name": "line_ln5682375-1", + "phases": "AN", + "to": "l3082992" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p829976", + "length": "179.7946", + "name": "line_ln6413711-1", + "phases": "AN", + "to": "l2955078" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047401", + "length": "144.9974", + "name": "line_ln5691535-1", + "phases": "AN", + "to": "m1047403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142839", + "length": "239.4759", + "name": "line_ln5503575-1", + "phases": "ABCN", + "to": "m1142832" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108540", + "length": "280.5899", + "name": "line_ln6018243-1", + "phases": "CN", + "to": "l3235945" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3086079", + "length": "239.8468", + "name": "line_ln6506305-2", + "phases": "BN", + "to": "l2936276" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047711", + "length": "285.4290", + "name": "line_ln5683841-1", + "phases": "AN", + "to": "m1047718" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3179674", + "length": "393.3859", + "name": "line_ln6381854-1", + "phases": "BN", + "to": "m1209758" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p893610", + "length": "289.0775", + "name": "line_ln6103662-1", + "phases": "BN", + "to": "m1108302" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010014", + "length": "191.7763", + "name": "line_ln6440003-1", + "phases": "AN", + "to": "m1010011" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2876798", + "length": "332.7694", + "name": "line_ln5803273-1", + "phases": "ABCN", + "to": "d5803273-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3215549", + "length": "471.1427", + "name": "line_ln5744367-1", + "phases": "BN", + "to": "l2897800" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000703", + "length": "158.2381", + "name": "line_ln2000704-1", + "phases": "BN", + "to": "m2000704" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l3252336", + "length": "556.8654", + "name": "line_ln81048107-3", + "phases": "B", + "to": "l3233413" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l2802480", + "length": "263.7792", + "name": "line_ln81048107-2", + "phases": "B", + "to": "l3252336" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166370", + "length": "155.8783", + "name": "line_ln5927421-1", + "phases": "CN", + "to": "m1166364" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "d5956471-2_int", + "length": "349.2330", + "name": "line_ln5956471-2", + "phases": "ABCN", + "to": "m1047572" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047548", + "length": "59.7600", + "name": "line_ln5956471-3", + "phases": "ABCN", + "to": "n1136670" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l3233413", + "length": "151.9706", + "name": "line_ln81048107-4", + "phases": "B", + "to": "m1108464" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069524", + "length": "3.8768", + "name": "line_ln5985347-2", + "phases": "AN", + "to": "l3254230" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m3037540", + "length": "10.9671", + "name": "line_ln6506318-4", + "phases": "CN", + "to": "l2710509" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1108459", + "length": "271.0441", + "name": "line_ln81048107-1", + "phases": "B", + "to": "l2802480" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026679", + "length": "29.1645", + "name": "line_ln5958703-1", + "phases": "AN", + "to": "p827537" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069521", + "length": "322.0244", + "name": "line_ln5985347-1", + "phases": "AN", + "to": "m1069524" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125997", + "length": "10.9609", + "name": "line_ln5535139-1", + "phases": "ABCN", + "to": "d5535139-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026906", + "length": "320.9614", + "name": "line_ln6411393-1", + "phases": "AN", + "to": "l3048212" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "e182725", + "length": "408.1424", + "name": "line_ln6292464-1", + "phases": "BN", + "to": "m1026948" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069533", + "length": "61.0444", + "name": "line_ln5898408-1", + "phases": "BN", + "to": "196-29521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1126020", + "length": "94.2641", + "name": "line_ln5712496-1", + "phases": "AN", + "to": "m1126023" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026989", + "length": "635.9156", + "name": "line_ln5865267-1", + "phases": "BN", + "to": "l2673343" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "196-35541", + "length": "245.8313", + "name": "line_ln6141147-1", + "phases": "CN", + "to": "d6141147-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1126020", + "length": "248.3289", + "name": "line_ln5742826-1", + "phases": "AN", + "to": "l3101782" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1027041", + "length": "231.1468", + "name": "line_ln5774456-1", + "phases": "CN", + "to": "l3010564" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026767", + "length": "485.1240", + "name": "line_ln6318742-1", + "phases": "AN", + "to": "l3029500" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3197643", + "length": "133.5978", + "name": "line_ln6108146-1", + "phases": "BN", + "to": "m1026339" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047453", + "length": "228.3554", + "name": "line_ln6380816-1", + "phases": "BN", + "to": "l2691948" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2673315", + "length": "408.3552", + "name": "line_ln5714048-1", + "phases": "AN", + "to": "m1089148" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069130", + "length": "63.5425", + "name": "line_ln5651970-1", + "phases": "AN", + "to": "m1069133" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000800", + "length": "624.7518", + "name": "line_ln2000900-1", + "phases": "ABCN", + "to": "m2000900" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2955005", + "length": "105.1807", + "name": "line_ln5533708-1", + "phases": "BN", + "to": "m1108372" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2766723", + "length": "187.5267", + "name": "line_ln6169253-1", + "phases": "AN", + "to": "l3122822" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3160102", + "length": "201.0296", + "name": "line_ln6231993-1", + "phases": "ABCN", + "to": "p827514" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186063", + "length": "200.3729", + "name": "line_ln6412356-1", + "phases": "ABCN", + "to": "m1209776" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3235256", + "length": "114.4806", + "name": "line_ln5593239-1", + "phases": "ABCN", + "to": "m1069136" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx1/0_tpx_ln5562952-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1069730", + "length": "151.6182", + "name": "line_ln5532733-1", + "phases": "BN", + "to": "l2748124" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026309", + "length": "1283.5831", + "name": "line_ln5895783-1", + "phases": "BN", + "to": "l2860488" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3141388", + "length": "128.6907", + "name": "line_ln5926284-2", + "phases": "CN", + "to": "l3626914" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3626914", + "length": "141.7783", + "name": "line_ln5926284-3", + "phases": "CN", + "to": "m1089102" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3066815", + "length": "145.6488", + "name": "line_ln5835144-1", + "phases": "ABCN", + "to": "m1047548" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1089141", + "length": "22.6455", + "name": "line_ln5679773-1", + "phases": "AN", + "to": "p895105" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1136666", + "length": "97.6816", + "name": "line_ln6422809-4", + "phases": "ABCN", + "to": "m1047528" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2861157", + "length": "398.1260", + "name": "line_ln5594152-1", + "phases": "CN", + "to": "p901951" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3216370", + "length": "330.9733", + "name": "line_ln6199560-1", + "phases": "ABCN", + "to": "m1047312" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047419", + "length": "157.4607", + "name": "line_ln6316403-1", + "phases": "AN", + "to": "l2973157" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047528", + "length": "15.8571", + "name": "line_ln6422809-2", + "phases": "ABCN", + "to": "l2858166" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008742", + "length": "338.9340", + "name": "line_ln6138590-1", + "phases": "BN", + "to": "l2804247" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047526", + "length": "36.6677", + "name": "line_ln6422809-3", + "phases": "ABCN", + "to": "n1136666" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069456", + "length": "206.9229", + "name": "line_ln6138635-1", + "phases": "CN", + "to": "l2897806" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069408", + "length": "262.6830", + "name": "line_ln5593231-1", + "phases": "BN", + "to": "l2822867" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000900", + "length": "540.7130", + "name": "line_ln2001000-1", + "phases": "ABCN", + "to": "m2001000" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2764412", + "length": "472.2083", + "name": "line_ln6409797-4", + "phases": "AN", + "to": "n1134470" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047558", + "length": "179.8968", + "name": "line_ln5956470-1", + "phases": "ABCN", + "to": "m1047550" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln6411379-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069210", + "length": "266.2414", + "name": "line_ln6411379-1", + "phases": "AN", + "to": "l3085400" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1134470", + "length": "295.4180", + "name": "line_ln6409797-3", + "phases": "AN", + "to": "l3251808" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3066814", + "length": "46.8120", + "name": "line_ln5534969-3", + "phases": "ABCN", + "to": "n1134477" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1134477", + "length": "74.1832", + "name": "line_ln5534969-2", + "phases": "ABCN", + "to": "d5534969-2_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3251808", + "length": "195.1227", + "name": "line_ln6409797-1", + "phases": "AN", + "to": "m1027100" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m3036172", + "length": "8.8690", + "name": "line_ln6505952-4", + "phases": "BN", + "to": "l3086079" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3048205", + "length": "642.8287", + "name": "line_ln5835174-1", + "phases": "CN", + "to": "m1108361" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069148", + "length": "351.8178", + "name": "line_ln6259988-1", + "phases": "CN", + "to": "l2673309" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3048230", + "length": "226.8025", + "name": "line_ln5532789-1", + "phases": "CN", + "to": "l2991943" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026486", + "length": "42.3425", + "name": "line_ln5895792-1", + "phases": "BN", + "to": "m1026487" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m4362177", + "length": "214.9096", + "name": "line_ln7167521-1", + "phases": "ABCN", + "to": "m1186052" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026927", + "length": "16.8664", + "name": "line_ln6292826-1", + "phases": "ABCN", + "to": "196-29518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1142108", + "length": "241.7277", + "name": "line_ln5715016-3", + "phases": "AN", + "to": "l2674051" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1125904", + "length": "48.1054", + "name": "line_ln5715016-2", + "phases": "AN", + "to": "n1142108" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027092", + "length": "247.5995", + "name": "line_ln5894313-1", + "phases": "AN", + "to": "l2689727" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026734", + "length": "220.1102", + "name": "line_ln6061814-1", + "phases": "AN", + "to": "l3065696" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2745848", + "length": "188.8270", + "name": "line_ln5833717-1", + "phases": "ABCN", + "to": "l2673308" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026331", + "length": "199.9981", + "name": "line_ln6409762-1", + "phases": "CN", + "to": "l3214055" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026830", + "length": "172.1633", + "name": "line_ln5502528-1", + "phases": "ABCN", + "to": "l2879070" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6108145-1_int", + "length": "195.5159", + "name": "line_ln6108145-1", + "phases": "ABCN", + "to": "m1026681" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1009855", + "length": "214.9691", + "name": "line_ln5774474-1", + "phases": "BN", + "to": "l2748139" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069582", + "length": "86.0416", + "name": "line_ln5895802-1", + "phases": "BN", + "to": "l2973171" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026920", + "length": "308.1406", + "name": "line_ln6047565-1", + "phases": "ABCN", + "to": "m1026926" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125969", + "length": "85.6137", + "name": "line_ln5927296-1", + "phases": "ABCN", + "to": "l2767341" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047769", + "length": "345.1952", + "name": "line_ln6379347-1", + "phases": "BN", + "to": "l2710514" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069135", + "length": "36.4699", + "name": "line_ln5716231-1", + "phases": "BN", + "to": "p827533" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3104130", + "length": "251.1204", + "name": "line_ln6288856-1", + "phases": "BN", + "to": "l2763072" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827531", + "length": "20.3620", + "name": "line_ln5746547-1", + "phases": "AN", + "to": "m1026343" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089176", + "length": "227.4480", + "name": "line_ln6138600-1", + "phases": "ABCN", + "to": "m1089179" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1125903", + "length": "50.9865", + "name": "line_ln5894215-1", + "phases": "AN", + "to": "l2989565" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3197647", + "length": "5.3174", + "name": "line_ln6017304-1", + "phases": "AN", + "to": "m1026778" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1145954", + "length": "18.8581", + "name": "line_ln6262266-13", + "phases": "ABCN", + "to": "p827580" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047303", + "length": "13.7083", + "name": "line_ln6262266-12", + "phases": "ABCN", + "to": "n1145954" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069564", + "length": "70.3820", + "name": "line_ln5472384-2", + "phases": "AN", + "to": "n1136361" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047300", + "length": "206.2078", + "name": "line_ln5804836-1", + "phases": "ABCN", + "to": "m1047299" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1136361", + "length": "163.6956", + "name": "line_ln5472384-3", + "phases": "AN", + "to": "l3160114" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010014", + "length": "42.1135", + "name": "line_ln5803301-1", + "phases": "AN", + "to": "m1010013" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069483", + "length": "167.1698", + "name": "line_ln6229793-1", + "phases": "ABCN", + "to": "m1069481" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125976", + "length": "25.9569", + "name": "line_ln6255845-1", + "phases": "BN", + "to": "p895106" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047724", + "length": "11.2334", + "name": "line_ln5981120-1", + "phases": "BN", + "to": "m1047725" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827504", + "length": "30.2500", + "name": "line_ln6201695-2", + "phases": "AN", + "to": "n1137957" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3160117", + "length": "319.6348", + "name": "line_ln5895815-1", + "phases": "BN", + "to": "l3215549" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137957", + "length": "144.4681", + "name": "line_ln6201695-3", + "phases": "AN", + "to": "l3104119" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p850083", + "length": "19.3509", + "name": "line_ln8979257-1", + "phases": "ABCN", + "to": "221-312488" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2822863", + "length": "1096.7223", + "name": "line_ln6380807-1", + "phases": "ABCN", + "to": "m1089187" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln6411379-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3160105", + "length": "274.9774", + "name": "line_ln5774461-1", + "phases": "AN", + "to": "l3235251" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "221-312488", + "length": "44.3464", + "name": "line_ln8979257-2", + "phases": "ABCN", + "to": "m1089183" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2897784", + "length": "149.6060", + "name": "line_ln5653472-1", + "phases": "BN", + "to": "m1026496" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2841635", + "length": "195.1017", + "name": "line_ln6047578-1", + "phases": "ABCN", + "to": "l2822869" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1142814", + "length": "207.6147", + "name": "line_ln5957500-1", + "phases": "ABCN", + "to": "m1142813" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "196-35813", + "length": "24.4937", + "name": "line_ln5621841-2", + "phases": "ABCN", + "to": "n1140519" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2763072", + "length": "239.0731", + "name": "line_ln6288856-3", + "phases": "BN", + "to": "m4118754" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000912", + "length": "158.2381", + "name": "line_ln2000913-1", + "phases": "CN", + "to": "m2000913" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047763", + "length": "59.5168", + "name": "line_ln6409775-3", + "phases": "AN", + "to": "n1136027" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108331", + "length": "542.9187", + "name": "line_ln5896843-1", + "phases": "CN", + "to": "m1108335" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "d6409775-4_int", + "length": "213.5366", + "name": "line_ln6409775-4", + "phases": "AN", + "to": "l2876796" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln6138606-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069206", + "length": "498.9717", + "name": "line_ln5986929-1", + "phases": "BN", + "to": "l2841625" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047345", + "length": "285.6130", + "name": "line_ln5472371-1", + "phases": "AN", + "to": "m1047340" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2876796", + "length": "167.5168", + "name": "line_ln6409775-2", + "phases": "AN", + "to": "m1047756" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125911", + "length": "345.9300", + "name": "line_ln5563934-1", + "phases": "BN", + "to": "l2711224" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2970842", + "length": "235.8186", + "name": "line_ln6409873-1", + "phases": "BN", + "to": "m1089113" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2710519", + "length": "162.9337", + "name": "line_ln5804801-1", + "phases": "AN", + "to": "m1047344" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047316", + "length": "112.8863", + "name": "line_ln5956502-1", + "phases": "CN", + "to": "l2766728" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026808", + "length": "15.4419", + "name": "line_ln6229803-2", + "phases": "CN", + "to": "n1140520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1140520", + "length": "74.5636", + "name": "line_ln6229803-3", + "phases": "CN", + "to": "l2729410" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3197652", + "length": "100.1531", + "name": "line_ln6138622-1", + "phases": "AN", + "to": "l2748143" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3235275", + "length": "282.0623", + "name": "line_ln5774496-1", + "phases": "ABCN", + "to": "m1026347" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2804270", + "length": "291.6884", + "name": "line_ln5593244-1", + "phases": "BN", + "to": "l3104145" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1047613", + "length": "14.8440", + "name": "line_ln8961758-1", + "phases": "C", + "to": "p828359" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "e182723", + "length": "161.5835", + "name": "line_ln5806917-1", + "phases": "ABCN", + "to": "m1089177" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026783", + "length": "58.7806", + "name": "line_ln5532754-1", + "phases": "ABCN", + "to": "m1026780" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr1/0_tpx_ln6229827-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047346", + "length": "134.2847", + "name": "line_ln6199529-1", + "phases": "CN", + "to": "l3254219" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3254229", + "length": "145.8403", + "name": "line_ln6229816-1", + "phases": "BN", + "to": "m1069565" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108378", + "length": "34.7722", + "name": "line_ln6077443-1", + "phases": "ABCN", + "to": "m1108379" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047729", + "length": "240.2533", + "name": "line_ln5835130-1", + "phases": "AN", + "to": "l2973150" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047453", + "length": "272.9995", + "name": "line_ln6013613-1", + "phases": "BN", + "to": "l2913406" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026905", + "length": "413.9725", + "name": "line_ln6350537-1", + "phases": "ABCN", + "to": "m1026907" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2748140", + "length": "256.7701", + "name": "line_ln5774487-1", + "phases": "AN", + "to": "l3141412" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "r18245", + "length": "105.1596", + "name": "line_ln6231998-1", + "phases": "ABCN", + "to": "e182746" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089102", + "length": "556.2095", + "name": "line_ln5744324-1", + "phases": "CN", + "to": "m1089096" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3157167", + "length": "411.4348", + "name": "line_ln5499793-1", + "phases": "AN", + "to": "l2785511" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "221-311583", + "length": "13.1528", + "name": "line_ln8979346-4", + "phases": "A", + "to": "n1139250" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l2821770", + "length": "246.4828", + "name": "line_ln8979346-3", + "phases": "A", + "to": "m1069247" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027073", + "length": "268.0103", + "name": "line_ln5804827-1", + "phases": "CN", + "to": "l3104118" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "p850401", + "length": "13.7120", + "name": "line_ln8979346-1", + "phases": "A", + "to": "221-311583" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089173", + "length": "199.6642", + "name": "line_ln5532741-1", + "phases": "ABCN", + "to": "l2935551" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2991902", + "length": "295.0766", + "name": "line_ln5562919-1", + "phases": "BN", + "to": "m1008758" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069398", + "length": "219.0808", + "name": "line_ln6169245-1", + "phases": "AN", + "to": "l2785513" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069412", + "length": "270.0332", + "name": "line_ln6108132-1", + "phases": "BN", + "to": "l2879061" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2897778", + "length": "6.5120", + "name": "line_ln6506313-4", + "phases": "AN", + "to": "m3037452" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "n1139250", + "length": "431.9277", + "name": "line_ln8979346-5", + "phases": "A", + "to": "l2821770" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069155", + "length": "180.6823", + "name": "line_ln6290207-1", + "phases": "AN", + "to": "l3085395" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142800", + "length": "306.1118", + "name": "line_ln6321415-1", + "phases": "BN", + "to": "m1142799" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026808", + "length": "16.5010", + "name": "line_ln5558792-1", + "phases": "ABCN", + "to": "m1026807" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1027011", + "length": "331.7154", + "name": "line_ln5683819-1", + "phases": "ABCN", + "to": "m1027013" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026466", + "length": "20.4437", + "name": "line_ln5865224-1", + "phases": "BN", + "to": "d5865224-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p1164481", + "length": "174.1164", + "name": "line_ln6991377-9", + "phases": "AN", + "to": "l3729297" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "221-306686", + "length": "112.9021", + "name": "line_ln81018877-1", + "phases": "A", + "to": "l2970258" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "p873800", + "length": "15.7145", + "name": "line_ln81018877-2", + "phases": "A", + "to": "221-306686" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3122837", + "length": "494.6796", + "name": "line_ln5744359-1", + "phases": "CN", + "to": "l3048222" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1027043", + "length": "30.0085", + "name": "line_ln6019477-1", + "phases": "CN", + "to": "d6019477-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3010556", + "length": "348.4062", + "name": "line_ln5593222-1", + "phases": "ABCN", + "to": "l2766718" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001306", + "length": "158.2381", + "name": "line_ln2001307-1", + "phases": "AN", + "to": "m2001307" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108267", + "length": "626.7009", + "name": "line_ln5472340-1", + "phases": "BN", + "to": "m1108266" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3029501", + "length": "6.1212", + "name": "line_ln6505943-3", + "phases": "ABCN", + "to": "m3036165" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p901951", + "length": "575.6150", + "name": "line_ln6078691-1", + "phases": "CN", + "to": "m1186078" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001208", + "length": "158.2381", + "name": "line_ln2001209-1", + "phases": "CN", + "to": "m2001209" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e182748", + "length": "209.8419", + "name": "line_ln6171508-1", + "phases": "ABCN", + "to": "l2673346" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1027023", + "length": "246.8572", + "name": "line_ln5865237-1", + "phases": "BN", + "to": "l3122815" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1125929", + "length": "528.5016", + "name": "line_ln6018332-1", + "phases": "AN", + "to": "l2842379" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026690", + "length": "38.5862", + "name": "line_ln5986938-2", + "phases": "AN", + "to": "n1140830" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000903", + "length": "158.2381", + "name": "line_ln2000904-1", + "phases": "CN", + "to": "m2000904" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1141478", + "length": "408.7294", + "name": "line_ln5928743-3", + "phases": "BN", + "to": "m1142826" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3101787", + "length": "127.6164", + "name": "line_ln5621885-1", + "phases": "AN", + "to": "l3027132" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108329", + "length": "500.6620", + "name": "line_ln6262235-1", + "phases": "CN", + "to": "l2935552" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p829960", + "length": "58.0111", + "name": "line_ln5928743-2", + "phases": "BN", + "to": "n1141478" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069169", + "length": "240.6688", + "name": "line_ln5804791-1", + "phases": "ABCN", + "to": "l3010556" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p827564", + "length": "201.7061", + "name": "line_ln6049823-1", + "phases": "CN", + "to": "m1069348" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1138598", + "length": "48.6271", + "name": "line_ln6229829-3", + "phases": "ABCN", + "to": "m1069376" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026948", + "length": "160.4084", + "name": "line_ln6199516-1", + "phases": "BN", + "to": "m1026947" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125905", + "length": "83.7127", + "name": "line_ln6139645-1", + "phases": "BN", + "to": "l3142098" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln6198049-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3120502", + "length": "414.6715", + "name": "line_ln6198049-1", + "phases": "CN", + "to": "m1026792" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "n1140526", + "length": "1596.4202", + "name": "line_ln81354562-7", + "phases": "C", + "to": "m3763620" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "221-559681", + "length": "43.5385", + "name": "line_ln81354562-6", + "phases": "C", + "to": "n1140526" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p1121282", + "length": "10.1558", + "name": "line_ln81354562-4", + "phases": "C", + "to": "221-559681" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108340", + "length": "43.5061", + "name": "line_ln5774452-1", + "phases": "CN", + "to": "l2916605" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108298", + "length": "33.3908", + "name": "line_ln6195132-1", + "phases": "BN", + "to": "p893610" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2673320", + "length": "215.4413", + "name": "line_ln5744337-1", + "phases": "BN", + "to": "l3048209" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "m1108398", + "length": "10.0950", + "name": "line_ln8979248-1", + "phases": "ABC", + "to": "p850072" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047792", + "length": "313.4731", + "name": "line_ln5653481-1", + "phases": "BN", + "to": "l2860500" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009705", + "length": "155.0904", + "name": "line_ln5894192-1", + "phases": "ABCN", + "to": "m1009698" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2748131", + "length": "183.2082", + "name": "line_ln6077800-1", + "phases": "BN", + "to": "l2729427" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2767409", + "length": "305.9659", + "name": "line_ln6412352-1", + "phases": "BN", + "to": "m1142800" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1089122", + "length": "102.8439", + "name": "line_ln5544392-1", + "phases": "CN", + "to": "p860892" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000707", + "length": "158.2381", + "name": "line_ln2000708-1", + "phases": "BN", + "to": "m2000708" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1009807", + "length": "328.8760", + "name": "line_ln5894237-1", + "phases": "CN", + "to": "l2673323" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047432", + "length": "341.2746", + "name": "line_ln5472362-1", + "phases": "AN", + "to": "p903360" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1140830", + "length": "28.6734", + "name": "line_ln5986938-3", + "phases": "AN", + "to": "l3216351" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1027000", + "length": "219.3140", + "name": "line_ln6017294-1", + "phases": "ABCN", + "to": "l2916608" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069356", + "length": "219.3033", + "name": "line_ln6260025-1", + "phases": "CN", + "to": "m1069363" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1108413", + "length": "479.3149", + "name": "line_ln81048089-1", + "phases": "A", + "to": "m1108460" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2785538", + "length": "214.6805", + "name": "line_ln6047596-1", + "phases": "AN", + "to": "l2897793" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2001100", + "length": "568.4991", + "name": "line_ln2001200-1", + "phases": "ABCN", + "to": "m2001200" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1166366", + "length": "135.0662", + "name": "line_ln5957526-1", + "phases": "ABCN", + "to": "m1166368" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047828", + "length": "320.4542", + "name": "line_ln5623396-1", + "phases": "BN", + "to": "l2710513" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047311", + "length": "34.5032", + "name": "line_ln6138639-1", + "phases": "AN", + "to": "l2748158" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026896", + "length": "102.5640", + "name": "line_ln5695520-1", + "phases": "AN", + "to": "p860847" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069468", + "length": "239.9032", + "name": "line_ln5532785-1", + "phases": "ABCN", + "to": "m1069464" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001003", + "length": "158.2381", + "name": "line_ln2001004-1", + "phases": "BN", + "to": "m2001004" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047550", + "length": "327.2390", + "name": "line_ln6350542-1", + "phases": "ABCN", + "to": "m1047534" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3160098", + "length": "349.0061", + "name": "line_ln6259984-1", + "phases": "ABCN", + "to": "m1089213" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047441", + "length": "190.6389", + "name": "line_ln6411375-1", + "phases": "BN", + "to": "l2804258" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089170", + "length": "557.8271", + "name": "line_ln6320328-1", + "phases": "CN", + "to": "d6320328-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047831", + "length": "337.7850", + "name": "line_ln5472353-1", + "phases": "BN", + "to": "l2710505" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026682", + "length": "301.5594", + "name": "line_ln5623406-1", + "phases": "AN", + "to": "l3066816" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1009827", + "length": "499.9987", + "name": "line_ln6495087-1", + "phases": "BN", + "to": "m3019248" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047303", + "length": "236.8957", + "name": "line_ln5865272-1", + "phases": "ABCN", + "to": "l3027116" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069154", + "length": "583.0295", + "name": "line_ln6047561-1", + "phases": "ABCN", + "to": "l3197630" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125966", + "length": "223.3853", + "name": "line_ln5896728-1", + "phases": "BN", + "to": "l2955005" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l3645812", + "length": "974.0039", + "name": "line_ln81353934-4", + "phases": "C", + "to": "228-1353934-4_int" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2822877", + "length": "76.3544", + "name": "line_ln6229829-2", + "phases": "ABCN", + "to": "n1138598" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m3763620", + "length": "146.3642", + "name": "line_ln81353934-3", + "phases": "C", + "to": "l3645812" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3123509", + "length": "299.0830", + "name": "line_ln6078776-1", + "phases": "ABCN", + "to": "m1209772" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_2ph_h-2_acsrx2_acsr2_acsr_ln5637597-1", + "continuous_rating_A": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_C": "175.00", + "from": "m1069285", + "length": "5.6414", + "name": "line_ln5698090-2", + "phases": "ACN", + "to": "m4113348" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026695", + "length": "62.0934", + "name": "line_ln5774470-3", + "phases": "AN", + "to": "n1138594" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_2ph_h-2_acsrx2_acsr2_acsr_ln5637597-1", + "continuous_rating_A": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_C": "175.00", + "from": "m4113348", + "length": "4.7729", + "name": "line_ln5698090-3", + "phases": "ACN", + "to": "m1069284" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "d5774470-2_int", + "length": "460.3480", + "name": "line_ln5774470-2", + "phases": "AN", + "to": "m1026679" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047518", + "length": "283.9236", + "name": "line_ln5653463-1", + "phases": "BN", + "to": "l2973160" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2673346", + "length": "423.8209", + "name": "line_ln6350577-1", + "phases": "ABCN", + "to": "l3254238" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026907", + "length": "184.0030", + "name": "line_ln6138604-1", + "phases": "ABCN", + "to": "l3085398" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027071", + "length": "48.3406", + "name": "line_ln5714043-1", + "phases": "CN", + "to": "l3235241" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047521", + "length": "66.6264", + "name": "line_ln6108141-1", + "phases": "ABCN", + "to": "d6108141-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p827561", + "length": "22.1624", + "name": "line_ln6198014-1", + "phases": "CN", + "to": "m1026705" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166362", + "length": "226.2194", + "name": "line_ln5563943-1", + "phases": "AN", + "to": "l2898522" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089185", + "length": "23.6818", + "name": "line_ln81098881-1", + "phases": "ABCN", + "to": "p850083" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069549", + "length": "18.2762", + "name": "line_ln5894211-1", + "phases": "CN", + "to": "p901931" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3085410", + "length": "257.0573", + "name": "line_ln5472388-1", + "phases": "BN", + "to": "l2860499" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln6138606-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2841625", + "length": "285.7569", + "name": "line_ln5835139-1", + "phases": "BN", + "to": "l3010566" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2973154", + "length": "210.2678", + "name": "line_ln6229797-1", + "phases": "AN", + "to": "l2879069" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089187", + "length": "635.8418", + "name": "line_ln6301089-1", + "phases": "ABCN", + "to": "m1089188" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1166368", + "length": "162.0912", + "name": "line_ln5988007-1", + "phases": "AN", + "to": "l3086098" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1136661", + "length": "89.2163", + "name": "line_ln6047574-3", + "phases": "CN", + "to": "l3029505" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047534", + "length": "25.9381", + "name": "line_ln6047574-2", + "phases": "CN", + "to": "n1136661" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "f739845", + "length": "100.000", + "name": "line_293471", + "phases": "ABCN", + "to": "293471" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000409", + "length": "158.2381", + "name": "line_ln2000410-1", + "phases": "AN", + "to": "m2000410" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2897793", + "length": "83.9444", + "name": "line_ln6290229-1", + "phases": "AN", + "to": "m1069521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3139121", + "length": "246.0995", + "name": "line_ln6379462-2", + "phases": "ABCN", + "to": "l2763153" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026954", + "length": "15.0053", + "name": "line_ln5655682-1", + "phases": "BN", + "to": "d5655682-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2763153", + "length": "158.6196", + "name": "line_ln6379462-3", + "phases": "ABCN", + "to": "m1047293" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1145956", + "length": "128.7045", + "name": "line_ln5562937-3", + "phases": "AN", + "to": "l2729412" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026722", + "length": "233.5590", + "name": "line_ln6206281-1", + "phases": "BN", + "to": "m1026736" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047299", + "length": "147.6042", + "name": "line_ln6379462-1", + "phases": "ABCN", + "to": "l3139121" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026347", + "length": "33.2441", + "name": "line_ln5562937-2", + "phases": "AN", + "to": "n1145956" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069519", + "length": "27.0299", + "name": "line_ln6348946-1", + "phases": "BN", + "to": "p901927" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026724", + "length": "21.6052", + "name": "line_ln5472375-1", + "phases": "ABCN", + "to": "r18243" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p829956", + "length": "201.5469", + "name": "line_ln5807086-1", + "phases": "CN", + "to": "l3160861" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2841648", + "length": "300.6761", + "name": "line_ln5623428-1", + "phases": "AN", + "to": "l2710544" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m3036172", + "length": "402.0095", + "name": "line_ln6321419-2", + "phases": "BN", + "to": "m1209763" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026877", + "length": "748.7459", + "name": "line_ln5593240-1", + "phases": "AN", + "to": "m1026906" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m3037538", + "length": "8.2780", + "name": "line_ln6167751-6", + "phases": "CN", + "to": "l3027133" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m3037453", + "length": "22.4666", + "name": "line_ln5679261-2", + "phases": "CN", + "to": "m1026812" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3197630", + "length": "392.7320", + "name": "line_ln6229807-1", + "phases": "ABCN", + "to": "l3235256" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3141403", + "length": "195.7589", + "name": "line_ln6167751-3", + "phases": "CN", + "to": "m3037538" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1139541", + "length": "49.1036", + "name": "line_ln6413567-3", + "phases": "ABCN", + "to": "d6413567-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069557", + "length": "178.0855", + "name": "line_ln6260016-1", + "phases": "BN", + "to": "m1069554" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3125349", + "length": "197.8358", + "name": "line_ln5517002-3", + "phases": "ABCN", + "to": "n1138604" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069175", + "length": "142.9991", + "name": "line_ln6413567-2", + "phases": "ABCN", + "to": "n1139541" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1138604", + "length": "256.3194", + "name": "line_ln5517002-9", + "phases": "ABCN", + "to": "l3143999" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m4122657", + "length": "724.3549", + "name": "line_ln6258460-3", + "phases": "CN", + "to": "l3027124" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069662", + "length": "200.7092", + "name": "line_ln6350555-1", + "phases": "BN", + "to": "l2935547" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3143999", + "length": "9.6809", + "name": "line_ln5517002-2", + "phases": "ABCN", + "to": "m1069350" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3254213", + "length": "209.5194", + "name": "line_ln5532750-1", + "phases": "ABCN", + "to": "m1027039" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209807", + "length": "144.8817", + "name": "line_ln5896798-1", + "phases": "ABCN", + "to": "m1209805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008746", + "length": "254.2832", + "name": "line_ln6077772-1", + "phases": "BN", + "to": "m1008743" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069560", + "length": "289.0837", + "name": "line_ln6198036-1", + "phases": "BN", + "to": "l3176660" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m3037452", + "length": "234.4219", + "name": "line_ln6199525-2", + "phases": "AN", + "to": "l2973164" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047821", + "length": "64.8418", + "name": "line_ln5744328-1", + "phases": "BN", + "to": "l2684420" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026916", + "length": "35.4405", + "name": "line_ln6320337-1", + "phases": "BN", + "to": "l3197634" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx2_wpal_ln5561444-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "m1047339", + "length": "25.3928", + "name": "line_ln6073648-1", + "phases": "AN", + "to": "p895104" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3030199", + "length": "96.1114", + "name": "line_ln6078767-1", + "phases": "ABCN", + "to": "m1125934" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m4277837", + "length": "226.2745", + "name": "line_ln6350533-5", + "phases": "ABCN", + "to": "m1069419" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1138597", + "length": "157.0877", + "name": "line_ln5956457-3", + "phases": "ABCN", + "to": "m1069411" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069417", + "length": "104.2445", + "name": "line_ln5956457-2", + "phases": "ABCN", + "to": "n1138597" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047821", + "length": "676.5494", + "name": "line_ln6017285-1", + "phases": "BN", + "to": "l2785512" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069420", + "length": "559.3368", + "name": "line_ln6350533-4", + "phases": "ABCN", + "to": "m4277837" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069147", + "length": "195.8968", + "name": "line_ln5653450-1", + "phases": "CN", + "to": "l2879055" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3235267", + "length": "209.6888", + "name": "line_ln6380842-1", + "phases": "CN", + "to": "m1027068" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069424", + "length": "290.6703", + "name": "line_ln6290203-1", + "phases": "ABCN", + "to": "l2935549" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047432", + "length": "158.6794", + "name": "line_ln5895779-1", + "phases": "AN", + "to": "l2879075" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026891", + "length": "30.9474", + "name": "line_ln6169249-2", + "phases": "CN", + "to": "n1147863" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1147863", + "length": "14.4209", + "name": "line_ln6169249-3", + "phases": "CN", + "to": "l3122817" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p895075", + "length": "17.7674", + "name": "line_ln5589095-1", + "phases": "CN", + "to": "m1108524" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026713", + "length": "179.2896", + "name": "line_ln5804823-1", + "phases": "AN", + "to": "l2785530" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142833", + "length": "171.2490", + "name": "line_ln6109147-1", + "phases": "CN", + "to": "l2767408" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047720", + "length": "299.1076", + "name": "line_ln5496764-1", + "phases": "CN", + "to": "l2954345" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089177", + "length": "451.9027", + "name": "line_ln6199512-1", + "phases": "CN", + "to": "l2729406" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr4_acsr4_acsr_ln5655838-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "p829977", + "length": "245.2879", + "name": "line_ln5655838-1", + "phases": "ABCN", + "to": "m1186061" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m4118755", + "length": "144.7875", + "name": "line_ln6015889-4", + "phases": "AN", + "to": "m1209782" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125919", + "length": "131.2232", + "name": "line_ln5745347-1", + "phases": "ABCN", + "to": "m1125917" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069533", + "length": "28.1262", + "name": "line_ln6407207-1", + "phases": "BN", + "to": "p895117" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "d5746703-1_int", + "length": "541.1684", + "name": "line_ln5746703-1", + "phases": "ABCN", + "to": "l3160863" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3104121", + "length": "108.0011", + "name": "line_ln5683815-1", + "phases": "AN", + "to": "l3104113" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069489", + "length": "242.2622", + "name": "line_ln5865228-1", + "phases": "CN", + "to": "l2933120" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026785", + "length": "97.5781", + "name": "line_ln6255773-1", + "phases": "ABCN", + "to": "m1026783" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069620", + "length": "65.3158", + "name": "line_ln6074369-1", + "phases": "BN", + "to": "m1069610" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6048634-1_int", + "length": "138.3656", + "name": "line_ln6048634-1", + "phases": "ABCN", + "to": "m1186067" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069610", + "length": "150.3002", + "name": "line_ln6074369-2", + "phases": "BN", + "to": "l2991929" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069590", + "length": "355.1812", + "name": "line_ln5926320-1", + "phases": "BN", + "to": "l3122835" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009832", + "length": "154.8759", + "name": "line_ln5472344-1", + "phases": "BN", + "to": "m1009834" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "m1026361", + "length": "60.5901", + "name": "line_ln6411388-1", + "phases": "AN", + "to": "l3122825" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr4_acsr_ln5898194-1", + "continuous_rating_A": "300.00", + "continuous_rating_B": "300.00", + "continuous_rating_C": "300.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1186065", + "length": "302.8978", + "name": "line_ln5898194-1", + "phases": "ABCN", + "to": "p829977" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2766747", + "length": "116.4582", + "name": "line_ln6153057-1", + "phases": "ABCN", + "to": "m1026732" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3082981", + "length": "523.0011", + "name": "line_ln5985351-2", + "phases": "CN", + "to": "m1108368" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089162", + "length": "373.4171", + "name": "line_ln6326286-1", + "phases": "CN", + "to": "l2991640" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026732", + "length": "266.3666", + "name": "line_ln6153057-2", + "phases": "ABCN", + "to": "l3047058" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3216343", + "length": "244.2841", + "name": "line_ln5985351-1", + "phases": "CN", + "to": "l3082981" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089160", + "length": "274.9991", + "name": "line_ln6326286-3", + "phases": "CN", + "to": "m1089163" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1142814", + "length": "987.2773", + "name": "line_ln5957494-1", + "phases": "ABCN", + "to": "m1142810" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2991640", + "length": "336.7198", + "name": "line_ln6326286-2", + "phases": "CN", + "to": "m1089160" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108263", + "length": "387.3582", + "name": "line_ln5686078-2", + "phases": "BN", + "to": "n1142112" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026327", + "length": "343.5980", + "name": "line_ln5683828-1", + "phases": "BN", + "to": "l2841636" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026866", + "length": "36.8061", + "name": "line_ln6341781-2", + "phases": "AN", + "to": "n1147862" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1147862", + "length": "293.1960", + "name": "line_ln6341781-3", + "phases": "AN", + "to": "l2685805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1142112", + "length": "40.7082", + "name": "line_ln5686078-3", + "phases": "BN", + "to": "p827496" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026327", + "length": "125.7892", + "name": "line_ln6380820-1", + "phases": "BN", + "to": "l3122823" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009843", + "length": "271.4745", + "name": "line_ln5502550-1", + "phases": "BN", + "to": "m1009855" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1142843", + "length": "260.3967", + "name": "line_ln5473439-1", + "phases": "AN", + "to": "l2692660" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000907", + "length": "158.2381", + "name": "line_ln2000908-1", + "phases": "CN", + "to": "m2000908" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047507", + "length": "167.4266", + "name": "line_ln5682339-1", + "phases": "ABCN", + "to": "196-35813" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047326", + "length": "127.8249", + "name": "line_ln6138613-1", + "phases": "AN", + "to": "m1047322" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047486", + "length": "327.1902", + "name": "line_ln6012046-1", + "phases": "ABCN", + "to": "m1047484" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1149236", + "length": "136.3488", + "name": "line_ln6018336-1", + "phases": "ABCN", + "to": "m1149235" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047486", + "length": "33.5172", + "name": "line_ln5928543-1", + "phases": "AN", + "to": "p827502" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p827542", + "length": "15.2900", + "name": "line_ln6171504-1", + "phases": "BN", + "to": "m1026486" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047316", + "length": "48.2165", + "name": "line_ln5593253-1", + "phases": "ABCN", + "to": "l3216370" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142871", + "length": "125.1729", + "name": "line_ln6139641-1", + "phases": "ABCN", + "to": "m1142874" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1140818", + "length": "35.0690", + "name": "line_ln6108150-2", + "phases": "ABCN", + "to": "l2973167" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026695", + "length": "207.3910", + "name": "line_ln6108150-3", + "phases": "ABCN", + "to": "n1140818" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3086078", + "length": "242.0043", + "name": "line_ln6015889-3", + "phases": "AN", + "to": "m4118755" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047534", + "length": "376.4293", + "name": "line_ln6077781-2", + "phases": "ABCN", + "to": "n1136663" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1136663", + "length": "155.2154", + "name": "line_ln6077781-3", + "phases": "ABCN", + "to": "d6077791-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2991922", + "length": "236.9027", + "name": "line_ln6047583-1", + "phases": "ABCN", + "to": "m1047339" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3120376", + "length": "293.0858", + "name": "line_ln5772710-2", + "phases": "AN", + "to": "m1026925" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3178997", + "length": "108.0865", + "name": "line_ln6047606-1", + "phases": "CN", + "to": "m1026363" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069495", + "length": "36.8091", + "name": "line_ln6320324-1", + "phases": "ABCN", + "to": "m1069498" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026906", + "length": "350.4979", + "name": "line_ln5772710-1", + "phases": "AN", + "to": "l3120376" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026713", + "length": "43.6243", + "name": "line_ln5653485-1", + "phases": "AN", + "to": "l2860504" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047325", + "length": "30.1303", + "name": "line_ln6350546-1", + "phases": "ABCN", + "to": "m1047324" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2841627", + "length": "350.7360", + "name": "line_ln6017298-1", + "phases": "AN", + "to": "l3254216" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166399", + "length": "274.1150", + "name": "line_ln6200441-1", + "phases": "CN", + "to": "l3048890" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047558", + "length": "53.4088", + "name": "line_ln5714052-2", + "phases": "AN", + "to": "n1136659" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1136659", + "length": "304.7400", + "name": "line_ln5714052-3", + "phases": "AN", + "to": "l3104129" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_wpal_ln6291244-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3160865", + "length": "428.4819", + "name": "line_ln6291244-1", + "phases": "ABCN", + "to": "m1142828" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001012", + "length": "158.2381", + "name": "line_ln2001013-1", + "phases": "BN", + "to": "m2001013" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026769", + "length": "28.0543", + "name": "line_ln6290216-1", + "phases": "ABCN", + "to": "l2841633" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1136354", + "length": "36.5515", + "name": "line_ln5561439-2", + "phases": "ABCN", + "to": "l2748144" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069519", + "length": "496.2582", + "name": "line_ln5561439-3", + "phases": "ABCN", + "to": "n1136354" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047444", + "length": "498.1972", + "name": "line_ln5562928-1", + "phases": "BN", + "to": "m1047447" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026308", + "length": "310.7369", + "name": "line_ln5472366-1", + "phases": "BN", + "to": "l2991902" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2991915", + "length": "195.5908", + "name": "line_ln6259997-1", + "phases": "BN", + "to": "l2673320" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3048196", + "length": "903.5561", + "name": "line_ln6411366-1", + "phases": "BN", + "to": "m1089097" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108490", + "length": "30.1595", + "name": "line_ln6292600-1", + "phases": "AN", + "to": "p829798" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166366", + "length": "29.2992", + "name": "line_ln6140925-1", + "phases": "CN", + "to": "p830058" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000400", + "length": "158.2381", + "name": "line_ln2000401-1", + "phases": "AN", + "to": "m2000401" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln6198049-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026773", + "length": "386.7213", + "name": "line_ln6199040-1", + "phases": "CN", + "to": "l3195751" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "190-7361", + "length": "19.0960", + "name": "line_ln5502532-1", + "phases": "ABCN", + "to": "d5472350-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026486", + "length": "35.4435", + "name": "line_ln5926315-1", + "phases": "BN", + "to": "m1026488" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026732", + "length": "221.3403", + "name": "line_ln5758684-1", + "phases": "AN", + "to": "m1026734" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026880", + "length": "113.3993", + "name": "line_ln5623425-1", + "phases": "AN", + "to": "l2766748" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3048199", + "length": "278.1680", + "name": "line_ln6259980-1", + "phases": "BN", + "to": "m1047837" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "n1230122", + "length": "416.6198", + "name": "line_ln81048102-4", + "phases": "A", + "to": "l3233412" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026886", + "length": "5.9633", + "name": "line_ln5526906-2", + "phases": "ABCN", + "to": "l3120484" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1027027", + "length": "551.2739", + "name": "line_ln6290201-1", + "phases": "CN", + "to": "m1027014" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "221-282819", + "length": "18.4090", + "name": "line_ln81048102-6", + "phases": "A", + "to": "n1230122" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3120484", + "length": "339.5389", + "name": "line_ln5526906-1", + "phases": "ABCN", + "to": "m1026896" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "p904451", + "length": "18.0480", + "name": "line_ln81048102-5", + "phases": "A", + "to": "221-282819" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1140518", + "length": "131.8875", + "name": "line_ln5651977-4", + "phases": "AN", + "to": "l2764403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827549", + "length": "72.3934", + "name": "line_ln5651977-3", + "phases": "AN", + "to": "n1140518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137988", + "length": "134.1902", + "name": "line_ln5835136-3", + "phases": "AN", + "to": "l2991908" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "221-242079", + "length": "186.1664", + "name": "line_ln8940663-1", + "phases": "ABC", + "to": "l3011293" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047737", + "length": "64.6378", + "name": "line_ln5835136-2", + "phases": "AN", + "to": "n1137988" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2710537", + "length": "269.3974", + "name": "line_ln6047602-1", + "phases": "BN", + "to": "m1008752" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6320366-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026805", + "length": "276.1817", + "name": "line_ln5683859-1", + "phases": "CN", + "to": "l3010585" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026764", + "length": "300.2488", + "name": "line_ln5774459-1", + "phases": "AN", + "to": "l3178976" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2764403", + "length": "193.1124", + "name": "line_ln5651977-2", + "phases": "AN", + "to": "m1047623" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089155", + "length": "261.9101", + "name": "line_ln6199510-1", + "phases": "CN", + "to": "l2935550" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l3233412", + "length": "56.6344", + "name": "line_ln81048102-2", + "phases": "A", + "to": "m1108413" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108328", + "length": "69.7742", + "name": "line_ln5803287-1", + "phases": "CN", + "to": "l2875754" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3235246", + "length": "253.2882", + "name": "line_ln5714047-1", + "phases": "BN", + "to": "l2710512" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx1/0_3w_cs_ln5775368-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "l3048887", + "length": "99.2932", + "name": "line_ln5775368-1", + "phases": "BN", + "to": "m1125966" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026852", + "length": "338.6963", + "name": "line_ln5895788-1", + "phases": "ABCN", + "to": "l3197646" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1209822", + "length": "338.1840", + "name": "line_ln5866186-1", + "phases": "AN", + "to": "l2992556" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p827522", + "length": "34.3217", + "name": "line_ln5504713-2", + "phases": "AN", + "to": "n1142111" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1142111", + "length": "171.5302", + "name": "line_ln5504713-3", + "phases": "AN", + "to": "l2991912" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027019", + "length": "673.5960", + "name": "line_ln5924800-1", + "phases": "BN", + "to": "l2801949" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069731", + "length": "564.9633", + "name": "line_ln5774446-1", + "phases": "BN", + "to": "m1069730" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089118", + "length": "148.6123", + "name": "line_ln6047570-1", + "phases": "AN", + "to": "l3048208" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047777", + "length": "357.8500", + "name": "line_ln6320334-1", + "phases": "BN", + "to": "l2748131" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p901931", + "length": "15.9281", + "name": "line_ln5621849-1", + "phases": "CN", + "to": "m1069548" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027100", + "length": "558.6263", + "name": "line_ln6379374-1", + "phases": "AN", + "to": "m1027109" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069199", + "length": "235.4954", + "name": "line_ln5986932-1", + "phases": "CN", + "to": "l2785525" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2689678", + "length": "1302.0741", + "name": "line_ln5561432-2", + "phases": "BN", + "to": "m1026463" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026726", + "length": "239.1128", + "name": "line_ln5833721-1", + "phases": "BN", + "to": "l2876847" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047374", + "length": "292.0716", + "name": "line_ln5561432-1", + "phases": "BN", + "to": "l2689678" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1089103", + "length": "210.0714", + "name": "line_ln6138597-1", + "phases": "BN", + "to": "l3048196" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx2_wpal_ln5561444-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "n1139537", + "length": "343.4551", + "name": "line_ln5528572-3", + "phases": "AN", + "to": "l3122826" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108278", + "length": "217.6137", + "name": "line_ln5594245-1", + "phases": "BN", + "to": "l2805036" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx2_wpal_ln5561444-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "p895104", + "length": "46.6901", + "name": "line_ln5528572-2", + "phases": "AN", + "to": "n1139537" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p827555", + "length": "26.0702", + "name": "line_ln5806921-1", + "phases": "BN", + "to": "m1047794" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3254873", + "length": "111.2883", + "name": "line_ln6381766-1", + "phases": "CN", + "to": "m1166393" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026984", + "length": "236.2387", + "name": "line_ln5593229-1", + "phases": "ABCN", + "to": "m1026986" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p901894", + "length": "24.5774", + "name": "line_ln5682325-1", + "phases": "AN", + "to": "m1026857" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026665", + "length": "477.4857", + "name": "line_ln6137085-1", + "phases": "AN", + "to": "l3232933" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000413", + "length": "158.2381", + "name": "line_ln2000414-1", + "phases": "AN", + "to": "m2000414" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069532", + "length": "225.5912", + "name": "line_ln5924702-1", + "phases": "BN", + "to": "l2691965" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108266", + "length": "452.2859", + "name": "line_ln5835123-1", + "phases": "BN", + "to": "m1108265" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2879071", + "length": "262.0272", + "name": "line_ln5865242-1", + "phases": "BN", + "to": "l3029504" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047323", + "length": "131.6118", + "name": "line_ln5653468-1", + "phases": "AN", + "to": "l3010569" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069398", + "length": "303.6814", + "name": "line_ln6229789-1", + "phases": "AN", + "to": "l3160101" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr1/0_tpx_ln6229827-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p1197121", + "length": "158.0192", + "name": "line_ln7064338-3", + "phases": "CN", + "to": "l2805031" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2841622", + "length": "881.5843", + "name": "line_ln5956465-1", + "phases": "AN", + "to": "l2804254" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3048207", + "length": "9.5848", + "name": "line_ln6505939-4", + "phases": "BN", + "to": "m3036164" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2785524", + "length": "68.5582", + "name": "line_ln6138607-1", + "phases": "CN", + "to": "m1069201" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009838", + "length": "281.6019", + "name": "line_ln6350551-1", + "phases": "BN", + "to": "m1009843" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026783", + "length": "26.7434", + "name": "line_ln6290214-1", + "phases": "CN", + "to": "m1026784" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1139255", + "length": "12.3006", + "name": "line_ln5898055-3", + "phases": "AN", + "to": "p827500" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2804269", + "length": "203.6500", + "name": "line_ln5591703-1", + "phases": "BN", + "to": "l2989564" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069424", + "length": "34.9972", + "name": "line_ln5898055-2", + "phases": "AN", + "to": "n1139255" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p827525", + "length": "413.2954", + "name": "line_ln5000chp-1", + "phases": "ABCN", + "to": "m1026chp-1" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3029495", + "length": "169.1207", + "name": "line_ln5565090-1", + "phases": "BN", + "to": "d5565090-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3235254", + "length": "332.1264", + "name": "line_ln6411383-1", + "phases": "ABCN", + "to": "m1026855" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5744357-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069218", + "length": "11.5077", + "name": "line_ln6077776-1", + "phases": "AN", + "to": "l2860486" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3179682", + "length": "90.9744", + "name": "line_ln5654484-1", + "phases": "CN", + "to": "l2786274" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3216361", + "length": "306.7484", + "name": "line_ln5683846-1", + "phases": "BN", + "to": "l2729434" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx1/0_3w_cs_ln5686244-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "p903354", + "length": "147.2496", + "name": "line_ln5686246-1", + "phases": "AN", + "to": "l2936270" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1108492", + "length": "23.9946", + "name": "line_ln5503478-2", + "phases": "AN", + "to": "n1142102" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1142102", + "length": "172.3470", + "name": "line_ln5503478-3", + "phases": "AN", + "to": "l2804956" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069572", + "length": "280.4772", + "name": "line_ln5653477-1", + "phases": "BN", + "to": "l3066826" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089165", + "length": "415.8776", + "name": "line_ln5562922-1", + "phases": "CN", + "to": "l3197627" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2989432", + "length": "268.7833", + "name": "line_ln6318427-2", + "phases": "BN", + "to": "l3066830" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1009763", + "length": "271.2832", + "name": "line_ln6019480-1", + "phases": "ABCN", + "to": "e182733" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125916", + "length": "227.5494", + "name": "line_ln5896827-1", + "phases": "BN", + "to": "l2879767" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2710515", + "length": "454.8416", + "name": "line_ln5895775-1", + "phases": "CN", + "to": "m1027027" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027071", + "length": "218.1548", + "name": "line_ln5562957-1", + "phases": "CN", + "to": "l3235267" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3048888", + "length": "362.7475", + "name": "line_ln5591716-1", + "phases": "CN", + "to": "m1149249" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2785516", + "length": "495.8910", + "name": "line_ln5683811-1", + "phases": "BN", + "to": "m1108274" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1125902", + "length": "31.2133", + "name": "line_ln5595583-1", + "phases": "AN", + "to": "p829986" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209753", + "length": "507.6622", + "name": "line_ln6351518-1", + "phases": "BN", + "to": "m1209752" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln6019479-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "l2876813", + "length": "262.1360", + "name": "line_ln6015809-1", + "phases": "CN", + "to": "l2785531" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1136032", + "length": "305.5016", + "name": "line_ln5958700-3", + "phases": "AN", + "to": "m1089204" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827498", + "length": "105.3386", + "name": "line_ln5958700-2", + "phases": "AN", + "to": "n1136032" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047809", + "length": "240.7436", + "name": "line_ln6318427-1", + "phases": "BN", + "to": "l2989432" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026393", + "length": "212.3187", + "name": "line_ln5865251-1", + "phases": "AN", + "to": "l2935559" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166370", + "length": "806.9534", + "name": "line_ln6261048-1", + "phases": "CN", + "to": "l3067506" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1125904", + "length": "62.5290", + "name": "line_ln6439987-1", + "phases": "AN", + "to": "m1125903" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026329", + "length": "299.2141", + "name": "line_ln5502541-1", + "phases": "AN", + "to": "l3104135" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2710512", + "length": "476.4333", + "name": "line_ln6380811-1", + "phases": "BN", + "to": "m1047828" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026330", + "length": "118.3042", + "name": "line_ln5835149-1", + "phases": "ABCN", + "to": "m1026329" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108317", + "length": "219.0668", + "name": "line_ln5591814-1", + "phases": "CN", + "to": "l2820590" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p827528", + "length": "20.9632", + "name": "line_ln8945011-1", + "phases": "C", + "to": "221-240988" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026820", + "length": "294.5283", + "name": "line_ln6411406-1", + "phases": "CN", + "to": "m1026823" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p895087", + "length": "27.1523", + "name": "line_ln5621858-1", + "phases": "AN", + "to": "m1089205" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027068", + "length": "430.8037", + "name": "line_ln6138629-1", + "phases": "CN", + "to": "m1027066" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069411", + "length": "285.9482", + "name": "line_ln5956487-1", + "phases": "ABCN", + "to": "l2766741" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "226-23751", + "length": "137.5970", + "name": "line_ln6291252-2", + "phases": "ABCN", + "to": "l2955081" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047825", + "length": "229.9986", + "name": "line_ln6076240-1", + "phases": "BN", + "to": "l2726975" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3728042", + "length": "216.9247", + "name": "line_ln6991380-4", + "phases": "AN", + "to": "l3728043" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125902", + "length": "248.9134", + "name": "line_ln6291252-1", + "phases": "ABCN", + "to": "226-23751" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2729428", + "length": "241.8547", + "name": "line_ln5926324-1", + "phases": "AN", + "to": "m1026648" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3949154", + "length": "240.1711", + "name": "line_ln6991380-2", + "phases": "AN", + "to": "l3728042" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069509", + "length": "222.2092", + "name": "line_ln6077798-1", + "phases": "ABCN", + "to": "l2766738" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_tpx_ln5531226-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1027042", + "length": "226.7467", + "name": "line_ln5531226-1", + "phases": "CN", + "to": "l3235248" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069500", + "length": "688.9363", + "name": "line_ln5623416-1", + "phases": "ABCN", + "to": "m1047574" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3226771", + "length": "531.0953", + "name": "line_ln6196270-2", + "phases": "AN", + "to": "l3189190" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069595", + "length": "461.5781", + "name": "line_ln6046049-1", + "phases": "BN", + "to": "m1069607" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3029503", + "length": "206.7842", + "name": "line_ln5683824-1", + "phases": "ABCN", + "to": "m1069202" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001200", + "length": "158.2381", + "name": "line_ln2001201-1", + "phases": "CN", + "to": "m2001201" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3195356", + "length": "237.1567", + "name": "line_ln5501088-1", + "phases": "ABCN", + "to": "m1069189" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108340", + "length": "282.1691", + "name": "line_ln5653455-1", + "phases": "CN", + "to": "l2822865" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3037441", + "length": "106.4225", + "name": "line_ln6196270-4", + "phases": "AN", + "to": "n1140824" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108400", + "length": "753.7509", + "name": "line_ln6422011-1", + "phases": "ABCN", + "to": "m1108401" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1140824", + "length": "653.5979", + "name": "line_ln6196270-5", + "phases": "AN", + "to": "l3226771" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2822872", + "length": "304.5404", + "name": "line_ln6169261-1", + "phases": "ABCN", + "to": "m1047490" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026308", + "length": "347.1012", + "name": "line_ln5562935-1", + "phases": "BN", + "to": "l2897764" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3086002", + "length": "282.2043", + "name": "line_ln6048520-1", + "phases": "CN", + "to": "m1126031" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069154", + "length": "128.8048", + "name": "line_ln5623393-1", + "phases": "AN", + "to": "l2804251" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3029498", + "length": "287.7736", + "name": "line_ln5623403-1", + "phases": "ABCN", + "to": "m1089143" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026361", + "length": "229.5418", + "name": "line_ln5744340-1", + "phases": "AN", + "to": "m1026366" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108508", + "length": "299.9993", + "name": "line_ln5675121-1", + "phases": "CN", + "to": "l3097861" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1108274", + "length": "201.0763", + "name": "line_ln5926292-1", + "phases": "BN", + "to": "m1108269" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001213", + "length": "158.2381", + "name": "line_ln2001214-1", + "phases": "CN", + "to": "m2001214" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2860493", + "length": "287.4330", + "name": "line_ln6077785-1", + "phases": "AN", + "to": "l3085403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2710516", + "length": "280.5846", + "name": "line_ln6411374-1", + "phases": "AN", + "to": "l2691944" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001311", + "length": "158.2381", + "name": "line_ln2001312-1", + "phases": "AN", + "to": "m2001312" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2895496", + "length": "165.8834", + "name": "line_ln6440079-1", + "phases": "CN", + "to": "m1142873" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001004", + "length": "158.2381", + "name": "line_ln2001005-1", + "phases": "BN", + "to": "m2001005" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069205", + "length": "119.0997", + "name": "line_ln5472358-1", + "phases": "ABCN", + "to": "m1069208" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2711226", + "length": "256.4569", + "name": "line_ln5654471-1", + "phases": "ABCN", + "to": "m1142819" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx1/0_tpx_ln6138596-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069187", + "length": "177.3964", + "name": "line_ln6108127-1", + "phases": "AN", + "to": "l2785519" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026926", + "length": "19.0510", + "name": "line_ln5532749-2", + "phases": "AN", + "to": "n1138000" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108532", + "length": "305.0665", + "name": "line_ln5563853-1", + "phases": "ABCN", + "to": "m1108535" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142826", + "length": "299.8254", + "name": "line_ln6018329-1", + "phases": "BN", + "to": "l3160864" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1138000", + "length": "164.0063", + "name": "line_ln5532749-3", + "phases": "AN", + "to": "l2766720" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2804262", + "length": "245.0043", + "name": "line_ln6320343-1", + "phases": "AN", + "to": "l2841639" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "221-240991", + "length": "660.3915", + "name": "line_ln8939783-1", + "phases": "A", + "to": "l3066817" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142875", + "length": "860.4262", + "name": "line_ln6318761-1", + "phases": "ABCN", + "to": "m1125944" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027073", + "length": "314.3905", + "name": "line_ln6077808-1", + "phases": "CN", + "to": "m1027071" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069365", + "length": "268.4995", + "name": "line_ln5804788-1", + "phases": "CN", + "to": "l3235243" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1139551", + "length": "74.1116", + "name": "line_ln5714056-2", + "phases": "ABCN", + "to": "m1026695" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026702", + "length": "422.3578", + "name": "line_ln5714056-3", + "phases": "ABCN", + "to": "n1139551" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2898495", + "length": "454.3282", + "name": "line_ln6411010-1", + "phases": "ABCN", + "to": "m1108400" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1027023", + "length": "145.5857", + "name": "line_ln5926302-1", + "phases": "ABCN", + "to": "l3254213" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069213", + "length": "316.7901", + "name": "line_ln6259993-1", + "phases": "ABCN", + "to": "m1069217" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e193509", + "length": "204.7514", + "name": "line_ln5594236-1", + "phases": "ABCN", + "to": "m1142839" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000404", + "length": "158.2381", + "name": "line_ln2000405-1", + "phases": "AN", + "to": "m2000405" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1149225", + "length": "223.2941", + "name": "line_ln6381851-1", + "phases": "BN", + "to": "l2767409" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069488", + "length": "240.6090", + "name": "line_ln6380802-1", + "phases": "CN", + "to": "m1069489" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1126016", + "length": "116.5975", + "name": "line_ln5531333-1", + "phases": "AN", + "to": "l3120534" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1089188", + "length": "248.4597", + "name": "line_ln5835132-1", + "phases": "CN", + "to": "l2673306" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047593", + "length": "32.2077", + "name": "line_ln5661951-2", + "phases": "AN", + "to": "n1136993" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1136993", + "length": "70.5968", + "name": "line_ln5661951-3", + "phases": "AN", + "to": "l2972930" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108298", + "length": "35.2943", + "name": "line_ln5807090-1", + "phases": "BN", + "to": "m1108299" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p901972", + "length": "295.5487", + "name": "line_ln5954983-1", + "phases": "ABCN", + "to": "m1009726" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1141475", + "length": "26.1401", + "name": "line_ln5502536-3", + "phases": "CN", + "to": "m1009655" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026655", + "length": "33.9177", + "name": "line_ln5502536-2", + "phases": "CN", + "to": "n1141475" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026736", + "length": "350.5986", + "name": "line_ln6418150-1", + "phases": "BN", + "to": "m1026745" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026779", + "length": "299.7982", + "name": "line_ln5956474-1", + "phases": "AN", + "to": "l2973169" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008758", + "length": "392.6162", + "name": "line_ln5804829-1", + "phases": "BN", + "to": "l2710537" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l2990098", + "length": "161.7583", + "name": "line_ln81048106-3", + "phases": "A", + "to": "m1108462" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1139254", + "length": "90.5841", + "name": "line_ln5534965-3", + "phases": "AN", + "to": "l3122811" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827499", + "length": "20.9188", + "name": "line_ln5534965-2", + "phases": "AN", + "to": "n1139254" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2729429", + "length": "388.5133", + "name": "line_ln5895807-1", + "phases": "AN", + "to": "l3197647" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047834", + "length": "181.4304", + "name": "line_ln6169243-1", + "phases": "BN", + "to": "m1047835" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l2821087", + "length": "322.2531", + "name": "line_ln81048106-2", + "phases": "A", + "to": "l2990098" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2710509", + "length": "338.4291", + "name": "line_ln6506319-2", + "phases": "CN", + "to": "m1108364" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1108460", + "length": "138.2598", + "name": "line_ln81048106-1", + "phases": "A", + "to": "l2821087" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2820583", + "length": "505.6169", + "name": "line_ln5561521-1", + "phases": "CN", + "to": "m1108354" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1108505", + "length": "12.0758", + "name": "line_ln5500985-1", + "phases": "AN", + "to": "p901946" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m3037455", + "length": "287.9590", + "name": "line_ln5624376-2", + "phases": "CN", + "to": "l3086074" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166395", + "length": "265.2825", + "name": "line_ln5960126-1", + "phases": "CN", + "to": "m1166400" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1139260", + "length": "335.3192", + "name": "line_ln5865268-3", + "phases": "ABCN", + "to": "l2925506" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047672", + "length": "52.5814", + "name": "line_ln5774455-2", + "phases": "AN", + "to": "n1136999" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1136999", + "length": "28.9228", + "name": "line_ln5774455-3", + "phases": "AN", + "to": "m1047671" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069457", + "length": "22.4344", + "name": "line_ln5865268-2", + "phases": "ABCN", + "to": "n1139260" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069588", + "length": "362.3322", + "name": "line_ln5803283-1", + "phases": "BN", + "to": "m1069590" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3216344", + "length": "101.9772", + "name": "line_ln5593247-1", + "phases": "BN", + "to": "l2860501" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047795", + "length": "180.4526", + "name": "line_ln5744353-1", + "phases": "BN", + "to": "l3160117" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3122826", + "length": "340.1375", + "name": "line_ln6108149-1", + "phases": "AN", + "to": "m1047358" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000711", + "length": "158.2381", + "name": "line_ln2000712-1", + "phases": "BN", + "to": "m2000712" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047401", + "length": "183.9115", + "name": "line_ln6388581-2", + "phases": "AN", + "to": "l2748132" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3254216", + "length": "109.9871", + "name": "line_ln6388581-1", + "phases": "AN", + "to": "m1047401" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069189", + "length": "285.3908", + "name": "line_ln6017300-1", + "phases": "CN", + "to": "l2860487" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069208", + "length": "76.8777", + "name": "line_ln5683820-1", + "phases": "CN", + "to": "l2691945" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx1/0_tpx_ln5895784-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "l3010569", + "length": "173.0722", + "name": "line_ln5895784-1", + "phases": "AN", + "to": "m1047335" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108315", + "length": "29.8847", + "name": "line_ln6351523-3", + "phases": "CN", + "to": "n1230121" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3160878", + "length": "638.4642", + "name": "line_ln5745360-1", + "phases": "CN", + "to": "l2917336" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1230121", + "length": "49.4345", + "name": "line_ln6351523-2", + "phases": "CN", + "to": "m1108316" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108344", + "length": "408.0521", + "name": "line_ln5472349-1", + "phases": "CN", + "to": "m1108353" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009807", + "length": "202.2666", + "name": "line_ln5742836-1", + "phases": "ABCN", + "to": "m1009805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209800", + "length": "247.3910", + "name": "line_ln5654466-1", + "phases": "ABCN", + "to": "m1209797" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026343", + "length": "174.1151", + "name": "line_ln5986936-1", + "phases": "AN", + "to": "l2748135" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009839", + "length": "212.9986", + "name": "line_ln5647725-1", + "phases": "BN", + "to": "l2673326" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1009691", + "length": "98.4289", + "name": "line_ln5562940-1", + "phases": "AN", + "to": "l2748140" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047699", + "length": "23.4358", + "name": "line_ln6392124-1", + "phases": "AN", + "to": "p859135" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069187", + "length": "283.7266", + "name": "line_ln6320330-1", + "phases": "AN", + "to": "l2748129" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047786", + "length": "207.1650", + "name": "line_ln5804797-1", + "phases": "BN", + "to": "m1026969" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2842383", + "length": "173.7486", + "name": "line_ln6023352-1", + "phases": "ABCN", + "to": "d6023352-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108300", + "length": "233.2926", + "name": "line_ln6412366-1", + "phases": "BN", + "to": "l2711234" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069131", + "length": "28.7297", + "name": "line_ln5625548-1", + "phases": "AN", + "to": "p827534" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3178981", + "length": "711.2781", + "name": "line_ln5683833-1", + "phases": "BN", + "to": "m1047368" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr1/0_tpx_ln6229827-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1125959", + "length": "212.6504", + "name": "line_ln5651995-1", + "phases": "CN", + "to": "m1125974" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166369", + "length": "195.4769", + "name": "line_ln6046058-1", + "phases": "AN", + "to": "l2839305" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142821", + "length": "5.3590", + "name": "line_ln6351510-1", + "phases": "ABCN", + "to": "l2711226" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026655", + "length": "16.3975", + "name": "line_ln5865246-2", + "phases": "AN", + "to": "n1141474" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1141474", + "length": "77.7460", + "name": "line_ln5865246-3", + "phases": "AN", + "to": "l2710518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2860483", + "length": "249.5101", + "name": "line_ln5593225-1", + "phases": "BN", + "to": "l3141397" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m3032977", + "length": "1009.2343", + "name": "line_ln6504018-1", + "phases": "ABCN", + "to": "m1166366" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089199", + "length": "266.5853", + "name": "line_ln6350529-1", + "phases": "ABCN", + "to": "m1089197" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr4_dpx_ln5744331-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "200.00", + "from": "m1047478", + "length": "99.0711", + "name": "line_ln5744331-1", + "phases": "CN", + "to": "l3254209" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "e182730", + "length": "78.8197", + "name": "line_ln5898059-3", + "phases": "AN", + "to": "n1142109" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1209819", + "length": "163.9624", + "name": "line_ln5952392-1", + "phases": "ABCN", + "to": "l2936216" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108340", + "length": "335.9584", + "name": "line_ln5956461-1", + "phases": "CN", + "to": "l3085394" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1142109", + "length": "229.6139", + "name": "line_ln5898059-2", + "phases": "AN", + "to": "l2729429" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026979", + "length": "232.0751", + "name": "line_ln6290210-1", + "phases": "ABCN", + "to": "m1026984" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2673343", + "length": "355.0624", + "name": "line_ln5591805-1", + "phases": "BN", + "to": "l2764436" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125934", + "length": "207.9275", + "name": "line_ln5503576-1", + "phases": "ABCN", + "to": "l2730163" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "q14413", + "length": "342.0545", + "name": "line_ln5532758-3", + "phases": "ABCN", + "to": "m1026886" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3082992", + "length": "195.5266", + "name": "line_ln6167748-1", + "phases": "AN", + "to": "m1047406" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142801", + "length": "329.6649", + "name": "line_ln6139658-1", + "phases": "BN", + "to": "l3217064" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047768", + "length": "13.5736", + "name": "line_ln5565094-1", + "phases": "BN", + "to": "p827554" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010017", + "length": "593.1978", + "name": "line_ln5768778-1", + "phases": "AN", + "to": "m1010016" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1147861", + "length": "200.7999", + "name": "line_ln6440004-3", + "phases": "CN", + "to": "l3122818" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010016", + "length": "463.6448", + "name": "line_ln5768778-2", + "phases": "AN", + "to": "l3251807" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3016088", + "length": "153.0002", + "name": "line_ln6492184-2", + "phases": "AN", + "to": "l3312692" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026844", + "length": "24.9060", + "name": "line_ln6440004-2", + "phases": "CN", + "to": "n1147861" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026496", + "length": "151.0435", + "name": "line_ln6229812-1", + "phases": "BN", + "to": "l2691959" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2955006", + "length": "196.5469", + "name": "line_ln5714915-1", + "phases": "CN", + "to": "l2692600" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069136", + "length": "159.2685", + "name": "line_ln5774468-1", + "phases": "CN", + "to": "l2841638" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2822870", + "length": "209.0943", + "name": "line_ln6047579-1", + "phases": "CN", + "to": "l2766725" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069189", + "length": "84.7397", + "name": "line_ln6108136-1", + "phases": "ABCN", + "to": "m1069184" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "196-29518", + "length": "296.7137", + "name": "line_ln5959087-1", + "phases": "ABCN", + "to": "l3122816" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108264", + "length": "328.0653", + "name": "line_ln5714038-1", + "phases": "BN", + "to": "m1108263" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069348", + "length": "317.9078", + "name": "line_ln5744366-1", + "phases": "CN", + "to": "m1069356" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000702", + "length": "158.2381", + "name": "line_ln2000703-1", + "phases": "BN", + "to": "m2000703" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047720", + "length": "6.2970", + "name": "line_ln5894206-1", + "phases": "ABCN", + "to": "l2895449" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2729427", + "length": "148.5835", + "name": "line_ln5472393-1", + "phases": "BN", + "to": "m1047786" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1137005", + "length": "45.3769", + "name": "line_ln5894206-4", + "phases": "ABCN", + "to": "m1047724" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2895449", + "length": "292.3263", + "name": "line_ln5894206-3", + "phases": "ABCN", + "to": "n1137005" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047787", + "length": "242.8218", + "name": "line_ln5985348-1", + "phases": "BN", + "to": "l3157710" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3157710", + "length": "167.7749", + "name": "line_ln5985348-2", + "phases": "BN", + "to": "m1047793" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2970811", + "length": "197.2126", + "name": "line_ln5924720-2", + "phases": "AN", + "to": "m1027121" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026969", + "length": "126.1654", + "name": "line_ln5532745-1", + "phases": "BN", + "to": "m1026972" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027121", + "length": "102.1165", + "name": "line_ln5924720-1", + "phases": "AN", + "to": "m1027123" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1139264", + "length": "153.2880", + "name": "line_ln5895771-3", + "phases": "AN", + "to": "m1069465" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069466", + "length": "84.2943", + "name": "line_ln5895771-2", + "phases": "AN", + "to": "n1139264" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047368", + "length": "406.5792", + "name": "line_ln6411392-1", + "phases": "BN", + "to": "l2841620" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827496", + "length": "14.9981", + "name": "line_ln6292463-1", + "phases": "BN", + "to": "m1108262" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026880", + "length": "241.0539", + "name": "line_ln6290241-1", + "phases": "AN", + "to": "m1026874" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3103822", + "length": "384.1112", + "name": "line_ln6163390-1", + "phases": "ABCN", + "to": "m1047577" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr2_acsr_ln5741170-3", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1026700", + "length": "36.5829", + "name": "line_ln5741170-3", + "phases": "CN", + "to": "n1140821" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr2_acsr_ln5741170-3", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "n1140821", + "length": "52.0171", + "name": "line_ln5741170-2", + "phases": "CN", + "to": "l3189188" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3066813", + "length": "282.6291", + "name": "line_ln6380815-1", + "phases": "BN", + "to": "l2991910" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1027004", + "length": "478.6856", + "name": "line_ln5986923-1", + "phases": "BN", + "to": "l2897765" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069226", + "length": "34.3085", + "name": "line_ln6231994-1", + "phases": "CN", + "to": "m1069227" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1009651", + "length": "29.6267", + "name": "line_ln5800693-1", + "phases": "ABCN", + "to": "m1009650" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069543", + "length": "221.6746", + "name": "line_ln5956483-1", + "phases": "BN", + "to": "m1069535" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047548", + "length": "63.5141", + "name": "line_ln6169252-1", + "phases": "ABCN", + "to": "m1047552" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001302", + "length": "158.2381", + "name": "line_ln2001303-1", + "phases": "AN", + "to": "m2001303" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1140825", + "length": "66.9421", + "name": "line_ln5895816-3", + "phases": "ABCN", + "to": "l3216368" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026706", + "length": "49.6115", + "name": "line_ln5895816-2", + "phases": "ABCN", + "to": "n1140825" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "e206210", + "length": "15.1001", + "name": "line_ln5591697-1", + "phases": "CN", + "to": "m1069225" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1166368", + "length": "344.7777", + "name": "line_ln5715052-1", + "phases": "ABCN", + "to": "l2973833" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr1/0_acsr_ln5852082-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1026824", + "length": "22.1400", + "name": "line_ln5852082-1", + "phases": "CN", + "to": "p859694" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026704", + "length": "537.8642", + "name": "line_ln5835145-1", + "phases": "BN", + "to": "l2841634" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1089138", + "length": "323.3217", + "name": "line_ln5653459-1", + "phases": "AN", + "to": "l2841628" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089112", + "length": "128.9074", + "name": "line_ln5863823-1", + "phases": "ABCN", + "to": "l3195356" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "l3067448", + "length": "835.0036", + "name": "line_ln6073916-1", + "phases": "ABCN", + "to": "l2763407" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047744", + "length": "2.7631", + "name": "line_ln5865233-1", + "phases": "AN", + "to": "l3178971" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2767414", + "length": "478.0245", + "name": "line_ln6015795-1", + "phases": "CN", + "to": "m1108331" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108402", + "length": "423.1454", + "name": "line_ln6422015-1", + "phases": "ABCN", + "to": "m1108405" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001204", + "length": "158.2381", + "name": "line_ln2001205-1", + "phases": "CN", + "to": "m2001205" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000408", + "length": "158.2381", + "name": "line_ln2000409-1", + "phases": "AN", + "to": "m2000409" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026792", + "length": "179.6169", + "name": "line_ln5501000-1", + "phases": "CN", + "to": "l2895461" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026344", + "length": "423.7401", + "name": "line_ln5593238-1", + "phases": "AN", + "to": "l2991919" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026896", + "length": "47.3277", + "name": "line_ln6201697-1", + "phases": "ABCN", + "to": "p827525" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2897554", + "length": "393.6651", + "name": "line_ln8961797-2", + "phases": "C", + "to": "193-46661" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069496", + "length": "195.3666", + "name": "line_ln6047557-2", + "phases": "ABCN", + "to": "n1134475" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1134475", + "length": "109.3349", + "name": "line_ln6047557-3", + "phases": "ABCN", + "to": "m1069497" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1140828", + "length": "39.9354", + "name": "line_ln5472403-2", + "phases": "ABCN", + "to": "m1026708" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1047633", + "length": "590.0089", + "name": "line_ln8961797-1", + "phases": "C", + "to": "l2897554" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009724", + "length": "149.4031", + "name": "line_ln5744344-1", + "phases": "ABCN", + "to": "m1009720" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026706", + "length": "391.3713", + "name": "line_ln5472403-3", + "phases": "ABCN", + "to": "n1140828" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026700", + "length": "121.4181", + "name": "line_ln6438273-2", + "phases": "ABCN", + "to": "n1140823" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1140823", + "length": "198.3470", + "name": "line_ln6438273-3", + "phases": "ABCN", + "to": "l2851933" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089202", + "length": "206.7328", + "name": "line_ln5679695-1", + "phases": "ABCN", + "to": "m1089203" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125990", + "length": "208.8994", + "name": "line_ln06534433_sw", + "phases": "ABCN", + "to": "l3067478" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln6019479-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "l3216358", + "length": "150.1893", + "name": "line_ln6350560-1", + "phases": "CN", + "to": "m1026826" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2876812", + "length": "233.9652", + "name": "line_ln6106582-1", + "phases": "AN", + "to": "l2970811" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108265", + "length": "3179.5518", + "name": "line_ln5926296-1", + "phases": "BN", + "to": "m1108264" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3160868", + "length": "87.5592", + "name": "line_ln6139649-1", + "phases": "BN", + "to": "l3082988" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2710510", + "length": "198.8522", + "name": "line_ln6411370-1", + "phases": "CN", + "to": "l3197628" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125962", + "length": "404.8174", + "name": "line_ln6381820-1", + "phases": "ABCN", + "to": "l3123452" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001008", + "length": "158.2381", + "name": "line_ln2001009-1", + "phases": "BN", + "to": "m2001009" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108398", + "length": "223.1818", + "name": "line_ln6061815-1", + "phases": "ABCN", + "to": "m1108395" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142835", + "length": "35.5482", + "name": "line_ln6321412-1", + "phases": "CN", + "to": "m1142833" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3048221", + "length": "223.3741", + "name": "line_ln5835167-6", + "phases": "ABCN", + "to": "d5835167-6_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089163", + "length": "297.6993", + "name": "line_ln5502523-1", + "phases": "CN", + "to": "l3066807" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047813", + "length": "220.2650", + "name": "line_ln6108123-1", + "phases": "BN", + "to": "l2973149" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3104128", + "length": "382.1091", + "name": "line_ln5926306-1", + "phases": "AN", + "to": "l2673315" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047522", + "length": "167.4292", + "name": "line_ln5562931-1", + "phases": "ABCN", + "to": "m1047520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069629", + "length": "321.6106", + "name": "line_ln5986945-1", + "phases": "BN", + "to": "m1069632" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1137996", + "length": "23.9043", + "name": "line_ln5562931-3", + "phases": "CN", + "to": "l3178979" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047558", + "length": "19.9400", + "name": "line_ln5562931-2", + "phases": "CN", + "to": "n1137996" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2989596", + "length": "290.7327", + "name": "line_ln6046143-1", + "phases": "BN", + "to": "l2822873" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047767", + "length": "358.2564", + "name": "line_ln6017290-1", + "phases": "BN", + "to": "l2860484" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027123", + "length": "81.7029", + "name": "line_ln6076266-1", + "phases": "AN", + "to": "l3008248" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2673317", + "length": "327.0882", + "name": "line_ln6505948-2", + "phases": "AN", + "to": "l2710517" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1209788", + "length": "247.1335", + "name": "line_ln6381855-1", + "phases": "CN", + "to": "m1209795" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026354", + "length": "504.8260", + "name": "line_ln2000000-1", + "phases": "ABCN", + "to": "m2000100" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2897791", + "length": "9.4781", + "name": "line_ln5683842-1", + "phases": "BN", + "to": "m1069613" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "l2851933", + "length": "77.4945", + "name": "line_ln6506306-2", + "phases": "ABCN", + "to": "l3207907" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089112", + "length": "15.1953", + "name": "line_ln5776667-1", + "phases": "CN", + "to": "p827520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2689691", + "length": "272.9084", + "name": "line_ln5712507-1", + "phases": "ABCN", + "to": "m1009763" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125978", + "length": "338.3628", + "name": "line_ln6134418-1", + "phases": "BN", + "to": "l3254869" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "e183472", + "length": "512.2680", + "name": "line_ln5985361-1", + "phases": "ABCN", + "to": "l2989566" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m4350438", + "length": "310.6807", + "name": "line_ln6409872-3", + "phases": "BN", + "to": "l2935568" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3010564", + "length": "405.4772", + "name": "line_ln5865238-1", + "phases": "CN", + "to": "l2710515" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047318", + "length": "1265.9929", + "name": "line_ln6138612-1", + "phases": "CN", + "to": "l3254205" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p827503", + "length": "101.2816", + "name": "line_ln5928544-2", + "phases": "CN", + "to": "n1137994" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2990826", + "length": "521.4686", + "name": "line_ln8979258-1", + "phases": "ABCN", + "to": "l2990827" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1137994", + "length": "184.9440", + "name": "line_ln5928544-3", + "phases": "CN", + "to": "m1069484" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3235244", + "length": "206.3512", + "name": "line_ln6380806-1", + "phases": "AN", + "to": "m1069398" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2748132", + "length": "840.8238", + "name": "line_ln6440070-1", + "phases": "AN", + "to": "l2689726" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000911", + "length": "158.2381", + "name": "line_ln2000912-1", + "phases": "CN", + "to": "m2000912" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026849", + "length": "3.8780", + "name": "line_ln6077780-1", + "phases": "AN", + "to": "m1026848" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2785519", + "length": "107.0855", + "name": "line_ln5804792-1", + "phases": "AN", + "to": "l3104122" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047326", + "length": "335.7198", + "name": "line_ln5472372-1", + "phases": "AN", + "to": "m1047338" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026709", + "length": "18.8611", + "name": "line_ln5655685-1", + "phases": "CN", + "to": "p827561" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108311", + "length": "80.9517", + "name": "line_ln5896844-1", + "phases": "CN", + "to": "l2898526" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047447", + "length": "323.1349", + "name": "line_ln6199519-1", + "phases": "BN", + "to": "l2766722" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108379", + "length": "131.7255", + "name": "line_ln6411005-1", + "phases": "ABCN", + "to": "m1108380" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108380", + "length": "280.5297", + "name": "line_ln6411005-2", + "phases": "ABCN", + "to": "l2898495" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "d2000100_int", + "length": "175.8104", + "name": "line_ln2000200-1", + "phases": "ABCN", + "to": "m2000200" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069136", + "length": "246.6429", + "name": "line_ln5804802-1", + "phases": "ABCN", + "to": "m1069135" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3046854", + "length": "172.3268", + "name": "line_ln6407748-2", + "phases": "BN", + "to": "m1047453" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3029504", + "length": "193.6558", + "name": "line_ln6407748-1", + "phases": "BN", + "to": "l3046854" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "d6017295-1_int", + "length": "381.6331", + "name": "line_ln6017295-1", + "phases": "ABCN", + "to": "m1069393" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3254219", + "length": "210.5291", + "name": "line_ln6350547-1", + "phases": "CN", + "to": "l3254220" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3197636", + "length": "296.2708", + "name": "line_ln5714051-1", + "phases": "ABCN", + "to": "m1047424" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3066809", + "length": "208.7462", + "name": "line_ln5774451-1", + "phases": "CN", + "to": "m1069487" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2691936", + "length": "240.0595", + "name": "line_ln5623388-1", + "phases": "AN", + "to": "m1026941" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026488", + "length": "17.9223", + "name": "line_ln6047588-1", + "phases": "BN", + "to": "d6047588-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1108378", + "length": "22.9770", + "name": "line_ln81048088-1", + "phases": "A", + "to": "p904451" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "196-36167", + "length": "267.5600", + "name": "line_ln6106511-1", + "phases": "ABCN", + "to": "l3011298" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5895780-3_int", + "length": "184.0295", + "name": "line_ln5895780-3", + "phases": "ABCN", + "to": "l2991914" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142828", + "length": "1.000", + "name": "line_ln5473436-1", + "phases": "ABCN", + "to": "l2674047" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2674047", + "length": "199.6421", + "name": "line_ln5473436-2", + "phases": "ABCN", + "to": "l2692655" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "r20185", + "length": "69.8178", + "name": "line_ln5513564-1", + "phases": "ABCN", + "to": "d5513564-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026769", + "length": "22.6748", + "name": "line_ln6140776-1", + "phases": "AN", + "to": "d6140776-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027038", + "length": "195.1262", + "name": "line_ln5829253-1", + "phases": "BN", + "to": "l2731712" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108483", + "length": "104.2077", + "name": "line_ln5594151-1", + "phases": "AN", + "to": "m1108486" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "f739844", + "length": "100.000", + "name": "line_ln247171", + "phases": "BN", + "to": "l0247171" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142865", + "length": "201.9363", + "name": "line_ln5533786-1", + "phases": "ABCN", + "to": "l3030197" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089094", + "length": "200.7587", + "name": "line_ln5744323-1", + "phases": "CN", + "to": "m1069147" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026708", + "length": "2.4013", + "name": "line_ln5472394-1", + "phases": "ABCN", + "to": "m1026709" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1209782", + "length": "241.7224", + "name": "line_ln5927382-1", + "phases": "AN", + "to": "l3217056" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009770", + "length": "28.1828", + "name": "line_ln5863746-1", + "phases": "BN", + "to": "m1009771" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108262", + "length": "14.9988", + "name": "line_ln5562918-1", + "phases": "BN", + "to": "m1108261" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1140822", + "length": "147.2658", + "name": "line_ln5532788-3", + "phases": "CN", + "to": "l2935560" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3104136", + "length": "467.6420", + "name": "line_ln5895793-1", + "phases": "ABCN", + "to": "l2822872" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "e182726", + "length": "245.6062", + "name": "line_ln5958705-1", + "phases": "BN", + "to": "l2766744" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2879070", + "length": "292.9818", + "name": "line_ln6169248-1", + "phases": "ABCN", + "to": "l3216345" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1125994", + "length": "72.7043", + "name": "line_ln5503546-1", + "phases": "ABCN", + "to": "l2730149" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026700", + "length": "280.5128", + "name": "line_ln5650219-1", + "phases": "ABCN", + "to": "m1026706" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069524", + "length": "199.9989", + "name": "line_ln6198028-1", + "phases": "AN", + "to": "l2820533" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026706", + "length": "36.5052", + "name": "line_ln5532788-2", + "phases": "CN", + "to": "n1140822" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108350", + "length": "227.4743", + "name": "line_ln5715017-1", + "phases": "CN", + "to": "l3198356" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2936279", + "length": "333.6831", + "name": "line_ln5473449-1", + "phases": "ABCN", + "to": "l3179678" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209748", + "length": "263.3435", + "name": "line_ln6230793-1", + "phases": "BN", + "to": "l3142099" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026795", + "length": "242.0107", + "name": "line_ln6108144-1", + "phases": "ABCN", + "to": "m1026786" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069550", + "length": "305.0457", + "name": "line_ln5895803-1", + "phases": "BN", + "to": "m1069544" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2991910", + "length": "148.4577", + "name": "line_ln5986928-1", + "phases": "BN", + "to": "l2879072" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026703", + "length": "239.6001", + "name": "line_ln5744358-1", + "phases": "CN", + "to": "l2973166" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069484", + "length": "408.5933", + "name": "line_ln5593221-1", + "phases": "CN", + "to": "l2785517" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010008", + "length": "7.4660", + "name": "line_ln6344714-1", + "phases": "AN", + "to": "m1010007" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m3768670", + "length": "243.8353", + "name": "line_ln5653460-6", + "phases": "ABCN", + "to": "l3235254" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "f739841", + "length": "100.000", + "name": "line_ln247160", + "phases": "BN", + "to": "l0247160" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142808", + "length": "301.2134", + "name": "line_ln5798823-1", + "phases": "BN", + "to": "l3160868" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3216345", + "length": "248.7033", + "name": "line_ln5653460-5", + "phases": "ABCN", + "to": "m3768670" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2673313", + "length": "214.8932", + "name": "line_ln6047566-1", + "phases": "ABCN", + "to": "m1027011" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2/0_acsrxx2_acsr_ln6129680-2", + "continuous_rating_A": "300.00", + "emergency_rating_A": "300.00", + "from": "m1047521", + "length": "36.8290", + "name": "line_ln6129680-2", + "phases": "AN", + "to": "n1136665" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "f739842", + "length": "100.000", + "name": "line_ln247162", + "phases": "BN", + "to": "l0247162" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2/0_acsrxx2_acsr_ln6129680-2", + "continuous_rating_A": "300.00", + "emergency_rating_A": "300.00", + "from": "n1136665", + "length": "98.1706", + "name": "line_ln6129680-3", + "phases": "AN", + "to": "l2685809" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069464", + "length": "20.4578", + "name": "line_ln5859996-1", + "phases": "BN", + "to": "p873787" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142799", + "length": "330.6393", + "name": "line_ln5896831-1", + "phases": "BN", + "to": "m1142798" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108486", + "length": "46.3101", + "name": "line_ln6230695-1", + "phases": "AN", + "to": "l3067447" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "221-703009", + "length": "111.5356", + "name": "line_ln8976560-3", + "phases": "C", + "to": "l3150961" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1125943", + "length": "17.0734", + "name": "line_ln8976560-2", + "phases": "C", + "to": "221-703009" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3021569", + "length": "519.9970", + "name": "line_ln6496337-2", + "phases": "BN", + "to": "l3315860" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209814", + "length": "350.8814", + "name": "line_ln5473414-1", + "phases": "ABCN", + "to": "m1209811" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069417", + "length": "14.1565", + "name": "line_ln5712475-1", + "phases": "BN", + "to": "p901910" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln6411379-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069311", + "length": "86.8468", + "name": "line_ln5970852-1", + "phases": "AN", + "to": "m1069312" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2673310", + "length": "258.0781", + "name": "line_ln6229794-1", + "phases": "AN", + "to": "l3104121" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3198356", + "length": "199.6995", + "name": "line_ln5805767-1", + "phases": "CN", + "to": "m1108345" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166356", + "length": "201.1904", + "name": "line_ln6258530-1", + "phases": "AN", + "to": "l2727019" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1139544", + "length": "87.2786", + "name": "line_ln5803270-3", + "phases": "CN", + "to": "l2897776" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2673322", + "length": "162.0024", + "name": "line_ln5818176-1", + "phases": "BN", + "to": "l2859391" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1069225", + "length": "40.0904", + "name": "line_ln5803270-2", + "phases": "CN", + "to": "n1139544" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069382", + "length": "127.0725", + "name": "line_ln5895812-1", + "phases": "ABCN", + "to": "l2822877" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047566", + "length": "19.9972", + "name": "line_ln6047575-2", + "phases": "AN", + "to": "n1137995" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209751", + "length": "12.6315", + "name": "line_ln6018333-1", + "phases": "BN", + "to": "m1209750" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000902", + "length": "158.2381", + "name": "line_ln2000903-1", + "phases": "CN", + "to": "m2000903" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137995", + "length": "83.9895", + "name": "line_ln6047575-3", + "phases": "AN", + "to": "l3141401" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1166376", + "length": "17.2145", + "name": "line_ln5508630-1", + "phases": "ABCN", + "to": "l2842384" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2711224", + "length": "223.6213", + "name": "line_ln6170291-1", + "phases": "BN", + "to": "m1125905" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3067506", + "length": "174.8903", + "name": "line_ln5866266-1", + "phases": "CN", + "to": "m1166386" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1069312", + "length": "23.1124", + "name": "line_ln81018876-1", + "phases": "A", + "to": "p873801" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047299", + "length": "180.6085", + "name": "line_ln5956501-1", + "phases": "CN", + "to": "l3104157" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089203", + "length": "20.8937", + "name": "line_ln6103924-1", + "phases": "AN", + "to": "p895087" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2860488", + "length": "175.7184", + "name": "line_ln6229804-1", + "phases": "BN", + "to": "m1026308" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125960", + "length": "41.2722", + "name": "line_ln6286109-1", + "phases": "ABCN", + "to": "m1125962" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026704", + "length": "180.3028", + "name": "line_ln5865247-1", + "phases": "BN", + "to": "l2991915" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1147866", + "length": "103.1191", + "name": "line_ln6201702-2", + "phases": "AN", + "to": "m1026713" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m3763624", + "length": "32.6906", + "name": "line_ln81354563-2", + "phases": "C", + "to": "p1121283" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1027013", + "length": "323.5708", + "name": "line_ln5744336-1", + "phases": "ABCN", + "to": "m1027023" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047471", + "length": "313.2535", + "name": "line_ln6380819-1", + "phases": "BN", + "to": "l2879077" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069500", + "length": "15.0017", + "name": "line_ln6413568-1", + "phases": "AN", + "to": "p827549" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047490", + "length": "119.4666", + "name": "line_ln6987572-4", + "phases": "AN", + "to": "p1164481" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008753", + "length": "969.2507", + "name": "line_ln6163394-1", + "phases": "BN", + "to": "m1026307" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069481", + "length": "88.1566", + "name": "line_ln6106657-1", + "phases": "ABCN", + "to": "l2745848" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009763", + "length": "105.5630", + "name": "line_ln5502549-1", + "phases": "BN", + "to": "l2673322" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069438", + "length": "32.9875", + "name": "line_ln6352702-1", + "phases": "CN", + "to": "p827575" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "221-311609", + "length": "136.5770", + "name": "line_ln8979249-2", + "phases": "ABC", + "to": "l2915542" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "p850072", + "length": "13.3275", + "name": "line_ln8979249-1", + "phases": "ABC", + "to": "221-311609" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000706", + "length": "158.2381", + "name": "line_ln2000707-1", + "phases": "BN", + "to": "m2000707" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2748143", + "length": "220.0003", + "name": "line_ln5531956-1", + "phases": "AN", + "to": "l3251854" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001009", + "length": "158.2381", + "name": "line_ln2001010-1", + "phases": "BN", + "to": "m2001010" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069595", + "length": "164.2832", + "name": "line_ln6228304-1", + "phases": "BN", + "to": "l2916619" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2785518", + "length": "250.4992", + "name": "line_ln6411369-1", + "phases": "CN", + "to": "l2766717" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047433", + "length": "300.0985", + "name": "line_ln5472363-1", + "phases": "AN", + "to": "m1047434" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3122821", + "length": "452.4689", + "name": "line_ln5532753-1", + "phases": "ABCN", + "to": "m1047486" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069498", + "length": "322.3273", + "name": "line_ln5761784-1", + "phases": "ABCN", + "to": "m1069499" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069640", + "length": "331.8406", + "name": "line_ln6106559-1", + "phases": "BN", + "to": "l2804269" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166358", + "length": "201.8157", + "name": "line_ln6170336-1", + "phases": "CN", + "to": "l3030205" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026387", + "length": "232.5032", + "name": "line_ln6290219-1", + "phases": "AN", + "to": "l3104132" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047358", + "length": "67.3649", + "name": "line_ln6199528-1", + "phases": "AN", + "to": "l3197644" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026960", + "length": "85.0001", + "name": "line_ln6879074-1", + "phases": "AN", + "to": "m3729981" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069544", + "length": "51.7366", + "name": "line_ln6229817-1", + "phases": "BN", + "to": "l2804272" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026820", + "length": "194.3325", + "name": "line_ln5774486-1", + "phases": "CN", + "to": "l3141403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142868", + "length": "177.0388", + "name": "line_ln6048626-1", + "phases": "ABCN", + "to": "m1142869" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089115", + "length": "300.2087", + "name": "line_ln5593234-1", + "phases": "ABCN", + "to": "m1089112" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026950", + "length": "345.7933", + "name": "line_ln6350538-1", + "phases": "ABCN", + "to": "m1026954" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125968", + "length": "27.7281", + "name": "line_ln5861084-1", + "phases": "CN", + "to": "p895107" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx2_acsr_ln5472350-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1069154", + "length": "210.7422", + "name": "line_ln5472350-1", + "phases": "BN", + "to": "l3104120" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1089170", + "length": "155.3860", + "name": "line_ln5532740-1", + "phases": "CN", + "to": "l3029497" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009840", + "length": "305.4828", + "name": "line_ln6017282-1", + "phases": "BN", + "to": "l3216338" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2916608", + "length": "284.0062", + "name": "line_ln6108131-1", + "phases": "ABCN", + "to": "m1027002" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3048206", + "length": "196.5001", + "name": "line_ln6320329-1", + "phases": "ABCN", + "to": "m1069156" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2767408", + "length": "148.7871", + "name": "line_ln6506314-2", + "phases": "CN", + "to": "l3217053" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "l3160863", + "length": "1019.5548", + "name": "line_ln6201670-1", + "phases": "ABCN", + "to": "l2730108" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "r18241", + "length": "226.5406", + "name": "line_ln6259989-1", + "phases": "ABCN", + "to": "m1047763" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047453", + "length": "252.7781", + "name": "line_ln5835175-1", + "phases": "BN", + "to": "l2785547" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2879075", + "length": "195.0644", + "name": "line_ln5894312-1", + "phases": "AN", + "to": "l3251830" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1009824", + "length": "175.9835", + "name": "line_ln5865225-1", + "phases": "BN", + "to": "l2822857" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "e182731", + "length": "141.6482", + "name": "line_ln5716232-1", + "phases": "BN", + "to": "m1026327" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047796", + "length": "400.9391", + "name": "line_ln5502527-1", + "phases": "BN", + "to": "l3010562" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001307", + "length": "158.2381", + "name": "line_ln2001308-1", + "phases": "AN", + "to": "m2001308" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e182732", + "length": "30.1193", + "name": "line_ln5746548-1", + "phases": "ABCN", + "to": "m1026760" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1138595", + "length": "386.8395", + "name": "line_ln6505944-3", + "phases": "ABCN", + "to": "m3036167" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026810", + "length": "444.6293", + "name": "line_ln6260002-1", + "phases": "CN", + "to": "l2914324" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827534", + "length": "16.2537", + "name": "line_ln5985339-1", + "phases": "AN", + "to": "m1069130" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p827563", + "length": "22.0364", + "name": "line_ln6505944-2", + "phases": "ABCN", + "to": "n1138595" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069130", + "length": "258.4847", + "name": "line_ln5985339-2", + "phases": "AN", + "to": "l3085396" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1142815", + "length": "483.6907", + "name": "line_ln5684911-1", + "phases": "ABCN", + "to": "m1142814" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026861", + "length": "534.5932", + "name": "line_ln6169257-1", + "phases": "ABCN", + "to": "m1026858" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2879073", + "length": "205.1442", + "name": "line_ln5835140-1", + "phases": "ABCN", + "to": "m1069205" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069567", + "length": "269.1826", + "name": "line_ln5472385-1", + "phases": "BN", + "to": "l2691966" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026492", + "length": "175.8592", + "name": "line_ln5804837-1", + "phases": "BN", + "to": "l3048231" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1209822", + "length": "186.9522", + "name": "line_ln6078692-1", + "phases": "ABCN", + "to": "m1209823" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010003", + "length": "195.000", + "name": "line_ln5803302-1", + "phases": "AN", + "to": "l2989571" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026394", + "length": "141.9797", + "name": "line_ln5683829-1", + "phases": "AN", + "to": "m1026393" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p873787", + "length": "48.4679", + "name": "line_ln6163946-1", + "phases": "BN", + "to": "m1069463" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009763", + "length": "81.6749", + "name": "line_ln6138616-1", + "phases": "BN", + "to": "l2766730" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069174", + "length": "306.0783", + "name": "line_ln5924697-1", + "phases": "CN", + "to": "l2841630" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069514", + "length": "40.1729", + "name": "line_ln6290228-2", + "phases": "ABCN", + "to": "n1136657" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069600", + "length": "190.0005", + "name": "line_ln5831676-1", + "phases": "BN", + "to": "l3102793" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026705", + "length": "114.9670", + "name": "line_ln5803257-1", + "phases": "CN", + "to": "l2710532" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "r42246", + "length": "139.2668", + "name": "line_ln6290228-5", + "phases": "ABCN", + "to": "l2691967" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026377", + "length": "190.5045", + "name": "line_ln5562936-1", + "phases": "AN", + "to": "m1026378" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m3037453", + "length": "11.2274", + "name": "line_ln6436903-4", + "phases": "CN", + "to": "l2785546" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1136657", + "length": "174.6514", + "name": "line_ln6290228-6", + "phases": "ABCN", + "to": "d6290228-6_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2898495", + "length": "461.4899", + "name": "line_ln6409778-1", + "phases": "ABCN", + "to": "l2952003" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "q16642_cap", + "length": "14.8983", + "name": "line_ln6290228-7", + "phases": "ABCN", + "to": "r42246" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p827574", + "length": "199.9018", + "name": "line_ln5776672-1", + "phases": "AN", + "to": "l3160123" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3178976", + "length": "297.1361", + "name": "line_ln6108153-1", + "phases": "AN", + "to": "m1026779" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2879081", + "length": "184.4732", + "name": "line_ln5472376-1", + "phases": "AN", + "to": "m1026682" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069461", + "length": "28.5005", + "name": "line_ln6049824-1", + "phases": "AN", + "to": "p827574" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047828", + "length": "66.9504", + "name": "line_ln6199515-1", + "phases": "BN", + "to": "l2954346" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166407", + "length": "493.7524", + "name": "line_ln5985365-1", + "phases": "CN", + "to": "l2952007" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2822871", + "length": "197.3244", + "name": "line_ln6077784-1", + "phases": "ABCN", + "to": "m1026872" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2785547", + "length": "129.0966", + "name": "line_ln6047607-1", + "phases": "BN", + "to": "m1047457" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047345", + "length": "179.2233", + "name": "line_ln6047584-1", + "phases": "ABCN", + "to": "l2991922" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "q1301", + "length": "46.3509", + "name": "line_ln5861005-3", + "phases": "ABCN", + "to": "l3160872" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "196-31070", + "length": "20.1474", + "name": "line_ln5861005-2", + "phases": "ABCN", + "to": "d5861005-2_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166391", + "length": "283.3100", + "name": "line_ln6200442-1", + "phases": "CN", + "to": "m1166394" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1147867", + "length": "19.4111", + "name": "line_ln5837361-8", + "phases": "ABCN", + "to": "d5837361-8_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2991933", + "length": "273.2062", + "name": "line_ln5653486-1", + "phases": "CN", + "to": "l3122837" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027027", + "length": "384.5177", + "name": "line_ln6077807-1", + "phases": "CN", + "to": "l2766746" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069184", + "length": "209.5686", + "name": "line_ln6017299-1", + "phases": "ABCN", + "to": "m1069175" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047344", + "length": "232.9696", + "name": "line_ln5714055-1", + "phases": "AN", + "to": "l2897772" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3081380", + "length": "302.2330", + "name": "line_ln5799561-2", + "phases": "ABCN", + "to": "d5799561-2_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142843", + "length": "362.8248", + "name": "line_ln5799561-1", + "phases": "ABCN", + "to": "l3081380" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e184626", + "length": "33.8509", + "name": "line_ln6326450-1", + "phases": "ABCN", + "to": "m1166377" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069456", + "length": "74.3772", + "name": "line_ln5837361-7", + "phases": "ABCN", + "to": "n1147867" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p895089", + "length": "198.5139", + "name": "line_ln6134414-1", + "phases": "CN", + "to": "l3235242" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1142826", + "length": "940.4608", + "name": "line_ln5654470-1", + "phases": "BN", + "to": "m1125940" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000300", + "length": "473.3272", + "name": "line_ln2000400-1", + "phases": "ABCN", + "to": "m2000400" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2786266", + "length": "113.4009", + "name": "line_ln5745355-1", + "phases": "ABCN", + "to": "m1166375" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047718", + "length": "178.6656", + "name": "line_ln5683807-1", + "phases": "AN", + "to": "m1047721" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047834", + "length": "308.9107", + "name": "line_ln5744327-1", + "phases": "BN", + "to": "l3197624" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026920", + "length": "79.5162", + "name": "line_ln6320338-1", + "phases": "BN", + "to": "l2729408" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "q16483_cap", + "length": "17.2556", + "name": "line_ln5563942-5", + "phases": "ABCN", + "to": "r42247" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047420", + "length": "41.3833", + "name": "line_ln6195664-1", + "phases": "AN", + "to": "m1047419" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047580", + "length": "34.7410", + "name": "line_ln6025724-2", + "phases": "CN", + "to": "n1136672" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p895102", + "length": "32.5571", + "name": "line_ln6376708-1", + "phases": "BN", + "to": "m1125978" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047314", + "length": "73.2220", + "name": "line_ln5756001-1", + "phases": "AN", + "to": "m1047311" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108368", + "length": "230.9165", + "name": "line_ln6290206-1", + "phases": "CN", + "to": "l2897770" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2748125", + "length": "176.9719", + "name": "line_ln6138593-1", + "phases": "CN", + "to": "l2673303" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026662", + "length": "468.6803", + "name": "line_ln6350543-1", + "phases": "ABCN", + "to": "l2673319" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2804249", + "length": "232.9644", + "name": "line_ln6256144-4", + "phases": "ABCN", + "to": "n1139547" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2673319", + "length": "109.2091", + "name": "line_ln5591284-1", + "phases": "ABCN", + "to": "m1026658" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026658", + "length": "234.2658", + "name": "line_ln5591284-2", + "phases": "ABCN", + "to": "m1026655" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125976", + "length": "567.3386", + "name": "line_ln5745257-1", + "phases": "ABCN", + "to": "m1125987" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1139547", + "length": "278.9562", + "name": "line_ln6256144-3", + "phases": "ABCN", + "to": "l2688693" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2688693", + "length": "128.5395", + "name": "line_ln6256144-1", + "phases": "ABCN", + "to": "l2688692" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p827560", + "length": "45.3782", + "name": "line_ln6201702-3", + "phases": "AN", + "to": "n1147866" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166355", + "length": "214.1133", + "name": "line_ln5624381-1", + "phases": "AN", + "to": "l2805035" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1166375", + "length": "32.0261", + "name": "line_ln5589096-1", + "phases": "AN", + "to": "p895080" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142832", + "length": "15.0477", + "name": "line_ln6292614-1", + "phases": "CN", + "to": "p829962" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3082988", + "length": "226.8580", + "name": "line_ln6230797-1", + "phases": "BN", + "to": "m1149225" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008733", + "length": "272.3492", + "name": "line_ln6229785-1", + "phases": "BN", + "to": "l3216339" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047777", + "length": "300.3130", + "name": "line_ln6047562-1", + "phases": "BN", + "to": "m1047780" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026324", + "length": "182.4078", + "name": "line_ln5502540-1", + "phases": "BN", + "to": "m1026323" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1140517", + "length": "332.1830", + "name": "line_ln5621857-3", + "phases": "AN", + "to": "l3157718" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3067478", + "length": "343.4016", + "name": "line_ln6170256-1", + "phases": "ABCN", + "to": "m1125994" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2972704", + "length": "174.5399", + "name": "line_ln5956469-1", + "phases": "CN", + "to": "l3263051" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1209763", + "length": "344.8824", + "name": "line_ln6048635-1", + "phases": "BN", + "to": "l2936275" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p901934", + "length": "46.9376", + "name": "line_ln5621857-2", + "phases": "AN", + "to": "n1140517" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026308", + "length": "61.5745", + "name": "line_ln5653464-1", + "phases": "BN", + "to": "l2991918" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026812", + "length": "284.7709", + "name": "line_ln6255312-1", + "phases": "CN", + "to": "l3122847" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1147865", + "length": "395.5819", + "name": "line_ln6379450-3", + "phases": "AN", + "to": "l2895489" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209750", + "length": "378.4411", + "name": "line_ln5987956-1", + "phases": "BN", + "to": "l3086075" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026946", + "length": "421.8171", + "name": "line_ln6138603-1", + "phases": "BN", + "to": "m1026940" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047824", + "length": "256.2380", + "name": "line_ln5714042-1", + "phases": "BN", + "to": "l3122810" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026662", + "length": "45.6942", + "name": "line_ln6108140-2", + "phases": "AN", + "to": "n1141473" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1141473", + "length": "135.3284", + "name": "line_ln6108140-3", + "phases": "AN", + "to": "l3216350" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027055", + "length": "55.0365", + "name": "line_ln6379450-2", + "phases": "AN", + "to": "n1147865" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047521", + "length": "38.9734", + "name": "line_ln6411387-1", + "phases": "AN", + "to": "l2954353" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "r42247", + "length": "130.4082", + "name": "line_ln5563942-3", + "phases": "ABCN", + "to": "m1149233" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1149235", + "length": "102.1435", + "name": "line_ln5563942-4", + "phases": "ABCN", + "to": "d5563942-4_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026472", + "length": "20.6871", + "name": "line_ln5472341-1", + "phases": "BN", + "to": "d5472341-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1027001", + "length": "301.3936", + "name": "line_ln5835127-1", + "phases": "BN", + "to": "m1027004" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125917", + "length": "298.4022", + "name": "line_ln5957493-1", + "phases": "ABCN", + "to": "m1125914" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108350", + "length": "780.1370", + "name": "line_ln5833631-1", + "phases": "CN", + "to": "m1108360" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2691950", + "length": "232.8535", + "name": "line_ln6047571-1", + "phases": "CN", + "to": "l2916609" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026330", + "length": "356.1885", + "name": "line_ln6199524-1", + "phases": "BN", + "to": "l2785526" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047777", + "length": "1797.6689", + "name": "line_ln6229798-1", + "phases": "BN", + "to": "l3178975" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000906", + "length": "158.2381", + "name": "line_ln2000907-1", + "phases": "CN", + "to": "m2000907" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069517", + "length": "94.1423", + "name": "line_ln6350556-2", + "phases": "ABCN", + "to": "n1136367" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1136367", + "length": "126.3069", + "name": "line_ln6350556-3", + "phases": "ABCN", + "to": "m1069515" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3122820", + "length": "194.9105", + "name": "line_ln5774460-1", + "phases": "AN", + "to": "l3141398" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1108395", + "length": "606.4067", + "name": "line_ln6061820-1", + "phases": "B", + "to": "m1108410" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047457", + "length": "219.9410", + "name": "line_ln5926332-1", + "phases": "BN", + "to": "l3139086" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000412", + "length": "158.2381", + "name": "line_ln2000413-1", + "phases": "AN", + "to": "m2000413" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209787", + "length": "407.9844", + "name": "line_ln6261021-1", + "phases": "ABCN", + "to": "l2823611" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026335", + "length": "229.2830", + "name": "line_ln6229808-1", + "phases": "AN", + "to": "l2804259" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047723", + "length": "303.1876", + "name": "line_ln6320325-1", + "phases": "AN", + "to": "m1047729" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2841626", + "length": "306.9153", + "name": "line_ln6260019-1", + "phases": "ABCN", + "to": "l3235266" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2991939", + "length": "307.5968", + "name": "line_ln5774495-1", + "phases": "ABCN", + "to": "l3216367" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3141389", + "length": "248.9193", + "name": "line_ln5895767-1", + "phases": "AN", + "to": "l2860477" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001013", + "length": "158.2381", + "name": "line_ln2001014-1", + "phases": "BN", + "to": "m2001014" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026780", + "length": "351.2907", + "name": "line_ln6290215-1", + "phases": "ABCN", + "to": "m1026774" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047442", + "length": "225.8185", + "name": "line_ln5562927-1", + "phases": "BN", + "to": "m1047444" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108257", + "length": "1436.0718", + "name": "line_ln5866235-1", + "phases": "BN", + "to": "l3142078" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1149249", + "length": "761.7737", + "name": "line_ln6258463-1", + "phases": "CN", + "to": "m1142880" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3029510", + "length": "354.8084", + "name": "line_ln5804811-1", + "phases": "BN", + "to": "l2729409" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx1/0_tpx_ln6077771-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1009824", + "length": "100.7711", + "name": "line_ln6077771-1", + "phases": "BN", + "to": "l2954338" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1136672", + "length": "39.9036", + "name": "line_ln6025724-5", + "phases": "CN", + "to": "l3253995" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2822861", + "length": "676.6774", + "name": "line_ln6411365-1", + "phases": "AN", + "to": "l2841616" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026795", + "length": "44.4800", + "name": "line_ln6259998-2", + "phases": "CN", + "to": "n1140522" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1140522", + "length": "51.6825", + "name": "line_ln6259998-3", + "phases": "CN", + "to": "l2822870" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047318", + "length": "240.2929", + "name": "line_ln5472367-1", + "phases": "CN", + "to": "l2841637" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069393", + "length": "229.0093", + "name": "line_ln5593230-1", + "phases": "BN", + "to": "m1069408" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6320366-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2821010", + "length": "357.5965", + "name": "line_ln6349988-1", + "phases": "CN", + "to": "m1026773" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069530", + "length": "87.7733", + "name": "line_ln6199546-1", + "phases": "BN", + "to": "m1069526" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2785512", + "length": "386.9641", + "name": "line_ln6017286-1", + "phases": "BN", + "to": "m1047813" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047374", + "length": "392.8781", + "name": "line_ln6350534-1", + "phases": "BN", + "to": "l2879065" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047755", + "length": "240.3642", + "name": "line_ln5623397-1", + "phases": "AN", + "to": "m1047751" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026990", + "length": "836.1619", + "name": "line_ln5956456-1", + "phases": "BN", + "to": "m1027001" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "m1209774", + "length": "14.2222", + "name": "line_ln8940662-1", + "phases": "ABC", + "to": "221-242079" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "n1140817", + "length": "51.8058", + "name": "line_ln5926310-3", + "phases": "ABCN", + "to": "l3235258" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001209", + "length": "158.2381", + "name": "line_ln2001210-1", + "phases": "CN", + "to": "m2001210" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2916619", + "length": "314.2763", + "name": "line_ln6228396-1", + "phases": "BN", + "to": "l2727008" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2897776", + "length": "476.7774", + "name": "line_ln6411378-1", + "phases": "CN", + "to": "l3254215" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4_acsr_ln5589097-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "m1047486", + "length": "59.9987", + "name": "line_ln6437757-1", + "phases": "AN", + "to": "l3177665" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026744", + "length": "96.9044", + "name": "line_ln5926310-2", + "phases": "ABCN", + "to": "n1140817" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001000", + "length": "158.2381", + "name": "line_ln2001001-1", + "phases": "BN", + "to": "m2001001" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1027039", + "length": "88.7418", + "name": "line_ln5472354-1", + "phases": "ABCN", + "to": "m1027043" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2841619", + "length": "382.1263", + "name": "line_ln6259985-1", + "phases": "CN", + "to": "l2785515" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2896685", + "length": "78.8398", + "name": "line_ln6274208-2", + "phases": "ABCN", + "to": "m1089185" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2767343", + "length": "221.4451", + "name": "line_ln6048524-1", + "phases": "CN", + "to": "l2804957" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108395", + "length": "310.8379", + "name": "line_ln6274208-1", + "phases": "ABCN", + "to": "l2896685" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026339", + "length": "289.7604", + "name": "line_ln5623407-1", + "phases": "BN", + "to": "l3029507" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1125988", + "length": "236.9342", + "name": "line_ln6506310-2", + "phases": "ABCN", + "to": "l2767340" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2897767", + "length": "426.8282", + "name": "line_ln6199511-1", + "phases": "CN", + "to": "l3254208" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1186061", + "length": "461.4646", + "name": "line_ln5622467-1", + "phases": "ABCN", + "to": "l3139366" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p895113", + "length": "225.9369", + "name": "line_ln6407206-1", + "phases": "CN", + "to": "l2711225" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047699", + "length": "263.1622", + "name": "line_ln5683816-1", + "phases": "ABCN", + "to": "l2935554" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026987", + "length": "187.1850", + "name": "line_ln5865229-1", + "phases": "BN", + "to": "m1026990" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108298", + "length": "128.8297", + "name": "line_ln5531195-1", + "phases": "ABCN", + "to": "196-36167" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2842330", + "length": "187.4760", + "name": "line_ln5927297-1", + "phases": "CN", + "to": "l3086002" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln5958865-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "l3139366", + "length": "379.2851", + "name": "line_ln5622467-4", + "phases": "ABCN", + "to": "m4362177" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047809", + "length": "267.2585", + "name": "line_ln6350569-1", + "phases": "BN", + "to": "m1047812" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p829978", + "length": "181.9136", + "name": "line_ln5989332-1", + "phases": "AN", + "to": "l2992656" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047312", + "length": "13.5979", + "name": "line_ln6014135-1", + "phases": "AN", + "to": "p893163" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026890", + "length": "168.5518", + "name": "line_ln5744371-1", + "phases": "AN", + "to": "l2954357" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2954339", + "length": "205.8702", + "name": "line_ln5986919-1", + "phases": "BN", + "to": "l3048200" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln5528079-3", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026773", + "length": "101.2386", + "name": "line_ln5652983-1", + "phases": "CN", + "to": "m1026777" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125914", + "length": "137.7981", + "name": "line_ln6078768-1", + "phases": "ABCN", + "to": "l2917328" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3254230", + "length": "310.5497", + "name": "line_ln5472389-1", + "phases": "AN", + "to": "m1047711" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2841633", + "length": "349.6128", + "name": "line_ln5534970-1", + "phases": "ABCN", + "to": "d5534970-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047786", + "length": "228.0444", + "name": "line_ln6505940-2", + "phases": "BN", + "to": "l3048207" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166393", + "length": "215.3849", + "name": "line_ln5717630-1", + "phases": "CN", + "to": "m1166395" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085398b", + "length": "50.000", + "name": "tpx_tpx355777b0", + "phases": "BS", + "to": "sx3085398b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3179646b", + "length": "50.000", + "name": "tpx_tpx328365b0", + "phases": "BS", + "to": "sx3179646b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766716c", + "length": "50.000", + "name": "tpx_tpx337713c0", + "phases": "CS", + "to": "sx2766716c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122835b", + "length": "50.000", + "name": "tpx_tpx339008b0", + "phases": "BS", + "to": "sx3122835b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235253a", + "length": "50.000", + "name": "tpx_tpx138573a0", + "phases": "AS", + "to": "sx3235253a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048210a", + "length": "50.000", + "name": "tpx_tpx302412a0", + "phases": "AS", + "to": "sx3048210a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104115b", + "length": "50.000", + "name": "tpx_tpx391738b0", + "phases": "BS", + "to": "sx3104115b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2925506c", + "length": "50.000", + "name": "tpx_tpx225533703c0", + "phases": "CS", + "to": "sx2925506c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3784018a", + "length": "50.000", + "name": "tpx_tpx2224500658a0", + "phases": "AS", + "to": "sx3784018a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048231b", + "length": "50.000", + "name": "tpx_tpx21400215b0", + "phases": "BS", + "to": "sx3048231b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2935550c", + "length": "50.000", + "name": "tpx_tpx274999c0", + "phases": "CS", + "to": "sx2935550c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748144a", + "length": "50.000", + "name": "tpx_tpx338984a0", + "phases": "AS", + "to": "sx2748144a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3233413b", + "length": "50.000", + "name": "tpx_tpx226308727b0", + "phases": "BS", + "to": "sx3233413b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2748125c", + "length": "50.000", + "name": "tpx_tpx338962c0", + "phases": "CS", + "to": "sx2748125c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160114a", + "length": "50.000", + "name": "tpx_tpx339019a0", + "phases": "AS", + "to": "sx3160114a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3448661b", + "length": "50.000", + "name": "tpx_tpx2223878647b0", + "phases": "BS", + "to": "sx3448661b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2729207c", + "length": "50.000", + "name": "tpx_tpx2212168874c0", + "phases": "CS", + "to": "sx2729207c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2767341c", + "length": "50.000", + "name": "tpx_tpx260577c0", + "phases": "CS", + "to": "sx2767341c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122827a", + "length": "50.000", + "name": "tpx_tpx293673a0", + "phases": "AS", + "to": "sx3122827a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216351a", + "length": "50.000", + "name": "tpx_tpx21398815a0", + "phases": "AS", + "to": "sx3216351a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2860487c", + "length": "50.000", + "name": "tpx_tpx138586c0", + "phases": "CS", + "to": "sx2860487c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3159645a", + "length": "50.000", + "name": "tpx_tpx228446184a0", + "phases": "AS", + "to": "sx3159645a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973154a", + "length": "50.000", + "name": "tpx_tpx338897a0", + "phases": "AS", + "to": "sx2973154a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2673310a", + "length": "50.000", + "name": "tpx_tpx138562a0", + "phases": "AS", + "to": "sx2673310a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000711b", + "length": "50.000", + "name": "tpx_tpx2000711b0", + "phases": "BS", + "to": "sx2000711b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710519a", + "length": "50.000", + "name": "tpx_tpx302676a0", + "phases": "AS", + "to": "sx2710519a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3120502a", + "length": "50.000", + "name": "tpx_tpx294812a0", + "phases": "CS", + "to": "sx3120502a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254217c", + "length": "50.000", + "name": "tpx_tpx21399112c0", + "phases": "CS", + "to": "sx3254217c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691943b", + "length": "50.000", + "name": "tpx_tpx323400b0", + "phases": "BS", + "to": "sx2691943b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897807b", + "length": "50.000", + "name": "tpx_tpx21386771b0", + "phases": "BS", + "to": "sx2897807b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197618a", + "length": "50.000", + "name": "tpx_tpx356008a0", + "phases": "AS", + "to": "sx3197618a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3179673c", + "length": "50.000", + "name": "tpx_tpx260640c0", + "phases": "CS", + "to": "sx3179673c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2690187b", + "length": "50.000", + "name": "tpx_tpx226308716b0", + "phases": "BS", + "to": "sx2690187b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000406a", + "length": "50.000", + "name": "tpx_tpx2000406a0", + "phases": "AS", + "to": "sx2000406a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2955055b", + "length": "50.000", + "name": "tpx_tpx21249647b0", + "phases": "BS", + "to": "sx2955055b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001208c", + "length": "50.000", + "name": "tpx_tpx2001208c0", + "phases": "CS", + "to": "sx2001208c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766722b", + "length": "50.000", + "name": "tpx_tpx337700b0", + "phases": "BS", + "to": "sx2766722b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2858166a", + "length": "50.000", + "name": "tpx_tpx226192994a0", + "phases": "AS", + "to": "sx2858166a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748143a", + "length": "50.000", + "name": "tpx_tpx28121368a0", + "phases": "AS", + "to": "sx2748143a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254873c", + "length": "50.000", + "name": "tpx_tpx251862c0", + "phases": "CS", + "to": "sx3254873c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104134c", + "length": "50.000", + "name": "tpx_tpx138718c0", + "phases": "CS", + "to": "sx3104134c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2730108b", + "length": "50.000", + "name": "tpx_tpx223661b0", + "phases": "BS", + "to": "sx2730108b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3195327a", + "length": "50.000", + "name": "tpx_tpx225901711a0", + "phases": "AS", + "to": "sx3195327a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3011293c", + "length": "50.000", + "name": "tpx_tpx28129466c0", + "phases": "CS", + "to": "sx3011293c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2842330c", + "length": "50.000", + "name": "tpx_tpx356795c0", + "phases": "CS", + "to": "sx2842330c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691938b", + "length": "50.000", + "name": "tpx_tpx355600b0", + "phases": "BS", + "to": "sx2691938b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2711234b", + "length": "50.000", + "name": "tpx_tpx207287b0", + "phases": "BS", + "to": "sx2711234b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2973144c", + "length": "50.000", + "name": "tpx_tpx138466c0", + "phases": "CS", + "to": "sx2973144c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2955074a", + "length": "50.000", + "name": "tpx_tpx260479a0", + "phases": "AS", + "to": "sx2955074a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860499b", + "length": "50.000", + "name": "tpx_tpx338997b0", + "phases": "BS", + "to": "sx2860499b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001315a", + "length": "50.000", + "name": "tpx_tpx2001315a0", + "phases": "AS", + "to": "sx2001315a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897770c", + "length": "50.000", + "name": "tpx_tpx337628c0", + "phases": "CS", + "to": "sx2897770c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728042a", + "length": "50.000", + "name": "tpx_tpx2224387113a0", + "phases": "AS", + "to": "sx3728042a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766744b", + "length": "50.000", + "name": "tpx_tpx28127319b0", + "phases": "BS", + "to": "sx2766744b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2955076a", + "length": "50.000", + "name": "tpx_tpx21243817a0", + "phases": "AS", + "to": "sx2955076a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3179637c", + "length": "50.000", + "name": "tpx_tpx21386442c0", + "phases": "CS", + "to": "sx3179637c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3178980c", + "length": "50.000", + "name": "tpx_tpx302510c0", + "phases": "CS", + "to": "sx3178980c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3123509c", + "length": "50.000", + "name": "tpx_tpx28129923c0", + "phases": "CS", + "to": "sx3123509c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879061b", + "length": "50.000", + "name": "tpx_tpx337692b0", + "phases": "BS", + "to": "sx2879061b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254915b", + "length": "50.000", + "name": "tpx_tpx260520b0", + "phases": "BS", + "to": "sx3254915b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3045895c", + "length": "50.000", + "name": "tpx_tpx351020c0", + "phases": "CS", + "to": "sx3045895c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3214071c", + "length": "50.000", + "name": "tpx_tpx226194419c0", + "phases": "CS", + "to": "sx3214071c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197639a", + "length": "50.000", + "name": "tpx_tpx310569a0", + "phases": "AS", + "to": "sx3197639a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122817c", + "length": "50.000", + "name": "tpx_tpx355779c0", + "phases": "CS", + "to": "sx3122817c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973157a", + "length": "50.000", + "name": "tpx_tpx337722a0", + "phases": "AS", + "to": "sx2973157a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048199b", + "length": "50.000", + "name": "tpx_tpx323237b0", + "phases": "BS", + "to": "sx3048199b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804259a", + "length": "50.000", + "name": "tpx_tpx28127372a0", + "phases": "AS", + "to": "sx2804259a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122814c", + "length": "50.000", + "name": "tpx_tpx338899c0", + "phases": "CS", + "to": "sx3122814c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2876797a", + "length": "50.000", + "name": "tpx_tpx226193345a0", + "phases": "AS", + "to": "sx2876797a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991918b", + "length": "50.000", + "name": "tpx_tpx391749b0", + "phases": "BS", + "to": "sx2991918b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3011293b", + "length": "50.000", + "name": "tpx_tpx28129466b0", + "phases": "BS", + "to": "sx3011293b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104132a", + "length": "50.000", + "name": "tpx_tpx302469a0", + "phases": "AS", + "to": "sx3104132a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2691951c", + "length": "50.000", + "name": "tpx_tpx138379c0", + "phases": "CS", + "to": "sx2691951c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x1108404c", + "length": "50.000", + "name": "tpx_tpx2221108404c0", + "phases": "CS", + "to": "sx1108404c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3085394c", + "length": "50.000", + "name": "tpx_tpx274988c0", + "phases": "CS", + "to": "sx3085394c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748157a", + "length": "50.000", + "name": "tpx_tpx338973a0", + "phases": "AS", + "to": "sx2748157a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001304a", + "length": "50.000", + "name": "tpx_tpx2001304a0", + "phases": "AS", + "to": "sx2001304a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3085396a", + "length": "50.000", + "name": "tpx_tpx138684a0", + "phases": "AS", + "to": "sx3085396a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785515c", + "length": "50.000", + "name": "tpx_tpx293609c0", + "phases": "CS", + "to": "sx2785515c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3195321a", + "length": "50.000", + "name": "tpx_tpx356805a0", + "phases": "AS", + "to": "sx3195321a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2933135a", + "length": "50.000", + "name": "tpx_tpx226197070a0", + "phases": "AS", + "to": "sx2933135a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2955078a", + "length": "50.000", + "name": "tpx_tpx260542a0", + "phases": "AS", + "to": "sx2955078a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897775c", + "length": "50.000", + "name": "tpx_tpx138342c0", + "phases": "CS", + "to": "sx2897775c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2936213b", + "length": "50.000", + "name": "tpx_tpx328363b0", + "phases": "BS", + "to": "sx2936213b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029183b", + "length": "50.000", + "name": "tpx_tpx228580047b0", + "phases": "BS", + "to": "sx3029183b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916610b", + "length": "50.000", + "name": "tpx_tpx293660b0", + "phases": "BS", + "to": "sx2916610b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991913a", + "length": "50.000", + "name": "tpx_tpx138571a0", + "phases": "AS", + "to": "sx2991913a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860485b", + "length": "50.000", + "name": "tpx_tpx321855b0", + "phases": "BS", + "to": "sx2860485b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235268c", + "length": "50.000", + "name": "tpx_tpx28099529c0", + "phases": "CS", + "to": "sx3235268c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2972704c", + "length": "50.000", + "name": "tpx_tpx228445756c0", + "phases": "CS", + "to": "sx2972704c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3011293a", + "length": "50.000", + "name": "tpx_tpx28129466a0", + "phases": "AS", + "to": "sx3011293a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104131a", + "length": "50.000", + "name": "tpx_tpx302410a0", + "phases": "AS", + "to": "sx3104131a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000702b", + "length": "50.000", + "name": "tpx_tpx2000702b0", + "phases": "BS", + "to": "sx2000702b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048228c", + "length": "50.000", + "name": "tpx_tpx274997c0", + "phases": "CS", + "to": "sx3048228c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991920a", + "length": "50.000", + "name": "tpx_tpx28118822a0", + "phases": "AS", + "to": "sx2991920a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2876813a", + "length": "50.000", + "name": "tpx_tpx355842a0", + "phases": "CS", + "to": "sx2876813a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2802480b", + "length": "50.000", + "name": "tpx_tpx226308725b0", + "phases": "BS", + "to": "sx2802480b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897767c", + "length": "50.000", + "name": "tpx_tpx338960c0", + "phases": "CS", + "to": "sx2897767c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048887b", + "length": "50.000", + "name": "tpx_tpx260586b0", + "phases": "BS", + "to": "sx3048887b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104113a", + "length": "50.000", + "name": "tpx_tpx138560a0", + "phases": "AS", + "to": "sx3104113a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000408a", + "length": "50.000", + "name": "tpx_tpx2000408a0", + "phases": "AS", + "to": "sx2000408a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710530b", + "length": "50.000", + "name": "tpx_tpx21381118b0", + "phases": "BS", + "to": "sx2710530b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2936216c", + "length": "50.000", + "name": "tpx_tpx223663c0", + "phases": "CS", + "to": "sx2936216c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2673321a", + "length": "50.000", + "name": "tpx_tpx302674a0", + "phases": "AS", + "to": "sx2673321a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3217057a", + "length": "50.000", + "name": "tpx_tpx218475a0", + "phases": "AS", + "to": "sx3217057a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000713b", + "length": "50.000", + "name": "tpx_tpx2000713b0", + "phases": "BS", + "to": "sx2000713b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860478b", + "length": "50.000", + "name": "tpx_tpx355590b0", + "phases": "BS", + "to": "sx2860478b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2730187a", + "length": "50.000", + "name": "tpx_tpx260464a0", + "phases": "AS", + "to": "sx2730187a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216367b", + "length": "50.000", + "name": "tpx_tpx337648b0", + "phases": "BS", + "to": "sx3216367b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785534b", + "length": "50.000", + "name": "tpx_tpx338982b0", + "phases": "BS", + "to": "sx2785534b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001206c", + "length": "50.000", + "name": "tpx_tpx2001206c0", + "phases": "CS", + "to": "sx2001206c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3251799a", + "length": "50.000", + "name": "tpx_tpx260562a0", + "phases": "AS", + "to": "sx3251799a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729408b", + "length": "50.000", + "name": "tpx_tpx355768b0", + "phases": "BS", + "to": "sx2729408b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691954b", + "length": "50.000", + "name": "tpx_tpx21399361b0", + "phases": "BS", + "to": "sx2691954b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029504b", + "length": "50.000", + "name": "tpx_tpx337702b0", + "phases": "BS", + "to": "sx3029504b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3108449a", + "length": "50.000", + "name": "tpx_tpx228622562a0", + "phases": "AS", + "to": "sx3108449a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2955006c", + "length": "50.000", + "name": "tpx_tpx356797c0", + "phases": "CS", + "to": "sx2955006c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841626c", + "length": "50.000", + "name": "tpx_tpx302808c0", + "phases": "CS", + "to": "sx2841626c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000911c", + "length": "50.000", + "name": "tpx_tpx2000911c0", + "phases": "CS", + "to": "sx2000911c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3251806b", + "length": "50.000", + "name": "tpx_tpx355602b0", + "phases": "BS", + "to": "sx3251806b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254219c", + "length": "50.000", + "name": "tpx_tpx138716c0", + "phases": "CS", + "to": "sx3254219c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879067a", + "length": "50.000", + "name": "tpx_tpx21380616a0", + "phases": "AS", + "to": "sx2879067a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3102793b", + "length": "50.000", + "name": "tpx_tpx227734175b0", + "phases": "BS", + "to": "sx3102793b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066801c", + "length": "50.000", + "name": "tpx_tpx138464c0", + "phases": "CS", + "to": "sx3066801c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001313a", + "length": "50.000", + "name": "tpx_tpx2001313a0", + "phases": "AS", + "to": "sx2001313a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3216343c", + "length": "50.000", + "name": "tpx_tpx337626c0", + "phases": "CS", + "to": "sx3216343c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2748133c", + "length": "50.000", + "name": "tpx_tpx302861c0", + "phases": "CS", + "to": "sx2748133c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254227b", + "length": "50.000", + "name": "tpx_tpx338995b0", + "phases": "BS", + "to": "sx3254227b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2861219b", + "length": "50.000", + "name": "tpx_tpx21389761b0", + "phases": "BS", + "to": "sx2861219b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3215549b", + "length": "50.000", + "name": "tpx_tpx228219458b0", + "phases": "BS", + "to": "sx3215549b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2711225c", + "length": "50.000", + "name": "tpx_tpx260553c0", + "phases": "CS", + "to": "sx2711225c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104127b", + "length": "50.000", + "name": "tpx_tpx337690b0", + "phases": "BS", + "to": "sx3104127b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2862616c", + "length": "50.000", + "name": "tpx_tpx227447984c0", + "phases": "AS", + "to": "sx2862616c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879075a", + "length": "50.000", + "name": "tpx_tpx337724a0", + "phases": "AS", + "to": "sx2879075a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254216a", + "length": "50.000", + "name": "tpx_tpx21398563a0", + "phases": "AS", + "to": "sx3254216a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897773a", + "length": "50.000", + "name": "tpx_tpx338918a0", + "phases": "AS", + "to": "sx2897773a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2822865c", + "length": "50.000", + "name": "tpx_tpx274986c0", + "phases": "CS", + "to": "sx2822865c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2842379a", + "length": "50.000", + "name": "tpx_tpx260488a0", + "phases": "AS", + "to": "sx2842379a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001302a", + "length": "50.000", + "name": "tpx_tpx2001302a0", + "phases": "AS", + "to": "sx2001302a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860493a", + "length": "50.000", + "name": "tpx_tpx21397645a0", + "phases": "AS", + "to": "sx2860493a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001008b", + "length": "50.000", + "name": "tpx_tpx2001008b0", + "phases": "BS", + "to": "sx2001008b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2823545a", + "length": "50.000", + "name": "tpx_tpx356807a0", + "phases": "AS", + "to": "sx2823545a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197643b", + "length": "50.000", + "name": "tpx_tpx302369b0", + "phases": "BS", + "to": "sx3197643b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254869b", + "length": "50.000", + "name": "tpx_tpx260575b0", + "phases": "BS", + "to": "sx3254869b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785527a", + "length": "50.000", + "name": "tpx_tpx293522a0", + "phases": "AS", + "to": "sx2785527a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2972930a", + "length": "50.000", + "name": "tpx_tpx338927a0", + "phases": "AS", + "to": "sx2972930a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3232902a", + "length": "50.000", + "name": "tpx_tpx226194826a0", + "phases": "AS", + "to": "sx3232902a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2916599a", + "length": "50.000", + "name": "tpx_tpx356015a0", + "phases": "AS", + "to": "sx2916599a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673320b", + "length": "50.000", + "name": "tpx_tpx392037b0", + "phases": "BS", + "to": "sx2673320b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001215c", + "length": "50.000", + "name": "tpx_tpx2001215c0", + "phases": "CS", + "to": "sx2001215c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2711224b", + "length": "50.000", + "name": "tpx_tpx260500b0", + "phases": "BS", + "to": "sx2711224b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897554c", + "length": "50.000", + "name": "tpx_tpx2212168870c0", + "phases": "CS", + "to": "sx2897554c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3067507c", + "length": "50.000", + "name": "tpx_tpx260535c0", + "phases": "CS", + "to": "sx3067507c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3082981c", + "length": "50.000", + "name": "tpx_tpx226193737c0", + "phases": "CS", + "to": "sx3082981c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3252336b", + "length": "50.000", + "name": "tpx_tpx226308723b0", + "phases": "BS", + "to": "sx3252336b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766730b", + "length": "50.000", + "name": "tpx_tpx355359b0", + "phases": "BS", + "to": "sx2766730b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2729414c", + "length": "50.000", + "name": "tpx_tpx293655c0", + "phases": "CS", + "to": "sx2729414c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2730106c", + "length": "50.000", + "name": "tpx_tpx356814c0", + "phases": "CS", + "to": "sx2730106c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973164a", + "length": "50.000", + "name": "tpx_tpx302514a0", + "phases": "AS", + "to": "sx2973164a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2992556a", + "length": "50.000", + "name": "tpx_tpx346639a0", + "phases": "AS", + "to": "sx2992556a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3270814a", + "length": "50.000", + "name": "tpx_tpx226191850a0", + "phases": "AS", + "to": "sx3270814a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2805036b", + "length": "50.000", + "name": "tpx_tpx275248b0", + "phases": "BS", + "to": "sx2805036b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235243c", + "length": "50.000", + "name": "tpx_tpx275008c0", + "phases": "CS", + "to": "sx3235243c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2691953a", + "length": "50.000", + "name": "tpx_tpx302732a0", + "phases": "AS", + "to": "sx2691953a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197636b", + "length": "50.000", + "name": "tpx_tpx28148580b0", + "phases": "BS", + "to": "sx3197636b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991909a", + "length": "50.000", + "name": "tpx_tpx355773a0", + "phases": "AS", + "to": "sx2991909a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2688693c", + "length": "50.000", + "name": "tpx_tpx225918936c0", + "phases": "CS", + "to": "sx2688693c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3086078a", + "length": "50.000", + "name": "tpx_tpx218473a0", + "phases": "AS", + "to": "sx3086078a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197633a", + "length": "50.000", + "name": "tpx_tpx338893a0", + "phases": "AS", + "to": "sx3197633a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860489a", + "length": "50.000", + "name": "tpx_tpx302405a0", + "phases": "AS", + "to": "sx2860489a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3178981b", + "length": "50.000", + "name": "tpx_tpx21396331b0", + "phases": "BS", + "to": "sx3178981b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2822863c", + "length": "50.000", + "name": "tpx_tpx337635c0", + "phases": "CS", + "to": "sx2822863c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3178973a", + "length": "50.000", + "name": "tpx_tpx21149420a0", + "phases": "AS", + "to": "sx3178973a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879063b", + "length": "50.000", + "name": "tpx_tpx337646b0", + "phases": "BS", + "to": "sx2879063b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001204c", + "length": "50.000", + "name": "tpx_tpx2001204c0", + "phases": "CS", + "to": "sx2001204c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729414b", + "length": "50.000", + "name": "tpx_tpx293655b0", + "phases": "BS", + "to": "sx2729414b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3178976a", + "length": "50.000", + "name": "tpx_tpx21397721a0", + "phases": "AS", + "to": "sx3178976a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000402a", + "length": "50.000", + "name": "tpx_tpx2000402a0", + "phases": "AS", + "to": "sx2000402a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048206a", + "length": "50.000", + "name": "tpx_tpx138649a0", + "phases": "AS", + "to": "sx3048206a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2935559a", + "length": "50.000", + "name": "tpx_tpx21400185a0", + "phases": "AS", + "to": "sx2935559a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3181545c", + "length": "50.000", + "name": "tpx_tpx226193702c0", + "phases": "CS", + "to": "sx3181545c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3216358a", + "length": "50.000", + "name": "tpx_tpx21399826a0", + "phases": "CS", + "to": "sx3216358a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235267c", + "length": "50.000", + "name": "tpx_tpx321892c0", + "phases": "CS", + "to": "sx3235267c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2767343c", + "length": "50.000", + "name": "tpx_tpx356791c0", + "phases": "CS", + "to": "sx2767343c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216346a", + "length": "50.000", + "name": "tpx_tpx391991a0", + "phases": "AS", + "to": "sx3216346a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2876796a", + "length": "50.000", + "name": "tpx_tpx226193338a0", + "phases": "AS", + "to": "sx2876796a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748781a", + "length": "50.000", + "name": "tpx_tpx21382813a0", + "phases": "AS", + "to": "sx2748781a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3157718a", + "length": "50.000", + "name": "tpx_tpx226194093a0", + "phases": "AS", + "to": "sx3157718a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001400c", + "length": "50.000", + "name": "tpx_tpx2001400c0", + "phases": "CS", + "to": "sx2001400c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3067447a", + "length": "50.000", + "name": "tpx_tpx21386157a0", + "phases": "AS", + "to": "sx3067447a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3178982a", + "length": "50.000", + "name": "tpx_tpx294843a0", + "phases": "AS", + "to": "sx3178982a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3066811b", + "length": "50.000", + "name": "tpx_tpx28126875b0", + "phases": "BS", + "to": "sx3066811b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2991921c", + "length": "50.000", + "name": "tpx_tpx28129399c0", + "phases": "CS", + "to": "sx2991921c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066807c", + "length": "50.000", + "name": "tpx_tpx337624c0", + "phases": "CS", + "to": "sx3066807c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104125b", + "length": "50.000", + "name": "tpx_tpx138264b0", + "phases": "BS", + "to": "sx3104125b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2917359a", + "length": "50.000", + "name": "tpx_tpx21482431a0", + "phases": "AS", + "to": "sx2917359a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2915542c", + "length": "50.000", + "name": "tpx_tpx227921427c0", + "phases": "CS", + "to": "sx2915542c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2917336c", + "length": "50.000", + "name": "tpx_tpx260513c0", + "phases": "CS", + "to": "sx2917336c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804272b", + "length": "50.000", + "name": "tpx_tpx338993b0", + "phases": "BS", + "to": "sx2804272b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001311a", + "length": "50.000", + "name": "tpx_tpx2001311a0", + "phases": "AS", + "to": "sx2001311a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x0247160b", + "length": "50.000", + "name": "tpx_tpx247160b0", + "phases": "BS", + "to": "sx0247160b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000413a", + "length": "50.000", + "name": "tpx_tpx2000413a0", + "phases": "AS", + "to": "sx2000413a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766750c", + "length": "50.000", + "name": "tpx_tpx293424c0", + "phases": "CS", + "to": "sx2766750c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2858175a", + "length": "50.000", + "name": "tpx_tpx225668688a0", + "phases": "AS", + "to": "sx2858175a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3081380a", + "length": "50.000", + "name": "tpx_tpx225700953a0", + "phases": "AS", + "to": "sx3081380a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254203b", + "length": "50.000", + "name": "tpx_tpx323233b0", + "phases": "BS", + "to": "sx3254203b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3235246b", + "length": "50.000", + "name": "tpx_tpx323279b0", + "phases": "BS", + "to": "sx3235246b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710516a", + "length": "50.000", + "name": "tpx_tpx321839a0", + "phases": "AS", + "to": "sx2710516a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2955047a", + "length": "50.000", + "name": "tpx_tpx21469911a0", + "phases": "AS", + "to": "sx2955047a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3312692a", + "length": "50.000", + "name": "tpx_tpx2223661373a0", + "phases": "AS", + "to": "sx3312692a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000909c", + "length": "50.000", + "name": "tpx_tpx2000909c0", + "phases": "CS", + "to": "sx2000909c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2726973a", + "length": "50.000", + "name": "tpx_tpx226192926a0", + "phases": "AS", + "to": "sx2726973a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3198347c", + "length": "50.000", + "name": "tpx_tpx260622c0", + "phases": "CS", + "to": "sx3198347c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3118855c", + "length": "50.000", + "name": "tpx_tpx339052c0", + "phases": "CS", + "to": "sx3118855c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2915542b", + "length": "50.000", + "name": "tpx_tpx227921427b0", + "phases": "BS", + "to": "sx2915542b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066810c", + "length": "50.000", + "name": "tpx_tpx337659c0", + "phases": "CS", + "to": "sx3066810c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710521a", + "length": "50.000", + "name": "tpx_tpx138680a0", + "phases": "AS", + "to": "sx2710521a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3253570c", + "length": "50.000", + "name": "tpx_tpx228314460c0", + "phases": "CS", + "to": "sx3253570c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3189190a", + "length": "50.000", + "name": "tpx_tpx227100753a0", + "phases": "AS", + "to": "sx3189190a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2673316a", + "length": "50.000", + "name": "tpx_tpx28120855a0", + "phases": "AS", + "to": "sx2673316a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001006b", + "length": "50.000", + "name": "tpx_tpx2001006b0", + "phases": "BS", + "to": "sx2001006b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897801a", + "length": "50.000", + "name": "tpx_tpx21470405a0", + "phases": "AS", + "to": "sx2897801a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2936279c", + "length": "50.000", + "name": "tpx_tpx247184c0", + "phases": "CS", + "to": "sx2936279c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2710532c", + "length": "50.000", + "name": "tpx_tpx293666c0", + "phases": "CS", + "to": "sx2710532c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3011229a", + "length": "50.000", + "name": "tpx_tpx356801a0", + "phases": "AS", + "to": "sx3011229a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649300a", + "length": "50.000", + "name": "tpx_tpx2224237546a0", + "phases": "AS", + "to": "sx3649300a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254213b", + "length": "50.000", + "name": "tpx_tpx321859b0", + "phases": "BS", + "to": "sx3254213b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860488b", + "length": "50.000", + "name": "tpx_tpx391751b0", + "phases": "BS", + "to": "sx2860488b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2933120c", + "length": "50.000", + "name": "tpx_tpx226192890c0", + "phases": "CS", + "to": "sx2933120c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048207b", + "length": "50.000", + "name": "tpx_tpx323248b0", + "phases": "BS", + "to": "sx3048207b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729430b", + "length": "50.000", + "name": "tpx_tpx21248901b0", + "phases": "BS", + "to": "sx2729430b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2685805a", + "length": "50.000", + "name": "tpx_tpx225533531a0", + "phases": "AS", + "to": "sx2685805a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254211b", + "length": "50.000", + "name": "tpx_tpx247084b0", + "phases": "BS", + "to": "sx3254211b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710511a", + "length": "50.000", + "name": "tpx_tpx21357515a0", + "phases": "AS", + "to": "sx2710511a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2954348a", + "length": "50.000", + "name": "tpx_tpx356013a0", + "phases": "AS", + "to": "sx2954348a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104135a", + "length": "50.000", + "name": "tpx_tpx21399508a0", + "phases": "AS", + "to": "sx3104135a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973153a", + "length": "50.000", + "name": "tpx_tpx338925a0", + "phases": "AS", + "to": "sx2973153a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001213c", + "length": "50.000", + "name": "tpx_tpx2001213c0", + "phases": "CS", + "to": "sx2001213c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748139b", + "length": "50.000", + "name": "tpx_tpx21400108b0", + "phases": "BS", + "to": "sx2748139b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048962a", + "length": "50.000", + "name": "tpx_tpx260555a0", + "phases": "AS", + "to": "sx3048962a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3207907b", + "length": "50.000", + "name": "tpx_tpx293664b0", + "phases": "BS", + "to": "sx3207907b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048200b", + "length": "50.000", + "name": "tpx_tpx391740b0", + "phases": "BS", + "to": "sx3048200b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085390b", + "length": "50.000", + "name": "tpx_tpx321848b0", + "phases": "BS", + "to": "sx3085390b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2691952a", + "length": "50.000", + "name": "tpx_tpx391980a0", + "phases": "AS", + "to": "sx2691952a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3010585a", + "length": "50.000", + "name": "tpx_tpx294810a0", + "phases": "CS", + "to": "sx3010585a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649302a", + "length": "50.000", + "name": "tpx_tpx2224237653a0", + "phases": "AS", + "to": "sx3649302a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3029499a", + "length": "50.000", + "name": "tpx_tpx302678a0", + "phases": "AS", + "to": "sx3029499a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104118c", + "length": "50.000", + "name": "tpx_tpx321890c0", + "phases": "CS", + "to": "sx3104118c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2820528c", + "length": "50.000", + "name": "tpx_tpx226191778c0", + "phases": "CS", + "to": "sx2820528c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2729406c", + "length": "50.000", + "name": "tpx_tpx337633c0", + "phases": "CS", + "to": "sx2729406c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3086079b", + "length": "50.000", + "name": "tpx_tpx260457b0", + "phases": "BS", + "to": "sx3086079b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2763811c", + "length": "50.000", + "name": "tpx_tpx21459629c0", + "phases": "AS", + "to": "sx2763811c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2935568b", + "length": "50.000", + "name": "tpx_tpx28119958b0", + "phases": "BS", + "to": "sx2935568b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001202c", + "length": "50.000", + "name": "tpx_tpx2001202c0", + "phases": "CS", + "to": "sx2001202c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000404a", + "length": "50.000", + "name": "tpx_tpx2000404a0", + "phases": "AS", + "to": "sx2000404a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2990098a", + "length": "50.000", + "name": "tpx_tpx226308721a0", + "phases": "AS", + "to": "sx2990098a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2915534a", + "length": "50.000", + "name": "tpx_tpx227917122a0", + "phases": "AS", + "to": "sx2915534a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2991943c", + "length": "50.000", + "name": "tpx_tpx21399619c0", + "phases": "CS", + "to": "sx2991943c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x0247171b", + "length": "50.000", + "name": "tpx_tpx247171b0", + "phases": "BS", + "to": "sx0247171b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3225319b", + "length": "50.000", + "name": "tpx_tpx225533675b0", + "phases": "BS", + "to": "sx3225319b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2708744b", + "length": "50.000", + "name": "tpx_tpx226308710b0", + "phases": "BS", + "to": "sx2708744b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3207907a", + "length": "50.000", + "name": "tpx_tpx293664a0", + "phases": "AS", + "to": "sx3207907a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3179608c", + "length": "50.000", + "name": "tpx_tpx356793c0", + "phases": "CS", + "to": "sx3179608c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3156034a", + "length": "50.000", + "name": "tpx_tpx391993a0", + "phases": "AS", + "to": "sx3156034a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649306a", + "length": "50.000", + "name": "tpx_tpx2224238167a0", + "phases": "AS", + "to": "sx3649306a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2786266a", + "length": "50.000", + "name": "tpx_tpx260631a0", + "phases": "AS", + "to": "sx2786266a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2798067b", + "length": "50.000", + "name": "tpx_tpx225533237b0", + "phases": "BS", + "to": "sx2798067b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010563a", + "length": "50.000", + "name": "tpx_tpx294845a0", + "phases": "AS", + "to": "sx3010563a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2710525c", + "length": "50.000", + "name": "tpx_tpx355437c0", + "phases": "CS", + "to": "sx2710525c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2804277c", + "length": "50.000", + "name": "tpx_tpx339043c0", + "phases": "CS", + "to": "sx2804277c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066816a", + "length": "50.000", + "name": "tpx_tpx21398676a0", + "phases": "AS", + "to": "sx3066816a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048211a", + "length": "50.000", + "name": "tpx_tpx21396015a0", + "phases": "AS", + "to": "sx3048211a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2914324a", + "length": "50.000", + "name": "tpx_tpx226196642a0", + "phases": "CS", + "to": "sx2914324a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691942b", + "length": "50.000", + "name": "tpx_tpx247105b0", + "phases": "BS", + "to": "sx2691942b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710544a", + "length": "50.000", + "name": "tpx_tpx21482279a0", + "phases": "AS", + "to": "sx2710544a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785522b", + "length": "50.000", + "name": "tpx_tpx28127681b0", + "phases": "BS", + "to": "sx2785522b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2876814a", + "length": "50.000", + "name": "tpx_tpx225806974a0", + "phases": "AS", + "to": "sx2876814a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3214069c", + "length": "50.000", + "name": "tpx_tpx226194421c0", + "phases": "CS", + "to": "sx3214069c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000415a", + "length": "50.000", + "name": "tpx_tpx2000415a0", + "phases": "AS", + "to": "sx2000415a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3047073c", + "length": "50.000", + "name": "tpx_tpx227917133c0", + "phases": "CS", + "to": "sx3047073c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160878c", + "length": "50.000", + "name": "tpx_tpx260511c0", + "phases": "CS", + "to": "sx3160878c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3178997c", + "length": "50.000", + "name": "tpx_tpx293422c0", + "phases": "CS", + "to": "sx3178997c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841648a", + "length": "50.000", + "name": "tpx_tpx337720a0", + "phases": "AS", + "to": "sx2841648a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2673312a", + "length": "50.000", + "name": "tpx_tpx321837a0", + "phases": "AS", + "to": "sx2673312a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197624b", + "length": "50.000", + "name": "tpx_tpx323235b0", + "phases": "BS", + "to": "sx3197624b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104830c", + "length": "50.000", + "name": "tpx_tpx328367c0", + "phases": "CS", + "to": "sx3104830c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3029503c", + "length": "50.000", + "name": "tpx_tpx138373c0", + "phases": "CS", + "to": "sx3029503c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3097861c", + "length": "50.000", + "name": "tpx_tpx225533215c0", + "phases": "CS", + "to": "sx3097861c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3251854a", + "length": "50.000", + "name": "tpx_tpx226881700a0", + "phases": "AS", + "to": "sx3251854a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3067506c", + "length": "50.000", + "name": "tpx_tpx260620c0", + "phases": "CS", + "to": "sx3067506c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104136b", + "length": "50.000", + "name": "tpx_tpx338949b0", + "phases": "BS", + "to": "sx3104136b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991906a", + "length": "50.000", + "name": "tpx_tpx247060a0", + "phases": "AS", + "to": "sx2991906a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3141397b", + "length": "50.000", + "name": "tpx_tpx21396796b0", + "phases": "BS", + "to": "sx3141397b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822871b", + "length": "50.000", + "name": "tpx_tpx355840b0", + "phases": "BS", + "to": "sx2822871b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010559a", + "length": "50.000", + "name": "tpx_tpx337679a0", + "phases": "AS", + "to": "sx3010559a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729411a", + "length": "50.000", + "name": "tpx_tpx138769a0", + "phases": "AS", + "to": "sx2729411a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3029502a", + "length": "50.000", + "name": "tpx_tpx138262a0", + "phases": "AS", + "to": "sx3029502a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001004b", + "length": "50.000", + "name": "tpx_tpx2001004b0", + "phases": "BS", + "to": "sx2001004b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2935549b", + "length": "50.000", + "name": "tpx_tpx337668b0", + "phases": "BS", + "to": "sx2935549b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3101194c", + "length": "50.000", + "name": "tpx_tpx21459660c0", + "phases": "AS", + "to": "sx3101194c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2842329c", + "length": "50.000", + "name": "tpx_tpx260568c0", + "phases": "CS", + "to": "sx2842329c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3067448c", + "length": "50.000", + "name": "tpx_tpx262075c0", + "phases": "CS", + "to": "sx3067448c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3207907c", + "length": "50.000", + "name": "tpx_tpx293664c0", + "phases": "CS", + "to": "sx3207907c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748780a", + "length": "50.000", + "name": "tpx_tpx356803a0", + "phases": "AS", + "to": "sx2748780a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3645810c", + "length": "50.000", + "name": "tpx_tpx2224230651c0", + "phases": "CS", + "to": "sx3645810c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3142049c", + "length": "50.000", + "name": "tpx_tpx356810c0", + "phases": "CS", + "to": "sx3142049c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_750_triplex_12", + "continuous_rating_B": "580.00", + "emergency_rating_B": "725.00", + "from": "x2691959b", + "length": "50.000", + "name": "tpx_tpx21400253b0", + "phases": "BS", + "to": "sx2691959b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729412a", + "length": "50.000", + "name": "tpx_tpx28150189a0", + "phases": "AS", + "to": "sx2729412a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973163b", + "length": "50.000", + "name": "tpx_tpx391753b0", + "phases": "BS", + "to": "sx2973163b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3626914c", + "length": "50.000", + "name": "tpx_tpx2224179616c0", + "phases": "CS", + "to": "sx3626914c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2842384c", + "length": "50.000", + "name": "tpx_tpx260637c0", + "phases": "CS", + "to": "sx2842384c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122810b", + "length": "50.000", + "name": "tpx_tpx323242b0", + "phases": "BS", + "to": "sx3122810b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2911069b", + "length": "50.000", + "name": "tpx_tpx225571871b0", + "phases": "BS", + "to": "sx2911069b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2989566b", + "length": "50.000", + "name": "tpx_tpx260602b0", + "phases": "BS", + "to": "sx2989566b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3632979a", + "length": "50.000", + "name": "tpx_tpx2224192013a0", + "phases": "AS", + "to": "sx3632979a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2726983a", + "length": "50.000", + "name": "tpx_tpx226109079a0", + "phases": "AS", + "to": "sx2726983a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000708b", + "length": "50.000", + "name": "tpx_tpx2000708b0", + "phases": "BS", + "to": "sx2000708b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001015b", + "length": "50.000", + "name": "tpx_tpx2001015b0", + "phases": "BS", + "to": "sx2001015b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001211c", + "length": "50.000", + "name": "tpx_tpx2001211c0", + "phases": "CS", + "to": "sx2001211c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160865a", + "length": "50.000", + "name": "tpx_tpx260515a0", + "phases": "AS", + "to": "sx3160865a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991908a", + "length": "50.000", + "name": "tpx_tpx338900a0", + "phases": "AS", + "to": "sx2991908a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104123c", + "length": "50.000", + "name": "tpx_tpx338924c0", + "phases": "CS", + "to": "sx3104123c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879753b", + "length": "50.000", + "name": "tpx_tpx21249674b0", + "phases": "BS", + "to": "sx2879753b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_750_triplex_12", + "continuous_rating_A": "580.00", + "emergency_rating_A": "725.00", + "from": "x3234149a", + "length": "50.000", + "name": "tpx_tpx227944551a0", + "phases": "AS", + "to": "sx3234149a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2954349b", + "length": "50.000", + "name": "tpx_tpx337699b0", + "phases": "BS", + "to": "sx2954349b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973160b", + "length": "50.000", + "name": "tpx_tpx338935b0", + "phases": "BS", + "to": "sx2973160b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3150961c", + "length": "50.000", + "name": "tpx_tpx223400157c0", + "phases": "CS", + "to": "sx3150961c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2935560c", + "length": "50.000", + "name": "tpx_tpx293659c0", + "phases": "CS", + "to": "sx2935560c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104154c", + "length": "50.000", + "name": "tpx_tpx337642c0", + "phases": "CS", + "to": "sx3104154c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216337a", + "length": "50.000", + "name": "tpx_tpx356011a0", + "phases": "AS", + "to": "sx3216337a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841630c", + "length": "50.000", + "name": "tpx_tpx138404c0", + "phases": "CS", + "to": "sx2841630c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673308b", + "length": "50.000", + "name": "tpx_tpx337653b0", + "phases": "BS", + "to": "sx2673308b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879077b", + "length": "50.000", + "name": "tpx_tpx337709b0", + "phases": "BS", + "to": "sx2879077b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766742b", + "length": "50.000", + "name": "tpx_tpx355585b0", + "phases": "BS", + "to": "sx2766742b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710518a", + "length": "50.000", + "name": "tpx_tpx21209868a0", + "phases": "AS", + "to": "sx2710518a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710520a", + "length": "50.000", + "name": "tpx_tpx138679a0", + "phases": "AS", + "to": "sx2710520a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2710515c", + "length": "50.000", + "name": "tpx_tpx321884c0", + "phases": "CS", + "to": "sx2710515c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3139086b", + "length": "50.000", + "name": "tpx_tpx226192846b0", + "phases": "BS", + "to": "sx3139086b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000410a", + "length": "50.000", + "name": "tpx_tpx2000410a0", + "phases": "AS", + "to": "sx2000410a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3177881c", + "length": "50.000", + "name": "tpx_tpx227896008c0", + "phases": "CS", + "to": "sx3177881c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897779c", + "length": "50.000", + "name": "tpx_tpx302508c0", + "phases": "CS", + "to": "sx2897779c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2764403a", + "length": "50.000", + "name": "tpx_tpx226193078a0", + "phases": "AS", + "to": "sx2764403a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2731712b", + "length": "50.000", + "name": "tpx_tpx21426205b0", + "phases": "BS", + "to": "sx2731712b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048201b", + "length": "50.000", + "name": "tpx_tpx391742b0", + "phases": "BS", + "to": "sx3048201b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3179682c", + "length": "50.000", + "name": "tpx_tpx207292c0", + "phases": "CS", + "to": "sx3179682c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2879092c", + "length": "50.000", + "name": "tpx_tpx21399326c0", + "phases": "CS", + "to": "sx2879092c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2879087a", + "length": "50.000", + "name": "tpx_tpx21399762a0", + "phases": "CS", + "to": "sx2879087a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973152b", + "length": "50.000", + "name": "tpx_tpx323253b0", + "phases": "BS", + "to": "sx2973152b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000904c", + "length": "50.000", + "name": "tpx_tpx2000904c0", + "phases": "CS", + "to": "sx2000904c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3198356c", + "length": "50.000", + "name": "tpx_tpx350993c0", + "phases": "CS", + "to": "sx3198356c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254218a", + "length": "50.000", + "name": "tpx_tpx138720a0", + "phases": "AS", + "to": "sx3254218a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785520b", + "length": "50.000", + "name": "tpx_tpx138755b0", + "phases": "BS", + "to": "sx2785520b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029501b", + "length": "50.000", + "name": "tpx_tpx337688b0", + "phases": "BS", + "to": "sx3029501b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3178969b", + "length": "50.000", + "name": "tpx_tpx355596b0", + "phases": "BS", + "to": "sx3178969b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2954346b", + "length": "50.000", + "name": "tpx_tpx323397b0", + "phases": "BS", + "to": "sx2954346b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3029497c", + "length": "50.000", + "name": "tpx_tpx337631c0", + "phases": "CS", + "to": "sx3029497c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728039a", + "length": "50.000", + "name": "tpx_tpx2224387053a0", + "phases": "AS", + "to": "sx3728039a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3120503a", + "length": "50.000", + "name": "tpx_tpx225869139a0", + "phases": "AS", + "to": "sx3120503a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673319c", + "length": "50.000", + "name": "tpx_tpx391973c0", + "phases": "CS", + "to": "sx2673319c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2860492c", + "length": "50.000", + "name": "tpx_tpx21395720c0", + "phases": "CS", + "to": "sx2860492c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748140a", + "length": "50.000", + "name": "tpx_tpx391995a0", + "phases": "AS", + "to": "sx2748140a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197647a", + "length": "50.000", + "name": "tpx_tpx294787a0", + "phases": "AS", + "to": "sx3197647a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197638a", + "length": "50.000", + "name": "tpx_tpx21396959a0", + "phases": "AS", + "to": "sx3197638a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2814529c", + "length": "50.000", + "name": "tpx_tpx28120126c0", + "phases": "CS", + "to": "sx2814529c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2820556a", + "length": "50.000", + "name": "tpx_tpx226196648a0", + "phases": "AS", + "to": "sx2820556a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2804250c", + "length": "50.000", + "name": "tpx_tpx274992c0", + "phases": "CS", + "to": "sx2804250c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048890c", + "length": "50.000", + "name": "tpx_tpx28128517c0", + "phases": "CS", + "to": "sx3048890c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216344b", + "length": "50.000", + "name": "tpx_tpx323264b0", + "phases": "BS", + "to": "sx3216344b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2767408c", + "length": "50.000", + "name": "tpx_tpx260517c0", + "phases": "CS", + "to": "sx2767408c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804255b", + "length": "50.000", + "name": "tpx_tpx338913b0", + "phases": "BS", + "to": "sx2804255b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3727709a", + "length": "50.000", + "name": "tpx_tpx2224386842a0", + "phases": "AS", + "to": "sx3727709a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2916598a", + "length": "50.000", + "name": "tpx_tpx355933a0", + "phases": "AS", + "to": "sx2916598a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3157710b", + "length": "50.000", + "name": "tpx_tpx226193361b0", + "phases": "BS", + "to": "sx3157710b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160862c", + "length": "50.000", + "name": "tpx_tpx21386143c0", + "phases": "CS", + "to": "sx3160862c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2898522a", + "length": "50.000", + "name": "tpx_tpx260648a0", + "phases": "AS", + "to": "sx2898522a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804251a", + "length": "50.000", + "name": "tpx_tpx138646a0", + "phases": "AS", + "to": "sx2804251a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254870c", + "length": "50.000", + "name": "tpx_tpx260581c0", + "phases": "CS", + "to": "sx3254870c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2929261a", + "length": "50.000", + "name": "tpx_tpx225533337a0", + "phases": "AS", + "to": "sx2929261a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879773a", + "length": "50.000", + "name": "tpx_tpx207290a0", + "phases": "AS", + "to": "sx2879773a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3068944b", + "length": "50.000", + "name": "tpx_tpx260494b0", + "phases": "BS", + "to": "sx3068944b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254215c", + "length": "50.000", + "name": "tpx_tpx302859c0", + "phases": "CS", + "to": "sx3254215c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197660b", + "length": "50.000", + "name": "tpx_tpx323275b0", + "phases": "BS", + "to": "sx3197660b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673343b", + "length": "50.000", + "name": "tpx_tpx21470122b0", + "phases": "BS", + "to": "sx2673343b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691966b", + "length": "50.000", + "name": "tpx_tpx339010b0", + "phases": "BS", + "to": "sx2691966b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3010580b", + "length": "50.000", + "name": "tpx_tpx21451973b0", + "phases": "BS", + "to": "sx3010580b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2861158c", + "length": "50.000", + "name": "tpx_tpx251858c0", + "phases": "CS", + "to": "sx2861158c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197652a", + "length": "50.000", + "name": "tpx_tpx339021a0", + "phases": "AS", + "to": "sx3197652a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3010567c", + "length": "50.000", + "name": "tpx_tpx302813c0", + "phases": "CS", + "to": "sx3010567c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2801909c", + "length": "50.000", + "name": "tpx_tpx226195333c0", + "phases": "CS", + "to": "sx2801909c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3217052c", + "length": "50.000", + "name": "tpx_tpx260528c0", + "phases": "CS", + "to": "sx3217052c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141396c", + "length": "50.000", + "name": "tpx_tpx337655c0", + "phases": "CS", + "to": "sx3141396c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029518b", + "length": "50.000", + "name": "tpx_tpx337666b0", + "phases": "BS", + "to": "sx3029518b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3729297a", + "length": "50.000", + "name": "tpx_tpx2224386592a0", + "phases": "AS", + "to": "sx3729297a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2954344c", + "length": "50.000", + "name": "tpx_tpx338959c0", + "phases": "CS", + "to": "sx2954344c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001002b", + "length": "50.000", + "name": "tpx_tpx2001002b0", + "phases": "BS", + "to": "sx2001002b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804254a", + "length": "50.000", + "name": "tpx_tpx323418a0", + "phases": "AS", + "to": "sx2804254a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785513a", + "length": "50.000", + "name": "tpx_tpx337677a0", + "phases": "AS", + "to": "sx2785513a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841637c", + "length": "50.000", + "name": "tpx_tpx293492c0", + "phases": "CS", + "to": "sx2841637c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3251807a", + "length": "50.000", + "name": "tpx_tpx225673440a0", + "phases": "AS", + "to": "sx3251807a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804248b", + "length": "50.000", + "name": "tpx_tpx323244b0", + "phases": "BS", + "to": "sx2804248b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104130b", + "length": "50.000", + "name": "tpx_tpx391755b0", + "phases": "BS", + "to": "sx3104130b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2820533a", + "length": "50.000", + "name": "tpx_tpx226193298a0", + "phases": "AS", + "to": "sx2820533a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122837c", + "length": "50.000", + "name": "tpx_tpx355432c0", + "phases": "CS", + "to": "sx3122837c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2935566c", + "length": "50.000", + "name": "tpx_tpx441854c0", + "phases": "CS", + "to": "sx2935566c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3178979c", + "length": "50.000", + "name": "tpx_tpx338968c0", + "phases": "CS", + "to": "sx3178979c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001013b", + "length": "50.000", + "name": "tpx_tpx2001013b0", + "phases": "BS", + "to": "sx2001013b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2915542a", + "length": "50.000", + "name": "tpx_tpx227921427a0", + "phases": "AS", + "to": "sx2915542a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216345b", + "length": "50.000", + "name": "tpx_tpx338933b0", + "phases": "BS", + "to": "sx3216345b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3066814b", + "length": "50.000", + "name": "tpx_tpx338979b0", + "phases": "BS", + "to": "sx3066814b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2861157c", + "length": "50.000", + "name": "tpx_tpx251867c0", + "phases": "CS", + "to": "sx2861157c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3234185b", + "length": "50.000", + "name": "tpx_tpx323388b0", + "phases": "BS", + "to": "sx3234185b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3253995c", + "length": "50.000", + "name": "tpx_tpx21396815c0", + "phases": "CS", + "to": "sx3253995c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804258b", + "length": "50.000", + "name": "tpx_tpx337697b0", + "phases": "BS", + "to": "sx2804258b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104114b", + "length": "50.000", + "name": "tpx_tpx355587b0", + "phases": "BS", + "to": "sx3104114b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197646b", + "length": "50.000", + "name": "tpx_tpx355944b0", + "phases": "BS", + "to": "sx3197646b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000412a", + "length": "50.000", + "name": "tpx_tpx2000412a0", + "phases": "AS", + "to": "sx2000412a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785526b", + "length": "50.000", + "name": "tpx_tpx302374b0", + "phases": "BS", + "to": "sx2785526b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748839b", + "length": "50.000", + "name": "tpx_tpx260502b0", + "phases": "BS", + "to": "sx2748839b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2916607c", + "length": "50.000", + "name": "tpx_tpx321882c0", + "phases": "CS", + "to": "sx2916607c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860484b", + "length": "50.000", + "name": "tpx_tpx323255b0", + "phases": "BS", + "to": "sx2860484b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710537b", + "length": "50.000", + "name": "tpx_tpx391744b0", + "phases": "BS", + "to": "sx2710537b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2674051a", + "length": "50.000", + "name": "tpx_tpx21389831a0", + "phases": "AS", + "to": "sx2674051a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000906c", + "length": "50.000", + "name": "tpx_tpx2000906c0", + "phases": "CS", + "to": "sx2000906c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2674027b", + "length": "50.000", + "name": "tpx_tpx21380325b0", + "phases": "BS", + "to": "sx2674027b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3065696a", + "length": "50.000", + "name": "tpx_tpx227921416a0", + "phases": "AS", + "to": "sx3065696a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2859403a", + "length": "50.000", + "name": "tpx_tpx228001810a0", + "phases": "AS", + "to": "sx2859403a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3178974b", + "length": "50.000", + "name": "tpx_tpx323399b0", + "phases": "BS", + "to": "sx3178974b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748130b", + "length": "50.000", + "name": "tpx_tpx138753b0", + "phases": "BS", + "to": "sx2748130b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973148a", + "length": "50.000", + "name": "tpx_tpx339047a0", + "phases": "AS", + "to": "sx2973148a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3179699b", + "length": "50.000", + "name": "tpx_tpx21393454b0", + "phases": "BS", + "to": "sx3179699b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3216347c", + "length": "50.000", + "name": "tpx_tpx138413c0", + "phases": "CS", + "to": "sx3216347c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066806c", + "length": "50.000", + "name": "tpx_tpx275002c0", + "phases": "CS", + "to": "sx3066806c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804245b", + "length": "50.000", + "name": "tpx_tpx355598b0", + "phases": "BS", + "to": "sx2804245b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785516b", + "length": "50.000", + "name": "tpx_tpx138294b0", + "phases": "BS", + "to": "sx2785516b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3085403a", + "length": "50.000", + "name": "tpx_tpx293668a0", + "phases": "AS", + "to": "sx3085403a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3189189b", + "length": "50.000", + "name": "tpx_tpx293657b0", + "phases": "BS", + "to": "sx3189189b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2991940c", + "length": "50.000", + "name": "tpx_tpx28148060c0", + "phases": "CS", + "to": "sx2991940c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2992657a", + "length": "50.000", + "name": "tpx_tpx21475841a0", + "phases": "AS", + "to": "sx2992657a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197632b", + "length": "50.000", + "name": "tpx_tpx323266b0", + "phases": "BS", + "to": "sx3197632b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010556a", + "length": "50.000", + "name": "tpx_tpx138655a0", + "phases": "AS", + "to": "sx3010556a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2857591a", + "length": "50.000", + "name": "tpx_tpx226101460a0", + "phases": "CS", + "to": "sx2857591a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2895461a", + "length": "50.000", + "name": "tpx_tpx294789a0", + "phases": "CS", + "to": "sx2895461a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141403a", + "length": "50.000", + "name": "tpx_tpx21399707a0", + "phases": "CS", + "to": "sx3141403a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3178988b", + "length": "50.000", + "name": "tpx_tpx339001b0", + "phases": "BS", + "to": "sx3178988b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_750_triplex_12", + "continuous_rating_C": "580.00", + "emergency_rating_C": "725.00", + "from": "x3234149c", + "length": "50.000", + "name": "tpx_tpx227944551c0", + "phases": "CS", + "to": "sx3234149c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2841634b", + "length": "50.000", + "name": "tpx_tpx392038b0", + "phases": "BS", + "to": "sx2841634b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729414a", + "length": "50.000", + "name": "tpx_tpx293655a0", + "phases": "AS", + "to": "sx2729414a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3195318b", + "length": "50.000", + "name": "tpx_tpx226194280b0", + "phases": "BS", + "to": "sx3195318b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973159a", + "length": "50.000", + "name": "tpx_tpx21398536a0", + "phases": "AS", + "to": "sx2973159a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3179678b", + "length": "50.000", + "name": "tpx_tpx247185b0", + "phases": "BS", + "to": "sx3179678b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3179674b", + "length": "50.000", + "name": "tpx_tpx157716b0", + "phases": "BS", + "to": "sx3179674b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991923a", + "length": "50.000", + "name": "tpx_tpx302735a0", + "phases": "AS", + "to": "sx2991923a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3315860b", + "length": "50.000", + "name": "tpx_tpx2223664050b0", + "phases": "BS", + "to": "sx3315860b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897800b", + "length": "50.000", + "name": "tpx_tpx323277b0", + "phases": "BS", + "to": "sx2897800b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197630a", + "length": "50.000", + "name": "tpx_tpx138644a0", + "phases": "AS", + "to": "sx3197630a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216988b", + "length": "50.000", + "name": "tpx_tpx260590b0", + "phases": "BS", + "to": "sx3216988b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973165a", + "length": "50.000", + "name": "tpx_tpx355942a0", + "phases": "AS", + "to": "sx2973165a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2767414c", + "length": "50.000", + "name": "tpx_tpx351019c0", + "phases": "CS", + "to": "sx2767414c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728040a", + "length": "50.000", + "name": "tpx_tpx2224387062a0", + "phases": "AS", + "to": "sx3728040a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2730163c", + "length": "50.000", + "name": "tpx_tpx260481c0", + "phases": "CS", + "to": "sx2730163c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973171b", + "length": "50.000", + "name": "tpx_tpx339012b0", + "phases": "BS", + "to": "sx2973171b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048946c", + "length": "50.000", + "name": "tpx_tpx260624c0", + "phases": "CS", + "to": "sx3048946c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748132a", + "length": "50.000", + "name": "tpx_tpx302637a0", + "phases": "AS", + "to": "sx2748132a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160105c", + "length": "50.000", + "name": "tpx_tpx302811c0", + "phases": "AS", + "to": "sx3160105c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822866b", + "length": "50.000", + "name": "tpx_tpx338922b0", + "phases": "BS", + "to": "sx2822866b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235254c", + "length": "50.000", + "name": "tpx_tpx441331c0", + "phases": "CS", + "to": "sx3235254c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048888c", + "length": "50.000", + "name": "tpx_tpx251856c0", + "phases": "CS", + "to": "sx3048888c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_750_triplex_12", + "continuous_rating_B": "580.00", + "emergency_rating_B": "725.00", + "from": "x3234149b", + "length": "50.000", + "name": "tpx_tpx227944551b0", + "phases": "BS", + "to": "sx3234149b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785514a", + "length": "50.000", + "name": "tpx_tpx337675a0", + "phases": "AS", + "to": "sx2785514a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785517c", + "length": "50.000", + "name": "tpx_tpx338957c0", + "phases": "CS", + "to": "sx2785517c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729429a", + "length": "50.000", + "name": "tpx_tpx293644a0", + "phases": "AS", + "to": "sx2729429a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649305a", + "length": "50.000", + "name": "tpx_tpx2224237718a0", + "phases": "AS", + "to": "sx3649305a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048230c", + "length": "50.000", + "name": "tpx_tpx293490c0", + "phases": "CS", + "to": "sx3048230c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2913406b", + "length": "50.000", + "name": "tpx_tpx225940756b0", + "phases": "BS", + "to": "sx2913406b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785543b", + "length": "50.000", + "name": "tpx_tpx321860b0", + "phases": "BS", + "to": "sx2785543b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2673311a", + "length": "50.000", + "name": "tpx_tpx21397029a0", + "phases": "AS", + "to": "sx2673311a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785525c", + "length": "50.000", + "name": "tpx_tpx21396606c0", + "phases": "CS", + "to": "sx2785525c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3235255b", + "length": "50.000", + "name": "tpx_tpx293519b0", + "phases": "BS", + "to": "sx3235255b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785547b", + "length": "50.000", + "name": "tpx_tpx337705b0", + "phases": "BS", + "to": "sx2785547b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160113b", + "length": "50.000", + "name": "tpx_tpx323284b0", + "phases": "BS", + "to": "sx3160113b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991917b", + "length": "50.000", + "name": "tpx_tpx391757b0", + "phases": "BS", + "to": "sx2991917b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000704b", + "length": "50.000", + "name": "tpx_tpx2000704b0", + "phases": "BS", + "to": "sx2000704b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3086075b", + "length": "50.000", + "name": "tpx_tpx260463b0", + "phases": "BS", + "to": "sx3086075b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2917330a", + "length": "50.000", + "name": "tpx_tpx260474a0", + "phases": "AS", + "to": "sx2917330a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2822869a", + "length": "50.000", + "name": "tpx_tpx338942a0", + "phases": "AS", + "to": "sx2822869a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254231a", + "length": "50.000", + "name": "tpx_tpx338988a0", + "phases": "AS", + "to": "sx3254231a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3142050c", + "length": "50.000", + "name": "tpx_tpx251865c0", + "phases": "CS", + "to": "sx3142050c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3029505c", + "length": "50.000", + "name": "tpx_tpx338966c0", + "phases": "CS", + "to": "sx3029505c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001011b", + "length": "50.000", + "name": "tpx_tpx2001011b0", + "phases": "BS", + "to": "sx2001011b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916620b", + "length": "50.000", + "name": "tpx_tpx338977b0", + "phases": "BS", + "to": "sx2916620b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841627a", + "length": "50.000", + "name": "tpx_tpx337716a0", + "phases": "AS", + "to": "sx2841627a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235241c", + "length": "50.000", + "name": "tpx_tpx321888c0", + "phases": "CS", + "to": "sx3235241c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673313b", + "length": "50.000", + "name": "tpx_tpx321853b0", + "phases": "BS", + "to": "sx2673313b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879072b", + "length": "50.000", + "name": "tpx_tpx337695b0", + "phases": "BS", + "to": "sx2879072b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2767409b", + "length": "50.000", + "name": "tpx_tpx21391242b0", + "phases": "BS", + "to": "sx2767409b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2804249c", + "length": "50.000", + "name": "tpx_tpx21389962c0", + "phases": "CS", + "to": "sx2804249c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x1108406b", + "length": "50.000", + "name": "tpx_tpx2221108406b0", + "phases": "BS", + "to": "sx1108406b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3195751a", + "length": "50.000", + "name": "tpx_tpx293681a0", + "phases": "CS", + "to": "sx3195751a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3778577c", + "length": "50.000", + "name": "tpx_tpx2224490448c0", + "phases": "CS", + "to": "sx3778577c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104850c", + "length": "50.000", + "name": "tpx_tpx260561c0", + "phases": "CS", + "to": "sx3104850c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2935556b", + "length": "50.000", + "name": "tpx_tpx356064b0", + "phases": "BS", + "to": "sx2935556b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2917328b", + "length": "50.000", + "name": "tpx_tpx21389092b0", + "phases": "BS", + "to": "sx2917328b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766723a", + "length": "50.000", + "name": "tpx_tpx391986a0", + "phases": "AS", + "to": "sx2766723a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085388b", + "length": "50.000", + "name": "tpx_tpx391746b0", + "phases": "BS", + "to": "sx3085388b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785519a", + "length": "50.000", + "name": "tpx_tpx138566a0", + "phases": "AS", + "to": "sx2785519a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3065665a", + "length": "50.000", + "name": "tpx_tpx227895952a0", + "phases": "AS", + "to": "sx3065665a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000715b", + "length": "50.000", + "name": "tpx_tpx2000715b0", + "phases": "BS", + "to": "sx2000715b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001309a", + "length": "50.000", + "name": "tpx_tpx2001309a0", + "phases": "AS", + "to": "sx2001309a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2674052c", + "length": "50.000", + "name": "tpx_tpx21393570c0", + "phases": "CS", + "to": "sx2674052c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048937c", + "length": "50.000", + "name": "tpx_tpx356789c0", + "phases": "CS", + "to": "sx3048937c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2879062c", + "length": "50.000", + "name": "tpx_tpx21385192c0", + "phases": "CS", + "to": "sx2879062c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3177665a", + "length": "50.000", + "name": "tpx_tpx227731863a0", + "phases": "AS", + "to": "sx3177665a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785521c", + "length": "50.000", + "name": "tpx_tpx338931c0", + "phases": "CS", + "to": "sx2785521c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3198358b", + "length": "50.000", + "name": "tpx_tpx138797b0", + "phases": "BS", + "to": "sx3198358b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2822861a", + "length": "50.000", + "name": "tpx_tpx21015829a0", + "phases": "AS", + "to": "sx2822861a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2916620c", + "length": "50.000", + "name": "tpx_tpx338977c0", + "phases": "CS", + "to": "sx2916620c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2916602a", + "length": "50.000", + "name": "tpx_tpx339049a0", + "phases": "AS", + "to": "sx2916602a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254206b", + "length": "50.000", + "name": "tpx_tpx355592b0", + "phases": "BS", + "to": "sx3254206b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3066818b", + "length": "50.000", + "name": "tpx_tpx138751b0", + "phases": "BS", + "to": "sx3066818b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2710509c", + "length": "50.000", + "name": "tpx_tpx275000c0", + "phases": "CS", + "to": "sx2710509c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x1108406a", + "length": "50.000", + "name": "tpx_tpx2221108406a0", + "phases": "AS", + "to": "sx1108406a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2729206c", + "length": "50.000", + "name": "tpx_tpx2212168866c0", + "phases": "CS", + "to": "sx2729206c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3123452c", + "length": "50.000", + "name": "tpx_tpx260574c0", + "phases": "CS", + "to": "sx3123452c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2673315a", + "length": "50.000", + "name": "tpx_tpx247058a0", + "phases": "AS", + "to": "sx2673315a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3027122a", + "length": "50.000", + "name": "tpx_tpx226194865a0", + "phases": "AS", + "to": "sx3027122a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3029498c", + "length": "50.000", + "name": "tpx_tpx247036c0", + "phases": "CS", + "to": "sx3029498c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3066826b", + "length": "50.000", + "name": "tpx_tpx339003b0", + "phases": "BS", + "to": "sx3066826b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2841624b", + "length": "50.000", + "name": "tpx_tpx355604b0", + "phases": "BS", + "to": "sx2841624b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000913c", + "length": "50.000", + "name": "tpx_tpx2000913c0", + "phases": "CS", + "to": "sx2000913c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197631a", + "length": "50.000", + "name": "tpx_tpx338920a0", + "phases": "AS", + "to": "sx3197631a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3010560b", + "length": "50.000", + "name": "tpx_tpx338955b0", + "phases": "BS", + "to": "sx3010560b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197640c", + "length": "50.000", + "name": "tpx_tpx338944c0", + "phases": "CS", + "to": "sx3197640c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3159448a", + "length": "50.000", + "name": "tpx_tpx337684a0", + "phases": "AS", + "to": "sx3159448a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2954361b", + "length": "50.000", + "name": "tpx_tpx21383494b0", + "phases": "BS", + "to": "sx2954361b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3215385c", + "length": "50.000", + "name": "tpx_tpx21384099c0", + "phases": "CS", + "to": "sx3215385c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841639a", + "length": "50.000", + "name": "tpx_tpx355937a0", + "phases": "AS", + "to": "sx2841639a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3120504a", + "length": "50.000", + "name": "tpx_tpx225897846a0", + "phases": "AS", + "to": "sx3120504a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3027124c", + "length": "50.000", + "name": "tpx_tpx226195194c0", + "phases": "CS", + "to": "sx3027124c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748135a", + "length": "50.000", + "name": "tpx_tpx28150172a0", + "phases": "AS", + "to": "sx2748135a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235256a", + "length": "50.000", + "name": "tpx_tpx138642a0", + "phases": "AS", + "to": "sx3235256a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3101787a", + "length": "50.000", + "name": "tpx_tpx321877a0", + "phases": "AS", + "to": "sx3101787a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3141400a", + "length": "50.000", + "name": "tpx_tpx138313a0", + "phases": "AS", + "to": "sx3141400a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916603b", + "length": "50.000", + "name": "tpx_tpx323403b0", + "phases": "BS", + "to": "sx2916603b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141395c", + "length": "50.000", + "name": "tpx_tpx28149184c0", + "phases": "CS", + "to": "sx3141395c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122818c", + "length": "50.000", + "name": "tpx_tpx28120183c0", + "phases": "CS", + "to": "sx3122818c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2916620a", + "length": "50.000", + "name": "tpx_tpx338977a0", + "phases": "AS", + "to": "sx2916620a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3030205c", + "length": "50.000", + "name": "tpx_tpx21390038c0", + "phases": "CS", + "to": "sx3030205c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254228b", + "length": "50.000", + "name": "tpx_tpx325474b0", + "phases": "BS", + "to": "sx3254228b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2895449c", + "length": "50.000", + "name": "tpx_tpx226193134c0", + "phases": "CS", + "to": "sx2895449c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2955081a", + "length": "50.000", + "name": "tpx_tpx260508a0", + "phases": "AS", + "to": "sx2955081a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2859391b", + "length": "50.000", + "name": "tpx_tpx227989724b0", + "phases": "BS", + "to": "sx2859391b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3215385b", + "length": "50.000", + "name": "tpx_tpx21384099b0", + "phases": "BS", + "to": "sx3215385b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3008232b", + "length": "50.000", + "name": "tpx_tpx226192492b0", + "phases": "BS", + "to": "sx3008232b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841618a", + "length": "50.000", + "name": "tpx_tpx337673a0", + "phases": "AS", + "to": "sx2841618a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766727b", + "length": "50.000", + "name": "tpx_tpx302367b0", + "phases": "BS", + "to": "sx2766727b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3030203c", + "length": "50.000", + "name": "tpx_tpx260639c0", + "phases": "CS", + "to": "sx3030203c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2861197c", + "length": "50.000", + "name": "tpx_tpx21474711c0", + "phases": "CS", + "to": "sx2861197c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2814529a", + "length": "50.000", + "name": "tpx_tpx28120126a0", + "phases": "AS", + "to": "sx2814529a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216350a", + "length": "50.000", + "name": "tpx_tpx391977a0", + "phases": "AS", + "to": "sx3216350a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197628c", + "length": "50.000", + "name": "tpx_tpx138651c0", + "phases": "CS", + "to": "sx3197628c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2989564b", + "length": "50.000", + "name": "tpx_tpx323286b0", + "phases": "BS", + "to": "sx2989564b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3195310a", + "length": "50.000", + "name": "tpx_tpx226192185a0", + "phases": "AS", + "to": "sx3195310a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2916609c", + "length": "50.000", + "name": "tpx_tpx138346c0", + "phases": "CS", + "to": "sx2916609c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973161a", + "length": "50.000", + "name": "tpx_tpx293592a0", + "phases": "AS", + "to": "sx2973161a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841616a", + "length": "50.000", + "name": "tpx_tpx21031684a0", + "phases": "AS", + "to": "sx2841616a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2936268c", + "length": "50.000", + "name": "tpx_tpx223655c0", + "phases": "CS", + "to": "sx2936268c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2861223b", + "length": "50.000", + "name": "tpx_tpx260461b0", + "phases": "BS", + "to": "sx2861223b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000706b", + "length": "50.000", + "name": "tpx_tpx2000706b0", + "phases": "BS", + "to": "sx2000706b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3125349c", + "length": "50.000", + "name": "tpx_tpx226193698c0", + "phases": "CS", + "to": "sx3125349c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2839305a", + "length": "50.000", + "name": "tpx_tpx28150292a0", + "phases": "AS", + "to": "sx2839305a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3102286b", + "length": "50.000", + "name": "tpx_tpx226308729b0", + "phases": "BS", + "to": "sx3102286b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2748128c", + "length": "50.000", + "name": "tpx_tpx337629c0", + "phases": "CS", + "to": "sx2748128c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104117c", + "length": "50.000", + "name": "tpx_tpx338964c0", + "phases": "CS", + "to": "sx3104117c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2745811c", + "length": "50.000", + "name": "tpx_tpx251863c0", + "phases": "CS", + "to": "sx2745811c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785538a", + "length": "50.000", + "name": "tpx_tpx338986a0", + "phases": "AS", + "to": "sx2785538a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197644a", + "length": "50.000", + "name": "tpx_tpx138771a0", + "phases": "AS", + "to": "sx3197644a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729434b", + "length": "50.000", + "name": "tpx_tpx321851b0", + "phases": "BS", + "to": "sx2729434b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160104b", + "length": "50.000", + "name": "tpx_tpx337707b0", + "phases": "BS", + "to": "sx3160104b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2691947a", + "length": "50.000", + "name": "tpx_tpx337718a0", + "phases": "AS", + "to": "sx2691947a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766746c", + "length": "50.000", + "name": "tpx_tpx321886c0", + "phases": "CS", + "to": "sx2766746c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104133a", + "length": "50.000", + "name": "tpx_tpx293483a0", + "phases": "AS", + "to": "sx3104133a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x1108404b", + "length": "50.000", + "name": "tpx_tpx2221108404b0", + "phases": "BS", + "to": "sx1108404b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2684420b", + "length": "50.000", + "name": "tpx_tpx225498968b0", + "phases": "BS", + "to": "sx2684420b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3066813b", + "length": "50.000", + "name": "tpx_tpx337693b0", + "phases": "BS", + "to": "sx3066813b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2917255c", + "length": "50.000", + "name": "tpx_tpx21386065c0", + "phases": "CS", + "to": "sx2917255c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2914323b", + "length": "50.000", + "name": "tpx_tpx355376b0", + "phases": "BS", + "to": "sx2914323b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3177894a", + "length": "50.000", + "name": "tpx_tpx227903012a0", + "phases": "AS", + "to": "sx3177894a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841628a", + "length": "50.000", + "name": "tpx_tpx28120786a0", + "phases": "AS", + "to": "sx2841628a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122816b", + "length": "50.000", + "name": "tpx_tpx356062b0", + "phases": "BS", + "to": "sx3122816b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991902b", + "length": "50.000", + "name": "tpx_tpx391748b0", + "phases": "BS", + "to": "sx2991902b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804283a", + "length": "50.000", + "name": "tpx_tpx138564a0", + "phases": "AS", + "to": "sx2804283a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2814529b", + "length": "50.000", + "name": "tpx_tpx28120126b0", + "phases": "BS", + "to": "sx2814529b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001307a", + "length": "50.000", + "name": "tpx_tpx2001307a0", + "phases": "AS", + "to": "sx2001307a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000902c", + "length": "50.000", + "name": "tpx_tpx2000902c0", + "phases": "CS", + "to": "sx2000902c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785531a", + "length": "50.000", + "name": "tpx_tpx21399809a0", + "phases": "CS", + "to": "sx2785531a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879074a", + "length": "50.000", + "name": "tpx_tpx310560a0", + "phases": "AS", + "to": "sx2879074a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804256b", + "length": "50.000", + "name": "tpx_tpx321840b0", + "phases": "BS", + "to": "sx2804256b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2823611a", + "length": "50.000", + "name": "tpx_tpx21386877a0", + "phases": "AS", + "to": "sx2823611a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2728247a", + "length": "50.000", + "name": "tpx_tpx337729a0", + "phases": "AS", + "to": "sx2728247a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x1108404a", + "length": "50.000", + "name": "tpx_tpx2221108404a0", + "phases": "AS", + "to": "sx1108404a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048196b", + "length": "50.000", + "name": "tpx_tpx138237b0", + "phases": "BS", + "to": "sx3048196b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2898457a", + "length": "50.000", + "name": "tpx_tpx260594a0", + "phases": "AS", + "to": "sx2898457a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048214a", + "length": "50.000", + "name": "tpx_tpx302474a0", + "phases": "AS", + "to": "sx3048214a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3236004c", + "length": "50.000", + "name": "tpx_tpx260572c0", + "phases": "CS", + "to": "sx3236004c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728043a", + "length": "50.000", + "name": "tpx_tpx2224387138a0", + "phases": "AS", + "to": "sx3728043a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785535b", + "length": "50.000", + "name": "tpx_tpx339005b0", + "phases": "BS", + "to": "sx2785535b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197642c", + "length": "50.000", + "name": "tpx_tpx391979c0", + "phases": "CS", + "to": "sx3197642c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991912a", + "length": "50.000", + "name": "tpx_tpx247056a0", + "phases": "AS", + "to": "sx2991912a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991901b", + "length": "50.000", + "name": "tpx_tpx354851b0", + "phases": "BS", + "to": "sx2991901b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3141399c", + "length": "50.000", + "name": "tpx_tpx302804c0", + "phases": "AS", + "to": "sx3141399c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000915c", + "length": "50.000", + "name": "tpx_tpx2000915c0", + "phases": "CS", + "to": "sx2000915c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029510b", + "length": "50.000", + "name": "tpx_tpx355606b0", + "phases": "BS", + "to": "sx3029510b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048205c", + "length": "50.000", + "name": "tpx_tpx274994c0", + "phases": "CS", + "to": "sx3048205c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3143999a", + "length": "50.000", + "name": "tpx_tpx226193696a0", + "phases": "AS", + "to": "sx3143999a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160793c", + "length": "50.000", + "name": "tpx_tpx28147899c0", + "phases": "CS", + "to": "sx3160793c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3027133a", + "length": "50.000", + "name": "tpx_tpx226101449a0", + "phases": "CS", + "to": "sx3027133a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122821b", + "length": "50.000", + "name": "tpx_tpx338953b0", + "phases": "BS", + "to": "sx3122821b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822873b", + "length": "50.000", + "name": "tpx_tpx338999b0", + "phases": "BS", + "to": "sx2822873b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2728247b", + "length": "50.000", + "name": "tpx_tpx337729b0", + "phases": "BS", + "to": "sx2728247b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2691973a", + "length": "50.000", + "name": "tpx_tpx355935a0", + "phases": "AS", + "to": "sx2691973a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2973158c", + "length": "50.000", + "name": "tpx_tpx138259c0", + "phases": "CS", + "to": "sx2973158c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2935557a", + "length": "50.000", + "name": "tpx_tpx21397005a0", + "phases": "AS", + "to": "sx2935557a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897769c", + "length": "50.000", + "name": "tpx_tpx337660c0", + "phases": "CS", + "to": "sx2897769c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254205c", + "length": "50.000", + "name": "tpx_tpx302672c0", + "phases": "CS", + "to": "sx3254205c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879752b", + "length": "50.000", + "name": "tpx_tpx330122b0", + "phases": "BS", + "to": "sx2879752b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2983432a", + "length": "50.000", + "name": "tpx_tpx225534325a0", + "phases": "AS", + "to": "sx2983432a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2691936a", + "length": "50.000", + "name": "tpx_tpx356009a0", + "phases": "AS", + "to": "sx2691936a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879767b", + "length": "50.000", + "name": "tpx_tpx260496b0", + "phases": "BS", + "to": "sx2879767b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048203b", + "length": "50.000", + "name": "tpx_tpx323273b0", + "phases": "BS", + "to": "sx3048203b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973149b", + "length": "50.000", + "name": "tpx_tpx325472b0", + "phases": "BS", + "to": "sx2973149b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3176660b", + "length": "50.000", + "name": "tpx_tpx226193892b0", + "phases": "BS", + "to": "sx3176660b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860486c", + "length": "50.000", + "name": "tpx_tpx28127390c0", + "phases": "AS", + "to": "sx2860486c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2745806c", + "length": "50.000", + "name": "tpx_tpx226194262c0", + "phases": "CS", + "to": "sx2745806c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785537a", + "length": "50.000", + "name": "tpx_tpx338975a0", + "phases": "AS", + "to": "sx2785537a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3235273b", + "length": "50.000", + "name": "tpx_tpx339016b0", + "phases": "BS", + "to": "sx3235273b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254207a", + "length": "50.000", + "name": "tpx_tpx337671a0", + "phases": "AS", + "to": "sx3254207a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2728247c", + "length": "50.000", + "name": "tpx_tpx337729c0", + "phases": "CS", + "to": "sx2728247c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001209c", + "length": "50.000", + "name": "tpx_tpx2001209c0", + "phases": "CS", + "to": "sx2001209c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2764411c", + "length": "50.000", + "name": "tpx_tpx226010605c0", + "phases": "CS", + "to": "sx2764411c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879071b", + "length": "50.000", + "name": "tpx_tpx337701b0", + "phases": "BS", + "to": "sx2879071b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254220c", + "length": "50.000", + "name": "tpx_tpx138717c0", + "phases": "CS", + "to": "sx3254220c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766748a", + "length": "50.000", + "name": "tpx_tpx21470326a0", + "phases": "AS", + "to": "sx2766748a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710512b", + "length": "50.000", + "name": "tpx_tpx323280b0", + "phases": "BS", + "to": "sx2710512b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673323c", + "length": "50.000", + "name": "tpx_tpx355438c0", + "phases": "CS", + "to": "sx2673323c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235945c", + "length": "50.000", + "name": "tpx_tpx356796c0", + "phases": "CS", + "to": "sx3235945c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2954350c", + "length": "50.000", + "name": "tpx_tpx302809c0", + "phases": "BS", + "to": "sx2954350c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3198355b", + "length": "50.000", + "name": "tpx_tpx207288b0", + "phases": "BS", + "to": "sx3198355b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822867b", + "length": "50.000", + "name": "tpx_tpx21386552b0", + "phases": "BS", + "to": "sx2822867b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2879055c", + "length": "50.000", + "name": "tpx_tpx138465c0", + "phases": "CS", + "to": "sx2879055c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3085399c", + "length": "50.000", + "name": "tpx_tpx302862c0", + "phases": "CS", + "to": "sx3085399c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3085393c", + "length": "50.000", + "name": "tpx_tpx337627c0", + "phases": "CS", + "to": "sx3085393c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160117b", + "length": "50.000", + "name": "tpx_tpx21357901b0", + "phases": "BS", + "to": "sx3160117b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122847a", + "length": "50.000", + "name": "tpx_tpx21483138a0", + "phases": "CS", + "to": "sx3122847a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822872b", + "length": "50.000", + "name": "tpx_tpx338950b0", + "phases": "BS", + "to": "sx2822872b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2991911c", + "length": "50.000", + "name": "tpx_tpx138258c0", + "phases": "CS", + "to": "sx2991911c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3030200c", + "length": "50.000", + "name": "tpx_tpx260554c0", + "phases": "CS", + "to": "sx3030200c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897774b", + "length": "50.000", + "name": "tpx_tpx337691b0", + "phases": "BS", + "to": "sx2897774b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2692664c", + "length": "50.000", + "name": "tpx_tpx351021c0", + "phases": "CS", + "to": "sx2692664c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673314c", + "length": "50.000", + "name": "tpx_tpx355778c0", + "phases": "CS", + "to": "sx2673314c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3178978a", + "length": "50.000", + "name": "tpx_tpx337723a0", + "phases": "AS", + "to": "sx3178978a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160863a", + "length": "50.000", + "name": "tpx_tpx223660a0", + "phases": "AS", + "to": "sx3160863a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748127a", + "length": "50.000", + "name": "tpx_tpx338919a0", + "phases": "AS", + "to": "sx2748127a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001305a", + "length": "50.000", + "name": "tpx_tpx2001305a0", + "phases": "AS", + "to": "sx2001305a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2842390c", + "length": "50.000", + "name": "tpx_tpx21325725c0", + "phases": "CS", + "to": "sx2842390c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x1108403c", + "length": "50.000", + "name": "tpx_tpx2221108403c0", + "phases": "CS", + "to": "sx1108403c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2916605c", + "length": "50.000", + "name": "tpx_tpx274987c0", + "phases": "CS", + "to": "sx2916605c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2948732b", + "length": "50.000", + "name": "tpx_tpx225571845b0", + "phases": "BS", + "to": "sx2948732b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2801895b", + "length": "50.000", + "name": "tpx_tpx226191951b0", + "phases": "BS", + "to": "sx2801895b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2879089c", + "length": "50.000", + "name": "tpx_tpx21455388c0", + "phases": "CS", + "to": "sx2879089c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860477a", + "length": "50.000", + "name": "tpx_tpx28121587a0", + "phases": "AS", + "to": "sx2860477a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216361b", + "length": "50.000", + "name": "tpx_tpx21452406b0", + "phases": "BS", + "to": "sx3216361b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3216368c", + "length": "50.000", + "name": "tpx_tpx293663c0", + "phases": "CS", + "to": "sx3216368c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3008237c", + "length": "50.000", + "name": "tpx_tpx226193838c0", + "phases": "CS", + "to": "sx3008237c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235245c", + "length": "50.000", + "name": "tpx_tpx337712c0", + "phases": "CS", + "to": "sx3235245c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991907a", + "length": "50.000", + "name": "tpx_tpx138574a0", + "phases": "AS", + "to": "sx2991907a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122815b", + "length": "50.000", + "name": "tpx_tpx321858b0", + "phases": "BS", + "to": "sx3122815b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729427b", + "length": "50.000", + "name": "tpx_tpx323249b0", + "phases": "BS", + "to": "sx2729427b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916617b", + "length": "50.000", + "name": "tpx_tpx339007b0", + "phases": "BS", + "to": "sx2916617b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804247b", + "length": "50.000", + "name": "tpx_tpx391737b0", + "phases": "BS", + "to": "sx2804247b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3214112b", + "length": "50.000", + "name": "tpx_tpx226881057b0", + "phases": "BS", + "to": "sx3214112b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048965b", + "length": "50.000", + "name": "tpx_tpx260641b0", + "phases": "BS", + "to": "sx3048965b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2710510c", + "length": "50.000", + "name": "tpx_tpx138650c0", + "phases": "CS", + "to": "sx2710510c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649298a", + "length": "50.000", + "name": "tpx_tpx2224237384a0", + "phases": "AS", + "to": "sx3649298a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x1108403b", + "length": "50.000", + "name": "tpx_tpx2221108403b0", + "phases": "BS", + "to": "sx1108403b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879065b", + "length": "50.000", + "name": "tpx_tpx247126b0", + "phases": "BS", + "to": "sx2879065b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897792a", + "length": "50.000", + "name": "tpx_tpx338985a0", + "phases": "AS", + "to": "sx2897792a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2822868a", + "length": "50.000", + "name": "tpx_tpx21397544a0", + "phases": "AS", + "to": "sx2822868a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3727707a", + "length": "50.000", + "name": "tpx_tpx2224386750a0", + "phases": "AS", + "to": "sx3727707a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066817a", + "length": "50.000", + "name": "tpx_tpx21373784a0", + "phases": "AS", + "to": "sx3066817a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729424a", + "length": "50.000", + "name": "tpx_tpx339018a0", + "phases": "AS", + "to": "sx2729424a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897781a", + "length": "50.000", + "name": "tpx_tpx138770a0", + "phases": "AS", + "to": "sx2897781a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2955005b", + "length": "50.000", + "name": "tpx_tpx260589b0", + "phases": "BS", + "to": "sx2955005b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673303c", + "length": "50.000", + "name": "tpx_tpx338963c0", + "phases": "CS", + "to": "sx2673303c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3086074c", + "length": "50.000", + "name": "tpx_tpx260532c0", + "phases": "CS", + "to": "sx3086074c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2989565a", + "length": "50.000", + "name": "tpx_tpx21389237a0", + "phases": "AS", + "to": "sx2989565a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2954355a", + "length": "50.000", + "name": "tpx_tpx293672a0", + "phases": "AS", + "to": "sx2954355a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_cap_3a_PUZ_A", + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "q16642", + "length": "0.0033", + "name": "line_cap_3a", + "phases": "A", + "to": "q16642_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197634b", + "length": "50.000", + "name": "tpx_tpx355767b0", + "phases": "BS", + "to": "sx3197634b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973155a", + "length": "50.000", + "name": "tpx_tpx338898a0", + "phases": "AS", + "to": "sx2973155a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_cap_3c_PUZ_C", + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "q16642", + "length": "0.0033", + "name": "line_cap_3c", + "phases": "C", + "to": "q16642_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2916627a", + "length": "50.000", + "name": "tpx_tpx138563a0", + "phases": "AS", + "to": "sx2916627a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2806553c", + "length": "50.000", + "name": "tpx_tpx227411655c0", + "phases": "CS", + "to": "sx2806553c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160100b", + "length": "50.000", + "name": "tpx_tpx321847b0", + "phases": "BS", + "to": "sx3160100b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_cap_3b_PUZ_B", + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "q16642", + "length": "0.0033", + "name": "line_cap_3b", + "phases": "B", + "to": "q16642_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3263051c", + "length": "50.000", + "name": "tpx_tpx2212371533c0", + "phases": "CS", + "to": "sx3263051c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991919a", + "length": "50.000", + "name": "tpx_tpx302400a0", + "phases": "AS", + "to": "sx2991919a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000712b", + "length": "50.000", + "name": "tpx_tpx2000712b0", + "phases": "BS", + "to": "sx2000712b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3215340a", + "length": "50.000", + "name": "tpx_tpx228057846a0", + "phases": "AS", + "to": "sx3215340a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066819a", + "length": "50.000", + "name": "tpx_tpx302677a0", + "phases": "AS", + "to": "sx3066819a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2745799c", + "length": "50.000", + "name": "tpx_tpx226191779c0", + "phases": "CS", + "to": "sx2745799c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2801902b", + "length": "50.000", + "name": "tpx_tpx226194002b0", + "phases": "BS", + "to": "sx2801902b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3141389a", + "length": "50.000", + "name": "tpx_tpx356007a0", + "phases": "AS", + "to": "sx3141389a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104856a", + "length": "50.000", + "name": "tpx_tpx260467a0", + "phases": "AS", + "to": "sx3104856a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3091052a", + "length": "50.000", + "name": "tpx_tpx228532641a0", + "phases": "AS", + "to": "sx3091052a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000405a", + "length": "50.000", + "name": "tpx_tpx2000405a0", + "phases": "AS", + "to": "sx2000405a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973150a", + "length": "50.000", + "name": "tpx_tpx21380528a0", + "phases": "AS", + "to": "sx2973150a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001207c", + "length": "50.000", + "name": "tpx_tpx2001207c0", + "phases": "CS", + "to": "sx2001207c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2955077c", + "length": "50.000", + "name": "tpx_tpx260543c0", + "phases": "CS", + "to": "sx2955077c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x1108403a", + "length": "50.000", + "name": "tpx_tpx2221108403a0", + "phases": "AS", + "to": "sx1108403a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3727708a", + "length": "50.000", + "name": "tpx_tpx2224386815a0", + "phases": "AS", + "to": "sx3727708a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3120376a", + "length": "50.000", + "name": "tpx_tpx226163467a0", + "phases": "AS", + "to": "sx3120376a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691948b", + "length": "50.000", + "name": "tpx_tpx337703b0", + "phases": "BS", + "to": "sx2691948b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3251808a", + "length": "50.000", + "name": "tpx_tpx226029836a0", + "phases": "AS", + "to": "sx3251808a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235266c", + "length": "50.000", + "name": "tpx_tpx302807c0", + "phases": "CS", + "to": "sx3235266c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085410b", + "length": "50.000", + "name": "tpx_tpx339097b0", + "phases": "BS", + "to": "sx3085410b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897791b", + "length": "50.000", + "name": "tpx_tpx323282b0", + "phases": "BS", + "to": "sx2897791b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2692600c", + "length": "50.000", + "name": "tpx_tpx356798c0", + "phases": "CS", + "to": "sx2692600c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197627c", + "length": "50.000", + "name": "tpx_tpx337625c0", + "phases": "CS", + "to": "sx3197627c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048227a", + "length": "50.000", + "name": "tpx_tpx337647a0", + "phases": "AS", + "to": "sx3048227a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2936271a", + "length": "50.000", + "name": "tpx_tpx260476a0", + "phases": "AS", + "to": "sx2936271a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673326b", + "length": "50.000", + "name": "tpx_tpx355601b0", + "phases": "BS", + "to": "sx2673326b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001314a", + "length": "50.000", + "name": "tpx_tpx2001314a0", + "phases": "AS", + "to": "sx2001314a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000910c", + "length": "50.000", + "name": "tpx_tpx2000910c0", + "phases": "CS", + "to": "sx2000910c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122819c", + "length": "50.000", + "name": "tpx_tpx302860c0", + "phases": "CS", + "to": "sx3122819c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2989571a", + "length": "50.000", + "name": "tpx_tpx225991691a0", + "phases": "AS", + "to": "sx2989571a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3215385a", + "length": "50.000", + "name": "tpx_tpx21384099a0", + "phases": "AS", + "to": "sx3215385a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160115b", + "length": "50.000", + "name": "tpx_tpx338994b0", + "phases": "BS", + "to": "sx3160115b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2688692b", + "length": "50.000", + "name": "tpx_tpx225918926b0", + "phases": "BS", + "to": "sx2688692b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2692633c", + "length": "50.000", + "name": "tpx_tpx328364c0", + "phases": "CS", + "to": "sx2692633c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3142079b", + "length": "50.000", + "name": "tpx_tpx21249626b0", + "phases": "BS", + "to": "sx3142079b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254238b", + "length": "50.000", + "name": "tpx_tpx293487b0", + "phases": "BS", + "to": "sx3254238b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3101788a", + "length": "50.000", + "name": "tpx_tpx321878a0", + "phases": "AS", + "to": "sx3101788a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2786204a", + "length": "50.000", + "name": "tpx_tpx223662a0", + "phases": "AS", + "to": "sx2786204a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2935555a", + "length": "50.000", + "name": "tpx_tpx338917a0", + "phases": "AS", + "to": "sx2935555a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2970804c", + "length": "50.000", + "name": "tpx_tpx356787c0", + "phases": "CS", + "to": "sx2970804c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897778a", + "length": "50.000", + "name": "tpx_tpx302468a0", + "phases": "AS", + "to": "sx2897778a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048209b", + "length": "50.000", + "name": "tpx_tpx28120195b0", + "phases": "BS", + "to": "sx3048209b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3231255c", + "length": "50.000", + "name": "tpx_tpx339051c0", + "phases": "CS", + "to": "sx3231255c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3066830b", + "length": "50.000", + "name": "tpx_tpx21469960b0", + "phases": "BS", + "to": "sx3066830b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673306c", + "length": "50.000", + "name": "tpx_tpx293608c0", + "phases": "CS", + "to": "sx2673306c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2822864c", + "length": "50.000", + "name": "tpx_tpx274985c0", + "phases": "CS", + "to": "sx2822864c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3176656a", + "length": "50.000", + "name": "tpx_tpx226193170a0", + "phases": "AS", + "to": "sx3176656a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2726975b", + "length": "50.000", + "name": "tpx_tpx226193422b0", + "phases": "BS", + "to": "sx2726975b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2692654a", + "length": "50.000", + "name": "tpx_tpx260487a0", + "phases": "AS", + "to": "sx2692654a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001303a", + "length": "50.000", + "name": "tpx_tpx2001303a0", + "phases": "AS", + "to": "sx2001303a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3231269b", + "length": "50.000", + "name": "tpx_tpx225684682b0", + "phases": "BS", + "to": "sx3231269b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2690868c", + "length": "50.000", + "name": "tpx_tpx227917127c0", + "phases": "CS", + "to": "sx2690868c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3141401a", + "length": "50.000", + "name": "tpx_tpx338970a0", + "phases": "AS", + "to": "sx3141401a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3101782a", + "length": "50.000", + "name": "tpx_tpx356808a0", + "phases": "AS", + "to": "sx3101782a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3159037b", + "length": "50.000", + "name": "tpx_tpx323391b0", + "phases": "BS", + "to": "sx3159037b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001009b", + "length": "50.000", + "name": "tpx_tpx2001009b0", + "phases": "BS", + "to": "sx2001009b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3179650b", + "length": "50.000", + "name": "tpx_tpx251828b0", + "phases": "BS", + "to": "sx3179650b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3010565c", + "length": "50.000", + "name": "tpx_tpx138343c0", + "phases": "CS", + "to": "sx3010565c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728037a", + "length": "50.000", + "name": "tpx_tpx2224386946a0", + "phases": "AS", + "to": "sx3728037a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3067478a", + "length": "50.000", + "name": "tpx_tpx260598a0", + "phases": "AS", + "to": "sx3067478a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860506b", + "length": "50.000", + "name": "tpx_tpx321856b0", + "phases": "BS", + "to": "sx2860506b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254209c", + "length": "50.000", + "name": "tpx_tpx337714c0", + "phases": "CS", + "to": "sx3254209c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2860481c", + "length": "50.000", + "name": "tpx_tpx338908c0", + "phases": "CS", + "to": "sx2860481c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2692661a", + "length": "50.000", + "name": "tpx_tpx260650a0", + "phases": "AS", + "to": "sx2692661a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2954339b", + "length": "50.000", + "name": "tpx_tpx391739b0", + "phases": "BS", + "to": "sx2954339b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000703b", + "length": "50.000", + "name": "tpx_tpx2000703b0", + "phases": "BS", + "to": "sx2000703b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2952013a", + "length": "50.000", + "name": "tpx_tpx355843a0", + "phases": "CS", + "to": "sx2952013a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2952003b", + "length": "50.000", + "name": "tpx_tpx337614b0", + "phases": "BS", + "to": "sx2952003b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254208c", + "length": "50.000", + "name": "tpx_tpx338961c0", + "phases": "CS", + "to": "sx3254208c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2841632b", + "length": "50.000", + "name": "tpx_tpx338972b0", + "phases": "BS", + "to": "sx2841632b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3030126c", + "length": "50.000", + "name": "tpx_tpx260576c0", + "phases": "CS", + "to": "sx3030126c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3198348a", + "length": "50.000", + "name": "tpx_tpx260552a0", + "phases": "AS", + "to": "sx3198348a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104121a", + "length": "50.000", + "name": "tpx_tpx138561a0", + "phases": "AS", + "to": "sx3104121a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3178975b", + "length": "50.000", + "name": "tpx_tpx321845b0", + "phases": "BS", + "to": "sx3178975b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3030204a", + "length": "50.000", + "name": "tpx_tpx52107636a0", + "phases": "AS", + "to": "sx3030204a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197637c", + "length": "50.000", + "name": "tpx_tpx138585c0", + "phases": "CS", + "to": "sx3197637c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000407a", + "length": "50.000", + "name": "tpx_tpx2000407a0", + "phases": "AS", + "to": "sx2000407a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3178971a", + "length": "50.000", + "name": "tpx_tpx338896a0", + "phases": "AS", + "to": "sx3178971a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2689678b", + "length": "50.000", + "name": "tpx_tpx226192762b0", + "phases": "BS", + "to": "sx2689678b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2954354a", + "length": "50.000", + "name": "tpx_tpx302675a0", + "phases": "AS", + "to": "sx2954354a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973169a", + "length": "50.000", + "name": "tpx_tpx21397304a0", + "phases": "AS", + "to": "sx2973169a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000714b", + "length": "50.000", + "name": "tpx_tpx2000714b0", + "phases": "BS", + "to": "sx2000714b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804253a", + "length": "50.000", + "name": "tpx_tpx21396254a0", + "phases": "AS", + "to": "sx2804253a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710513b", + "length": "50.000", + "name": "tpx_tpx325245b0", + "phases": "BS", + "to": "sx2710513b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822858b", + "length": "50.000", + "name": "tpx_tpx355591b0", + "phases": "BS", + "to": "sx2822858b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001205c", + "length": "50.000", + "name": "tpx_tpx2001205c0", + "phases": "CS", + "to": "sx2001205c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2841641b", + "length": "50.000", + "name": "tpx_tpx21380156b0", + "phases": "BS", + "to": "sx2841641b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691965b", + "length": "50.000", + "name": "tpx_tpx338983b0", + "phases": "BS", + "to": "sx2691965b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3086098a", + "length": "50.000", + "name": "tpx_tpx21474556a0", + "phases": "AS", + "to": "sx3086098a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2858163a", + "length": "50.000", + "name": "tpx_tpx391990a0", + "phases": "AS", + "to": "sx2858163a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860491b", + "length": "50.000", + "name": "tpx_tpx302733b0", + "phases": "BS", + "to": "sx2860491b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3101789a", + "length": "50.000", + "name": "tpx_tpx294842a0", + "phases": "AS", + "to": "sx3101789a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2917333a", + "length": "50.000", + "name": "tpx_tpx260632a0", + "phases": "AS", + "to": "sx2917333a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3729298a", + "length": "50.000", + "name": "tpx_tpx2224386617a0", + "phases": "AS", + "to": "sx3729298a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197626c", + "length": "50.000", + "name": "tpx_tpx337623c0", + "phases": "CS", + "to": "sx3197626c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001312a", + "length": "50.000", + "name": "tpx_tpx2001312a0", + "phases": "AS", + "to": "sx2001312a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729413a", + "length": "50.000", + "name": "tpx_tpx21397067a0", + "phases": "AS", + "to": "sx2729413a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2935567b", + "length": "50.000", + "name": "tpx_tpx338992b0", + "phases": "BS", + "to": "sx2935567b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000414a", + "length": "50.000", + "name": "tpx_tpx2000414a0", + "phases": "AS", + "to": "sx2000414a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160861c", + "length": "50.000", + "name": "tpx_tpx260558c0", + "phases": "CS", + "to": "sx3160861c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3027116a", + "length": "50.000", + "name": "tpx_tpx226192684a0", + "phases": "AS", + "to": "sx3027116a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691939b", + "length": "50.000", + "name": "tpx_tpx355589b0", + "phases": "BS", + "to": "sx2691939b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860480b", + "length": "50.000", + "name": "tpx_tpx323234b0", + "phases": "BS", + "to": "sx2860480b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879064a", + "length": "50.000", + "name": "tpx_tpx138581a0", + "phases": "AS", + "to": "sx2879064a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2803199c", + "length": "50.000", + "name": "tpx_tpx227760021c0", + "phases": "CS", + "to": "sx2803199c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2691944a", + "length": "50.000", + "name": "tpx_tpx321838a0", + "phases": "AS", + "to": "sx2691944a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2691950c", + "length": "50.000", + "name": "tpx_tpx138374c0", + "phases": "CS", + "to": "sx2691950c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2898515c", + "length": "50.000", + "name": "tpx_tpx260621c0", + "phases": "CS", + "to": "sx2898515c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000908c", + "length": "50.000", + "name": "tpx_tpx2000908c0", + "phases": "CS", + "to": "sx2000908c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2692660a", + "length": "50.000", + "name": "tpx_tpx260643a0", + "phases": "AS", + "to": "sx2692660a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160107a", + "length": "50.000", + "name": "tpx_tpx138265a0", + "phases": "AS", + "to": "sx3160107a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673309c", + "length": "50.000", + "name": "tpx_tpx138472c0", + "phases": "CS", + "to": "sx2673309c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001007b", + "length": "50.000", + "name": "tpx_tpx2001007b0", + "phases": "BS", + "to": "sx2001007b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104796c", + "length": "50.000", + "name": "tpx_tpx260569c0", + "phases": "CS", + "to": "sx3104796c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3645811c", + "length": "50.000", + "name": "tpx_tpx2224230689c0", + "phases": "CS", + "to": "sx3645811c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2767342a", + "length": "50.000", + "name": "tpx_tpx356802a0", + "phases": "AS", + "to": "sx2767342a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748146a", + "length": "50.000", + "name": "tpx_tpx138570a0", + "phases": "AS", + "to": "sx2748146a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2803199b", + "length": "50.000", + "name": "tpx_tpx227760021b0", + "phases": "BS", + "to": "sx2803199b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785512b", + "length": "50.000", + "name": "tpx_tpx323245b0", + "phases": "BS", + "to": "sx2785512b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2954352c", + "length": "50.000", + "name": "tpx_tpx28127090c0", + "phases": "CS", + "to": "sx2954352c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2805031c", + "length": "50.000", + "name": "tpx_tpx260491c0", + "phases": "CS", + "to": "sx2805031c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3217064b", + "length": "50.000", + "name": "tpx_tpx21391390b0", + "phases": "BS", + "to": "sx3217064b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3645812c", + "length": "50.000", + "name": "tpx_tpx2224230754c0", + "phases": "CS", + "to": "sx3645812c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216370a", + "length": "50.000", + "name": "tpx_tpx293521a0", + "phases": "AS", + "to": "sx3216370a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729428a", + "length": "50.000", + "name": "tpx_tpx21398402a0", + "phases": "AS", + "to": "sx2729428a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3065750b", + "length": "50.000", + "name": "tpx_tpx323389b0", + "phases": "BS", + "to": "sx3065750b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122811a", + "length": "50.000", + "name": "tpx_tpx337669a0", + "phases": "AS", + "to": "sx3122811a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141393c", + "length": "50.000", + "name": "tpx_tpx442373c0", + "phases": "CS", + "to": "sx3141393c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649297a", + "length": "50.000", + "name": "tpx_tpx2224237380a0", + "phases": "AS", + "to": "sx3649297a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991915b", + "length": "50.000", + "name": "tpx_tpx392036b0", + "phases": "BS", + "to": "sx2991915b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001214c", + "length": "50.000", + "name": "tpx_tpx2001214c0", + "phases": "CS", + "to": "sx2001214c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235249a", + "length": "50.000", + "name": "tpx_tpx356014a0", + "phases": "AS", + "to": "sx3235249a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122825a", + "length": "50.000", + "name": "tpx_tpx28118808a0", + "phases": "AS", + "to": "sx3122825a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673322b", + "length": "50.000", + "name": "tpx_tpx355358b0", + "phases": "BS", + "to": "sx2673322b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3008248a", + "length": "50.000", + "name": "tpx_tpx321159a0", + "phases": "AS", + "to": "sx3008248a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3142098b", + "length": "50.000", + "name": "tpx_tpx260501b0", + "phases": "BS", + "to": "sx3142098b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160864b", + "length": "50.000", + "name": "tpx_tpx28127146b0", + "phases": "BS", + "to": "sx3160864b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2876812a", + "length": "50.000", + "name": "tpx_tpx321880a0", + "phases": "AS", + "to": "sx2876812a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860491a", + "length": "50.000", + "name": "tpx_tpx302733a0", + "phases": "AS", + "to": "sx2860491a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3142099b", + "length": "50.000", + "name": "tpx_tpx157718b0", + "phases": "BS", + "to": "sx3142099b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879069a", + "length": "50.000", + "name": "tpx_tpx338894a0", + "phases": "AS", + "to": "sx2879069a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3217056a", + "length": "50.000", + "name": "tpx_tpx218474a0", + "phases": "AS", + "to": "sx3217056a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2803199a", + "length": "50.000", + "name": "tpx_tpx227760021a0", + "phases": "AS", + "to": "sx2803199a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216370b", + "length": "50.000", + "name": "tpx_tpx293521b0", + "phases": "BS", + "to": "sx3216370b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841619c", + "length": "50.000", + "name": "tpx_tpx337636c0", + "phases": "CS", + "to": "sx2841619c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649299a", + "length": "50.000", + "name": "tpx_tpx2224237391a0", + "phases": "AS", + "to": "sx3649299a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766499c", + "length": "50.000", + "name": "tpx_tpx2212168880c0", + "phases": "CS", + "to": "sx2766499c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001203c", + "length": "50.000", + "name": "tpx_tpx2001203c0", + "phases": "CS", + "to": "sx2001203c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197645a", + "length": "50.000", + "name": "tpx_tpx21395962a0", + "phases": "AS", + "to": "sx3197645a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029520b", + "length": "50.000", + "name": "tpx_tpx21486213b0", + "phases": "BS", + "to": "sx3029520b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897766c", + "length": "50.000", + "name": "tpx_tpx28128007c0", + "phases": "CS", + "to": "sx2897766c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2820535b", + "length": "50.000", + "name": "tpx_tpx338981b0", + "phases": "BS", + "to": "sx2820535b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122849b", + "length": "50.000", + "name": "tpx_tpx293423b0", + "phases": "BS", + "to": "sx3122849b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2786273b", + "length": "50.000", + "name": "tpx_tpx275247b0", + "phases": "BS", + "to": "sx2786273b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841645c", + "length": "50.000", + "name": "tpx_tpx321893c0", + "phases": "CS", + "to": "sx2841645c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2746587c", + "length": "50.000", + "name": "tpx_tpx227653310c0", + "phases": "CS", + "to": "sx2746587c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897784b", + "length": "50.000", + "name": "tpx_tpx247170b0", + "phases": "BS", + "to": "sx2897784b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3086002c", + "length": "50.000", + "name": "tpx_tpx356794c0", + "phases": "CS", + "to": "sx3086002c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3029500a", + "length": "50.000", + "name": "tpx_tpx391992a0", + "phases": "AS", + "to": "sx3029500a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2851933c", + "length": "50.000", + "name": "tpx_tpx21393643c0", + "phases": "CS", + "to": "sx2851933c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841623a", + "length": "50.000", + "name": "tpx_tpx294844a0", + "phases": "AS", + "to": "sx2841623a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3119793b", + "length": "50.000", + "name": "tpx_tpx226024307b0", + "phases": "BS", + "to": "sx3119793b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3216370c", + "length": "50.000", + "name": "tpx_tpx293521c0", + "phases": "CS", + "to": "sx3216370c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001310a", + "length": "50.000", + "name": "tpx_tpx2001310a0", + "phases": "AS", + "to": "sx2001310a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122823b", + "length": "50.000", + "name": "tpx_tpx302370b0", + "phases": "BS", + "to": "sx3122823b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860483b", + "length": "50.000", + "name": "tpx_tpx21396699b0", + "phases": "BS", + "to": "sx2860483b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897805a", + "length": "50.000", + "name": "tpx_tpx21471907a0", + "phases": "AS", + "to": "sx2897805a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2891575c", + "length": "50.000", + "name": "tpx_tpx225533423c0", + "phases": "CS", + "to": "sx2891575c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2936212a", + "length": "50.000", + "name": "tpx_tpx356815a0", + "phases": "AS", + "to": "sx2936212a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048963b", + "length": "50.000", + "name": "tpx_tpx260521b0", + "phases": "BS", + "to": "sx3048963b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235258a", + "length": "50.000", + "name": "tpx_tpx293652a0", + "phases": "AS", + "to": "sx3235258a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673331b", + "length": "50.000", + "name": "tpx_tpx338990b0", + "phases": "BS", + "to": "sx2673331b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710517a", + "length": "50.000", + "name": "tpx_tpx310568a0", + "phases": "AS", + "to": "sx2710517a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235247a", + "length": "50.000", + "name": "tpx_tpx321836a0", + "phases": "AS", + "to": "sx3235247a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991916b", + "length": "50.000", + "name": "tpx_tpx337710b0", + "phases": "BS", + "to": "sx2991916b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822860b", + "length": "50.000", + "name": "tpx_tpx323236b0", + "phases": "BS", + "to": "sx2822860b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104126c", + "length": "50.000", + "name": "tpx_tpx138372c0", + "phases": "CS", + "to": "sx3104126c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2851933b", + "length": "50.000", + "name": "tpx_tpx21393643b0", + "phases": "BS", + "to": "sx2851933b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766719a", + "length": "50.000", + "name": "tpx_tpx21357865a0", + "phases": "AS", + "to": "sx2766719a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729405b", + "length": "50.000", + "name": "tpx_tpx21393412b0", + "phases": "BS", + "to": "sx2729405b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122848c", + "length": "50.000", + "name": "tpx_tpx21397121c0", + "phases": "CS", + "to": "sx3122848c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973833b", + "length": "50.000", + "name": "tpx_tpx260630b0", + "phases": "BS", + "to": "sx2973833b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897771b", + "length": "50.000", + "name": "tpx_tpx21148701b0", + "phases": "BS", + "to": "sx2897771b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879054a", + "length": "50.000", + "name": "tpx_tpx247061a0", + "phases": "AS", + "to": "sx2879054a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2952007c", + "length": "50.000", + "name": "tpx_tpx251859c0", + "phases": "CS", + "to": "sx2952007c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104144a", + "length": "50.000", + "name": "tpx_tpx339020a0", + "phases": "AS", + "to": "sx3104144a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197625c", + "length": "50.000", + "name": "tpx_tpx339044c0", + "phases": "CS", + "to": "sx3197625c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3085395a", + "length": "50.000", + "name": "tpx_tpx21391094a0", + "phases": "AS", + "to": "sx3085395a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766717c", + "length": "50.000", + "name": "tpx_tpx138470c0", + "phases": "CS", + "to": "sx2766717c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649301a", + "length": "50.000", + "name": "tpx_tpx2224237643a0", + "phases": "AS", + "to": "sx3649301a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897777c", + "length": "50.000", + "name": "tpx_tpx338937c0", + "phases": "CS", + "to": "sx2897777c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2801896b", + "length": "50.000", + "name": "tpx_tpx226191995b0", + "phases": "BS", + "to": "sx2801896b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160101a", + "length": "50.000", + "name": "tpx_tpx337678a0", + "phases": "AS", + "to": "sx3160101a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001005b", + "length": "50.000", + "name": "tpx_tpx2001005b0", + "phases": "BS", + "to": "sx2001005b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010570a", + "length": "50.000", + "name": "tpx_tpx302392a0", + "phases": "AS", + "to": "sx3010570a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2936211c", + "length": "50.000", + "name": "tpx_tpx260567c0", + "phases": "CS", + "to": "sx2936211c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2823544a", + "length": "50.000", + "name": "tpx_tpx356804a0", + "phases": "AS", + "to": "sx2823544a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3139366a", + "length": "50.000", + "name": "tpx_tpx226264795a0", + "phases": "AS", + "to": "sx3139366a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2973166c", + "length": "50.000", + "name": "tpx_tpx293665c0", + "phases": "CS", + "to": "sx2973166c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2935553b", + "length": "50.000", + "name": "tpx_tpx323247b0", + "phases": "BS", + "to": "sx2935553b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916625b", + "length": "50.000", + "name": "tpx_tpx21467859b0", + "phases": "BS", + "to": "sx2916625b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897764b", + "length": "50.000", + "name": "tpx_tpx391750b0", + "phases": "BS", + "to": "sx2897764b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2851933a", + "length": "50.000", + "name": "tpx_tpx21393643a0", + "phases": "AS", + "to": "sx2851933a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3082988b", + "length": "50.000", + "name": "tpx_tpx226195153b0", + "phases": "BS", + "to": "sx3082988b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216123a", + "length": "50.000", + "name": "tpx_tpx338926a0", + "phases": "AS", + "to": "sx3216123a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766725c", + "length": "50.000", + "name": "tpx_tpx21399220c0", + "phases": "CS", + "to": "sx2766725c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001212c", + "length": "50.000", + "name": "tpx_tpx2001212c0", + "phases": "CS", + "to": "sx2001212c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841615a", + "length": "50.000", + "name": "tpx_tpx356012a0", + "phases": "AS", + "to": "sx2841615a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2876798b", + "length": "50.000", + "name": "tpx_tpx226193745b0", + "phases": "BS", + "to": "sx2876798b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104155c", + "length": "50.000", + "name": "tpx_tpx21474587c0", + "phases": "CS", + "to": "sx3104155c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3214549a", + "length": "50.000", + "name": "tpx_tpx226308731a0", + "phases": "AS", + "to": "sx3214549a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235258c", + "length": "50.000", + "name": "tpx_tpx293652c0", + "phases": "CS", + "to": "sx3235258c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748152b", + "length": "50.000", + "name": "tpx_tpx321849b0", + "phases": "BS", + "to": "sx2748152b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879081a", + "length": "50.000", + "name": "tpx_tpx391981a0", + "phases": "AS", + "to": "sx2879081a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2916606c", + "length": "50.000", + "name": "tpx_tpx275007c0", + "phases": "CS", + "to": "sx2916606c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122826a", + "length": "50.000", + "name": "tpx_tpx302731a0", + "phases": "AS", + "to": "sx3122826a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000710b", + "length": "50.000", + "name": "tpx_tpx2000710b0", + "phases": "BS", + "to": "sx2000710b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141411c", + "length": "50.000", + "name": "tpx_tpx21197413c0", + "phases": "CS", + "to": "sx3141411c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2936270a", + "length": "50.000", + "name": "tpx_tpx218472a0", + "phases": "AS", + "to": "sx2936270a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3085401a", + "length": "50.000", + "name": "tpx_tpx28127253a0", + "phases": "AS", + "to": "sx3085401a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991905a", + "length": "50.000", + "name": "tpx_tpx28148633a0", + "phases": "AS", + "to": "sx2991905a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897772a", + "length": "50.000", + "name": "tpx_tpx302679a0", + "phases": "AS", + "to": "sx2897772a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2820531b", + "length": "50.000", + "name": "tpx_tpx226192936b0", + "phases": "BS", + "to": "sx2820531b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3141394b", + "length": "50.000", + "name": "tpx_tpx339042b0", + "phases": "BS", + "to": "sx3141394b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122824a", + "length": "50.000", + "name": "tpx_tpx302402a0", + "phases": "AS", + "to": "sx3122824a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160868b", + "length": "50.000", + "name": "tpx_tpx52107693b0", + "phases": "BS", + "to": "sx3160868b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2748126c", + "length": "50.000", + "name": "tpx_tpx321891c0", + "phases": "CS", + "to": "sx2748126c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897768c", + "length": "50.000", + "name": "tpx_tpx337634c0", + "phases": "CS", + "to": "sx2897768c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2936276b", + "length": "50.000", + "name": "tpx_tpx260458b0", + "phases": "BS", + "to": "sx2936276b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216342b", + "length": "50.000", + "name": "tpx_tpx337645b0", + "phases": "BS", + "to": "sx3216342b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2954345c", + "length": "50.000", + "name": "tpx_tpx338915c0", + "phases": "CS", + "to": "sx2954345c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766720a", + "length": "50.000", + "name": "tpx_tpx441311a0", + "phases": "AS", + "to": "sx2766720a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000403a", + "length": "50.000", + "name": "tpx_tpx2000403a0", + "phases": "AS", + "to": "sx2000403a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2821087a", + "length": "50.000", + "name": "tpx_tpx226308720a0", + "phases": "AS", + "to": "sx2821087a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3235258b", + "length": "50.000", + "name": "tpx_tpx293652b0", + "phases": "BS", + "to": "sx3235258b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3140238a", + "length": "50.000", + "name": "tpx_tpx227905262a0", + "phases": "AS", + "to": "sx3140238a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804252a", + "length": "50.000", + "name": "tpx_tpx302473a0", + "phases": "AS", + "to": "sx2804252a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3235275b", + "length": "50.000", + "name": "tpx_tpx302507b0", + "phases": "BS", + "to": "sx3235275b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085391b", + "length": "50.000", + "name": "tpx_tpx21236413b0", + "phases": "BS", + "to": "sx3085391b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104120b", + "length": "50.000", + "name": "tpx_tpx138645b0", + "phases": "BS", + "to": "sx3104120b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066821a", + "length": "50.000", + "name": "tpx_tpx391994a0", + "phases": "AS", + "to": "sx3066821a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991927b", + "length": "50.000", + "name": "tpx_tpx355607b0", + "phases": "BS", + "to": "sx2991927b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860501b", + "length": "50.000", + "name": "tpx_tpx323265b0", + "phases": "BS", + "to": "sx2860501b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3215203b", + "length": "50.000", + "name": "tpx_tpx227760024b0", + "phases": "BS", + "to": "sx3215203b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104129a", + "length": "50.000", + "name": "tpx_tpx338969a0", + "phases": "AS", + "to": "sx3104129a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2711226b", + "length": "50.000", + "name": "tpx_tpx260527b0", + "phases": "BS", + "to": "sx2711226b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3139103a", + "length": "50.000", + "name": "tpx_tpx225767272a0", + "phases": "AS", + "to": "sx3139103a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066804a", + "length": "50.000", + "name": "tpx_tpx21380599a0", + "phases": "AS", + "to": "sx3066804a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3047289a", + "length": "50.000", + "name": "tpx_tpx228091193a0", + "phases": "AS", + "to": "sx3047289a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048212a", + "length": "50.000", + "name": "tpx_tpx355934a0", + "phases": "AS", + "to": "sx3048212a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3727712a", + "length": "50.000", + "name": "tpx_tpx2224386889a0", + "phases": "AS", + "to": "sx3727712a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2802481a", + "length": "50.000", + "name": "tpx_tpx226308730a0", + "phases": "AS", + "to": "sx2802481a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235248c", + "length": "50.000", + "name": "tpx_tpx321861c0", + "phases": "CS", + "to": "sx3235248c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2936275b", + "length": "50.000", + "name": "tpx_tpx157715b0", + "phases": "BS", + "to": "sx2936275b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2805034a", + "length": "50.000", + "name": "tpx_tpx260647a0", + "phases": "AS", + "to": "sx2805034a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3179607b", + "length": "50.000", + "name": "tpx_tpx260591b0", + "phases": "BS", + "to": "sx3179607b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085389b", + "length": "50.000", + "name": "tpx_tpx391765b0", + "phases": "BS", + "to": "sx3085389b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2954338b", + "length": "50.000", + "name": "tpx_tpx355618b0", + "phases": "BS", + "to": "sx2954338b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3082983b", + "length": "50.000", + "name": "tpx_tpx226193899b0", + "phases": "BS", + "to": "sx3082983b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048966c", + "length": "50.000", + "name": "tpx_tpx260625c0", + "phases": "CS", + "to": "sx3048966c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3552667c", + "length": "50.000", + "name": "tpx_tpx2224061203c0", + "phases": "CS", + "to": "sx3552667c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104145b", + "length": "50.000", + "name": "tpx_tpx339011b0", + "phases": "BS", + "to": "sx3104145b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3215203a", + "length": "50.000", + "name": "tpx_tpx227760024a0", + "phases": "AS", + "to": "sx3215203a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2691945c", + "length": "50.000", + "name": "tpx_tpx302812c0", + "phases": "CS", + "to": "sx2691945c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2951995c", + "length": "50.000", + "name": "tpx_tpx226192801c0", + "phases": "AS", + "to": "sx2951995c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3064514c", + "length": "50.000", + "name": "tpx_tpx251857c0", + "phases": "CS", + "to": "sx3064514c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897776c", + "length": "50.000", + "name": "tpx_tpx302858c0", + "phases": "CS", + "to": "sx2897776c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785546a", + "length": "50.000", + "name": "tpx_tpx21399752a0", + "phases": "CS", + "to": "sx2785546a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235244a", + "length": "50.000", + "name": "tpx_tpx337676a0", + "phases": "AS", + "to": "sx3235244a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001003b", + "length": "50.000", + "name": "tpx_tpx2001003b0", + "phases": "BS", + "to": "sx2001003b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3120484c", + "length": "50.000", + "name": "tpx_tpx226191772c0", + "phases": "CS", + "to": "sx3120484c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973178b", + "length": "50.000", + "name": "tpx_tpx337665b0", + "phases": "BS", + "to": "sx2973178b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066809c", + "length": "50.000", + "name": "tpx_tpx338958c0", + "phases": "CS", + "to": "sx3066809c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973146b", + "length": "50.000", + "name": "tpx_tpx28118903b0", + "phases": "BS", + "to": "sx2973146b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066808c", + "length": "50.000", + "name": "tpx_tpx337654c0", + "phases": "CS", + "to": "sx3066808c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804260b", + "length": "50.000", + "name": "tpx_tpx391752b0", + "phases": "BS", + "to": "sx2804260b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160871c", + "length": "50.000", + "name": "tpx_tpx260638c0", + "phases": "CS", + "to": "sx3160871c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2952014a", + "length": "50.000", + "name": "tpx_tpx294809a0", + "phases": "CS", + "to": "sx2952014a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879078a", + "length": "50.000", + "name": "tpx_tpx21399229a0", + "phases": "AS", + "to": "sx2879078a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3226771a", + "length": "50.000", + "name": "tpx_tpx227100746a0", + "phases": "AS", + "to": "sx3226771a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048222c", + "length": "50.000", + "name": "tpx_tpx355431c0", + "phases": "CS", + "to": "sx3048222c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2935552c", + "length": "50.000", + "name": "tpx_tpx274903c0", + "phases": "CS", + "to": "sx2935552c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897789b", + "length": "50.000", + "name": "tpx_tpx323287b0", + "phases": "BS", + "to": "sx2897789b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710508b", + "length": "50.000", + "name": "tpx_tpx323241b0", + "phases": "BS", + "to": "sx2710508b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001014b", + "length": "50.000", + "name": "tpx_tpx2001014b0", + "phases": "BS", + "to": "sx2001014b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001210c", + "length": "50.000", + "name": "tpx_tpx2001210c0", + "phases": "CS", + "to": "sx2001210c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000709b", + "length": "50.000", + "name": "tpx_tpx2000709b0", + "phases": "BS", + "to": "sx2000709b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766741a", + "length": "50.000", + "name": "tpx_tpx21386754a0", + "phases": "AS", + "to": "sx2766741a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254234b", + "length": "50.000", + "name": "tpx_tpx355586b0", + "phases": "BS", + "to": "sx3254234b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748158a", + "length": "50.000", + "name": "tpx_tpx293480a0", + "phases": "AS", + "to": "sx2748158a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3232301c", + "length": "50.000", + "name": "tpx_tpx21458756c0", + "phases": "AS", + "to": "sx3232301c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216349b", + "length": "50.000", + "name": "tpx_tpx337708b0", + "phases": "BS", + "to": "sx3216349b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3189188c", + "length": "50.000", + "name": "tpx_tpx293658c0", + "phases": "CS", + "to": "sx3189188c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897806c", + "length": "50.000", + "name": "tpx_tpx337643c0", + "phases": "CS", + "to": "sx2897806c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216336a", + "length": "50.000", + "name": "tpx_tpx356010a0", + "phases": "AS", + "to": "sx3216336a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841629c", + "length": "50.000", + "name": "tpx_tpx138405c0", + "phases": "CS", + "to": "sx2841629c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973162b", + "length": "50.000", + "name": "tpx_tpx302375b0", + "phases": "BS", + "to": "sx2973162b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766732b", + "length": "50.000", + "name": "tpx_tpx247164b0", + "phases": "BS", + "to": "sx2766732b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216339b", + "length": "50.000", + "name": "tpx_tpx391741b0", + "phases": "BS", + "to": "sx3216339b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254210c", + "length": "50.000", + "name": "tpx_tpx138647c0", + "phases": "CS", + "to": "sx3254210c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2879073c", + "length": "50.000", + "name": "tpx_tpx138371c0", + "phases": "CS", + "to": "sx2879073c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2786274c", + "length": "50.000", + "name": "tpx_tpx207291c0", + "phases": "CS", + "to": "sx2786274c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000905c", + "length": "50.000", + "name": "tpx_tpx2000905c0", + "phases": "CS", + "to": "sx2000905c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2916234a", + "length": "50.000", + "name": "tpx_tpx228549643a0", + "phases": "AS", + "to": "sx2916234a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066812a", + "length": "50.000", + "name": "tpx_tpx323263a0", + "phases": "AS", + "to": "sx3066812a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879066b", + "length": "50.000", + "name": "tpx_tpx323252b0", + "phases": "BS", + "to": "sx2879066b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691949b", + "length": "50.000", + "name": "tpx_tpx337689b0", + "phases": "BS", + "to": "sx2691949b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160109b", + "length": "50.000", + "name": "tpx_tpx338947b0", + "phases": "BS", + "to": "sx3160109b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048208a", + "length": "50.000", + "name": "tpx_tpx138260a0", + "phases": "AS", + "to": "sx3048208a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066815c", + "length": "50.000", + "name": "tpx_tpx338936c0", + "phases": "CS", + "to": "sx3066815c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122820a", + "length": "50.000", + "name": "tpx_tpx310561a0", + "phases": "AS", + "to": "sx3122820a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729401b", + "length": "50.000", + "name": "tpx_tpx355597b0", + "phases": "BS", + "to": "sx2729401b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3233353a", + "length": "50.000", + "name": "tpx_tpx21399630a0", + "phases": "CS", + "to": "sx3233353a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2726974b", + "length": "50.000", + "name": "tpx_tpx226193395b0", + "phases": "BS", + "to": "sx2726974b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2861218c", + "length": "50.000", + "name": "tpx_tpx260505c0", + "phases": "CS", + "to": "sx2861218c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2841620b", + "length": "50.000", + "name": "tpx_tpx28147018b0", + "phases": "BS", + "to": "sx2841620b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673307c", + "length": "50.000", + "name": "tpx_tpx337632c0", + "phases": "CS", + "to": "sx2673307c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141388c", + "length": "50.000", + "name": "tpx_tpx138416c0", + "phases": "CS", + "to": "sx3141388c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3157708c", + "length": "50.000", + "name": "tpx_tpx226192954c0", + "phases": "CS", + "to": "sx3157708c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804956a", + "length": "50.000", + "name": "tpx_tpx356811a0", + "phases": "AS", + "to": "sx2804956a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3085402a", + "length": "50.000", + "name": "tpx_tpx302471a0", + "phases": "AS", + "to": "sx3085402a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710514b", + "length": "50.000", + "name": "tpx_tpx323267b0", + "phases": "BS", + "to": "sx2710514b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2763407c", + "length": "50.000", + "name": "tpx_tpx225906836c0", + "phases": "CS", + "to": "sx2763407c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2821010a", + "length": "50.000", + "name": "tpx_tpx294788a0", + "phases": "CS", + "to": "sx2821010a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160123a", + "length": "50.000", + "name": "tpx_tpx21015706a0", + "phases": "AS", + "to": "sx3160123a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2804957c", + "length": "50.000", + "name": "tpx_tpx356790c0", + "phases": "CS", + "to": "sx2804957c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3141412a", + "length": "50.000", + "name": "tpx_tpx391996a0", + "phases": "AS", + "to": "sx3141412a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785536b", + "length": "50.000", + "name": "tpx_tpx339002b0", + "phases": "BS", + "to": "sx2785536b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2842383a", + "length": "50.000", + "name": "tpx_tpx260634a0", + "phases": "AS", + "to": "sx2842383a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2783231b", + "length": "50.000", + "name": "tpx_tpx226193886b0", + "phases": "BS", + "to": "sx2783231b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2823592a", + "length": "50.000", + "name": "tpx_tpx223658a0", + "phases": "AS", + "to": "sx2823592a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2803194c", + "length": "50.000", + "name": "tpx_tpx227917130c0", + "phases": "CS", + "to": "sx2803194c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2935554a", + "length": "50.000", + "name": "tpx_tpx338921a0", + "phases": "AS", + "to": "sx2935554a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2896685c", + "length": "50.000", + "name": "tpx_tpx227187012c0", + "phases": "CS", + "to": "sx2896685c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3010566c", + "length": "50.000", + "name": "tpx_tpx138776c0", + "phases": "BS", + "to": "sx3010566c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841635a", + "length": "50.000", + "name": "tpx_tpx21399099a0", + "phases": "AS", + "to": "sx2841635a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2727795c", + "length": "50.000", + "name": "tpx_tpx227678342c0", + "phases": "CS", + "to": "sx2727795c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2674047c", + "length": "50.000", + "name": "tpx_tpx260514c0", + "phases": "CS", + "to": "sx2674047c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104157c", + "length": "50.000", + "name": "tpx_tpx293427c0", + "phases": "CS", + "to": "sx3104157c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2763812c", + "length": "50.000", + "name": "tpx_tpx21459651c0", + "phases": "AS", + "to": "sx2763812c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2970811a", + "length": "50.000", + "name": "tpx_tpx321881a0", + "phases": "AS", + "to": "sx2970811a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991922a", + "length": "50.000", + "name": "tpx_tpx302734a0", + "phases": "AS", + "to": "sx2991922a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235946a", + "length": "50.000", + "name": "tpx_tpx356800a0", + "phases": "AS", + "to": "sx3235946a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748840b", + "length": "50.000", + "name": "tpx_tpx157717b0", + "phases": "BS", + "to": "sx2748840b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3030199c", + "length": "50.000", + "name": "tpx_tpx260480c0", + "phases": "CS", + "to": "sx3030199c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804270b", + "length": "50.000", + "name": "tpx_tpx339013b0", + "phases": "BS", + "to": "sx2804270b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841621c", + "length": "50.000", + "name": "tpx_tpx338910c0", + "phases": "CS", + "to": "sx2841621c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2685809a", + "length": "50.000", + "name": "tpx_tpx225533162a0", + "phases": "AS", + "to": "sx2685809a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2730107c", + "length": "50.000", + "name": "tpx_tpx251855c0", + "phases": "CS", + "to": "sx2730107c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3139598b", + "length": "50.000", + "name": "tpx_tpx226311345b0", + "phases": "BS", + "to": "sx3139598b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3178977c", + "length": "50.000", + "name": "tpx_tpx302810c0", + "phases": "AS", + "to": "sx3178977c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066805a", + "length": "50.000", + "name": "tpx_tpx337674a0", + "phases": "AS", + "to": "sx3066805a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2970258c", + "length": "50.000", + "name": "tpx_tpx21459640c0", + "phases": "AS", + "to": "sx2970258c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841633a", + "length": "50.000", + "name": "tpx_tpx293645a0", + "phases": "AS", + "to": "sx2841633a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066829c", + "length": "50.000", + "name": "tpx_tpx321894c0", + "phases": "CS", + "to": "sx3066829c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728041a", + "length": "50.000", + "name": "tpx_tpx2224387074a0", + "phases": "AS", + "to": "sx3728041a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2991933c", + "length": "50.000", + "name": "tpx_tpx355433c0", + "phases": "CS", + "to": "sx2991933c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235251c", + "length": "50.000", + "name": "tpx_tpx21387206c0", + "phases": "AS", + "to": "sx3235251c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766729a", + "length": "50.000", + "name": "tpx_tpx293523a0", + "phases": "AS", + "to": "sx2766729a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235242c", + "length": "50.000", + "name": "tpx_tpx21380500c0", + "phases": "CS", + "to": "sx3235242c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897765b", + "length": "50.000", + "name": "tpx_tpx323243b0", + "phases": "BS", + "to": "sx2897765b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001012b", + "length": "50.000", + "name": "tpx_tpx2001012b0", + "phases": "BS", + "to": "sx2001012b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2896685a", + "length": "50.000", + "name": "tpx_tpx227187012a0", + "phases": "AS", + "to": "sx2896685a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3178972c", + "length": "50.000", + "name": "tpx_tpx338923c0", + "phases": "CS", + "to": "sx3178972c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2690941b", + "length": "50.000", + "name": "tpx_tpx323387b0", + "phases": "BS", + "to": "sx2690941b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973180b", + "length": "50.000", + "name": "tpx_tpx21398646b0", + "phases": "BS", + "to": "sx2973180b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3082993a", + "length": "50.000", + "name": "tpx_tpx226159329a0", + "phases": "AS", + "to": "sx3082993a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3235250b", + "length": "50.000", + "name": "tpx_tpx337698b0", + "phases": "BS", + "to": "sx3235250b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879070b", + "length": "50.000", + "name": "tpx_tpx338934b0", + "phases": "BS", + "to": "sx2879070b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2954353a", + "length": "50.000", + "name": "tpx_tpx338945a0", + "phases": "AS", + "to": "sx2954353a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3727710a", + "length": "50.000", + "name": "tpx_tpx2224386863a0", + "phases": "AS", + "to": "sx3727710a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x0247162b", + "length": "50.000", + "name": "tpx_tpx247162b0", + "phases": "BS", + "to": "sx0247162b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2763153a", + "length": "50.000", + "name": "tpx_tpx293425a0", + "phases": "AS", + "to": "sx2763153a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2804282c", + "length": "50.000", + "name": "tpx_tpx337641c0", + "phases": "CS", + "to": "sx2804282c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991939b", + "length": "50.000", + "name": "tpx_tpx337652b0", + "phases": "BS", + "to": "sx2991939b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766726b", + "length": "50.000", + "name": "tpx_tpx302373b0", + "phases": "BS", + "to": "sx2766726b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3010564c", + "length": "50.000", + "name": "tpx_tpx321883c0", + "phases": "CS", + "to": "sx3010564c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2917310b", + "length": "50.000", + "name": "tpx_tpx260503b0", + "phases": "BS", + "to": "sx2917310b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000411a", + "length": "50.000", + "name": "tpx_tpx2000411a0", + "phases": "AS", + "to": "sx2000411a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822857b", + "length": "50.000", + "name": "tpx_tpx355588b0", + "phases": "BS", + "to": "sx2822857b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3342743c", + "length": "50.000", + "name": "tpx_tpx2223703238c0", + "phases": "CS", + "to": "sx3342743c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785530a", + "length": "50.000", + "name": "tpx_tpx391985a0", + "phases": "AS", + "to": "sx2785530a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785529c", + "length": "50.000", + "name": "tpx_tpx355943c0", + "phases": "CS", + "to": "sx2785529c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3141390b", + "length": "50.000", + "name": "tpx_tpx391743b0", + "phases": "BS", + "to": "sx3141390b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2875754c", + "length": "50.000", + "name": "tpx_tpx225897943c0", + "phases": "CS", + "to": "sx2875754c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2763072b", + "length": "50.000", + "name": "tpx_tpx226924200b0", + "phases": "BS", + "to": "sx2763072b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991929b", + "length": "50.000", + "name": "tpx_tpx28147708b0", + "phases": "BS", + "to": "sx2991929b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973151a", + "length": "50.000", + "name": "tpx_tpx138569a0", + "phases": "AS", + "to": "sx2973151a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048968c", + "length": "50.000", + "name": "tpx_tpx350994c0", + "phases": "CS", + "to": "sx3048968c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3215203c", + "length": "50.000", + "name": "tpx_tpx227760024c0", + "phases": "CS", + "to": "sx3215203c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3047058a", + "length": "50.000", + "name": "tpx_tpx227902981a0", + "phases": "AS", + "to": "sx3047058a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2730149c", + "length": "50.000", + "name": "tpx_tpx260601c0", + "phases": "CS", + "to": "sx2730149c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879068b", + "length": "50.000", + "name": "tpx_tpx323254b0", + "phases": "BS", + "to": "sx2879068b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000907c", + "length": "50.000", + "name": "tpx_tpx2000907c0", + "phases": "CS", + "to": "sx2000907c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2935547b", + "length": "50.000", + "name": "tpx_tpx21383553b0", + "phases": "BS", + "to": "sx2935547b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2692655c", + "length": "50.000", + "name": "tpx_tpx21389307c0", + "phases": "CS", + "to": "sx2692655c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2841625c", + "length": "50.000", + "name": "tpx_tpx302834c0", + "phases": "BS", + "to": "sx2841625c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2896685b", + "length": "50.000", + "name": "tpx_tpx227187012b0", + "phases": "BS", + "to": "sx2896685b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897790c", + "length": "50.000", + "name": "tpx_tpx21357984c0", + "phases": "CS", + "to": "sx2897790c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710505b", + "length": "50.000", + "name": "tpx_tpx323398b0", + "phases": "BS", + "to": "sx2710505b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785511a", + "length": "50.000", + "name": "tpx_tpx339046a0", + "phases": "AS", + "to": "sx2785511a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973156b", + "length": "50.000", + "name": "tpx_tpx337687b0", + "phases": "BS", + "to": "sx2973156b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104119a", + "length": "50.000", + "name": "tpx_tpx338956a0", + "phases": "AS", + "to": "sx3104119a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254212b", + "length": "50.000", + "name": "tpx_tpx138754b0", + "phases": "BS", + "to": "sx3254212b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2879076c", + "length": "50.000", + "name": "tpx_tpx138380c0", + "phases": "CS", + "to": "sx2879076c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973167b", + "length": "50.000", + "name": "tpx_tpx293656b0", + "phases": "BS", + "to": "sx2973167b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3727711a", + "length": "50.000", + "name": "tpx_tpx2224386874a0", + "phases": "AS", + "to": "sx3727711a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860504a", + "length": "50.000", + "name": "tpx_tpx293667a0", + "phases": "AS", + "to": "sx2860504a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3085392c", + "length": "50.000", + "name": "tpx_tpx337630c0", + "phases": "CS", + "to": "sx3085392c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216338b", + "length": "50.000", + "name": "tpx_tpx355599b0", + "phases": "BS", + "to": "sx3216338b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2767340a", + "length": "50.000", + "name": "tpx_tpx260595a0", + "phases": "AS", + "to": "sx2767340a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160896c", + "length": "50.000", + "name": "tpx_tpx260573c0", + "phases": "CS", + "to": "sx3160896c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841631c", + "length": "50.000", + "name": "tpx_tpx391976c0", + "phases": "CS", + "to": "sx2841631c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766721a", + "length": "50.000", + "name": "tpx_tpx247059a0", + "phases": "AS", + "to": "sx2766721a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3046854b", + "length": "50.000", + "name": "tpx_tpx227732939b0", + "phases": "BS", + "to": "sx3046854b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085397b", + "length": "50.000", + "name": "tpx_tpx323261b0", + "phases": "BS", + "to": "sx3085397b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2954351c", + "length": "50.000", + "name": "tpx_tpx302805c0", + "phases": "AS", + "to": "sx2954351c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197653b", + "length": "50.000", + "name": "tpx_tpx339004b0", + "phases": "BS", + "to": "sx3197653b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2990826b", + "length": "50.000", + "name": "tpx_tpx337619b0", + "phases": "BS", + "to": "sx2990826b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160108b", + "length": "50.000", + "name": "tpx_tpx355603b0", + "phases": "BS", + "to": "sx3160108b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122812b", + "length": "50.000", + "name": "tpx_tpx21031694b0", + "phases": "BS", + "to": "sx3122812b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2729410c", + "length": "50.000", + "name": "tpx_tpx338943c0", + "phases": "CS", + "to": "sx2729410c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000912c", + "length": "50.000", + "name": "tpx_tpx2000912c0", + "phases": "CS", + "to": "sx2000912c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010568a", + "length": "50.000", + "name": "tpx_tpx338965a0", + "phases": "AS", + "to": "sx3010568a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785518c", + "length": "50.000", + "name": "tpx_tpx138469c0", + "phases": "CS", + "to": "sx2785518c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822877b", + "length": "50.000", + "name": "tpx_tpx337672b0", + "phases": "BS", + "to": "sx2822877b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2673317a", + "length": "50.000", + "name": "tpx_tpx21397771a0", + "phases": "AS", + "to": "sx2673317a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673346c", + "length": "50.000", + "name": "tpx_tpx293486c0", + "phases": "CS", + "to": "sx2673346c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729407b", + "length": "50.000", + "name": "tpx_tpx247100b0", + "phases": "BS", + "to": "sx2729407b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804262a", + "length": "50.000", + "name": "tpx_tpx355938a0", + "phases": "AS", + "to": "sx2804262a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973791a", + "length": "50.000", + "name": "tpx_tpx260605a0", + "phases": "AS", + "to": "sx2973791a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2724120c", + "length": "50.000", + "name": "tpx_tpx225577437c0", + "phases": "CS", + "to": "sx2724120c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3027132a", + "length": "50.000", + "name": "tpx_tpx321876a0", + "phases": "AS", + "to": "sx3027132a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2990826a", + "length": "50.000", + "name": "tpx_tpx337619a0", + "phases": "AS", + "to": "sx2990826a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2937757c", + "length": "50.000", + "name": "tpx_tpx227411650c0", + "phases": "CS", + "to": "sx2937757c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766749b", + "length": "50.000", + "name": "tpx_tpx337661b0", + "phases": "BS", + "to": "sx2766749b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2764399b", + "length": "50.000", + "name": "tpx_tpx226192493b0", + "phases": "BS", + "to": "sx2764399b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029507b", + "length": "50.000", + "name": "tpx_tpx302368b0", + "phases": "BS", + "to": "sx3029507b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2767340b", + "length": "50.000", + "name": "tpx_tpx260595b0", + "phases": "BS", + "to": "sx2767340b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160872c", + "length": "50.000", + "name": "tpx_tpx260551c0", + "phases": "CS", + "to": "sx3160872c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029055b", + "length": "50.000", + "name": "tpx_tpx260607b0", + "phases": "BS", + "to": "sx3029055b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879079b", + "length": "50.000", + "name": "tpx_tpx391756b0", + "phases": "BS", + "to": "sx2879079b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710546b", + "length": "50.000", + "name": "tpx_tpx337704b0", + "phases": "BS", + "to": "sx2710546b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897780b", + "length": "50.000", + "name": "tpx_tpx293518b0", + "phases": "BS", + "to": "sx2897780b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254204a", + "length": "50.000", + "name": "tpx_tpx337715a0", + "phases": "AS", + "to": "sx3254204a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916618b", + "length": "50.000", + "name": "tpx_tpx323283b0", + "phases": "BS", + "to": "sx2916618b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879794a", + "length": "50.000", + "name": "tpx_tpx260475a0", + "phases": "AS", + "to": "sx2879794a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254230a", + "length": "50.000", + "name": "tpx_tpx338989a0", + "phases": "AS", + "to": "sx3254230a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000705b", + "length": "50.000", + "name": "tpx_tpx2000705b0", + "phases": "BS", + "to": "sx2000705b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254237a", + "length": "50.000", + "name": "tpx_tpx21482181a0", + "phases": "AS", + "to": "sx3254237a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001010b", + "length": "50.000", + "name": "tpx_tpx2001010b0", + "phases": "BS", + "to": "sx2001010b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673318c", + "length": "50.000", + "name": "tpx_tpx338967c0", + "phases": "CS", + "to": "sx2673318c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197635b", + "length": "50.000", + "name": "tpx_tpx337696b0", + "phases": "BS", + "to": "sx3197635b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728038a", + "length": "50.000", + "name": "tpx_tpx2224387019a0", + "phases": "AS", + "to": "sx3728038a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804257b", + "length": "50.000", + "name": "tpx_tpx321854b0", + "phases": "BS", + "to": "sx2804257b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x1108407b", + "length": "50.000", + "name": "tpx_tpx2221108407b0", + "phases": "BS", + "to": "sx1108407b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197629b", + "length": "50.000", + "name": "tpx_tpx247122b0", + "phases": "BS", + "to": "sx3197629b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000409a", + "length": "50.000", + "name": "tpx_tpx2000409a0", + "phases": "AS", + "to": "sx2000409a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104124b", + "length": "50.000", + "name": "tpx_tpx356065b0", + "phases": "BS", + "to": "sx3104124b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673300b", + "length": "50.000", + "name": "tpx_tpx391745b0", + "phases": "BS", + "to": "sx2673300b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122822a", + "length": "50.000", + "name": "tpx_tpx391987a0", + "phases": "AS", + "to": "sx3122822a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3214055c", + "length": "50.000", + "name": "tpx_tpx226192175c0", + "phases": "CS", + "to": "sx3214055c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748129a", + "length": "50.000", + "name": "tpx_tpx138567a0", + "phases": "AS", + "to": "sx2748129a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197654a", + "length": "50.000", + "name": "tpx_tpx21382992a0", + "phases": "AS", + "to": "sx3197654a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048221a", + "length": "50.000", + "name": "tpx_tpx21399305a0", + "phases": "AS", + "to": "sx3048221a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010569a", + "length": "50.000", + "name": "tpx_tpx302673a0", + "phases": "AS", + "to": "sx3010569a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2989432b", + "length": "50.000", + "name": "tpx_tpx226163575b0", + "phases": "BS", + "to": "sx2989432b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x1108410b", + "length": "50.000", + "name": "tpx_tpx2226061820b0", + "phases": "BS", + "to": "sx1108410b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3176661c", + "length": "50.000", + "name": "tpx_tpx356788c0", + "phases": "CS", + "to": "sx3176661c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860482a", + "length": "50.000", + "name": "tpx_tpx338954a0", + "phases": "AS", + "to": "sx2860482a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001308a", + "length": "50.000", + "name": "tpx_tpx2001308a0", + "phases": "AS", + "to": "sx2001308a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3027670b", + "length": "50.000", + "name": "tpx_tpx226308719b0", + "phases": "BS", + "to": "sx3027670b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197661c", + "length": "50.000", + "name": "tpx_tpx338932c0", + "phases": "CS", + "to": "sx3197661c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785528b", + "length": "50.000", + "name": "tpx_tpx138752b0", + "phases": "BS", + "to": "sx2785528b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104859b", + "length": "50.000", + "name": "tpx_tpx138798b0", + "phases": "BS", + "to": "sx3104859b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766715b", + "length": "50.000", + "name": "tpx_tpx355593b0", + "phases": "BS", + "to": "sx2766715b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2936214a", + "length": "50.000", + "name": "tpx_tpx356809a0", + "phases": "AS", + "to": "sx2936214a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766738c", + "length": "50.000", + "name": "tpx_tpx338978c0", + "phases": "CS", + "to": "sx2766738c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160098a", + "length": "50.000", + "name": "tpx_tpx339048a0", + "phases": "AS", + "to": "sx3160098a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841622a", + "length": "50.000", + "name": "tpx_tpx21384215a0", + "phases": "AS", + "to": "sx2841622a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748124b", + "length": "50.000", + "name": "tpx_tpx323392b0", + "phases": "BS", + "to": "sx2748124b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785523c", + "length": "50.000", + "name": "tpx_tpx138412c0", + "phases": "CS", + "to": "sx2785523c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2822862c", + "length": "50.000", + "name": "tpx_tpx275001c0", + "phases": "CS", + "to": "sx2822862c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010561a", + "length": "50.000", + "name": "tpx_tpx337650a0", + "phases": "AS", + "to": "sx3010561a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785524c", + "length": "50.000", + "name": "tpx_tpx28044328c0", + "phases": "CS", + "to": "sx2785524c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160103c", + "length": "50.000", + "name": "tpx_tpx356063c0", + "phases": "CS", + "to": "sx3160103c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_cap_2c_PUZ_C", + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "q16483", + "length": "3.2808", + "name": "line_cap_2c", + "phases": "C", + "to": "q16483_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104128a", + "length": "50.000", + "name": "tpx_tpx247057a0", + "phases": "AS", + "to": "sx3104128a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_cap_2b_PUZ_B", + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "q16483", + "length": "3.2808", + "name": "line_cap_2b", + "phases": "B", + "to": "q16483_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_cap_2a_PUZ_A", + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "q16483", + "length": "3.2808", + "name": "line_cap_2a", + "phases": "A", + "to": "q16483_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916619b", + "length": "50.000", + "name": "tpx_tpx339006b0", + "phases": "BS", + "to": "sx2916619b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141402c", + "length": "50.000", + "name": "tpx_tpx391978c0", + "phases": "CS", + "to": "sx3141402c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029495b", + "length": "50.000", + "name": "tpx_tpx391736b0", + "phases": "BS", + "to": "sx3029495b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3235252b", + "length": "50.000", + "name": "tpx_tpx21388572b0", + "phases": "BS", + "to": "sx3235252b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729409b", + "length": "50.000", + "name": "tpx_tpx355605b0", + "phases": "BS", + "to": "sx2729409b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000914c", + "length": "50.000", + "name": "tpx_tpx2000914c0", + "phases": "CS", + "to": "sx2000914c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3085400c", + "length": "50.000", + "name": "tpx_tpx302803c0", + "phases": "AS", + "to": "sx3085400c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3233412a", + "length": "50.000", + "name": "tpx_tpx226308717a0", + "phases": "AS", + "to": "sx3233412a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104853c", + "length": "50.000", + "name": "tpx_tpx260518c0", + "phases": "CS", + "to": "sx3104853c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254229b", + "length": "50.000", + "name": "tpx_tpx338998b0", + "phases": "BS", + "to": "sx3254229b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3645809c", + "length": "50.000", + "name": "tpx_tpx2224230615c0", + "phases": "CS", + "to": "sx3645809c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2991914c", + "length": "50.000", + "name": "tpx_tpx338941c0", + "phases": "CS", + "to": "sx2991914c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2954357a", + "length": "50.000", + "name": "tpx_tpx355936a0", + "phases": "AS", + "to": "sx2954357a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010557a", + "length": "50.000", + "name": "tpx_tpx21380453a0", + "phases": "AS", + "to": "sx3010557a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691946b", + "length": "50.000", + "name": "tpx_tpx28147974b0", + "phases": "BS", + "to": "sx2691946b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2821770a", + "length": "50.000", + "name": "tpx_tpx227917119a0", + "phases": "AS", + "to": "sx2821770a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_cap_1c_PUZ_C", + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "l2823592", + "length": "3.2808", + "name": "line_cap_1c", + "phases": "C", + "to": "l2823592_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_cap_1b_PUZ_B", + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "l2823592", + "length": "3.2808", + "name": "line_cap_1b", + "phases": "B", + "to": "l2823592_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_cap_1a_PUZ_A", + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "l2823592", + "length": "3.2808", + "name": "line_cap_1a", + "phases": "A", + "to": "l2823592_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3142078b", + "length": "50.000", + "name": "tpx_tpx330121b0", + "phases": "BS", + "to": "sx3142078b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2991640c", + "length": "50.000", + "name": "tpx_tpx229106135c0", + "phases": "CS", + "to": "sx2991640c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2822870c", + "length": "50.000", + "name": "tpx_tpx21399171c0", + "phases": "CS", + "to": "sx2822870c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2710543c", + "length": "50.000", + "name": "tpx_tpx21474614c0", + "phases": "CS", + "to": "sx2710543c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860500b", + "length": "50.000", + "name": "tpx_tpx323274b0", + "phases": "BS", + "to": "sx2860500b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2767407b", + "length": "50.000", + "name": "tpx_tpx260495b0", + "phases": "BS", + "to": "sx2767407b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3195315a", + "length": "50.000", + "name": "tpx_tpx226193662a0", + "phases": "AS", + "to": "sx3195315a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3217053c", + "length": "50.000", + "name": "tpx_tpx260529c0", + "phases": "CS", + "to": "sx3217053c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3010562b", + "length": "50.000", + "name": "tpx_tpx325473b0", + "phases": "BS", + "to": "sx3010562b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122813a", + "length": "50.000", + "name": "tpx_tpx138685a0", + "phases": "AS", + "to": "sx3122813a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048889c", + "length": "50.000", + "name": "tpx_tpx28128464c0", + "phases": "CS", + "to": "sx3048889c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2764412a", + "length": "50.000", + "name": "tpx_tpx321874a0", + "phases": "AS", + "to": "sx2764412a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2916608c", + "length": "50.000", + "name": "tpx_tpx321852c0", + "phases": "CS", + "to": "sx2916608c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3103822c", + "length": "50.000", + "name": "tpx_tpx228665517c0", + "phases": "CS", + "to": "sx3103822c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649304a", + "length": "50.000", + "name": "tpx_tpx2224237713a0", + "phases": "AS", + "to": "sx3649304a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x1108405c", + "length": "50.000", + "name": "tpx_tpx2221108405c0", + "phases": "CS", + "to": "sx1108405c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2878848c", + "length": "50.000", + "name": "tpx_tpx2212168887c0", + "phases": "CS", + "to": "sx2878848c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x_293471a", + "length": "50.000", + "name": "tpx_tpx293471a0", + "phases": "AS", + "to": "sx_293471a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766724c", + "length": "50.000", + "name": "tpx_tpx294786c0", + "phases": "CS", + "to": "sx2766724c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3157167a", + "length": "50.000", + "name": "tpx_tpx226115278a0", + "phases": "AS", + "to": "sx3157167a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766718c", + "length": "50.000", + "name": "tpx_tpx138652c0", + "phases": "CS", + "to": "sx2766718c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804269b", + "length": "50.000", + "name": "tpx_tpx323285b0", + "phases": "BS", + "to": "sx2804269b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2841636b", + "length": "50.000", + "name": "tpx_tpx391758b0", + "phases": "BS", + "to": "sx2841636b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197641a", + "length": "50.000", + "name": "tpx_tpx293591a0", + "phases": "AS", + "to": "sx3197641a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860490a", + "length": "50.000", + "name": "tpx_tpx138719a0", + "phases": "AS", + "to": "sx2860490a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2861222a", + "length": "50.000", + "name": "tpx_tpx260473a0", + "phases": "AS", + "to": "sx2861222a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029506b", + "length": "50.000", + "name": "tpx_tpx338930b0", + "phases": "BS", + "to": "sx3029506b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000707b", + "length": "50.000", + "name": "tpx_tpx2000707b0", + "phases": "BS", + "to": "sx2000707b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3047289c", + "length": "50.000", + "name": "tpx_tpx228091193c0", + "phases": "CS", + "to": "sx3047289c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160106a", + "length": "50.000", + "name": "tpx_tpx310570a0", + "phases": "AS", + "to": "sx3160106a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691967b", + "length": "50.000", + "name": "tpx_tpx338976b0", + "phases": "BS", + "to": "sx2691967b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897793a", + "length": "50.000", + "name": "tpx_tpx338987a0", + "phases": "AS", + "to": "sx2897793a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2729423c", + "length": "50.000", + "name": "tpx_tpx339017c0", + "phases": "CS", + "to": "sx2729423c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2691941c", + "length": "50.000", + "name": "tpx_tpx321887c0", + "phases": "CS", + "to": "sx2691941c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254214b", + "length": "50.000", + "name": "tpx_tpx337706b0", + "phases": "BS", + "to": "sx3254214b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216348a", + "length": "50.000", + "name": "tpx_tpx337717a0", + "phases": "AS", + "to": "sx3216348a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991910b", + "length": "50.000", + "name": "tpx_tpx337694b0", + "phases": "BS", + "to": "sx2991910b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710542b", + "length": "50.000", + "name": "tpx_tpx355584b0", + "phases": "BS", + "to": "sx2710542b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x1108405b", + "length": "50.000", + "name": "tpx_tpx2221108405b0", + "phases": "BS", + "to": "sx1108405b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2767340c", + "length": "50.000", + "name": "tpx_tpx260595c0", + "phases": "CS", + "to": "sx2767340c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x_293471b", + "length": "50.000", + "name": "tpx_tpx293471b0", + "phases": "BS", + "to": "sx_293471b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2992656a", + "length": "50.000", + "name": "tpx_tpx260627a0", + "phases": "AS", + "to": "sx2992656a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2804261c", + "length": "50.000", + "name": "tpx_tpx302509c0", + "phases": "CS", + "to": "sx2804261c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104122a", + "length": "50.000", + "name": "tpx_tpx138565a0", + "phases": "AS", + "to": "sx3104122a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841638c", + "length": "50.000", + "name": "tpx_tpx138641c0", + "phases": "CS", + "to": "sx2841638c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160102b", + "length": "50.000", + "name": "tpx_tpx355780b0", + "phases": "BS", + "to": "sx3160102b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3141398a", + "length": "50.000", + "name": "tpx_tpx21386976a0", + "phases": "AS", + "to": "sx3141398a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748131b", + "length": "50.000", + "name": "tpx_tpx323250b0", + "phases": "BS", + "to": "sx2748131b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3172805a", + "length": "50.000", + "name": "tpx_tpx226964880a0", + "phases": "AS", + "to": "sx3172805a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2990826c", + "length": "50.000", + "name": "tpx_tpx337619c0", + "phases": "CS", + "to": "sx2990826c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766747a", + "length": "50.000", + "name": "tpx_tpx391989a0", + "phases": "AS", + "to": "sx2766747a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822859b", + "length": "50.000", + "name": "tpx_tpx391747b0", + "phases": "BS", + "to": "sx2822859b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2992624a", + "length": "50.000", + "name": "tpx_tpx260484a0", + "phases": "AS", + "to": "sx2992624a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3011298c", + "length": "50.000", + "name": "tpx_tpx207286c0", + "phases": "CS", + "to": "sx3011298c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000903c", + "length": "50.000", + "name": "tpx_tpx2000903c0", + "phases": "CS", + "to": "sx2000903c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001306a", + "length": "50.000", + "name": "tpx_tpx2001306a0", + "phases": "AS", + "to": "sx2001306a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2898526c", + "length": "50.000", + "name": "tpx_tpx21393486c0", + "phases": "CS", + "to": "sx2898526c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3027671a", + "length": "50.000", + "name": "tpx_tpx226308728a0", + "phases": "AS", + "to": "sx3027671a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3047289b", + "length": "50.000", + "name": "tpx_tpx228091193b0", + "phases": "BS", + "to": "sx3047289b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3236011b", + "length": "50.000", + "name": "tpx_tpx138796b0", + "phases": "BS", + "to": "sx3236011b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2954347b", + "length": "50.000", + "name": "tpx_tpx321841b0", + "phases": "BS", + "to": "sx2954347b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3082992a", + "length": "50.000", + "name": "tpx_tpx337728a0", + "phases": "AS", + "to": "sx3082992a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x_293471c", + "length": "50.000", + "name": "tpx_tpx293471c0", + "phases": "CS", + "to": "sx_293471c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860479b", + "length": "50.000", + "name": "tpx_tpx355595b0", + "phases": "BS", + "to": "sx2860479b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673305b", + "length": "50.000", + "name": "tpx_tpx138236b0", + "phases": "BS", + "to": "sx2673305b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2935551c", + "length": "50.000", + "name": "tpx_tpx21387929c0", + "phases": "CS", + "to": "sx2935551c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710536a", + "length": "50.000", + "name": "tpx_tpx21396867a0", + "phases": "AS", + "to": "sx2710536a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710504b", + "length": "50.000", + "name": "tpx_tpx323394b0", + "phases": "BS", + "to": "sx2710504b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x1108405a", + "length": "50.000", + "name": "tpx_tpx2221108405a0", + "phases": "AS", + "to": "sx1108405a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2689691a", + "length": "50.000", + "name": "tpx_tpx355375a0", + "phases": "AS", + "to": "sx2689691a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_hvmv_sub_connector_ABC", + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv11sub1_lsb", + "length": "3.2808", + "name": "line_hvmv_sub_connector", + "phases": "ABC", + "to": "hvmv_sub1_48332" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "c11": "0.000", + "c12": "0.000", + "c13": "0.000", + "c21": "0.000", + "c22": "0.000", + "c23": "0.000", + "c31": "0.000", + "c32": "0.000", + "c33": "0.000", + "name": "lcon_hvmv_sub_connector_ABC", + "z11": "0.00160934+0.0160934j", + "z12": "0.00000+0.00000j", + "z13": "0.00000+0.00000j", + "z21": "0.00000+0.00000j", + "z22": "0.00160934+0.0160934j", + "z23": "0.00000+0.00000j", + "z31": "0.00000+0.00000j", + "z32": "0.00000+0.00000j", + "z33": "0.00160934+0.0160934j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "configuration": "lcon_ln5513564-2_ABC", + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2823592_cap", + "length": "3.2808", + "name": "line_ln5513564-2", + "phases": "ABC", + "to": "r20185" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "c11": "0.000", + "c12": "0.000", + "c13": "0.000", + "c21": "0.000", + "c22": "0.000", + "c23": "0.000", + "c31": "0.000", + "c32": "0.000", + "c33": "0.000", + "name": "lcon_ln5513564-2_ABC", + "z11": "1.60934+1.60934j", + "z12": "0.00000+0.00000j", + "z13": "0.00000+0.00000j", + "z21": "0.00000+0.00000j", + "z22": "1.60934+1.60934j", + "z23": "0.00000+0.00000j", + "z31": "0.00000+0.00000j", + "z32": "0.00000+0.00000j", + "z33": "1.60934+1.60934j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "400.00", + "emergency_rating_B": "400.00", + "emergency_rating_C": "400.00", + "from": "sourcebus", + "name": "reac_hvmv_sub_hsb", + "phase_A_reactance": "14.7983", + "phase_A_resistance": "0.000", + "phase_B_reactance": "14.7983", + "phase_B_resistance": "0.000", + "phase_C_reactance": "14.7983", + "phase_C_resistance": "0.000", + "phases": "ABC", + "to": "hvmv115_hsb1" + }, + "children": [], + "name": "series_reactor" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5578300-1_int", + "name": "swt_ln5587300_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "l2692635" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5803273-1_int", + "name": "swt_tsw803273_sw", + "phases": "ABC", + "status": "OPEN", + "to": "m1069457" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "228-1353934-4_int", + "name": "swt_wf856_48332_sw", + "phases": "C", + "status": "OPEN", + "to": "193-103041" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "n1139546", + "name": "swt_ln0955074_sw", + "phases": "B", + "status": "CLOSED", + "to": "d5955074-2_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6413567-3_int", + "name": "swt_x8223_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e182724" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69sub1_lsb2", + "name": "swt_hvmv69s1b3_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv69s1s2_1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "d6140776-1_int", + "name": "swt_v9109_48332_sw", + "phases": "A", + "status": "CLOSED", + "to": "e182730" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5742811-3_int", + "name": "swt_ln0742811_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "n1137992" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der-2", + "name": "swt_ln2001mt2_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m2001-mt2" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "d6019477-1_int", + "name": "swt_v9287_48332_sw", + "phases": "C", + "status": "CLOSED", + "to": "e182727" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6049825-1_int", + "name": "swt_l5523_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e182748" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "d6049822-1_int", + "name": "swt_l5397_48332_sw", + "phases": "A", + "status": "CLOSED", + "to": "e182722" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2000100", + "name": "swt_ln2000001_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d2000100_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "m1047767", + "name": "swt_ln0623395_sw", + "phases": "B", + "status": "CLOSED", + "to": "d5623395-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186der-3", + "name": "swt_ln1186mt3_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1186-wt3" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5860450-1_int", + "name": "swt_ln4651075_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1047575" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5837361-8_int", + "name": "swt_v7995_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e182745" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5860423-3_int", + "name": "swt_ln4641075_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q14733" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s2s3_2", + "name": "swt_hvmv69s3b1_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv69sub3_hsb" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1009805", + "name": "swt_ln0621886_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5621886-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6198039-1_int", + "name": "swt_a8869_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e206217" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "n1136027", + "name": "swt_ln0409774_sw", + "phases": "A", + "status": "CLOSED", + "to": "d6409775-4_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "l2729430", + "name": "swt_ln0017316_sw", + "phases": "B", + "status": "CLOSED", + "to": "d6017316-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6023352-1_int", + "name": "swt_l9407_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e184626" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d6140778-1_int", + "name": "swt_l5565_48332_sw", + "phases": "B", + "status": "CLOSED", + "to": "e182731" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026chp-1", + "name": "swt_ln5001chp_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1026chp-2" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069der480-1", + "name": "swt_dg1069mt1_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1069-mt1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6138608-3_int", + "name": "swt_ln4586093_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q14404" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3085398", + "name": "swt_ln0653457_sw", + "phases": "ABC", + "status": "OPEN", + "to": "d5653457-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5534969-2_int", + "name": "swt_v7173_48332_sw", + "phases": "ABC", + "status": "OPEN", + "to": "e182729" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209der480-1", + "name": "swt_dg1209dies_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1209-dies1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_10", + "name": "swt_hvmv69s2b3_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv69sub2_lnb" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6290228-6_int", + "name": "swt_2002200004991174_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q16642" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089der480-2", + "name": "swt_dg1089dies_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1089-dies1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142818", + "name": "swt_ln0504876_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5504876-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d5472341-1_int", + "name": "swt_ln0247162_sw", + "phases": "B", + "status": "CLOSED", + "to": "f739842" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2858166", + "name": "swt_ln0863704_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5863704-2_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "n1139545", + "name": "swt_ln0712477_sw", + "phases": "C", + "status": "CLOSED", + "to": "d5712477-3_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "m2001201", + "name": "swt_ln2001201_sw", + "phases": "C", + "status": "CLOSED", + "to": "d2001201_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der-5", + "name": "swt_ln2001ess2_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m2001-ess2" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6108141-1_int", + "name": "swt_v9111_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e206209" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5926308-3_int", + "name": "swt_ln4625696_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q14412" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142der480-1", + "name": "swt_dg1142lng_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1142-lng1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "n1138594", + "name": "swt_ln0774470_sw", + "phases": "A", + "status": "CLOSED", + "to": "d5774470-2_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186der-1", + "name": "swt_ln1186mt1_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1186-wt1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5799561-2_int", + "name": "swt_a8611_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e193509" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69sub2_lnb", + "name": "swt_hvmv69s2b4_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv69s2s3_1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2879078", + "name": "swt_ln0108145_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d6108145-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1136670", + "name": "swt_ln0956471_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5956471-2_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026915", + "name": "swt_ln0774458_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5774457-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "l3066818", + "name": "swt_ln0653469_sw", + "phases": "B", + "status": "CLOSED", + "to": "d5653469-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5867591-1_int", + "name": "swt_v7041_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e183472" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5710794-3_int", + "name": "swt_hvmv69s1b2_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e192860" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089174", + "name": "swt_ln05534967_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5534967-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m3032981", + "name": "swt_ln0504019_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d6504019-6_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "d5712486-1_int", + "name": "swt_x8271_48332_sw", + "phases": "C", + "status": "CLOSED", + "to": "e206210" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d5806920-1_int", + "name": "swt_v7313_48332_sw", + "phases": "B", + "status": "CLOSED", + "to": "e182726" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "n1137999", + "name": "swt_ln0440002_sw", + "phases": "C", + "status": "CLOSED", + "to": "d6440002-2_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069230", + "name": "swt_tsw10691069_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1069300" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69sub2_lnb", + "name": "swt_hvmv69s2b1_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv69sub2_hsb" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv11sub3_lsb", + "name": "swt_hvmv69s3b2_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e203026" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5563942-4_int", + "name": "swt_2002200004868472_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q16483" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5502543-2_int", + "name": "swt_ln4625713_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q14413" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5587291-3_int", + "name": "swt_2002200004641085_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q14734" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5513564-1_int", + "name": "swt_xj171_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e192201" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5535139-1_int", + "name": "swt_l5437_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e183473" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1140519", + "name": "swt_ln0895780_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5895780-3_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5956499-2_int", + "name": "swt_ln4625680_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q14411" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "m2000701", + "name": "swt_ln2000701_sw", + "phases": "B", + "status": "CLOSED", + "to": "d2000701_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "n1144667", + "name": "swt_ln0712587_sw", + "phases": "A", + "status": "CLOSED", + "to": "d5712587-2_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5682346-3_int", + "name": "swt_g9343_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e206211" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5534970-1_int", + "name": "swt_l9191_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e182732" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "l2692000", + "name": "swt_tsw568613_sw", + "phases": "A", + "status": "OPEN", + "to": "l2841000" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "228-961799-3_int", + "name": "swt_wg127_48332_sw", + "phases": "C", + "status": "OPEN", + "to": "193-46661" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv11sub2_lsb", + "name": "swt_hvmv69s2b2_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1047300" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d5565090-1_int", + "name": "swt_x8225_48332_sw", + "phases": "B", + "status": "CLOSED", + "to": "e182744" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3047059", + "name": "swt_tsw30473047_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "l3047060" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047pv-2", + "name": "swt_ln1047pvfrm_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1047pv-1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5861005-2_int", + "name": "swt_ln3693186_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q1301" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv115_hsb1", + "name": "swt_hvmv115b1_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv115_hsb2" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "regxfmr_hvmv69sub1_lsb1", + "name": "swt_hvmv69s1b4_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv69sub1_lsb2" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2990827", + "name": "swt_tsw10891089_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "l2990828" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der-4", + "name": "swt_ln2001ess1_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m2001-ess1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der-3", + "name": "swt_ln2001mt3_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m2001-mt3" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "n1136030", + "name": "swt_ln0804798_sw", + "phases": "B", + "status": "CLOSED", + "to": "d5804798-3_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5958866-1_int", + "name": "swt_a8645_48332_sw", + "phases": "ABC", + "status": "OPEN", + "to": "e183493" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "d6141147-1_int", + "name": "swt_ln0141147_sw", + "phases": "C", + "status": "CLOSED", + "to": "m1108317" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089der480-1", + "name": "swt_dg1089lng_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1089-lng1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089112", + "name": "swt_ln0138609_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d6138609-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "p829957", + "name": "swt_ln0746703_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5746703-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d6231996-1_int", + "name": "swt_l5659_48332_sw", + "phases": "B", + "status": "CLOSED", + "to": "e206614" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "d6320328-1_int", + "name": "swt_tsw320328_sw", + "phases": "C", + "status": "OPEN", + "to": "l2879062" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69sub1_lsb2", + "name": "swt_hvmv69s1b1_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv69sub1_hsb" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "m2000901", + "name": "swt_ln2000901_sw", + "phases": "C", + "status": "CLOSED", + "to": "d2000901_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "m2000401", + "name": "swt_ln2000401_sw", + "phases": "A", + "status": "CLOSED", + "to": "d2000401_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5472350-1_int", + "name": "swt_ln5472335_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1089120" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6077791-3_int", + "name": "swt_ln0077781_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1047522" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d6047588-1_int", + "name": "swt_ln247171_sw", + "phases": "B", + "status": "CLOSED", + "to": "f739844" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "m2001301", + "name": "swt_ln2001301_sw", + "phases": "A", + "status": "CLOSED", + "to": "d2001301_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "m2001001", + "name": "swt_ln2001001_sw", + "phases": "B", + "status": "CLOSED", + "to": "d2001001_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d5865224-1_int", + "name": "swt_ln247160_sw", + "phases": "B", + "status": "CLOSED", + "to": "f739841" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5746546-1_int", + "name": "swt_a333_48332_sw", + "phases": "ABC", + "status": "OPEN", + "to": "e182723" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186072", + "name": "swt_ln0048634_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d6048634-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2973156", + "name": "swt_ln0017295_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d6017295-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6170302-1_int", + "name": "swt_ln0170302_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "l2879773" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186der-2", + "name": "swt_ln1186mt2_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1186-wt2" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5835167-6_int", + "name": "swt_ln4625876_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q14414" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5686080-1_int", + "name": "swt_ln293471_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "f739845" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der-1", + "name": "swt_ln2001mt1_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m2001-mt1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d5655682-1_int", + "name": "swt_l5491_48332_sw", + "phases": "B", + "status": "CLOSED", + "to": "e182725" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_1089-dies1", + "power_rating": "750.00", + "primary_voltage": "12470.00", + "reactance": "0.057500", + "resistance": "0.00400", + "secondary_voltage": "480.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_1089-dies1", + "continuous_rating_A": "38.19", + "continuous_rating_B": "38.19", + "continuous_rating_C": "38.19", + "emergency_rating_A": "52.08", + "emergency_rating_B": "52.08", + "emergency_rating_C": "52.08", + "from": "m1089220", + "name": "xf_1089-dies1", + "phases": "ABCN", + "to": "m1089der480-2" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_1089-lng1", + "power_rating": "2000.00", + "primary_voltage": "12470.00", + "reactance": "0.057500", + "resistance": "0.00400", + "secondary_voltage": "480.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_1089-lng1", + "continuous_rating_A": "101.86", + "continuous_rating_B": "101.86", + "continuous_rating_C": "101.86", + "emergency_rating_A": "138.90", + "emergency_rating_B": "138.90", + "emergency_rating_C": "138.90", + "from": "m1089186", + "name": "xf_1089-lng1", + "phases": "ABCN", + "to": "m1089der480-1" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_1209-wt123", + "power_rating": "250.00", + "primary_voltage": "12470.00", + "reactance": "0.057500", + "resistance": "0.00400", + "secondary_voltage": "480.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_1209-wt123", + "continuous_rating_A": "12.73", + "continuous_rating_B": "12.73", + "continuous_rating_C": "12.73", + "emergency_rating_A": "17.36", + "emergency_rating_B": "17.36", + "emergency_rating_C": "17.36", + "from": "m1186000", + "name": "xf_1209-wt123", + "phases": "ABCN", + "to": "m1186der480-1" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_hvmv69_11sub3", + "power_rating": "20000.00", + "primary_voltage": "69000.00", + "reactance": "0.079400", + "resistance": "0.013400", + "secondary_voltage": "12470.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_hvmv69_11sub3", + "continuous_rating_A": "184.08", + "continuous_rating_B": "184.08", + "continuous_rating_C": "184.08", + "emergency_rating_A": "251.02", + "emergency_rating_B": "251.02", + "emergency_rating_C": "251.02", + "from": "hvmv69sub3_hsb", + "name": "xf_hvmv69_11sub3", + "phases": "ABCN", + "to": "regxfmr_hvmv11sub3_lsb" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_hvmv69_11sub2", + "power_rating": "20000.00", + "primary_voltage": "69000.00", + "reactance": "0.079400", + "resistance": "0.013400", + "secondary_voltage": "12470.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_hvmv69_11sub2", + "continuous_rating_A": "184.08", + "continuous_rating_B": "184.08", + "continuous_rating_C": "184.08", + "emergency_rating_A": "251.02", + "emergency_rating_B": "251.02", + "emergency_rating_C": "251.02", + "from": "hvmv69sub2_hsb", + "name": "xf_hvmv69_11sub2", + "phases": "ABCN", + "to": "regxfmr_hvmv11sub2_lsb" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "DELTA_GWYE", + "name": "xcon_hvmv115_69sub", + "power_rating": "75000.00", + "primary_voltage": "115000.00", + "reactance": "0.070500", + "resistance": "0.013400", + "secondary_voltage": "69000.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_hvmv115_69sub", + "continuous_rating_A": "414.19", + "continuous_rating_B": "414.19", + "continuous_rating_C": "414.19", + "emergency_rating_A": "564.80", + "emergency_rating_B": "564.80", + "emergency_rating_C": "564.80", + "from": "hvmv115_hsb2", + "name": "xf_hvmv115_69sub", + "phases": "ABCN", + "to": "regxfmr_hvmv69sub1_lsb1" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_hvmv69_11sub1", + "power_rating": "20000.00", + "primary_voltage": "69000.00", + "reactance": "0.079400", + "resistance": "0.013400", + "secondary_voltage": "12470.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_hvmv69_11sub1", + "continuous_rating_A": "184.08", + "continuous_rating_B": "184.08", + "continuous_rating_C": "184.08", + "emergency_rating_A": "251.02", + "emergency_rating_B": "251.02", + "emergency_rating_C": "251.02", + "from": "hvmv69sub1_hsb", + "name": "xf_hvmv69_11sub1", + "phases": "ABCN", + "to": "regxfmr_hvmv11sub1_lsb" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_2001-mt123", + "power_rating": "750.00", + "primary_voltage": "12470.00", + "reactance": "0.057500", + "resistance": "0.00400", + "secondary_voltage": "480.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_2001-mt123", + "continuous_rating_A": "38.19", + "continuous_rating_B": "38.19", + "continuous_rating_C": "38.19", + "emergency_rating_A": "52.08", + "emergency_rating_B": "52.08", + "emergency_rating_C": "52.08", + "from": "m2001500", + "name": "xf_2001-mt123", + "phases": "ABCN", + "to": "m2001der480-1" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_1069-mt1", + "power_rating": "300.00", + "primary_voltage": "12470.00", + "reactance": "0.057500", + "resistance": "0.00400", + "secondary_voltage": "480.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_1069-mt1", + "continuous_rating_A": "15.28", + "continuous_rating_B": "15.28", + "continuous_rating_C": "15.28", + "emergency_rating_A": "20.83", + "emergency_rating_B": "20.83", + "emergency_rating_C": "20.83", + "from": "m1069215", + "name": "xf_1069-mt1", + "phases": "ABCN", + "to": "m1069der480-1" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_1142-lng1", + "power_rating": "150.00", + "primary_voltage": "12470.00", + "reactance": "0.057500", + "resistance": "0.00400", + "secondary_voltage": "480.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_1142-lng1", + "continuous_rating_A": "7.64", + "continuous_rating_B": "7.64", + "continuous_rating_C": "7.64", + "emergency_rating_A": "10.42", + "emergency_rating_B": "10.42", + "emergency_rating_C": "10.42", + "from": "m1142813", + "name": "xf_1142-lng1", + "phases": "ABCN", + "to": "m1142der480-1" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_2001-ess12", + "power_rating": "750.00", + "primary_voltage": "12470.00", + "reactance": "0.057500", + "resistance": "0.00400", + "secondary_voltage": "480.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_2001-ess12", + "continuous_rating_A": "38.19", + "continuous_rating_B": "38.19", + "continuous_rating_C": "38.19", + "emergency_rating_A": "52.08", + "emergency_rating_B": "52.08", + "emergency_rating_C": "52.08", + "from": "m2001500", + "name": "xf_2001-ess12", + "phases": "ABCN", + "to": "m2001der480-2" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_1209-dies1", + "power_rating": "750.00", + "primary_voltage": "12470.00", + "reactance": "0.057500", + "resistance": "0.00400", + "secondary_voltage": "480.00" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_1209-dies1", + "continuous_rating_A": "38.19", + "continuous_rating_B": "38.19", + "continuous_rating_C": "38.19", + "emergency_rating_A": "52.08", + "emergency_rating_B": "52.08", + "emergency_rating_C": "52.08", + "from": "e192258", + "name": "xf_1209-dies1", + "phases": "ABCN", + "to": "m1209der480-1" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3235945", + "name": "xf_t5356796c", + "phases": "CS", + "to": "x3235945c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2955077", + "name": "xf_t5260543c", + "phases": "CS", + "to": "x2955077c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2916627", + "name": "xf_t5138563a", + "phases": "AS", + "to": "x2916627a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2936211", + "name": "xf_t5260567c", + "phases": "CS", + "to": "x2936211c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3122819", + "name": "xf_t5302860c", + "phases": "CS", + "to": "x3122819c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2691936", + "name": "xf_t5356009a", + "phases": "AS", + "to": "x2691936a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2673305", + "name": "xf_t5138236b", + "phases": "BS", + "to": "x2673305b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l3217056", + "name": "xf_t5218474a", + "phases": "AS", + "to": "x3217056a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2748152", + "name": "xf_t5321849b", + "phases": "BS", + "to": "x2748152b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2936276", + "name": "xf_t5260458b", + "phases": "BS", + "to": "x2936276b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2879773", + "name": "xf_t5207290a", + "phases": "AS", + "to": "x2879773a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3119793", + "name": "xf_t226024307b", + "phases": "BS", + "to": "x3119793b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3172805", + "name": "xf_t226964880a", + "phases": "AS", + "to": "x3172805a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2729401", + "name": "xf_t5355597b", + "phases": "BS", + "to": "x2729401b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2000711", + "name": "xf_t2000711b", + "phases": "BS", + "to": "x2000711b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2691946", + "name": "xf_t28147974b", + "phases": "BS", + "to": "x2691946b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2860484", + "name": "xf_t5323255b", + "phases": "BS", + "to": "x2860484b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3234185", + "name": "xf_t5323388b", + "phases": "BS", + "to": "x3234185b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3108449", + "name": "xf_t228622562a", + "phases": "AS", + "to": "x3108449a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2748143", + "name": "xf_t28121368a", + "phases": "AS", + "to": "x2748143a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3048889", + "name": "xf_t28128464c", + "phases": "CS", + "to": "x3048889c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3235246", + "name": "xf_t5323279b", + "phases": "BS", + "to": "x3235246b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3104135", + "name": "xf_t21399508a", + "phases": "AS", + "to": "x3104135a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3197653", + "name": "xf_t5339004b", + "phases": "BS", + "to": "x3197653b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2000408", + "name": "xf_t2000408a", + "phases": "AS", + "to": "x2000408a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3197642", + "name": "xf_t5391979c", + "phases": "CS", + "to": "x3197642c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3216349", + "name": "xf_t5337708b", + "phases": "BS", + "to": "x3216349b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2804247", + "name": "xf_t5391737b", + "phases": "BS", + "to": "x2804247b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2673310", + "name": "xf_t5138562a", + "phases": "AS", + "to": "x2673310a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2860487", + "name": "xf_t5138586c", + "phases": "CS", + "to": "x2860487c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2955078", + "name": "xf_t5260542a", + "phases": "AS", + "to": "x2955078a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3197618", + "name": "xf_t5356008a", + "phases": "AS", + "to": "x3197618a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3178980", + "name": "xf_t5302510c", + "phases": "CS", + "to": "x3178980c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2955006", + "name": "xf_t5356797c", + "phases": "CS", + "to": "x2955006c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2748133", + "name": "xf_t5302861c", + "phases": "CS", + "to": "x2748133c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2973158", + "name": "xf_t5138259c", + "phases": "CS", + "to": "x2973158c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3082993", + "name": "xf_t226159329a", + "phases": "AS", + "to": "x3082993a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3086078", + "name": "xf_t5218473a", + "phases": "AS", + "to": "x3086078a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3066804", + "name": "xf_t21380599a", + "phases": "AS", + "to": "x3066804a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l3086079", + "name": "xf_t5260457b", + "phases": "BS", + "to": "x3086079b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2786274", + "name": "xf_t5207291c", + "phases": "CS", + "to": "x2786274c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3235243", + "name": "xf_t5275008c", + "phases": "CS", + "to": "x3235243c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3176656", + "name": "xf_t226193170a", + "phases": "AS", + "to": "x3176656a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3178969", + "name": "xf_t5355596b", + "phases": "BS", + "to": "x3178969b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2000712", + "name": "xf_t2000712b", + "phases": "BS", + "to": "x2000712b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2879068", + "name": "xf_t5323254b", + "phases": "BS", + "to": "x2879068b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75B", + "from": "l2690187", + "name": "xf_t226308716b", + "phases": "BS", + "to": "x2690187b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2690941", + "name": "xf_t5323387b", + "phases": "BS", + "to": "x2690941b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2860477", + "name": "xf_t28121587a", + "phases": "AS", + "to": "x2860477a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2973169", + "name": "xf_t21397304a", + "phases": "AS", + "to": "x2973169a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3066826", + "name": "xf_t5339003b", + "phases": "BS", + "to": "x3066826b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l0247171", + "name": "xf_t5247171b", + "phases": "BS", + "to": "x0247171b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2000409", + "name": "xf_t2000409a", + "phases": "AS", + "to": "x2000409a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2860483", + "name": "xf_t21396699b", + "phases": "BS", + "to": "x2860483b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3160104", + "name": "xf_t5337707b", + "phases": "BS", + "to": "x3160104b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l3104115", + "name": "xf_t5391738b", + "phases": "BS", + "to": "x3104115b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3010565", + "name": "xf_t5138343c", + "phases": "CS", + "to": "x3010565c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2692661", + "name": "xf_t5260650a", + "phases": "AS", + "to": "x2692661a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3122824", + "name": "xf_t5302402a", + "phases": "AS", + "to": "x3122824a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3104121", + "name": "xf_t5138561a", + "phases": "AS", + "to": "x3104121a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3197637", + "name": "xf_t5138585c", + "phases": "CS", + "to": "x3197637c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2954339", + "name": "xf_t5391739b", + "phases": "BS", + "to": "x2954339b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2692600", + "name": "xf_t5356798c", + "phases": "CS", + "to": "x2692600c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3141389", + "name": "xf_t5356007a", + "phases": "AS", + "to": "x3141389a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2991911", + "name": "xf_t5138258c", + "phases": "CS", + "to": "x2991911c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2841623", + "name": "xf_t5294844a", + "phases": "AS", + "to": "x2841623a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3181545", + "name": "xf_t226193702c", + "phases": "CS", + "to": "x3181545c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2936270", + "name": "xf_t5218472a", + "phases": "AS", + "to": "x2936270a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3103822", + "name": "xf_t228665517c", + "phases": "CS", + "to": "x3103822c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2955005", + "name": "xf_t5260589b", + "phases": "BS", + "to": "x2955005b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2860481", + "name": "xf_t5338908c", + "phases": "CS", + "to": "x2860481c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3160123", + "name": "xf_t21015706a", + "phases": "AS", + "to": "x3160123a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3253570", + "name": "xf_t228314460c", + "phases": "CS", + "to": "x3253570c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3179682", + "name": "xf_t5207292c", + "phases": "CS", + "to": "x3179682c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2916606", + "name": "xf_t5275007c", + "phases": "CS", + "to": "x2916606c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2860479", + "name": "xf_t5355595b", + "phases": "BS", + "to": "x2860479b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2000406", + "name": "xf_t2000406a", + "phases": "AS", + "to": "x2000406a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3254203", + "name": "xf_t5323233b", + "phases": "BS", + "to": "x3254203b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2710530", + "name": "xf_t21381118b", + "phases": "BS", + "to": "x2710530b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2991943", + "name": "xf_t21399619c", + "phases": "CS", + "to": "x2991943c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2879054", + "name": "xf_t5247061a", + "phases": "AS", + "to": "x2879054a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2916619", + "name": "xf_t5339006b", + "phases": "BS", + "to": "x2916619b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2897784", + "name": "xf_t5247170b", + "phases": "BS", + "to": "x2897784b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2745806", + "name": "xf_t226194262c", + "phases": "CS", + "to": "x2745806c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3104113", + "name": "xf_t5138560a", + "phases": "AS", + "to": "x3104113a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2897775", + "name": "xf_t5138342c", + "phases": "CS", + "to": "x2897775c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2804259", + "name": "xf_t28127372a", + "phases": "AS", + "to": "x2804259a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3010563", + "name": "xf_t5294845a", + "phases": "AS", + "to": "x3010563a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3178976", + "name": "xf_t21397721a", + "phases": "AS", + "to": "x3178976a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2729430", + "name": "xf_t21248901b", + "phases": "BS", + "to": "x2729430b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3448661", + "name": "xf_t2223878647b", + "phases": "BS", + "to": "x3448661b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2955074", + "name": "xf_t5260479a", + "phases": "AS", + "to": "x2955074a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2805036", + "name": "xf_t5275248b", + "phases": "BS", + "to": "x2805036b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2000710", + "name": "xf_t2000710b", + "phases": "BS", + "to": "x2000710b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2914323", + "name": "xf_t5355376b", + "phases": "BS", + "to": "x2914323b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2000407", + "name": "xf_t2000407a", + "phases": "AS", + "to": "x2000407a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3065750", + "name": "xf_t5323389b", + "phases": "BS", + "to": "x3065750b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2991906", + "name": "xf_t5247060a", + "phases": "AS", + "to": "x2991906a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2785535", + "name": "xf_t5339005b", + "phases": "BS", + "to": "x2785535b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3254211", + "name": "xf_t5247084b", + "phases": "BS", + "to": "x3254211b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3141395", + "name": "xf_t28149184c", + "phases": "CS", + "to": "x3141395c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2991919", + "name": "xf_t5302400a", + "phases": "AS", + "to": "x2991919a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2879077", + "name": "xf_t5337709b", + "phases": "BS", + "to": "x2879077b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2879752", + "name": "xf_t5330122b", + "phases": "BS", + "to": "x2879752b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3122826", + "name": "xf_t5302731a", + "phases": "AS", + "to": "x3122826a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2688693", + "name": "xf_t225918936c", + "phases": "CS", + "to": "x2688693c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2685809", + "name": "xf_t225533162a", + "phases": "AS", + "to": "x2685809a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l2814529", + "name": "xf_t28120126a", + "phases": "AS", + "to": "x2814529a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3101789", + "name": "xf_t5294842a", + "phases": "AS", + "to": "x3101789a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2674051", + "name": "xf_t21389831a", + "phases": "AS", + "to": "x2674051a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l2814529", + "name": "xf_t28120126c", + "phases": "CS", + "to": "x2814529c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l2814529", + "name": "xf_t28120126b", + "phases": "BS", + "to": "x2814529b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3178975", + "name": "xf_t5321845b", + "phases": "BS", + "to": "x3178975b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2917333", + "name": "xf_t5260632a", + "phases": "AS", + "to": "x2917333a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75B", + "from": "l2708744", + "name": "xf_t226308710b", + "phases": "BS", + "to": "x2708744b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3216123", + "name": "xf_t5338926a", + "phases": "AS", + "to": "x3216123a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3085403", + "name": "xf_t5293668a", + "phases": "AS", + "to": "x3085403a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2689691", + "name": "xf_t5355375a", + "phases": "AS", + "to": "x2689691a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3649300", + "name": "xf_t2224237546a", + "phases": "AS", + "to": "x3649300a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2729429", + "name": "xf_t5293644a", + "phases": "AS", + "to": "x2729429a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3081380", + "name": "xf_t225700953a", + "phases": "AS", + "to": "x3081380a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3197660", + "name": "xf_t5323275b", + "phases": "BS", + "to": "x3197660b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2000404", + "name": "xf_t2000404a", + "phases": "AS", + "to": "x2000404a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2766715", + "name": "xf_t5355593b", + "phases": "BS", + "to": "x2766715b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3160098", + "name": "xf_t5339048a", + "phases": "AS", + "to": "x3160098a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2710546", + "name": "xf_t5337704b", + "phases": "BS", + "to": "x2710546b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2990826", + "name": "xf_t5337619a", + "phases": "AS", + "to": "x2990826a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3082992", + "name": "xf_t5337728a", + "phases": "AS", + "to": "x3082992a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2973164", + "name": "xf_t5302514a", + "phases": "AS", + "to": "x2973164a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2991917", + "name": "xf_t5391757b", + "phases": "BS", + "to": "x2991917b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2691953", + "name": "xf_t5302732a", + "phases": "AS", + "to": "x2691953a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2990826", + "name": "xf_t5337619c", + "phases": "CS", + "to": "x2990826c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2990826", + "name": "xf_t5337619b", + "phases": "BS", + "to": "x2990826b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2786266", + "name": "xf_t5260631a", + "phases": "AS", + "to": "x2786266a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2785522", + "name": "xf_t28127681b", + "phases": "BS", + "to": "x2785522b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3178982", + "name": "xf_t5294843a", + "phases": "AS", + "to": "x3178982a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2803194", + "name": "xf_t227917130c", + "phases": "CS", + "to": "x2803194c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2973153", + "name": "xf_t5338925a", + "phases": "AS", + "to": "x2973153a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l3011293", + "name": "xf_t28129466b", + "phases": "BS", + "to": "x3011293b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l3011293", + "name": "xf_t28129466c", + "phases": "CS", + "to": "x3011293c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l3011293", + "name": "xf_t28129466a", + "phases": "AS", + "to": "x3011293a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3104136", + "name": "xf_t5338949b", + "phases": "BS", + "to": "x3104136b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2860500", + "name": "xf_t5323274b", + "phases": "BS", + "to": "x2860500b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2841633", + "name": "xf_t5293645a", + "phases": "AS", + "to": "x2841633a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3254206", + "name": "xf_t5355592b", + "phases": "BS", + "to": "x3254206b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3104157", + "name": "xf_t5293427c", + "phases": "CS", + "to": "x3104157c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2000405", + "name": "xf_t2000405a", + "phases": "AS", + "to": "x2000405a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2691948", + "name": "xf_t5337703b", + "phases": "BS", + "to": "x2691948b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2973148", + "name": "xf_t5339047a", + "phases": "AS", + "to": "x2973148a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2841631", + "name": "xf_t5391976c", + "phases": "CS", + "to": "x2841631c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3008237", + "name": "xf_t226193838c", + "phases": "CS", + "to": "x3008237c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2841636", + "name": "xf_t5391758b", + "phases": "BS", + "to": "x2841636b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3141403", + "name": "xf_t21399707a", + "phases": "CS", + "to": "x3141403a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2860491", + "name": "xf_t5302733b", + "phases": "BS", + "to": "x2860491b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2748131", + "name": "xf_t5323250b", + "phases": "BS", + "to": "x2748131b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2897766", + "name": "xf_t28128007c", + "phases": "CS", + "to": "x2897766c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2860491", + "name": "xf_t5302733a", + "phases": "AS", + "to": "x2860491a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2973833", + "name": "xf_t5260630b", + "phases": "BS", + "to": "x2973833b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3048963", + "name": "xf_t5260521b", + "phases": "BS", + "to": "x3048963b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3085399", + "name": "xf_t5302862c", + "phases": "CS", + "to": "x3085399c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3160100", + "name": "xf_t5321847b", + "phases": "BS", + "to": "x3160100b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2804249", + "name": "xf_t21389962c", + "phases": "CS", + "to": "x2804249c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2710511", + "name": "xf_t21357515a", + "phases": "AS", + "to": "x2710511a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3085395", + "name": "xf_t21391094a", + "phases": "AS", + "to": "x3085395a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2764411", + "name": "xf_t226010605c", + "phases": "CS", + "to": "x2764411c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3104796", + "name": "xf_t5260569c", + "phases": "CS", + "to": "x3104796c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2673309", + "name": "xf_t5138472c", + "phases": "CS", + "to": "x2673309c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2879064", + "name": "xf_t5138581a", + "phases": "AS", + "to": "x2879064a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2000402", + "name": "xf_t2000402a", + "phases": "AS", + "to": "x2000402a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2935566", + "name": "xf_t5441854c", + "phases": "CS", + "to": "x2935566c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2973152", + "name": "xf_t5323253b", + "phases": "BS", + "to": "x2973152b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2822858", + "name": "xf_t5355591b", + "phases": "BS", + "to": "x2822858b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2897800", + "name": "xf_t5323277b", + "phases": "BS", + "to": "x2897800b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2785536", + "name": "xf_t5339002b", + "phases": "BS", + "to": "x2785536b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3047073", + "name": "xf_t227917133c", + "phases": "CS", + "to": "x3047073c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2897801", + "name": "xf_t21470405a", + "phases": "AS", + "to": "x2897801a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2766750", + "name": "xf_t5293424c", + "phases": "CS", + "to": "x2766750c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2710532", + "name": "xf_t5293666c", + "phases": "CS", + "to": "x2710532c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3254214", + "name": "xf_t5337706b", + "phases": "BS", + "to": "x3254214b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3216350", + "name": "xf_t5391977a", + "phases": "AS", + "to": "x3216350a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5B", + "from": "l3254915", + "name": "xf_t5260520b", + "phases": "BS", + "to": "x3254915b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l3142078", + "name": "xf_t5330121b", + "phases": "BS", + "to": "x3142078b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2766719", + "name": "xf_t21357865a", + "phases": "AS", + "to": "x2766719a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2860489", + "name": "xf_t5302405a", + "phases": "AS", + "to": "x2860489a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2878848", + "name": "xf_t22112168887c", + "phases": "CS", + "to": "x2878848c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l3217057", + "name": "xf_t5218475a", + "phases": "AS", + "to": "x3217057a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3085390", + "name": "xf_t5321848b", + "phases": "BS", + "to": "x3085390b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2692655", + "name": "xf_t21389307c", + "phases": "CS", + "to": "x2692655c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2842329", + "name": "xf_t5260568c", + "phases": "CS", + "to": "x2842329c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2726974", + "name": "xf_t226193395b", + "phases": "BS", + "to": "x2726974b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2972930", + "name": "xf_t5338927a", + "phases": "AS", + "to": "x2972930a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2879066", + "name": "xf_t5323252b", + "phases": "BS", + "to": "x2879066b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2000403", + "name": "xf_t2000403a", + "phases": "AS", + "to": "x2000403a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2860504", + "name": "xf_t5293667a", + "phases": "AS", + "to": "x2860504a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2763153", + "name": "xf_t5293425a", + "phases": "AS", + "to": "x2763153a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l3178988", + "name": "xf_t5339001b", + "phases": "BS", + "to": "x3178988b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3226771", + "name": "xf_t227100746a", + "phases": "AS", + "to": "x3226771a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2916234", + "name": "xf_t228549643a", + "phases": "AS", + "to": "x2916234a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3048211", + "name": "xf_t21396015a", + "phases": "AS", + "to": "x3048211a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2785547", + "name": "xf_t5337705b", + "phases": "BS", + "to": "x2785547b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2916602", + "name": "xf_t5339049a", + "phases": "AS", + "to": "x2916602a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2860478", + "name": "xf_t5355590b", + "phases": "BS", + "to": "x2860478b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2728247", + "name": "xf_t5337729b", + "phases": "BS", + "to": "x2728247b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3029495", + "name": "xf_t5391736b", + "phases": "BS", + "to": "x3029495b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3141402", + "name": "xf_t5391978c", + "phases": "CS", + "to": "x3141402c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2728247", + "name": "xf_t5337729c", + "phases": "CS", + "to": "x2728247c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2728247", + "name": "xf_t5337729a", + "phases": "AS", + "to": "x2728247a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2841634", + "name": "xf_t5392038b", + "phases": "BS", + "to": "x2841634b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2711226", + "name": "xf_t5260527b", + "phases": "BS", + "to": "x2711226b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2989565", + "name": "xf_t21389237a", + "phases": "AS", + "to": "x2989565a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75A", + "from": "l2802481", + "name": "xf_t226308730a", + "phases": "AS", + "to": "x2802481a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2917310", + "name": "xf_t5260503b", + "phases": "BS", + "to": "x2917310b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3027124", + "name": "xf_t226195194c", + "phases": "CS", + "to": "x3027124c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3342743", + "name": "xf_t2223703238c", + "phases": "CS", + "to": "x3342743c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2821770", + "name": "xf_t227917119a", + "phases": "AS", + "to": "x2821770a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2000913", + "name": "xf_t2000913c", + "phases": "CS", + "to": "x2000913c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3048205", + "name": "xf_t5274994c", + "phases": "CS", + "to": "x3048205c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3178997", + "name": "xf_t5293422c", + "phases": "CS", + "to": "x3178997c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2001011", + "name": "xf_t2001011b", + "phases": "BS", + "to": "x2001011b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l3207907", + "name": "xf_t5293664a", + "phases": "AS", + "to": "x3207907a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75B", + "from": "l3207907", + "name": "xf_t5293664b", + "phases": "BS", + "to": "x3207907b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l3207907", + "name": "xf_t5293664c", + "phases": "CS", + "to": "x3207907c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3150961", + "name": "xf_t223400157c", + "phases": "CS", + "to": "x3150961c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct250C", + "from": "l3234149", + "name": "xf_t227944551c", + "phases": "CS", + "to": "x3234149c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3216347", + "name": "xf_t5138413c", + "phases": "CS", + "to": "x3216347c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3010556", + "name": "xf_t5138655a", + "phases": "AS", + "to": "x3010556a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct250A", + "from": "l3234149", + "name": "xf_t227944551a", + "phases": "AS", + "to": "x3234149a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct250B", + "from": "l3234149", + "name": "xf_t227944551b", + "phases": "BS", + "to": "x3234149b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2748839", + "name": "xf_t5260502b", + "phases": "BS", + "to": "x2748839b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3179699", + "name": "xf_t21393454b", + "phases": "BS", + "to": "x3179699b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l3214549", + "name": "xf_t226308731a", + "phases": "AS", + "to": "x3214549a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2000914", + "name": "xf_t2000914c", + "phases": "CS", + "to": "x2000914c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3254237", + "name": "xf_t21482181a", + "phases": "AS", + "to": "x3254237a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2983432", + "name": "xf_t225534325a", + "phases": "AS", + "to": "x2983432a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3139103", + "name": "xf_t225767272a", + "phases": "AS", + "to": "x3139103a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3122849", + "name": "xf_t5293423b", + "phases": "BS", + "to": "x3122849b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75C", + "from": "l3645811", + "name": "xf_t2224230689c", + "phases": "CS", + "to": "x3645811c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2001012", + "name": "xf_t2001012b", + "phases": "BS", + "to": "x2001012b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2973166", + "name": "xf_t5293665c", + "phases": "CS", + "to": "x2973166c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3104155", + "name": "xf_t21474587c", + "phases": "CS", + "to": "x3104155c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3159448", + "name": "xf_t5337684a", + "phases": "AS", + "to": "x3159448a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2785523", + "name": "xf_t5138412c", + "phases": "CS", + "to": "x2785523c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3082983", + "name": "xf_t226193899b", + "phases": "BS", + "to": "x3082983b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2841628", + "name": "xf_t28120786a", + "phases": "AS", + "to": "x2841628a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2798067", + "name": "xf_t225533237b", + "phases": "BS", + "to": "x2798067b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3142098", + "name": "xf_t5260501b", + "phases": "BS", + "to": "x3142098b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2897769", + "name": "xf_t5337660c", + "phases": "CS", + "to": "x2897769c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2842383", + "name": "xf_t5260634a", + "phases": "AS", + "to": "x2842383a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5B", + "from": "l2689678", + "name": "xf_t226192762b", + "phases": "BS", + "to": "x2689678b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2000911", + "name": "xf_t2000911c", + "phases": "CS", + "to": "x2000911c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2804250", + "name": "xf_t5274992c", + "phases": "CS", + "to": "x2804250c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3649302", + "name": "xf_t2224237653a", + "phases": "AS", + "to": "x3649302a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2710520", + "name": "xf_t5138679a", + "phases": "AS", + "to": "x2710520a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2711224", + "name": "xf_t5260500b", + "phases": "BS", + "to": "x2711224b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3197654", + "name": "xf_t21382992a", + "phases": "AS", + "to": "x3197654a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3235268", + "name": "xf_t28099529c", + "phases": "CS", + "to": "x3235268c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3214071", + "name": "xf_t226194419c", + "phases": "CS", + "to": "x3214071c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2935559", + "name": "xf_t21400185a", + "phases": "AS", + "to": "x2935559a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2000912", + "name": "xf_t2000912c", + "phases": "CS", + "to": "x2000912c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2897771", + "name": "xf_t21148701b", + "phases": "BS", + "to": "x2897771b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3047058", + "name": "xf_t227902981a", + "phases": "AS", + "to": "x3047058a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2973151", + "name": "xf_t5138569a", + "phases": "AS", + "to": "x2973151a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l2673331", + "name": "xf_t5338990b", + "phases": "BS", + "to": "x2673331b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2001010", + "name": "xf_t2001010b", + "phases": "BS", + "to": "x2001010b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3216368", + "name": "xf_t5293663c", + "phases": "CS", + "to": "x3216368c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2767414", + "name": "xf_t5351019c", + "phases": "CS", + "to": "x2767414c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2766718", + "name": "xf_t5138652c", + "phases": "CS", + "to": "x2766718c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2748135", + "name": "xf_t28150172a", + "phases": "AS", + "to": "x2748135a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2748129", + "name": "xf_t5138567a", + "phases": "AS", + "to": "x2748129a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2822868", + "name": "xf_t21397544a", + "phases": "AS", + "to": "x2822868a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l2766499", + "name": "xf_t22112168880c", + "phases": "CS", + "to": "x2766499c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2786204", + "name": "xf_t5223662a", + "phases": "AS", + "to": "x2786204a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3066830", + "name": "xf_t21469960b", + "phases": "BS", + "to": "x3066830b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2000715", + "name": "xf_t2000715b", + "phases": "BS", + "to": "x2000715b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5B", + "from": "l3197624", + "name": "xf_t5323235b", + "phases": "BS", + "to": "x3197624b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2916610", + "name": "xf_t5293660b", + "phases": "BS", + "to": "x2916610b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3122835", + "name": "xf_t5339008b", + "phases": "BS", + "to": "x3122835b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3104132", + "name": "xf_t5302469a", + "phases": "AS", + "to": "x3104132a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3197628", + "name": "xf_t5138651c", + "phases": "CS", + "to": "x3197628c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2954338", + "name": "xf_t5355618b", + "phases": "BS", + "to": "x2954338b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2785519", + "name": "xf_t5138566a", + "phases": "AS", + "to": "x2785519a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2876798", + "name": "xf_t226193745b", + "phases": "BS", + "to": "x2876798b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3030203", + "name": "xf_t5260639c", + "phases": "CS", + "to": "x3030203c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2936216", + "name": "xf_t5223663c", + "phases": "CS", + "to": "x2936216c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3048228", + "name": "xf_t5274997c", + "phases": "CS", + "to": "x3048228c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2000910", + "name": "xf_t2000910c", + "phases": "CS", + "to": "x2000910c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2860480", + "name": "xf_t5323234b", + "phases": "BS", + "to": "x2860480b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3251854", + "name": "xf_t226881700a", + "phases": "AS", + "to": "x3251854a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2861219", + "name": "xf_t21389761b", + "phases": "BS", + "to": "x2861219b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2916617", + "name": "xf_t5339007b", + "phases": "BS", + "to": "x2916617b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3141393", + "name": "xf_t5442373c", + "phases": "CS", + "to": "x3141393c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3645812", + "name": "xf_t2224230754c", + "phases": "CS", + "to": "x3645812c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2710510", + "name": "xf_t5138650c", + "phases": "CS", + "to": "x2710510c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3102793", + "name": "xf_t227734175b", + "phases": "BS", + "to": "x3102793b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2973146", + "name": "xf_t28118903b", + "phases": "BS", + "to": "x2973146b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2991915", + "name": "xf_t5392036b", + "phases": "BS", + "to": "x2991915b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3104122", + "name": "xf_t5138565a", + "phases": "AS", + "to": "x3104122a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3160871", + "name": "xf_t5260638c", + "phases": "CS", + "to": "x3160871c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3217053", + "name": "xf_t5260529c", + "phases": "CS", + "to": "x3217053c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3270814", + "name": "xf_t226191850a", + "phases": "AS", + "to": "x3270814a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2861218", + "name": "xf_t5260505c", + "phases": "CS", + "to": "x2861218c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3197646", + "name": "xf_t5355944b", + "phases": "BS", + "to": "x3197646b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3160863", + "name": "xf_t5223660a", + "phases": "AS", + "to": "x3160863a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3082988", + "name": "xf_t226195153b", + "phases": "BS", + "to": "x3082988b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2000713", + "name": "xf_t2000713b", + "phases": "BS", + "to": "x2000713b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3235946", + "name": "xf_t5356800a", + "phases": "AS", + "to": "x3235946a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2673320", + "name": "xf_t5392037b", + "phases": "BS", + "to": "x2673320b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2822870", + "name": "xf_t21399171c", + "phases": "CS", + "to": "x2822870c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3728038", + "name": "xf_t2224387019a", + "phases": "AS", + "to": "x3728038a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3195318", + "name": "xf_t226194280b", + "phases": "BS", + "to": "x3195318b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3048196", + "name": "xf_t5138237b", + "phases": "BS", + "to": "x3048196b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2804283", + "name": "xf_t5138564a", + "phases": "AS", + "to": "x2804283a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2916609", + "name": "xf_t5138346c", + "phases": "CS", + "to": "x2916609c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3217052", + "name": "xf_t5260528c", + "phases": "CS", + "to": "x3217052c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3048199", + "name": "xf_t5323237b", + "phases": "BS", + "to": "x3048199b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2785529", + "name": "xf_t5355943c", + "phases": "CS", + "to": "x2785529c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3160862", + "name": "xf_t21386143c", + "phases": "CS", + "to": "x3160862c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2842384", + "name": "xf_t5260637c", + "phases": "CS", + "to": "x2842384c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3215385", + "name": "xf_t21384099c", + "phases": "CS", + "to": "x3215385c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l3215385", + "name": "xf_t21384099b", + "phases": "BS", + "to": "x3215385b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2730108", + "name": "xf_t5223661b", + "phases": "BS", + "to": "x2730108b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3215385", + "name": "xf_t21384099a", + "phases": "AS", + "to": "x3215385a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2000714", + "name": "xf_t2000714b", + "phases": "BS", + "to": "x2000714b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2822860", + "name": "xf_t5323236b", + "phases": "BS", + "to": "x2822860b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3104124", + "name": "xf_t5356065b", + "phases": "BS", + "to": "x3104124b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3011229", + "name": "xf_t5356801a", + "phases": "AS", + "to": "x3011229a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2897778", + "name": "xf_t5302468a", + "phases": "AS", + "to": "x2897778a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2851933", + "name": "xf_t21393643c", + "phases": "CS", + "to": "x2851933c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3104154", + "name": "xf_t5337642c", + "phases": "CS", + "to": "x3104154c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3029518", + "name": "xf_t5337666b", + "phases": "BS", + "to": "x3029518b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2973165", + "name": "xf_t5355942a", + "phases": "AS", + "to": "x2973165a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2766744", + "name": "xf_t28127319b", + "phases": "BS", + "to": "x2766744b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2820556", + "name": "xf_t226196648a", + "phases": "AS", + "to": "x2820556a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2851933", + "name": "xf_t21393643a", + "phases": "AS", + "to": "x2851933a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2851933", + "name": "xf_t21393643b", + "phases": "BS", + "to": "x2851933b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct100B", + "from": "l2691959", + "name": "xf_t21400253b", + "phases": "BS", + "to": "x2691959b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3197638", + "name": "xf_t21396959a", + "phases": "AS", + "to": "x3197638a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3122823", + "name": "xf_t5302370b", + "phases": "BS", + "to": "x3122823b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2748157", + "name": "xf_t5338973a", + "phases": "AS", + "to": "x2748157a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l2860499", + "name": "xf_t5338997b", + "phases": "BS", + "to": "x2860499b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2001213", + "name": "xf_t2001213c", + "phases": "CS", + "to": "x2001213c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2767342", + "name": "xf_t5356802a", + "phases": "AS", + "to": "x2767342a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2823611", + "name": "xf_t21386877a", + "phases": "AS", + "to": "x2823611a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2935556", + "name": "xf_t5356064b", + "phases": "BS", + "to": "x2935556b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3048890", + "name": "xf_t28128517c", + "phases": "CS", + "to": "x3048890c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2876812", + "name": "xf_t5321880a", + "phases": "AS", + "to": "x2876812a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2804282", + "name": "xf_t5337641c", + "phases": "CS", + "to": "x2804282c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2691949", + "name": "xf_t5337689b", + "phases": "BS", + "to": "x2691949b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2973178", + "name": "xf_t5337665b", + "phases": "BS", + "to": "x2973178b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3728039", + "name": "xf_t2224387053a", + "phases": "AS", + "to": "x3728039a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3010580", + "name": "xf_t21451973b", + "phases": "BS", + "to": "x3010580b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2955047", + "name": "xf_t21469911a", + "phases": "AS", + "to": "x2955047a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2841632", + "name": "xf_t5338972b", + "phases": "BS", + "to": "x2841632b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2673316", + "name": "xf_t28120855a", + "phases": "AS", + "to": "x2673316a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3160103", + "name": "xf_t5356063c", + "phases": "CS", + "to": "x3160103c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2841622", + "name": "xf_t21384215a", + "phases": "AS", + "to": "x2841622a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3214069", + "name": "xf_t226194421c", + "phases": "CS", + "to": "x3214069c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2001214", + "name": "xf_t2001214c", + "phases": "CS", + "to": "x2001214c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2748780", + "name": "xf_t5356803a", + "phases": "AS", + "to": "x2748780a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2970811", + "name": "xf_t5321881a", + "phases": "AS", + "to": "x2970811a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2955055", + "name": "xf_t21249647b", + "phases": "BS", + "to": "x2955055b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "293471", + "name": "xf_t5293471c", + "phases": "CS", + "to": "x_293471c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2935549", + "name": "xf_t5337668b", + "phases": "BS", + "to": "x2935549b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2954352", + "name": "xf_t28127090c", + "phases": "CS", + "to": "x2954352c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3085394", + "name": "xf_t5274988c", + "phases": "CS", + "to": "x3085394c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2785537", + "name": "xf_t5338975a", + "phases": "AS", + "to": "x2785537a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2822873", + "name": "xf_t5338999b", + "phases": "BS", + "to": "x2822873b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2785525", + "name": "xf_t21396606c", + "phases": "CS", + "to": "x2785525c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3122816", + "name": "xf_t5356062b", + "phases": "BS", + "to": "x3122816b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2991901", + "name": "xf_t5354851b", + "phases": "BS", + "to": "x2991901b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2823544", + "name": "xf_t5356804a", + "phases": "AS", + "to": "x2823544a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3122811", + "name": "xf_t5337669a", + "phases": "AS", + "to": "x3122811a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2001211", + "name": "xf_t2001211c", + "phases": "CS", + "to": "x2001211c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2916607", + "name": "xf_t5321882c", + "phases": "CS", + "to": "x2916607c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3254216", + "name": "xf_t21398563a", + "phases": "AS", + "to": "x3254216a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3215340", + "name": "xf_t228057846a", + "phases": "AS", + "to": "x3215340a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2897806", + "name": "xf_t5337643c", + "phases": "CS", + "to": "x2897806c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3216361", + "name": "xf_t21452406b", + "phases": "BS", + "to": "x3216361b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3195315", + "name": "xf_t226193662a", + "phases": "AS", + "to": "x3195315a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2822872", + "name": "xf_t5338950b", + "phases": "BS", + "to": "x2822872b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3312692", + "name": "xf_t2223661373a", + "phases": "AS", + "to": "x3312692a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2916605", + "name": "xf_t5274987c", + "phases": "CS", + "to": "x2916605c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3085410", + "name": "xf_t5339097b", + "phases": "BS", + "to": "x3085410b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2955081", + "name": "xf_t5260508a", + "phases": "AS", + "to": "x2955081a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3254229", + "name": "xf_t5338998b", + "phases": "BS", + "to": "x3254229b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2858163", + "name": "xf_t5391990a", + "phases": "AS", + "to": "x2858163a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3195321", + "name": "xf_t5356805a", + "phases": "AS", + "to": "x3195321a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2001212", + "name": "xf_t2001212c", + "phases": "CS", + "to": "x2001212c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3104830", + "name": "xf_t5328367c", + "phases": "CS", + "to": "x3104830c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3010564", + "name": "xf_t5321883c", + "phases": "CS", + "to": "x3010564c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2767409", + "name": "xf_t21391242b", + "phases": "BS", + "to": "x2767409b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2729408", + "name": "xf_t5355768b", + "phases": "BS", + "to": "x2729408b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3120376", + "name": "xf_t226163467a", + "phases": "AS", + "to": "x3120376a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2879087", + "name": "xf_t21399762a", + "phases": "CS", + "to": "x2879087a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2929261", + "name": "xf_t225533337a", + "phases": "AS", + "to": "x2929261a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2804272", + "name": "xf_t5338993b", + "phases": "BS", + "to": "x2804272b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75C", + "from": "l2879092", + "name": "xf_t21399326c", + "phases": "CS", + "to": "x2879092c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2992556", + "name": "xf_t5346639c", + "phases": "AS", + "to": "x2992556a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2001015", + "name": "xf_t2001015b", + "phases": "BS", + "to": "x2001015b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l2875754", + "name": "xf_t225897943c", + "phases": "CS", + "to": "x2875754c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2785526", + "name": "xf_t5302374b", + "phases": "BS", + "to": "x2785526b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3216988", + "name": "xf_t5260590b", + "phases": "BS", + "to": "x3216988b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2730163", + "name": "xf_t5260481c", + "phases": "CS", + "to": "x2730163c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3048206", + "name": "xf_t5138649a", + "phases": "AS", + "to": "x3048206a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2861157", + "name": "xf_t5251867c", + "phases": "CS", + "to": "x2861157c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2766749", + "name": "xf_t5337661b", + "phases": "BS", + "to": "x2766749b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2726975", + "name": "xf_t226193422b", + "phases": "BS", + "to": "x2726975b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2859391", + "name": "xf_t227989724b", + "phases": "BS", + "to": "x2859391b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3140238", + "name": "xf_t227905262a", + "phases": "AS", + "to": "x3140238a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2685805", + "name": "xf_t225533531a", + "phases": "AS", + "to": "x2685805a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2989432", + "name": "xf_t226163575b", + "phases": "BS", + "to": "x2989432b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3048209", + "name": "xf_t28120195b", + "phases": "BS", + "to": "x3048209b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3197634", + "name": "xf_t5355767b", + "phases": "BS", + "to": "x3197634b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3027116", + "name": "xf_t226192684a", + "phases": "AS", + "to": "x3027116a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2935567", + "name": "xf_t5338992b", + "phases": "BS", + "to": "x2935567b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3233353", + "name": "xf_t21399630a", + "phases": "CS", + "to": "x3233353a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3179646", + "name": "xf_t5328365b", + "phases": "BS", + "to": "x3179646b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2691943", + "name": "xf_t5323400b", + "phases": "BS", + "to": "x2691943b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2823545", + "name": "xf_t5356807a", + "phases": "AS", + "to": "x2823545a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3030199", + "name": "xf_t5260480c", + "phases": "CS", + "to": "x3030199c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2766726", + "name": "xf_t5302373b", + "phases": "BS", + "to": "x2766726b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "293471", + "name": "xf_t5293471b", + "phases": "BS", + "to": "x_293471b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "293471", + "name": "xf_t5293471a", + "phases": "AS", + "to": "x_293471a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2001210", + "name": "xf_t2001210c", + "phases": "CS", + "to": "x2001210c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2917359", + "name": "xf_t21482431a", + "phases": "AS", + "to": "x2917359a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2876796", + "name": "xf_t226193338a", + "phases": "AS", + "to": "x2876796a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2841630", + "name": "xf_t5138404c", + "phases": "CS", + "to": "x2841630c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3029501", + "name": "xf_t5337688b", + "phases": "BS", + "to": "x3029501b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2785520", + "name": "xf_t5138755b", + "phases": "BS", + "to": "x2785520b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2891575", + "name": "xf_t225533423c", + "phases": "CS", + "to": "x2891575c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l3254227", + "name": "xf_t5338995b", + "phases": "BS", + "to": "x3254227b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2673343", + "name": "xf_t21470122b", + "phases": "BS", + "to": "x2673343b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2841616", + "name": "xf_t21031684a", + "phases": "AS", + "to": "x2841616a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3101782", + "name": "xf_t5356808a", + "phases": "AS", + "to": "x3101782a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2000915", + "name": "xf_t2000915c", + "phases": "CS", + "to": "x2000915c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2692633", + "name": "xf_t5328364c", + "phases": "CS", + "to": "x2692633c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3254210", + "name": "xf_t5138647c", + "phases": "CS", + "to": "x3254210c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2841629", + "name": "xf_t5138405c", + "phases": "CS", + "to": "x2841629c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2001013", + "name": "xf_t2001013b", + "phases": "BS", + "to": "x2001013b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2879062", + "name": "xf_t21385192c", + "phases": "CS", + "to": "x2879062c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2841637", + "name": "xf_t5293492c", + "phases": "CS", + "to": "x2841637c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3066816", + "name": "xf_t21398676a", + "phases": "AS", + "to": "x3066816a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2973156", + "name": "xf_t5337687b", + "phases": "BS", + "to": "x2973156b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3104120", + "name": "xf_t5138645b", + "phases": "BS", + "to": "x3104120b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2991929", + "name": "xf_t28147708b", + "phases": "BS", + "to": "x2991929b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3254212", + "name": "xf_t5138754b", + "phases": "BS", + "to": "x3254212b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2916603", + "name": "xf_t5323403b", + "phases": "BS", + "to": "x2916603b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3142050", + "name": "xf_t5251865c", + "phases": "CS", + "to": "x3142050c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2673323", + "name": "xf_t5355438c", + "phases": "CS", + "to": "x2673323c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l3160115", + "name": "xf_t5338994b", + "phases": "BS", + "to": "x3160115b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2936214", + "name": "xf_t5356809a", + "phases": "AS", + "to": "x2936214a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3048221", + "name": "xf_t21399305a", + "phases": "AS", + "to": "x3048221a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3141401", + "name": "xf_t5338970a", + "phases": "AS", + "to": "x3141401a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2710536", + "name": "xf_t21396867a", + "phases": "AS", + "to": "x2710536a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2936213", + "name": "xf_t5328363b", + "phases": "BS", + "to": "x2936213b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2804251", + "name": "xf_t5138646a", + "phases": "AS", + "to": "x2804251a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2973162", + "name": "xf_t5302375b", + "phases": "BS", + "to": "x2973162b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2001014", + "name": "xf_t2001014b", + "phases": "BS", + "to": "x2001014b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2952014", + "name": "xf_t5294809a", + "phases": "CS", + "to": "x2952014a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75A", + "from": "l2767340", + "name": "xf_t5260595a", + "phases": "AS", + "to": "x2767340a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2001307", + "name": "xf_t2001307a", + "phases": "AS", + "to": "x2001307a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2954347", + "name": "xf_t5321841b", + "phases": "BS", + "to": "x2954347b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3157167", + "name": "xf_t226115278a", + "phases": "AS", + "to": "x3157167a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75C", + "from": "l2767340", + "name": "xf_t5260595c", + "phases": "CS", + "to": "x2767340c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75B", + "from": "l2767340", + "name": "xf_t5260595b", + "phases": "BS", + "to": "x2767340b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2879070", + "name": "xf_t5338934b", + "phases": "BS", + "to": "x2879070b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3066809", + "name": "xf_t5338958c", + "phases": "CS", + "to": "x3066809c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2766717", + "name": "xf_t5138470c", + "phases": "CS", + "to": "x2766717c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3029520", + "name": "xf_t21486213b", + "phases": "BS", + "to": "x3029520b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2710525", + "name": "xf_t5355437c", + "phases": "CS", + "to": "x2710525c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3254228", + "name": "xf_t5325474b", + "phases": "BS", + "to": "x3254228b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2000412", + "name": "xf_t2000412a", + "phases": "AS", + "to": "x2000412a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2710518", + "name": "xf_t21209868a", + "phases": "AS", + "to": "x2710518a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2673306", + "name": "xf_t5293608c", + "phases": "CS", + "to": "x2673306c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2801909", + "name": "xf_t226195333c", + "phases": "CS", + "to": "x2801909c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3216345", + "name": "xf_t5338933b", + "phases": "BS", + "to": "x3216345b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2710509", + "name": "xf_t5275000c", + "phases": "CS", + "to": "x2710509c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2973163", + "name": "xf_t5391753b", + "phases": "BS", + "to": "x2973163b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2748140", + "name": "xf_t5391995a", + "phases": "AS", + "to": "x2748140a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2879074", + "name": "xf_t5310560a", + "phases": "AS", + "to": "x2879074a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3085393", + "name": "xf_t5337627c", + "phases": "CS", + "to": "x3085393c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3048230", + "name": "xf_t5293490c", + "phases": "CS", + "to": "x3048230c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2001308", + "name": "xf_t2001308a", + "phases": "AS", + "to": "x2001308a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2861223", + "name": "xf_t5260461b", + "phases": "BS", + "to": "x2861223b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2991916", + "name": "xf_t5337710b", + "phases": "BS", + "to": "x2991916b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2801902", + "name": "xf_t226194002b", + "phases": "BS", + "to": "x2801902b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3197627", + "name": "xf_t5337625c", + "phases": "CS", + "to": "x3197627c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2876814", + "name": "xf_t225806974a", + "phases": "AS", + "to": "x2876814a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2898457", + "name": "xf_t5260594a", + "phases": "AS", + "to": "x2898457a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2785517", + "name": "xf_t5338957c", + "phases": "CS", + "to": "x2785517c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2785515", + "name": "xf_t5293609c", + "phases": "CS", + "to": "x2785515c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3649299", + "name": "xf_t2224237391a", + "phases": "AS", + "to": "x3649299a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l2803199", + "name": "xf_t227760021c", + "phases": "CS", + "to": "x2803199c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l2803199", + "name": "xf_t227760021a", + "phases": "AS", + "to": "x2803199a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l2803199", + "name": "xf_t227760021b", + "phases": "BS", + "to": "x2803199b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2000413", + "name": "xf_t2000413a", + "phases": "AS", + "to": "x2000413a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3197661", + "name": "xf_t5338932c", + "phases": "CS", + "to": "x3197661c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75A", + "from": "l2763812", + "name": "xf_t21459651c", + "phases": "AS", + "to": "x2763812c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3235275", + "name": "xf_t5302507b", + "phases": "BS", + "to": "x3235275b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3216343", + "name": "xf_t5337626c", + "phases": "CS", + "to": "x3216343c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3141412", + "name": "xf_t5391996a", + "phases": "AS", + "to": "x3141412a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3122820", + "name": "xf_t5310561a", + "phases": "AS", + "to": "x3122820a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2897776", + "name": "xf_t5302858c", + "phases": "CS", + "to": "x2897776c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3214055", + "name": "xf_t226192175c", + "phases": "CS", + "to": "x3214055c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2841625", + "name": "xf_t5302834c", + "phases": "BS", + "to": "x2841625c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3626914", + "name": "xf_t2224179616c", + "phases": "CS", + "to": "x3626914c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2785524", + "name": "xf_t28044328c", + "phases": "CS", + "to": "x2785524c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3179650", + "name": "xf_t5251828b", + "phases": "BS", + "to": "x3179650b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2729206", + "name": "xf_t22112168866c", + "phases": "CS", + "to": "x2729206c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2992624", + "name": "xf_t5260484a", + "phases": "AS", + "to": "x2992624a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2766716", + "name": "xf_t5337713c", + "phases": "CS", + "to": "x2766716c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2001305", + "name": "xf_t2001305a", + "phases": "AS", + "to": "x2001305a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5C", + "from": "l2914324", + "name": "xf_t226196642a", + "phases": "CS", + "to": "x2914324a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l3048231", + "name": "xf_t21400215b", + "phases": "BS", + "to": "x3048231b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3066815", + "name": "xf_t5338936c", + "phases": "CS", + "to": "x3066815c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3048203", + "name": "xf_t5323273b", + "phases": "BS", + "to": "x3048203b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l2691966", + "name": "xf_t5339010b", + "phases": "BS", + "to": "x2691966b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3178973", + "name": "xf_t21149420a", + "phases": "AS", + "to": "x3178973a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2673319", + "name": "xf_t5391973c", + "phases": "CS", + "to": "x2673319c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2748128", + "name": "xf_t5337629c", + "phases": "CS", + "to": "x2748128c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3254209", + "name": "xf_t5337714c", + "phases": "CS", + "to": "x3254209c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3727710", + "name": "xf_t2224386863a", + "phases": "AS", + "to": "x3727710a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2806553", + "name": "xf_t227411655c", + "phases": "CS", + "to": "x2806553c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2748132", + "name": "xf_t5302637a", + "phases": "AS", + "to": "x2748132a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3104130", + "name": "xf_t5391755b", + "phases": "BS", + "to": "x3104130b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2954361", + "name": "xf_t21383494b", + "phases": "BS", + "to": "x2954361b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2804253", + "name": "xf_t21396254a", + "phases": "AS", + "to": "x2804253a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2973149", + "name": "xf_t5325472b", + "phases": "BS", + "to": "x2973149b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2785531", + "name": "xf_t21399809a", + "phases": "CS", + "to": "x2785531a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2001306", + "name": "xf_t2001306a", + "phases": "AS", + "to": "x2001306a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3251807", + "name": "xf_t225673440a", + "phases": "AS", + "to": "x3251807a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3235245", + "name": "xf_t5337712c", + "phases": "CS", + "to": "x3235245c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2954344", + "name": "xf_t5338959c", + "phases": "CS", + "to": "x2954344c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2973160", + "name": "xf_t5338935b", + "phases": "BS", + "to": "x2973160b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2000410", + "name": "xf_t2000410a", + "phases": "AS", + "to": "x2000410a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3159645", + "name": "xf_t228446184a", + "phases": "AS", + "to": "x3159645a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l3215203", + "name": "xf_t227760024b", + "phases": "BS", + "to": "x3215203b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2860490", + "name": "xf_t5138719a", + "phases": "AS", + "to": "x2860490a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l3215203", + "name": "xf_t227760024c", + "phases": "CS", + "to": "x3215203c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2000411", + "name": "xf_t2000411a", + "phases": "AS", + "to": "x2000411a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l3215203", + "name": "xf_t227760024a", + "phases": "AS", + "to": "x3215203a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3010562", + "name": "xf_t5325473b", + "phases": "BS", + "to": "x3010562b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l2991933", + "name": "xf_t5355433c", + "phases": "CS", + "to": "x2991933c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3029183", + "name": "xf_t228580047b", + "phases": "BS", + "to": "x3029183b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2841621", + "name": "xf_t5338910c", + "phases": "CS", + "to": "x2841621c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2897770", + "name": "xf_t5337628c", + "phases": "CS", + "to": "x2897770c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2879079", + "name": "xf_t5391756b", + "phases": "BS", + "to": "x2879079b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2710543", + "name": "xf_t21474614c", + "phases": "CS", + "to": "x2710543c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3179607", + "name": "xf_t5260591b", + "phases": "BS", + "to": "x3179607b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3254869", + "name": "xf_t5260575b", + "phases": "BS", + "to": "x3254869b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2710544", + "name": "xf_t21482279a", + "phases": "AS", + "to": "x2710544a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2001303", + "name": "xf_t2001303a", + "phases": "AS", + "to": "x2001303a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2879063", + "name": "xf_t5337646b", + "phases": "BS", + "to": "x2879063b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3160872", + "name": "xf_t5260551c", + "phases": "CS", + "to": "x3160872c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2786273", + "name": "xf_t5275247b", + "phases": "BS", + "to": "x2786273b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2726973", + "name": "xf_t226192926a", + "phases": "AS", + "to": "x2726973a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2895449", + "name": "xf_t226193134c", + "phases": "CS", + "to": "x2895449c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2748139", + "name": "xf_t21400108b", + "phases": "BS", + "to": "x2748139b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2933135", + "name": "xf_t226197070a", + "phases": "AS", + "to": "x2933135a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3122837", + "name": "xf_t5355432c", + "phases": "CS", + "to": "x3122837c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3118855", + "name": "xf_t5339052c", + "phases": "CS", + "to": "x3118855c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5B", + "from": "l3235255", + "name": "xf_t5293519b", + "phases": "BS", + "to": "x3235255b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2684420", + "name": "xf_t225498968b", + "phases": "BS", + "to": "x2684420b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2916620", + "name": "xf_t5338977c", + "phases": "CS", + "to": "x2916620c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2916620", + "name": "xf_t5338977b", + "phases": "BS", + "to": "x2916620b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3216346", + "name": "xf_t5391991a", + "phases": "AS", + "to": "x3216346a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3728041", + "name": "xf_t2224387074a", + "phases": "AS", + "to": "x3728041a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3122821", + "name": "xf_t5338953b", + "phases": "BS", + "to": "x3122821b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3048227", + "name": "xf_t5337647a", + "phases": "AS", + "to": "x3048227a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3010567", + "name": "xf_t5302813c", + "phases": "CS", + "to": "x3010567c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2785543", + "name": "xf_t5321860b", + "phases": "BS", + "to": "x2785543b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3104134", + "name": "xf_t5138718c", + "phases": "CS", + "to": "x3104134c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2710515", + "name": "xf_t5321884c", + "phases": "CS", + "to": "x2710515c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3727712", + "name": "xf_t2224386889a", + "phases": "AS", + "to": "x3727712a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3067478", + "name": "xf_t5260598a", + "phases": "AS", + "to": "x3067478a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2766746", + "name": "xf_t5321886c", + "phases": "CS", + "to": "x2766746c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3216342", + "name": "xf_t5337645b", + "phases": "BS", + "to": "x3216342b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2001304", + "name": "xf_t2001304a", + "phases": "AS", + "to": "x2001304a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3123452", + "name": "xf_t5260574c", + "phases": "CS", + "to": "x3123452c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l3047289", + "name": "xf_t228091193b", + "phases": "BS", + "to": "x3047289b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2916620", + "name": "xf_t5338977a", + "phases": "AS", + "to": "x2916620a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l3047289", + "name": "xf_t228091193a", + "phases": "AS", + "to": "x3047289a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2879076", + "name": "xf_t5138380c", + "phases": "CS", + "to": "x2879076c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l3047289", + "name": "xf_t228091193c", + "phases": "CS", + "to": "x3047289c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2691939", + "name": "xf_t5355589b", + "phases": "BS", + "to": "x2691939b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3231255", + "name": "xf_t5339051c", + "phases": "CS", + "to": "x3231255c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3048222", + "name": "xf_t5355431c", + "phases": "CS", + "to": "x3048222c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3315860", + "name": "xf_t2223664050b", + "phases": "BS", + "to": "x3315860b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2691967", + "name": "xf_t5338976b", + "phases": "BS", + "to": "x2691967b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2897764", + "name": "xf_t5391750b", + "phases": "BS", + "to": "x2897764b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3029500", + "name": "xf_t5391992a", + "phases": "AS", + "to": "x3029500a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3727709", + "name": "xf_t2224386842a", + "phases": "AS", + "to": "x3727709a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3254220", + "name": "xf_t5138717c", + "phases": "CS", + "to": "x3254220c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3235248", + "name": "xf_t5321861c", + "phases": "CS", + "to": "x3235248c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2730187", + "name": "xf_t5260464a", + "phases": "AS", + "to": "x2730187a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2691941", + "name": "xf_t5321887c", + "phases": "CS", + "to": "x2691941c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2991640", + "name": "xf_t229106135c", + "phases": "CS", + "to": "x2991640c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3178977", + "name": "xf_t5302810c", + "phases": "AS", + "to": "x3178977c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2842379", + "name": "xf_t5260488a", + "phases": "AS", + "to": "x2842379a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3066807", + "name": "xf_t5337624c", + "phases": "CS", + "to": "x3066807c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3160896", + "name": "xf_t5260573c", + "phases": "CS", + "to": "x3160896c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2937757", + "name": "xf_t227411650c", + "phases": "CS", + "to": "x2937757c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l2915542", + "name": "xf_t227921427c", + "phases": "CS", + "to": "x2915542c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l2915542", + "name": "xf_t227921427b", + "phases": "BS", + "to": "x2915542b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l2915542", + "name": "xf_t227921427a", + "phases": "AS", + "to": "x2915542a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3104119", + "name": "xf_t5338956a", + "phases": "AS", + "to": "x3104119a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2822857", + "name": "xf_t5355588b", + "phases": "BS", + "to": "x2822857b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3122848", + "name": "xf_t21397121c", + "phases": "CS", + "to": "x3122848c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2785516", + "name": "xf_t5138294b", + "phases": "BS", + "to": "x2785516b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3104114", + "name": "xf_t5355587b", + "phases": "BS", + "to": "x3104114b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3066806", + "name": "xf_t5275002c", + "phases": "CS", + "to": "x3066806c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3010560", + "name": "xf_t5338955b", + "phases": "BS", + "to": "x3010560b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75B", + "from": "l3102286", + "name": "xf_t226308729b", + "phases": "BS", + "to": "x3102286b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3010570", + "name": "xf_t5302392a", + "phases": "AS", + "to": "x3010570a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2785521", + "name": "xf_t5338931c", + "phases": "CS", + "to": "x2785521c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2860488", + "name": "xf_t5391751b", + "phases": "BS", + "to": "x2860488b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l3156034", + "name": "xf_t5391993a", + "phases": "AS", + "to": "x3156034a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2001215", + "name": "xf_t2001215c", + "phases": "CS", + "to": "x2001215c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2897779", + "name": "xf_t5302508c", + "phases": "CS", + "to": "x2897779c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3254215", + "name": "xf_t5302859c", + "phases": "CS", + "to": "x3254215c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3254219", + "name": "xf_t5138716c", + "phases": "CS", + "to": "x3254219c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3160105", + "name": "xf_t5302811c", + "phases": "AS", + "to": "x3160105c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3235241", + "name": "xf_t5321888c", + "phases": "CS", + "to": "x3235241c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2804256", + "name": "xf_t5321840b", + "phases": "BS", + "to": "x2804256b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2692654", + "name": "xf_t5260487a", + "phases": "AS", + "to": "x2692654a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2001302", + "name": "xf_t2001302a", + "phases": "AS", + "to": "x2001302a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3236004", + "name": "xf_t5260572c", + "phases": "CS", + "to": "x3236004c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3086075", + "name": "xf_t5260463b", + "phases": "BS", + "to": "x3086075b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2879089", + "name": "xf_t21455388c", + "phases": "CS", + "to": "x2879089c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3197626", + "name": "xf_t5337623c", + "phases": "CS", + "to": "x3197626c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l3066814", + "name": "xf_t5338979b", + "phases": "BS", + "to": "x3066814b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2897780", + "name": "xf_t5293518b", + "phases": "BS", + "to": "x2897780b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3254234", + "name": "xf_t5355586b", + "phases": "BS", + "to": "x3254234b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2822862", + "name": "xf_t5275001c", + "phases": "CS", + "to": "x2822862c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2860482", + "name": "xf_t5338954a", + "phases": "AS", + "to": "x2860482a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75C", + "from": "l2766738", + "name": "xf_t5338978c", + "phases": "CS", + "to": "x2766738c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l3029506", + "name": "xf_t5338930b", + "phases": "BS", + "to": "x3029506b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3160102", + "name": "xf_t5355780b", + "phases": "BS", + "to": "x3160102b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2804260", + "name": "xf_t5391752b", + "phases": "BS", + "to": "x2804260b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3066821", + "name": "xf_t5391994a", + "phases": "AS", + "to": "x3066821a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2804261", + "name": "xf_t5302509c", + "phases": "CS", + "to": "x2804261c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3216367", + "name": "xf_t5337648b", + "phases": "BS", + "to": "x3216367b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2935552", + "name": "xf_t5274903c", + "phases": "CS", + "to": "x2935552c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2691945", + "name": "xf_t5302812c", + "phases": "CS", + "to": "x2691945c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2973144", + "name": "xf_t5138466c", + "phases": "CS", + "to": "x2973144c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3085396", + "name": "xf_t5138684a", + "phases": "AS", + "to": "x3085396a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3197639", + "name": "xf_t5310569a", + "phases": "AS", + "to": "x3197639a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3010585", + "name": "xf_t5294810a", + "phases": "CS", + "to": "x3010585a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3179673", + "name": "xf_t5260640c", + "phases": "CS", + "to": "x3179673c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2860493", + "name": "xf_t21397645a", + "phases": "AS", + "to": "x2860493a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2841635", + "name": "xf_t21399099a", + "phases": "AS", + "to": "x2841635a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2673312", + "name": "xf_t5321837a", + "phases": "AS", + "to": "x2673312a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3048962", + "name": "xf_t5260555a", + "phases": "AS", + "to": "x3048962a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3232902", + "name": "xf_t226194826a", + "phases": "AS", + "to": "x3232902a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2897773", + "name": "xf_t5338918a", + "phases": "AS", + "to": "x2897773a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2766742", + "name": "xf_t5355585b", + "phases": "BS", + "to": "x2766742b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2897765", + "name": "xf_t5323243b", + "phases": "BS", + "to": "x2897765b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l3233413", + "name": "xf_t226308727b", + "phases": "BS", + "to": "x3233413b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2710514", + "name": "xf_t5323267b", + "phases": "BS", + "to": "x2710514b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2936279", + "name": "xf_t5247184c", + "phases": "CS", + "to": "x2936279c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l0247160", + "name": "xf_t5247160b", + "phases": "BS", + "to": "x0247160b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3235273", + "name": "xf_t5339016b", + "phases": "BS", + "to": "x3235273b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2766748", + "name": "xf_t21470326a", + "phases": "AS", + "to": "x2766748a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2897772", + "name": "xf_t5302679a", + "phases": "AS", + "to": "x2897772a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2991918", + "name": "xf_t5391749b", + "phases": "BS", + "to": "x2991918b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3030200", + "name": "xf_t5260554c", + "phases": "CS", + "to": "x3030200c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3065665", + "name": "xf_t227895952a", + "phases": "AS", + "to": "x3065665a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2879055", + "name": "xf_t5138465c", + "phases": "CS", + "to": "x2879055c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2991907", + "name": "xf_t5138574a", + "phases": "AS", + "to": "x2991907a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3082981", + "name": "xf_t226193737c", + "phases": "CS", + "to": "x3082981c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3085401", + "name": "xf_t28127253a", + "phases": "AS", + "to": "x3085401a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2691944", + "name": "xf_t5321838a", + "phases": "AS", + "to": "x2691944a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2935555", + "name": "xf_t5338917a", + "phases": "AS", + "to": "x2935555a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2710542", + "name": "xf_t5355584b", + "phases": "BS", + "to": "x2710542b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3122810", + "name": "xf_t5323242b", + "phases": "BS", + "to": "x3122810b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3197632", + "name": "xf_t5323266b", + "phases": "BS", + "to": "x3197632b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3178974", + "name": "xf_t5323399b", + "phases": "BS", + "to": "x3178974b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3027671", + "name": "xf_t226308728a", + "phases": "AS", + "to": "x3027671a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2763072", + "name": "xf_t226924200b", + "phases": "BS", + "to": "x2763072b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3067447", + "name": "xf_t21386157a", + "phases": "AS", + "to": "x3067447a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3141397", + "name": "xf_t21396796b", + "phases": "BS", + "to": "x3141397b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2915534", + "name": "xf_t227917122a", + "phases": "AS", + "to": "x2915534a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3104131", + "name": "xf_t5302410a", + "phases": "AS", + "to": "x3104131a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3066801", + "name": "xf_t5138464c", + "phases": "CS", + "to": "x3066801c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2711225", + "name": "xf_t5260553c", + "phases": "CS", + "to": "x2711225c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2710519", + "name": "xf_t5302676a", + "phases": "AS", + "to": "x2710519a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l2897554", + "name": "xf_t22112168870c", + "phases": "CS", + "to": "x2897554c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3235253", + "name": "xf_t5138573a", + "phases": "AS", + "to": "x3235253a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2767341", + "name": "xf_t5260577c", + "phases": "CS", + "to": "x2767341c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2691951", + "name": "xf_t5138379c", + "phases": "CS", + "to": "x2691951c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2710516", + "name": "xf_t5321839a", + "phases": "AS", + "to": "x2710516a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3010557", + "name": "xf_t21380453a", + "phases": "AS", + "to": "x3010557a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3160793", + "name": "xf_t28147899c", + "phases": "CS", + "to": "x3160793c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l3189188", + "name": "xf_t5293658c", + "phases": "CS", + "to": "x3189188c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2785512", + "name": "xf_t5323245b", + "phases": "BS", + "to": "x2785512b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l3066817", + "name": "xf_t21373784a", + "phases": "AS", + "to": "x3066817a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2729424", + "name": "xf_t5339018a", + "phases": "AS", + "to": "x2729424a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3066819", + "name": "xf_t5302677a", + "phases": "AS", + "to": "x3066819a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3120484", + "name": "xf_t226191772c", + "phases": "CS", + "to": "x3120484c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l3198348", + "name": "xf_t5260552a", + "phases": "AS", + "to": "x3198348a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3030126", + "name": "xf_t5260576c", + "phases": "CS", + "to": "x3030126c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2710517", + "name": "xf_t5310568a", + "phases": "AS", + "to": "x2710517a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2748127", + "name": "xf_t5338919a", + "phases": "AS", + "to": "x2748127a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2970804", + "name": "xf_t5356787c", + "phases": "CS", + "to": "x2970804c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2729412", + "name": "xf_t28150189a", + "phases": "AS", + "to": "x2729412a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3632979", + "name": "xf_t2224192013a", + "phases": "AS", + "to": "x3632979a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75B", + "from": "l2802480", + "name": "xf_t226308725b", + "phases": "BS", + "to": "x2802480b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2991940", + "name": "xf_t28148060c", + "phases": "CS", + "to": "x2991940c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3104856", + "name": "xf_t5260467a", + "phases": "AS", + "to": "x3104856a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2935560", + "name": "xf_t5293659c", + "phases": "CS", + "to": "x2935560c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2804248", + "name": "xf_t5323244b", + "phases": "BS", + "to": "x2804248b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2857591", + "name": "xf_t226101460a", + "phases": "CS", + "to": "x2857591a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2729423", + "name": "xf_t5339017c", + "phases": "CS", + "to": "x2729423c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3216358", + "name": "xf_t21399826a", + "phases": "CS", + "to": "x3216358a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3176661", + "name": "xf_t5356788c", + "phases": "CS", + "to": "x3176661c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l3029499", + "name": "xf_t5302678a", + "phases": "AS", + "to": "x3029499a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3048210", + "name": "xf_t5302412a", + "phases": "AS", + "to": "x3048210a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2991913", + "name": "xf_t5138571a", + "phases": "AS", + "to": "x2991913a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3067506", + "name": "xf_t5260620c", + "phases": "CS", + "to": "x3067506c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3160878", + "name": "xf_t5260511c", + "phases": "CS", + "to": "x3160878c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "m1108404", + "name": "xf_t1108404c", + "phases": "CS", + "to": "x1108404c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "m1108404", + "name": "xf_t1108404b", + "phases": "BS", + "to": "x1108404b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "m1108404", + "name": "xf_t1108404a", + "phases": "AS", + "to": "x1108404a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75A", + "from": "l3101194", + "name": "xf_t21459660c", + "phases": "AS", + "to": "x3101194c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2989571", + "name": "xf_t225991691a", + "phases": "AS", + "to": "x2989571a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3067507", + "name": "xf_t5260535c", + "phases": "CS", + "to": "x3067507c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2710521", + "name": "xf_t5138680a", + "phases": "AS", + "to": "x2710521a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2973167", + "name": "xf_t5293656b", + "phases": "BS", + "to": "x2973167b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2897789", + "name": "xf_t5323287b", + "phases": "BS", + "to": "x2897789b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3066812", + "name": "xf_t5323263a", + "phases": "AS", + "to": "x3066812a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3157708", + "name": "xf_t226192954c", + "phases": "CS", + "to": "x3157708c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2766732", + "name": "xf_t5247164b", + "phases": "BS", + "to": "x2766732b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2766729", + "name": "xf_t5293523a", + "phases": "AS", + "to": "x2766729a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2973171", + "name": "xf_t5339012b", + "phases": "BS", + "to": "x2973171b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3649301", + "name": "xf_t2224237643a", + "phases": "AS", + "to": "x3649301a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2936275", + "name": "xf_t5157715b", + "phases": "BS", + "to": "x2936275b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2673300", + "name": "xf_t5391745b", + "phases": "BS", + "to": "x2673300b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3048937", + "name": "xf_t5356789c", + "phases": "CS", + "to": "x3048937c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3122822", + "name": "xf_t5391987a", + "phases": "AS", + "to": "x3122822a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2746587", + "name": "xf_t227653310c", + "phases": "CS", + "to": "x2746587c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2841627", + "name": "xf_t5337716a", + "phases": "AS", + "to": "x2841627a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3139598", + "name": "xf_t226311345b", + "phases": "BS", + "to": "x3139598b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "m1108405", + "name": "xf_t1108405c", + "phases": "CS", + "to": "x1108405c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3122815", + "name": "xf_t5321858b", + "phases": "BS", + "to": "x3122815b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "m1108405", + "name": "xf_t1108405b", + "phases": "BS", + "to": "x1108405b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "m1108405", + "name": "xf_t1108405a", + "phases": "AS", + "to": "x1108405a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2764403", + "name": "xf_t226193078a", + "phases": "AS", + "to": "x2764403a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3252336", + "name": "xf_t226308723b", + "phases": "BS", + "to": "x3252336b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3215549", + "name": "xf_t228219458b", + "phases": "BS", + "to": "x3215549b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2897777", + "name": "xf_t5338937c", + "phases": "CS", + "to": "x2897777c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2804255", + "name": "xf_t5338913b", + "phases": "BS", + "to": "x2804255b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l2692660", + "name": "xf_t5260643a", + "phases": "AS", + "to": "x2692660a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3160861", + "name": "xf_t5260558c", + "phases": "CS", + "to": "x3160861c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2748146", + "name": "xf_t5138570a", + "phases": "AS", + "to": "x2748146a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3189189", + "name": "xf_t5293657b", + "phases": "BS", + "to": "x3189189b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2989564", + "name": "xf_t5323286b", + "phases": "BS", + "to": "x2989564b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3214112", + "name": "xf_t226881057b", + "phases": "BS", + "to": "x3214112b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3104145", + "name": "xf_t5339011b", + "phases": "BS", + "to": "x3104145b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3139086", + "name": "xf_t226192846b", + "phases": "BS", + "to": "x3139086b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3139366", + "name": "xf_t226264795a", + "phases": "AS", + "to": "x3139366a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3254204", + "name": "xf_t5337715a", + "phases": "AS", + "to": "x3254204a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3179674", + "name": "xf_t5157716b", + "phases": "BS", + "to": "x3179674b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l3085388", + "name": "xf_t5391746b", + "phases": "BS", + "to": "x3085388b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2897790", + "name": "xf_t21357984c", + "phases": "CS", + "to": "x2897790c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2916599", + "name": "xf_t5356015a", + "phases": "AS", + "to": "x2916599a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2688692", + "name": "xf_t225918926b", + "phases": "BS", + "to": "x2688692b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2001309", + "name": "xf_t2001309a", + "phases": "AS", + "to": "x2001309a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2991920", + "name": "xf_t28118822a", + "phases": "AS", + "to": "x2991920a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l2729207", + "name": "xf_t22112168874c", + "phases": "CS", + "to": "x2729207c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3254213", + "name": "xf_t5321859b", + "phases": "BS", + "to": "x3254213b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75A", + "from": "l2821087", + "name": "xf_t226308720a", + "phases": "AS", + "to": "x2821087a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2710508", + "name": "xf_t5323241b", + "phases": "BS", + "to": "x2710508b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2000414", + "name": "xf_t2000414a", + "phases": "AS", + "to": "x2000414a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2860501", + "name": "xf_t5323265b", + "phases": "BS", + "to": "x2860501b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3048968", + "name": "xf_t5350994c", + "phases": "CS", + "to": "x3048968c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2822867", + "name": "xf_t21386552b", + "phases": "BS", + "to": "x2822867b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2710505", + "name": "xf_t5323398b", + "phases": "BS", + "to": "x2710505b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3727707", + "name": "xf_t2224386750a", + "phases": "AS", + "to": "x3727707a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3216370", + "name": "xf_t5293521c", + "phases": "CS", + "to": "x3216370c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l3216370", + "name": "xf_t5293521b", + "phases": "BS", + "to": "x3216370b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l0247162", + "name": "xf_t5247162b", + "phases": "BS", + "to": "x0247162b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l3216370", + "name": "xf_t5293521a", + "phases": "AS", + "to": "x3216370a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2822859", + "name": "xf_t5391747b", + "phases": "BS", + "to": "x2822859b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2766747", + "name": "xf_t5391989a", + "phases": "AS", + "to": "x2766747a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3178981", + "name": "xf_t21396331b", + "phases": "BS", + "to": "x3178981b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2691947", + "name": "xf_t5337718a", + "phases": "AS", + "to": "x2691947a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l3235249", + "name": "xf_t5356014a", + "phases": "AS", + "to": "x3235249a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3160107", + "name": "xf_t5138265a", + "phases": "AS", + "to": "x3160107a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2972704", + "name": "xf_t228445756c", + "phases": "CS", + "to": "x2972704c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3086074", + "name": "xf_t5260532c", + "phases": "CS", + "to": "x3086074c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3048965", + "name": "xf_t5260641b", + "phases": "BS", + "to": "x3048965b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3160864", + "name": "xf_t28127146b", + "phases": "BS", + "to": "x3160864b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "m1108403", + "name": "xf_t1108403b", + "phases": "BS", + "to": "x1108403b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2991905", + "name": "xf_t28148633a", + "phases": "AS", + "to": "x2991905a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "m1108403", + "name": "xf_t1108403a", + "phases": "AS", + "to": "x1108403a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5A", + "from": "l2823592", + "name": "xf_t5223658a", + "phases": "AS", + "to": "x2823592a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l2954345", + "name": "xf_t5338915c", + "phases": "CS", + "to": "x2954345c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3235247", + "name": "xf_t5321836a", + "phases": "AS", + "to": "x3235247a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "m1108403", + "name": "xf_t1108403c", + "phases": "CS", + "to": "x1108403c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2820533", + "name": "xf_t226193298a", + "phases": "AS", + "to": "x2820533a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2691950", + "name": "xf_t5138374c", + "phases": "CS", + "to": "x2691950c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2691954", + "name": "xf_t21399361b", + "phases": "BS", + "to": "x2691954b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l2990098", + "name": "xf_t226308721a", + "phases": "AS", + "to": "x2990098a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3030204", + "name": "xf_t0107636a", + "phases": "AS", + "to": "x3030204a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3179637", + "name": "xf_t21386442c", + "phases": "CS", + "to": "x3179637c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2729414", + "name": "xf_t5293655a", + "phases": "AS", + "to": "x2729414a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2729414", + "name": "xf_t5293655b", + "phases": "BS", + "to": "x2729414b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l3216344", + "name": "xf_t5323264b", + "phases": "BS", + "to": "x3216344b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2954346", + "name": "xf_t5323397b", + "phases": "BS", + "to": "x2954346b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3198356", + "name": "xf_t5350993c", + "phases": "CS", + "to": "x3198356c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2785527", + "name": "xf_t5293522a", + "phases": "AS", + "to": "x2785527a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2000415", + "name": "xf_t2000415a", + "phases": "AS", + "to": "x2000415a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2804270", + "name": "xf_t5339013b", + "phases": "BS", + "to": "x2804270b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3195310", + "name": "xf_t226192185a", + "phases": "AS", + "to": "x3195310a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3179678", + "name": "xf_t5247185b", + "phases": "BS", + "to": "x3179678b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l3645809", + "name": "xf_t2224230615c", + "phases": "CS", + "to": "x3645809c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2729414", + "name": "xf_t5293655c", + "phases": "CS", + "to": "x2729414c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3216348", + "name": "xf_t5337717a", + "phases": "AS", + "to": "x3216348a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2954348", + "name": "xf_t5356013a", + "phases": "AS", + "to": "x2954348a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2917328", + "name": "xf_t21389092b", + "phases": "BS", + "to": "x2917328b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2991902", + "name": "xf_t5391748b", + "phases": "BS", + "to": "x2991902b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2991910", + "name": "xf_t5337694b", + "phases": "BS", + "to": "x2991910b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2804262", + "name": "xf_t5355938a", + "phases": "AS", + "to": "x2804262a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2895461", + "name": "xf_t5294789a", + "phases": "CS", + "to": "x2895461a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3197630", + "name": "xf_t5138644a", + "phases": "AS", + "to": "x3197630a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3160865", + "name": "xf_t5260515a", + "phases": "AS", + "to": "x3160865a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2917255", + "name": "xf_t21386065c", + "phases": "CS", + "to": "x2917255c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3254873", + "name": "xf_t5251862c", + "phases": "CS", + "to": "x3254873c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2898522", + "name": "xf_t5260648a", + "phases": "AS", + "to": "x2898522a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2748130", + "name": "xf_t5138753b", + "phases": "BS", + "to": "x2748130b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75B", + "from": "m1108410", + "name": "xf_t6061820b", + "phases": "BS", + "to": "x1108410b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2936268", + "name": "xf_t5223655c", + "phases": "CS", + "to": "x2936268c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3048946", + "name": "xf_t5260624c", + "phases": "CS", + "to": "x3048946c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3235242", + "name": "xf_t21380500c", + "phases": "CS", + "to": "x3235242c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3011298", + "name": "xf_t5207286c", + "phases": "CS", + "to": "x3011298c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2000707", + "name": "xf_t2000707b", + "phases": "BS", + "to": "x2000707b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3235258", + "name": "xf_t5293652a", + "phases": "AS", + "to": "x3235258a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2841615", + "name": "xf_t5356012a", + "phases": "AS", + "to": "x2841615a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3235258", + "name": "xf_t5293652b", + "phases": "BS", + "to": "x3235258b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3235258", + "name": "xf_t5293652c", + "phases": "CS", + "to": "x3235258c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2783231", + "name": "xf_t226193886b", + "phases": "BS", + "to": "x2783231b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2841639", + "name": "xf_t5355937a", + "phases": "AS", + "to": "x2841639a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3008248", + "name": "xf_t5321159a", + "phases": "AS", + "to": "x3008248a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2805034", + "name": "xf_t5260647a", + "phases": "AS", + "to": "x2805034a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3010566", + "name": "xf_t5138776c", + "phases": "BS", + "to": "x3010566c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3235252", + "name": "xf_t21388572b", + "phases": "BS", + "to": "x3235252b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2785528", + "name": "xf_t5138752b", + "phases": "BS", + "to": "x2785528b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2674047", + "name": "xf_t5260514c", + "phases": "CS", + "to": "x2674047c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2745811", + "name": "xf_t5251863c", + "phases": "CS", + "to": "x2745811c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3066813", + "name": "xf_t5337693b", + "phases": "BS", + "to": "x3066813b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2673317", + "name": "xf_t21397771a", + "phases": "AS", + "to": "x2673317a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2000902", + "name": "xf_t2000902c", + "phases": "CS", + "to": "x2000902c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3027122", + "name": "xf_t226194865a", + "phases": "AS", + "to": "x3027122a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2711234", + "name": "xf_t5207287b", + "phases": "BS", + "to": "x2711234b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3216337", + "name": "xf_t5356011a", + "phases": "AS", + "to": "x3216337a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2000708", + "name": "xf_t2000708b", + "phases": "BS", + "to": "x2000708b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2955076", + "name": "xf_t21243817a", + "phases": "AS", + "to": "x2955076a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3157718", + "name": "xf_t226194093a", + "phases": "AS", + "to": "x3157718a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "m1108406", + "name": "xf_t1108406a", + "phases": "AS", + "to": "x1108406a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2822877", + "name": "xf_t5337672b", + "phases": "BS", + "to": "x2822877b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3198347", + "name": "xf_t5260622c", + "phases": "CS", + "to": "x3198347c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3197635", + "name": "xf_t5337696b", + "phases": "BS", + "to": "x3197635b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2954357", + "name": "xf_t5355936a", + "phases": "AS", + "to": "x2954357a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l3197647", + "name": "xf_t5294787a", + "phases": "AS", + "to": "x3197647a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3048214", + "name": "xf_t5302474a", + "phases": "AS", + "to": "x3048214a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3235256", + "name": "xf_t5138642a", + "phases": "AS", + "to": "x3235256a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "m1108406", + "name": "xf_t1108406b", + "phases": "BS", + "to": "x1108406b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3231269", + "name": "xf_t225684682b", + "phases": "BS", + "to": "x3231269b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3066818", + "name": "xf_t5138751b", + "phases": "BS", + "to": "x3066818b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2917336", + "name": "xf_t5260513c", + "phases": "CS", + "to": "x2917336c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3728042", + "name": "xf_t2224387113a", + "phases": "AS", + "to": "x3728042a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2801895", + "name": "xf_t226191951b", + "phases": "BS", + "to": "x2801895b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2879069", + "name": "xf_t5338894a", + "phases": "AS", + "to": "x2879069a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2748840", + "name": "xf_t5157717b", + "phases": "BS", + "to": "x2748840b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3729297", + "name": "xf_t2224386592a", + "phases": "AS", + "to": "x3729297a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2000705", + "name": "xf_t2000705b", + "phases": "BS", + "to": "x2000705b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l3198355", + "name": "xf_t5207288b", + "phases": "BS", + "to": "x3198355b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3216336", + "name": "xf_t5356010a", + "phases": "AS", + "to": "x3216336a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3029507", + "name": "xf_t5302368b", + "phases": "BS", + "to": "x3029507b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "m1108407", + "name": "xf_t1108407b", + "phases": "BS", + "to": "x1108407b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2879072", + "name": "xf_t5337695b", + "phases": "BS", + "to": "x2879072b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2841638", + "name": "xf_t5138641c", + "phases": "CS", + "to": "x2841638c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2898515", + "name": "xf_t5260621c", + "phases": "CS", + "to": "x2898515c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3254207", + "name": "xf_t5337671a", + "phases": "AS", + "to": "x3254207a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2729428", + "name": "xf_t21398402a", + "phases": "AS", + "to": "x2729428a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2821010", + "name": "xf_t5294788a", + "phases": "CS", + "to": "x2821010a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2724120", + "name": "xf_t225577437c", + "phases": "CS", + "to": "x2724120c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3104859", + "name": "xf_t5138798b", + "phases": "BS", + "to": "x3104859b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2691973", + "name": "xf_t5355935a", + "phases": "AS", + "to": "x2691973a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3195327", + "name": "xf_t225901711a", + "phases": "AS", + "to": "x3195327a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75C", + "from": "l3645810", + "name": "xf_t2224230651c", + "phases": "CS", + "to": "x3645810c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3197633", + "name": "xf_t5338893a", + "phases": "AS", + "to": "x3197633a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3142099", + "name": "xf_t5157718b", + "phases": "BS", + "to": "x3142099b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2000706", + "name": "xf_t2000706b", + "phases": "BS", + "to": "x2000706b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75C", + "from": "l3141411", + "name": "xf_t21197413c", + "phases": "CS", + "to": "x3141411c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3091052", + "name": "xf_t228532641a", + "phases": "AS", + "to": "x3091052a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2766727", + "name": "xf_t5302367b", + "phases": "BS", + "to": "x2766727b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2673321", + "name": "xf_t5302674a", + "phases": "AS", + "to": "x2673321a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2991927", + "name": "xf_t5355607b", + "phases": "BS", + "to": "x2991927b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2973159", + "name": "xf_t21398536a", + "phases": "AS", + "to": "x2973159a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2674052", + "name": "xf_t21393570c", + "phases": "CS", + "to": "x2674052c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l3141400", + "name": "xf_t5138313a", + "phases": "AS", + "to": "x3141400a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2745799", + "name": "xf_t226191779c", + "phases": "CS", + "to": "x2745799c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3048207", + "name": "xf_t5323248b", + "phases": "BS", + "to": "x3048207b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3198358", + "name": "xf_t5138797b", + "phases": "BS", + "to": "x3198358b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3104127", + "name": "xf_t5337690b", + "phases": "BS", + "to": "x3104127b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l3048212", + "name": "xf_t5355934a", + "phases": "AS", + "to": "x3048212a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2822861", + "name": "xf_t21015829a", + "phases": "AS", + "to": "x2822861a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2822865", + "name": "xf_t5274986c", + "phases": "CS", + "to": "x2822865c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2858166", + "name": "xf_t226192994a", + "phases": "AS", + "to": "x2858166a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2000703", + "name": "xf_t2000703b", + "phases": "BS", + "to": "x2000703b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3189190", + "name": "xf_t227100753a", + "phases": "AS", + "to": "x3189190a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2935553", + "name": "xf_t5323247b", + "phases": "BS", + "to": "x2935553b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3142049", + "name": "xf_t5356810c", + "phases": "CS", + "to": "x3142049c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l2690868", + "name": "xf_t227917127c", + "phases": "CS", + "to": "x2690868c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2954355", + "name": "xf_t5293672a", + "phases": "AS", + "to": "x2954355a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2954354", + "name": "xf_t5302675a", + "phases": "AS", + "to": "x2954354a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2973180", + "name": "xf_t21398646b", + "phases": "BS", + "to": "x2973180b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2785518", + "name": "xf_t5138469c", + "phases": "CS", + "to": "x2785518c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3104853", + "name": "xf_t5260518c", + "phases": "CS", + "to": "x3104853c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2766724", + "name": "xf_t5294786c", + "phases": "CS", + "to": "x2766724c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2820528", + "name": "xf_t226191778c", + "phases": "CS", + "to": "x2820528c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2992656", + "name": "xf_t5260627a", + "phases": "AS", + "to": "x2992656a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3236011", + "name": "xf_t5138796b", + "phases": "BS", + "to": "x3236011b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3029510", + "name": "xf_t5355606b", + "phases": "BS", + "to": "x3029510b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2674027", + "name": "xf_t21380325b", + "phases": "BS", + "to": "x2674027b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2898526", + "name": "xf_t21393486c", + "phases": "CS", + "to": "x2898526c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2839305", + "name": "xf_t28150292a", + "phases": "AS", + "to": "x2839305a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2916598", + "name": "xf_t5355933a", + "phases": "AS", + "to": "x2916598a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3728043", + "name": "xf_t2224387138a", + "phases": "AS", + "to": "x3728043a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2948732", + "name": "xf_t225571845b", + "phases": "BS", + "to": "x2948732b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2822864", + "name": "xf_t5274985c", + "phases": "CS", + "to": "x2822864c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2841620", + "name": "xf_t28147018b", + "phases": "BS", + "to": "x2841620b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2000704", + "name": "xf_t2000704b", + "phases": "BS", + "to": "x2000704b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3067448", + "name": "xf_t5262075c", + "phases": "CS", + "to": "x3067448c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3217064", + "name": "xf_t21391390b", + "phases": "BS", + "to": "x3217064b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3122827", + "name": "xf_t5293673a", + "phases": "AS", + "to": "x3122827a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3160114", + "name": "xf_t5339019a", + "phases": "AS", + "to": "x3160114a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2804956", + "name": "xf_t5356811a", + "phases": "AS", + "to": "x2804956a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3197643", + "name": "xf_t5302369b", + "phases": "BS", + "to": "x3197643b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3254205", + "name": "xf_t5302672c", + "phases": "CS", + "to": "x3254205c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2767408", + "name": "xf_t5260517c", + "phases": "CS", + "to": "x2767408c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2729409", + "name": "xf_t5355605b", + "phases": "BS", + "to": "x2729409b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2801896", + "name": "xf_t226191995b", + "phases": "BS", + "to": "x2801896b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3197644", + "name": "xf_t5138771a", + "phases": "AS", + "to": "x3197644a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2989566", + "name": "xf_t5260602b", + "phases": "BS", + "to": "x2989566b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2935551", + "name": "xf_t21387929c", + "phases": "CS", + "to": "x2935551c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2879061", + "name": "xf_t5337692b", + "phases": "BS", + "to": "x2879061b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3142079", + "name": "xf_t21249626b", + "phases": "BS", + "to": "x3142079b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3010569", + "name": "xf_t5302673a", + "phases": "AS", + "to": "x3010569a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3122813", + "name": "xf_t5138685a", + "phases": "AS", + "to": "x3122813a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2729427", + "name": "xf_t5323249b", + "phases": "BS", + "to": "x2729427b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2841624", + "name": "xf_t5355604b", + "phases": "BS", + "to": "x2841624b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2730149", + "name": "xf_t5260601c", + "phases": "CS", + "to": "x2730149c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2897774", + "name": "xf_t5337691b", + "phases": "BS", + "to": "x2897774b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2897781", + "name": "xf_t5138770a", + "phases": "AS", + "to": "x2897781a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3048966", + "name": "xf_t5260625c", + "phases": "CS", + "to": "x3048966c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2000702", + "name": "xf_t2000702b", + "phases": "BS", + "to": "x2000702b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3122825", + "name": "xf_t28118808a", + "phases": "AS", + "to": "x3122825a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3177665", + "name": "xf_t227731863a", + "phases": "AS", + "to": "x3177665a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2861158", + "name": "xf_t5251858c", + "phases": "CS", + "to": "x2861158c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3066808", + "name": "xf_t5337654c", + "phases": "CS", + "to": "x3066808c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3085392", + "name": "xf_t5337630c", + "phases": "CS", + "to": "x3085392c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2001008", + "name": "xf_t2001008b", + "phases": "BS", + "to": "x2001008b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3160117", + "name": "xf_t21357901b", + "phases": "BS", + "to": "x3160117b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3160101", + "name": "xf_t5337678a", + "phases": "AS", + "to": "x3160101a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3160108", + "name": "xf_t5355603b", + "phases": "BS", + "to": "x3160108b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2727795", + "name": "xf_t227678342c", + "phases": "CS", + "to": "x2727795c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l3784018", + "name": "xf_t2224500658a", + "phases": "AS", + "to": "x3784018a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2804254", + "name": "xf_t5323418a", + "phases": "AS", + "to": "x2804254a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3254208", + "name": "xf_t5338961c", + "phases": "CS", + "to": "x3254208c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2731712", + "name": "xf_t21426205b", + "phases": "BS", + "to": "x2731712b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2766720", + "name": "xf_t5441311a", + "phases": "AS", + "to": "x2766720a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2897792", + "name": "xf_t5338985a", + "phases": "AS", + "to": "x2897792a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2001310", + "name": "xf_t2001310a", + "phases": "AS", + "to": "x2001310a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2730106", + "name": "xf_t5356814c", + "phases": "CS", + "to": "x2730106c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3010559", + "name": "xf_t5337679a", + "phases": "AS", + "to": "x3010559a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2858175", + "name": "xf_t225668688a", + "phases": "AS", + "to": "x2858175a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2954351", + "name": "xf_t5302805c", + "phases": "AS", + "to": "x2954351c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2000909", + "name": "xf_t2000909c", + "phases": "CS", + "to": "x2000909c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3235267", + "name": "xf_t5321892c", + "phases": "CS", + "to": "x3235267c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2673346", + "name": "xf_t5293486c", + "phases": "CS", + "to": "x2673346c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2952007", + "name": "xf_t5251859c", + "phases": "CS", + "to": "x2952007c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2673308", + "name": "xf_t5337653b", + "phases": "BS", + "to": "x2673308b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2876797", + "name": "xf_t226193345a", + "phases": "AS", + "to": "x2876797a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3143999", + "name": "xf_t226193696a", + "phases": "AS", + "to": "x3143999a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2785513", + "name": "xf_t5337677a", + "phases": "AS", + "to": "x2785513a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2001009", + "name": "xf_t2001009b", + "phases": "BS", + "to": "x2001009b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2992657", + "name": "xf_t21475841a", + "phases": "AS", + "to": "x2992657a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3029055", + "name": "xf_t5260607b", + "phases": "BS", + "to": "x3029055b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3123509", + "name": "xf_t28129923c", + "phases": "CS", + "to": "x3123509c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3251806", + "name": "xf_t5355602b", + "phases": "BS", + "to": "x3251806b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2897767", + "name": "xf_t5338960c", + "phases": "CS", + "to": "x2897767c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2748144", + "name": "xf_t5338984a", + "phases": "AS", + "to": "x2748144a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75C", + "from": "l3122814", + "name": "xf_t5338899c", + "phases": "CS", + "to": "x3122814c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2001202", + "name": "xf_t2001202c", + "phases": "CS", + "to": "x2001202c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3254238", + "name": "xf_t5293487b", + "phases": "BS", + "to": "x3254238b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3195751", + "name": "xf_t5293681a", + "phases": "CS", + "to": "x3195751a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2001311", + "name": "xf_t2001311a", + "phases": "AS", + "to": "x2001311a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2936212", + "name": "xf_t5356815a", + "phases": "AS", + "to": "x2936212a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2841645", + "name": "xf_t5321893c", + "phases": "CS", + "to": "x2841645c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2673307", + "name": "xf_t5337632c", + "phases": "CS", + "to": "x2673307c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3048888", + "name": "xf_t5251856c", + "phases": "CS", + "to": "x3048888c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2001006", + "name": "xf_t2001006b", + "phases": "BS", + "to": "x2001006b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2952013", + "name": "xf_t5355843a", + "phases": "CS", + "to": "x2952013a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3251808", + "name": "xf_t226029836a", + "phases": "AS", + "to": "x3251808a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l3254231", + "name": "xf_t5338988a", + "phases": "AS", + "to": "x3254231a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2673326", + "name": "xf_t5355601b", + "phases": "BS", + "to": "x2673326b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2673303", + "name": "xf_t5338963c", + "phases": "CS", + "to": "x2673303c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2879065", + "name": "xf_t5247126b", + "phases": "BS", + "to": "x2879065b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2897793", + "name": "xf_t5338987a", + "phases": "AS", + "to": "x2897793a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2879067", + "name": "xf_t21380616a", + "phases": "AS", + "to": "x2879067a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3141398", + "name": "xf_t21386976a", + "phases": "AS", + "to": "x3141398a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2001005", + "name": "xf_t2001005b", + "phases": "BS", + "to": "x2001005b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2000907", + "name": "xf_t2000907c", + "phases": "CS", + "to": "x2000907c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l3086098", + "name": "xf_t21474556a", + "phases": "AS", + "to": "x3086098a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3729298", + "name": "xf_t2224386617a", + "phases": "AS", + "to": "x3729298a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3066829", + "name": "xf_t5321894c", + "phases": "CS", + "to": "x3066829c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3085400", + "name": "xf_t5302803c", + "phases": "AS", + "to": "x3085400c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2729405", + "name": "xf_t21393412b", + "phases": "BS", + "to": "x2729405b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3029497", + "name": "xf_t5337631c", + "phases": "CS", + "to": "x3029497c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3064514", + "name": "xf_t5251857c", + "phases": "CS", + "to": "x3064514c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3125349", + "name": "xf_t226193698c", + "phases": "CS", + "to": "x3125349c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3141396", + "name": "xf_t5337655c", + "phases": "CS", + "to": "x3141396c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2001007", + "name": "xf_t2001007b", + "phases": "BS", + "to": "x2001007b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2876813", + "name": "xf_t5355842a", + "phases": "CS", + "to": "x2876813a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3235254", + "name": "xf_t5441331c", + "phases": "CS", + "to": "x3235254c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l2973791", + "name": "xf_t5260605a", + "phases": "AS", + "to": "x2973791a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2691938", + "name": "xf_t5355600b", + "phases": "BS", + "to": "x2691938b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3176660", + "name": "xf_t226193892b", + "phases": "BS", + "to": "x3176660b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2729413", + "name": "xf_t21397067a", + "phases": "AS", + "to": "x2729413a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2748125", + "name": "xf_t5338962c", + "phases": "CS", + "to": "x2748125c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2935550", + "name": "xf_t5274999c", + "phases": "CS", + "to": "x2935550c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2785538", + "name": "xf_t5338986a", + "phases": "AS", + "to": "x2785538a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2897805", + "name": "xf_t21471907a", + "phases": "AS", + "to": "x2897805a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3141399", + "name": "xf_t5302804c", + "phases": "AS", + "to": "x3141399c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2000908", + "name": "xf_t2000908c", + "phases": "CS", + "to": "x2000908c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3030205", + "name": "xf_t21390038c", + "phases": "CS", + "to": "x3030205c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2842390", + "name": "xf_t21325725c", + "phases": "CS", + "to": "x2842390c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3066805", + "name": "xf_t5337674a", + "phases": "AS", + "to": "x3066805a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3010561", + "name": "xf_t5337650a", + "phases": "AS", + "to": "x3010561a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3068944", + "name": "xf_t5260494b", + "phases": "BS", + "to": "x3068944b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l3235250", + "name": "xf_t5337698b", + "phases": "BS", + "to": "x3235250b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3649298", + "name": "xf_t2224237384a", + "phases": "AS", + "to": "x3649298a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3225319", + "name": "xf_t225533675b", + "phases": "BS", + "to": "x3225319b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3097861", + "name": "xf_t225533215c", + "phases": "CS", + "to": "x3097861c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3122812", + "name": "xf_t21031694b", + "phases": "BS", + "to": "x3122812b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2820535", + "name": "xf_t5338981b", + "phases": "BS", + "to": "x2820535b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2879078", + "name": "xf_t21399229a", + "phases": "AS", + "to": "x2879078a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2822871", + "name": "xf_t5355840b", + "phases": "BS", + "to": "x2822871b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3178971", + "name": "xf_t5338896a", + "phases": "AS", + "to": "x3178971a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2954350", + "name": "xf_t5302809c", + "phases": "BS", + "to": "x2954350c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2000905", + "name": "xf_t2000905c", + "phases": "CS", + "to": "x2000905c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2935547", + "name": "xf_t21383553b", + "phases": "BS", + "to": "x2935547b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3066811", + "name": "xf_t28126875b", + "phases": "BS", + "to": "x3066811b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3160868", + "name": "xf_t0107693b", + "phases": "BS", + "to": "x3160868b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2001003", + "name": "xf_t2001003b", + "phases": "BS", + "to": "x2001003b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3197641", + "name": "xf_t5293591a", + "phases": "AS", + "to": "x3197641a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3728037", + "name": "xf_t2224386946a", + "phases": "AS", + "to": "x3728037a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2841618", + "name": "xf_t5337673a", + "phases": "AS", + "to": "x2841618a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2804258", + "name": "xf_t5337697b", + "phases": "BS", + "to": "x2804258b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2804252", + "name": "xf_t5302473a", + "phases": "AS", + "to": "x2804252a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3254218", + "name": "xf_t5138720a", + "phases": "AS", + "to": "x3254218a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3122818", + "name": "xf_t28120183c", + "phases": "CS", + "to": "x3122818c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3120504", + "name": "xf_t225897846a", + "phases": "AS", + "to": "x3120504a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75A", + "from": "l3232301", + "name": "xf_t21458756c", + "phases": "AS", + "to": "x3232301c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2730107", + "name": "xf_t5251855c", + "phases": "CS", + "to": "x2730107c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3197645", + "name": "xf_t21395962a", + "phases": "AS", + "to": "x3197645a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2860492", + "name": "xf_t21395720c", + "phases": "CS", + "to": "x2860492c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3122817", + "name": "xf_t5355779c", + "phases": "CS", + "to": "x3122817c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2763407", + "name": "xf_t225906836c", + "phases": "CS", + "to": "x2763407c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2729411", + "name": "xf_t5138769a", + "phases": "AS", + "to": "x2729411a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2973150", + "name": "xf_t21380528a", + "phases": "AS", + "to": "x2973150a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2001004", + "name": "xf_t2001004b", + "phases": "BS", + "to": "x2001004b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2000906", + "name": "xf_t2000906c", + "phases": "CS", + "to": "x2000906c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2933120", + "name": "xf_t226192890c", + "phases": "CS", + "to": "x2933120c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2973161", + "name": "xf_t5293592a", + "phases": "AS", + "to": "x2973161a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2692664", + "name": "xf_t5351021c", + "phases": "CS", + "to": "x2692664c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75A", + "from": "l2862616", + "name": "xf_t227447984c", + "phases": "AS", + "to": "x2862616c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3104133", + "name": "xf_t5293483a", + "phases": "AS", + "to": "x3104133a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2991939", + "name": "xf_t5337652b", + "phases": "BS", + "to": "x2991939b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3235244", + "name": "xf_t5337676a", + "phases": "AS", + "to": "x3235244a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2673314", + "name": "xf_t5355778c", + "phases": "CS", + "to": "x2673314c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2785546", + "name": "xf_t21399752a", + "phases": "CS", + "to": "x2785546a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5B", + "from": "l2691965", + "name": "xf_t5338983b", + "phases": "BS", + "to": "x2691965b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2973155", + "name": "xf_t5338898a", + "phases": "AS", + "to": "x2973155a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2000903", + "name": "xf_t2000903c", + "phases": "CS", + "to": "x2000903c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2805031", + "name": "xf_t5260491c", + "phases": "CS", + "to": "x2805031c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3104118", + "name": "xf_t5321890c", + "phases": "CS", + "to": "x3104118c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3235266", + "name": "xf_t5302807c", + "phases": "CS", + "to": "x3235266c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2000709", + "name": "xf_t2000709b", + "phases": "BS", + "to": "x2000709b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3727708", + "name": "xf_t2224386815a", + "phases": "AS", + "to": "x3727708a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3027133", + "name": "xf_t226101449a", + "phases": "CS", + "to": "x3027133a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2748158", + "name": "xf_t5293480a", + "phases": "AS", + "to": "x2748158a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75A", + "from": "l2763811", + "name": "xf_t21459629c", + "phases": "AS", + "to": "x2763811c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2954349", + "name": "xf_t5337699b", + "phases": "BS", + "to": "x2954349b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2785514", + "name": "xf_t5337675a", + "phases": "AS", + "to": "x2785514a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3085402", + "name": "xf_t5302471a", + "phases": "AS", + "to": "x3085402a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3085398", + "name": "xf_t5355777b", + "phases": "BS", + "to": "x3085398b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3197636", + "name": "xf_t28148580b", + "phases": "BS", + "to": "x3197636b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2691942", + "name": "xf_t5247105b", + "phases": "BS", + "to": "x2691942b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2785534", + "name": "xf_t5338982b", + "phases": "BS", + "to": "x2785534b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3177881", + "name": "xf_t227896008c", + "phases": "CS", + "to": "x3177881c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3120503", + "name": "xf_t225869139a", + "phases": "AS", + "to": "x3120503a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2841626", + "name": "xf_t5302808c", + "phases": "CS", + "to": "x2841626c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2000904", + "name": "xf_t2000904c", + "phases": "CS", + "to": "x2000904c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2973154", + "name": "xf_t5338897a", + "phases": "AS", + "to": "x2973154a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2911069", + "name": "xf_t225571871b", + "phases": "BS", + "to": "x2911069b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3141388", + "name": "xf_t5138416c", + "phases": "CS", + "to": "x3141388c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2748126", + "name": "xf_t5321891c", + "phases": "CS", + "to": "x2748126c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "m2001002", + "name": "xf_t2001002b", + "phases": "BS", + "to": "x2001002b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2673313", + "name": "xf_t5321853b", + "phases": "BS", + "to": "x2673313b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3177894", + "name": "xf_t227903012a", + "phases": "AS", + "to": "x3177894a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2917330", + "name": "xf_t5260474a", + "phases": "AS", + "to": "x2917330a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3104125", + "name": "xf_t5138264b", + "phases": "BS", + "to": "x3104125b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3101787", + "name": "xf_t5321877a", + "phases": "AS", + "to": "x3101787a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3216351", + "name": "xf_t21398815a", + "phases": "AS", + "to": "x3216351a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3649297", + "name": "xf_t2224237380a", + "phases": "AS", + "to": "x3649297a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2841641", + "name": "xf_t21380156b", + "phases": "BS", + "to": "x2841641b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3029503", + "name": "xf_t5138373c", + "phases": "CS", + "to": "x3029503c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2766721", + "name": "xf_t5247059a", + "phases": "AS", + "to": "x2766721a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75A", + "from": "l2951995", + "name": "xf_t226192801c", + "phases": "AS", + "to": "x2951995c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l3104144", + "name": "xf_t5339020a", + "phases": "AS", + "to": "x3104144a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3197625", + "name": "xf_t5339044c", + "phases": "CS", + "to": "x3197625c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2935554", + "name": "xf_t5338921a", + "phases": "AS", + "to": "x2935554a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3216339", + "name": "xf_t5391741b", + "phases": "BS", + "to": "x3216339b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3649306", + "name": "xf_t2224238167a", + "phases": "AS", + "to": "x3649306a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2879075", + "name": "xf_t5337724a", + "phases": "AS", + "to": "x2879075a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3085389", + "name": "xf_t5391765b", + "phases": "BS", + "to": "x3085389b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2970258", + "name": "xf_t21459640c", + "phases": "AS", + "to": "x2970258c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2916618", + "name": "xf_t5323283b", + "phases": "BS", + "to": "x2916618b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2748124", + "name": "xf_t5323392b", + "phases": "BS", + "to": "x2748124b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2804257", + "name": "xf_t5321854b", + "phases": "BS", + "to": "x2804257b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3101788", + "name": "xf_t5321878a", + "phases": "AS", + "to": "x3101788a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2861222", + "name": "xf_t5260473a", + "phases": "AS", + "to": "x2861222a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2973157", + "name": "xf_t5337722a", + "phases": "AS", + "to": "x2973157a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2748781", + "name": "xf_t21382813a", + "phases": "AS", + "to": "x2748781a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3104129", + "name": "xf_t5338969a", + "phases": "AS", + "to": "x3104129a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2954353", + "name": "xf_t5338945a", + "phases": "AS", + "to": "x2954353a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3104126", + "name": "xf_t5138372c", + "phases": "CS", + "to": "x3104126c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3157710", + "name": "xf_t226193361b", + "phases": "BS", + "to": "x3157710b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2897807", + "name": "xf_t21386771b", + "phases": "BS", + "to": "x2897807b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2673315", + "name": "xf_t5247058a", + "phases": "AS", + "to": "x2673315a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2804277", + "name": "xf_t5339043c", + "phases": "CS", + "to": "x2804277c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2935557", + "name": "xf_t21397005a", + "phases": "AS", + "to": "x2935557a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3197631", + "name": "xf_t5338920a", + "phases": "AS", + "to": "x3197631a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3197640", + "name": "xf_t5338944c", + "phases": "CS", + "to": "x3197640c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2673311", + "name": "xf_t21397029a", + "phases": "AS", + "to": "x2673311a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2935568", + "name": "xf_t28119958b", + "phases": "BS", + "to": "x2935568b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2710513", + "name": "xf_t5325245b", + "phases": "BS", + "to": "x2710513b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3178978", + "name": "xf_t5337723a", + "phases": "AS", + "to": "x3178978a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3048201", + "name": "xf_t5391742b", + "phases": "BS", + "to": "x3048201b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3727711", + "name": "xf_t2224386874a", + "phases": "AS", + "to": "x3727711a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2952003", + "name": "xf_t5337614b", + "phases": "BS", + "to": "x2952003b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3254870", + "name": "xf_t5260581c", + "phases": "CS", + "to": "x3254870c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2860486", + "name": "xf_t28127390c", + "phases": "AS", + "to": "x2860486c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3159037", + "name": "xf_t5323391b", + "phases": "BS", + "to": "x3159037b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2897791", + "name": "xf_t5323282b", + "phases": "BS", + "to": "x2897791b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3235251", + "name": "xf_t21387206c", + "phases": "AS", + "to": "x3235251c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2001208", + "name": "xf_t2001208c", + "phases": "CS", + "to": "x2001208c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3046854", + "name": "xf_t227732939b", + "phases": "BS", + "to": "x3046854b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2879767", + "name": "xf_t5260496b", + "phases": "BS", + "to": "x2879767b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2860485", + "name": "xf_t5321855b", + "phases": "BS", + "to": "x2860485b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2879071", + "name": "xf_t5337701b", + "phases": "BS", + "to": "x2879071b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2820531", + "name": "xf_t226192936b", + "phases": "BS", + "to": "x2820531b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2991908", + "name": "xf_t5338900a", + "phases": "AS", + "to": "x2991908a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l3104123", + "name": "xf_t5338924c", + "phases": "CS", + "to": "x3104123c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2804957", + "name": "xf_t5356790c", + "phases": "CS", + "to": "x2804957c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2726983", + "name": "xf_t226109079a", + "phases": "AS", + "to": "x2726983a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l3029502", + "name": "xf_t5138262a", + "phases": "AS", + "to": "x3029502a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2879073", + "name": "xf_t5138371c", + "phases": "CS", + "to": "x2879073c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2804269", + "name": "xf_t5323285b", + "phases": "BS", + "to": "x2804269b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2710504", + "name": "xf_t5323394b", + "phases": "BS", + "to": "x2710504b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3104128", + "name": "xf_t5247057a", + "phases": "AS", + "to": "x3104128a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2925506", + "name": "xf_t225533703c", + "phases": "CS", + "to": "x2925506c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2991909", + "name": "xf_t5355773a", + "phases": "AS", + "to": "x2991909a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l3178972", + "name": "xf_t5338923c", + "phases": "CS", + "to": "x3178972c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2785511", + "name": "xf_t5339046a", + "phases": "AS", + "to": "x2785511a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3141390", + "name": "xf_t5391743b", + "phases": "BS", + "to": "x3141390b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3029504", + "name": "xf_t5337702b", + "phases": "BS", + "to": "x3029504b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10A", + "from": "l2785530", + "name": "xf_t5391985a", + "phases": "AS", + "to": "x2785530a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3045895", + "name": "xf_t5351020c", + "phases": "CS", + "to": "x3045895c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2991922", + "name": "xf_t5302734a", + "phases": "AS", + "to": "x2991922a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3160106", + "name": "xf_t5310570a", + "phases": "AS", + "to": "x3160106a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3085397", + "name": "xf_t5323261b", + "phases": "BS", + "to": "x3085397b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3649305", + "name": "xf_t2224237718a", + "phases": "AS", + "to": "x3649305a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2001209", + "name": "xf_t2001209c", + "phases": "CS", + "to": "x2001209c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2767343", + "name": "xf_t5356791c", + "phases": "CS", + "to": "x2767343c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2767407", + "name": "xf_t5260495b", + "phases": "BS", + "to": "x2767407b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2860506", + "name": "xf_t5321856b", + "phases": "BS", + "to": "x2860506b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2766722", + "name": "xf_t5337700b", + "phases": "BS", + "to": "x2766722b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2766725", + "name": "xf_t21399220c", + "phases": "CS", + "to": "x2766725c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3160109", + "name": "xf_t5338947b", + "phases": "BS", + "to": "x3160109b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2859403", + "name": "xf_t228001810a", + "phases": "AS", + "to": "x2859403a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3160113", + "name": "xf_t5323284b", + "phases": "BS", + "to": "x3160113b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2991912", + "name": "xf_t5247056a", + "phases": "AS", + "to": "x2991912a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2822866", + "name": "xf_t5338922b", + "phases": "BS", + "to": "x2822866b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3197652", + "name": "xf_t5339021a", + "phases": "AS", + "to": "x3197652a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2861197", + "name": "xf_t21474711c", + "phases": "CS", + "to": "x2861197c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l3008232", + "name": "xf_t226192492b", + "phases": "BS", + "to": "x3008232b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2710537", + "name": "xf_t5391744b", + "phases": "BS", + "to": "x2710537b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2766723", + "name": "xf_t5391986a", + "phases": "AS", + "to": "x2766723a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2879753", + "name": "xf_t21249674b", + "phases": "BS", + "to": "x2879753b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2991923", + "name": "xf_t5302735a", + "phases": "AS", + "to": "x2991923a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50B", + "from": "l3085391", + "name": "xf_t21236413b", + "phases": "BS", + "to": "x3085391b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2001206", + "name": "xf_t2001206c", + "phases": "CS", + "to": "x2001206c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2001315", + "name": "xf_t2001315a", + "phases": "AS", + "to": "x2001315a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2897768", + "name": "xf_t5337634c", + "phases": "CS", + "to": "x2897768c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3254217", + "name": "xf_t21399112c", + "phases": "CS", + "to": "x3254217c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3048208", + "name": "xf_t5138260a", + "phases": "AS", + "to": "x3048208a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3122847", + "name": "xf_t21483138a", + "phases": "CS", + "to": "x3122847a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2991914", + "name": "xf_t5338941c", + "phases": "CS", + "to": "x2991914c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3010568", + "name": "xf_t5338965a", + "phases": "AS", + "to": "x3010568a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3728040", + "name": "xf_t2224387062a", + "phases": "AS", + "to": "x3728040a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75B", + "from": "l3027670", + "name": "xf_t226308719b", + "phases": "BS", + "to": "x3027670b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2729407", + "name": "xf_t5247100b", + "phases": "BS", + "to": "x2729407b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2764399", + "name": "xf_t226192493b", + "phases": "BS", + "to": "x2764399b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3066810", + "name": "xf_t5337659c", + "phases": "CS", + "to": "x3066810c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3251799", + "name": "xf_t5260562a", + "phases": "AS", + "to": "x3251799a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2764412", + "name": "xf_t5321874a", + "phases": "AS", + "to": "x2764412a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2916625", + "name": "xf_t21467859b", + "phases": "BS", + "to": "x2916625b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3778577", + "name": "xf_t2224490448c", + "phases": "CS", + "to": "x3778577c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l3048887", + "name": "xf_t5260586b", + "phases": "BS", + "to": "x3048887b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2729406", + "name": "xf_t5337633c", + "phases": "CS", + "to": "x2729406c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2001207", + "name": "xf_t2001207c", + "phases": "CS", + "to": "x2001207c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3179608", + "name": "xf_t5356793c", + "phases": "CS", + "to": "x3179608c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5A", + "from": "l3254230", + "name": "xf_t5338989a", + "phases": "AS", + "to": "x3254230a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37B", + "from": "l2913406", + "name": "xf_t225940756b", + "phases": "BS", + "to": "x2913406b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2766730", + "name": "xf_t5355359b", + "phases": "BS", + "to": "x2766730b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3552667", + "name": "xf_t2224061203c", + "phases": "CS", + "to": "x3552667c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2691952", + "name": "xf_t5391980a", + "phases": "AS", + "to": "x2691952a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l3104117", + "name": "xf_t5338964c", + "phases": "CS", + "to": "x3104117c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75C", + "from": "m2001400", + "name": "xf_t2001400c", + "phases": "CS", + "to": "x2001400c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3263051", + "name": "xf_t22112371533c", + "phases": "CS", + "to": "x3263051c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2729434", + "name": "xf_t5321851b", + "phases": "BS", + "to": "x2729434b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2936271", + "name": "xf_t5260476a", + "phases": "AS", + "to": "x2936271a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2001313", + "name": "xf_t2001313a", + "phases": "AS", + "to": "x2001313a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3104850", + "name": "xf_t5260561c", + "phases": "CS", + "to": "x3104850c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37C", + "from": "l2841619", + "name": "xf_t5337636c", + "phases": "CS", + "to": "x2841619c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3086002", + "name": "xf_t5356794c", + "phases": "CS", + "to": "x3086002c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l3120502", + "name": "xf_t5294812a", + "phases": "CS", + "to": "x3120502a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2896685", + "name": "xf_t227187012a", + "phases": "AS", + "to": "x2896685a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15C", + "from": "l2896685", + "name": "xf_t227187012c", + "phases": "CS", + "to": "x2896685c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75C", + "from": "l3178979", + "name": "xf_t5338968c", + "phases": "CS", + "to": "x3178979c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l2896685", + "name": "xf_t227187012b", + "phases": "BS", + "to": "x2896685b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l2673322", + "name": "xf_t5355358b", + "phases": "BS", + "to": "x2673322b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3141394", + "name": "xf_t5339042b", + "phases": "BS", + "to": "x3141394b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2673318", + "name": "xf_t5338967c", + "phases": "CS", + "to": "x2673318c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50A", + "from": "l3233412", + "name": "xf_t226308717a", + "phases": "AS", + "to": "x3233412a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2879081", + "name": "xf_t5391981a", + "phases": "AS", + "to": "x2879081a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2766741", + "name": "xf_t21386754a", + "phases": "AS", + "to": "x2766741a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15B", + "from": "l3197629", + "name": "xf_t5247122b", + "phases": "BS", + "to": "x3197629b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75C", + "from": "l2729410", + "name": "xf_t5338943c", + "phases": "CS", + "to": "x2729410c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2001203", + "name": "xf_t2001203c", + "phases": "CS", + "to": "x2001203c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2001312", + "name": "xf_t2001312a", + "phases": "AS", + "to": "x2001312a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l2879794", + "name": "xf_t5260475a", + "phases": "AS", + "to": "x2879794a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2842330", + "name": "xf_t5356795c", + "phases": "CS", + "to": "x2842330c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2916608", + "name": "xf_t5321852c", + "phases": "CS", + "to": "x2916608c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l2822863", + "name": "xf_t5337635c", + "phases": "CS", + "to": "x2822863c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l2841648", + "name": "xf_t5337720a", + "phases": "AS", + "to": "x2841648a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2001205", + "name": "xf_t2001205c", + "phases": "CS", + "to": "x2001205c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "m2001314", + "name": "xf_t2001314a", + "phases": "AS", + "to": "x2001314a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15A", + "from": "l3027132", + "name": "xf_t5321876a", + "phases": "AS", + "to": "x3027132a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l3065696", + "name": "xf_t227921416a", + "phases": "AS", + "to": "x3065696a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l2991921", + "name": "xf_t28129399c", + "phases": "CS", + "to": "x2991921c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l3216338", + "name": "xf_t5355599b", + "phases": "BS", + "to": "x3216338b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2804245", + "name": "xf_t5355598b", + "phases": "BS", + "to": "x2804245b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37A", + "from": "l3649304", + "name": "xf_t2224237713a", + "phases": "AS", + "to": "x3649304a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25A", + "from": "l2822869", + "name": "xf_t5338942a", + "phases": "AS", + "to": "x2822869a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "l3029505", + "name": "xf_t5338966c", + "phases": "CS", + "to": "x3029505c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10C", + "from": "l3029498", + "name": "xf_t5247036c", + "phases": "CS", + "to": "x3029498c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50C", + "from": "l3253995", + "name": "xf_t21396815c", + "phases": "CS", + "to": "x3253995c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10B", + "from": "l3048200", + "name": "xf_t5391740b", + "phases": "BS", + "to": "x3048200b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25C", + "from": "m2001204", + "name": "xf_t2001204c", + "phases": "CS", + "to": "x2001204c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25B", + "from": "l2710512", + "name": "xf_t5323280b", + "phases": "BS", + "to": "x2710512b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "name": "d5653469-1_int", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-1644", + "y": "-10468" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2952007c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-7932", + "y": "18336" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2310.76", + "base_power_2": "8173.78", + "name": "ld_251859c0b", + "nominal_voltage": "120.09", + "parent": "sx2952007c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-7782", + "y": "18514" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3029510b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "2402", + "y": "-11623" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2691939b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "5085", + "y": "-10018" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2727795c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-9300", + "y": "-6507" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2879773a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-14282", + "y": "7311" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254217c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "20778", + "y": "-143" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254218a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "1221", + "y": "-12568" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026920", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "7735", + "y": "-1014" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000913c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-11937", + "y": "8067" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000913c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000913c", + "phases": "CS", + "x": "-11739", + "y": "8215" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "5402.72", + "name": "ld_2000913c0a", + "nominal_voltage": "120.09", + "parent": "sx2000913c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-11899", + "y": "8299" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3122816b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "9575", + "y": "1259" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026925", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "2021", + "y": "-15961" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026926", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8181", + "y": "-485" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000708b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-17133", + "y": "319" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026927", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8598", + "y": "38" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001013b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9219", + "y": "6463" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001013b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001013b", + "phases": "BS", + "x": "-9209", + "y": "6708" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "9571.64", + "base_power_2": "10618.21", + "name": "ld_2001013b0b", + "nominal_voltage": "120.09", + "parent": "sx2001013b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-9056", + "y": "6626" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2804957c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-9583", + "y": "19948" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3508.57", + "base_power_2": "3780.09", + "name": "ld_356790c0a", + "nominal_voltage": "120.09", + "parent": "sx2804957c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9809", + "y": "20007" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2711234b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-15295", + "y": "8048" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2860490a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "1944", + "y": "-12694" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3181545c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-4413", + "y": "-315" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3125349c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-5101", + "y": "-1089" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4241.99", + "base_power_2": "6242.55", + "name": "ld_226193698c0b", + "nominal_voltage": "120.09", + "parent": "sx3125349c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5324", + "y": "-1033" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d6023352-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "4035", + "y": "5361" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691938b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "3393", + "y": "-10231" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2935560c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "16985", + "y": "-7072" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048966", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "4925", + "y": "2002" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048968", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-18109", + "y": "4442" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122815b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "10003", + "y": "7639" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254219c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "3748", + "y": "-13076" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048962", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-485", + "y": "3748" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048963", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-5609", + "y": "6253" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000914c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-12153", + "y": "8477" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000914c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000914c", + "phases": "CS", + "x": "-12132", + "y": "8723" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "5402.72", + "name": "ld_2000914c0b", + "nominal_voltage": "120.09", + "parent": "sx2000914c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-11973", + "y": "8631" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3048965", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "1005", + "y": "7412" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026915", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6827", + "y": "-2083" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841641b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "6048", + "y": "6100" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973178b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-1222", + "y": "3770" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026916", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "6843", + "y": "-1823" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000707b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-16752", + "y": "1" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3235275b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-6630", + "y": "3371" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001012b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9721", + "y": "6261" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001012b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001012b", + "phases": "BS", + "x": "-9768", + "y": "6499" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7338.85", + "base_power_2": "8476.58", + "name": "ld_2001012b0b", + "nominal_voltage": "120.09", + "parent": "sx2001012b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-9556", + "y": "6432" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2731712b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "11278", + "y": "8299" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7289.21", + "base_power_2": "2741.72", + "name": "ld_21426205b0a", + "nominal_voltage": "120.09", + "parent": "sx2731712b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11513", + "y": "8282" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3045895c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-17117", + "y": "5524" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3045895c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3045895c", + "phases": "CS", + "x": "-17291", + "y": "5703" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7876.00", + "base_power_2": "2608.54", + "name": "ld_351020c0a", + "nominal_voltage": "120.09", + "parent": "sx3045895c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-17352", + "y": "5543" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2801896b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "3208", + "y": "-11146" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254215c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-7950", + "y": "-3214" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026940", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "12340", + "y": "3419" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3101782a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5050", + "y": "13521" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026941", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "550", + "y": "-17974" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000911c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-12623", + "y": "7391" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000911c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000911c", + "phases": "CS", + "x": "-12665", + "y": "7631" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "5402.72", + "name": "ld_2000911c0a", + "nominal_voltage": "120.09", + "parent": "sx2000911c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-12822", + "y": "7512" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x1108406a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7758", + "y": "-8008" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026942", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "334", + "y": "-18177" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122818c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "5485", + "y": "-4730" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2897779c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-4873", + "y": "217" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2841000", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "1982", + "y": "-3169" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026947", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "11855", + "y": "3097" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2821010a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-5009", + "y": "-16447" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8652.62", + "base_power_2": "5058.72", + "name": "ld_294788a0a", + "nominal_voltage": "120.09", + "parent": "sx2821010a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5099", + "y": "-16665" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026948", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "11625", + "y": "2917" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2842330", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "10224", + "y": "14083" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026949", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "11912", + "y": "2884" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000706b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-16266", + "y": "-43" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x1108406b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-7762", + "y": "-7850" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160868b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8067", + "y": "2740" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026946", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "12097", + "y": "3257" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001011b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-10058", + "y": "5980" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001011b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001011b", + "phases": "BS", + "x": "-10064", + "y": "6223" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5045.68", + "base_power_2": "3545.93", + "name": "ld_2001011b0a", + "nominal_voltage": "120.09", + "parent": "sx2001011b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-10231", + "y": "6134" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2955055", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9076", + "y": "847" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3179699b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2851", + "y": "2481" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1927.38", + "base_power_2": "13113.86", + "name": "ld_21393454b0b", + "nominal_voltage": "120.09", + "parent": "sx3179699b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2644", + "y": "2595" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2801895b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-15657", + "y": "17057" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254216a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4024", + "y": "-5893" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3027116a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5567", + "y": "-3556" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2842329", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-1927", + "y": "-2561" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x1108407b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-7662", + "y": "-7639" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026931", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "1177", + "y": "-17221" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000912c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-11885", + "y": "7620" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000912c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000912c", + "phases": "CS", + "x": "-11714", + "y": "7795" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "5402.72", + "name": "ld_2000912c0a", + "nominal_voltage": "120.09", + "parent": "sx2000912c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-11651", + "y": "7620" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3122817c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "5447", + "y": "-3218" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "hvmv69sub3_hsb", + "nominal_voltage": "39837.17", + "phases": "ABCN", + "x": "8559", + "y": "-2956" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026939", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "12508", + "y": "3618" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000705b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-15765", + "y": "-65" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3235273b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "8677", + "y": "7851" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d6049822-1_int", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-4744", + "y": "2430" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2955047", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "7155", + "y": "8562" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001010b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9706", + "y": "5393" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001010b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001010b", + "phases": "BS", + "x": "-9478", + "y": "5470" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "10815.90", + "base_power_2": "8608.48", + "name": "ld_2001010b0b", + "nominal_voltage": "120.09", + "parent": "sx2001010b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-9726", + "y": "5622" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026935", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "12592", + "y": "3477" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2804956a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8353", + "y": "2503" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4492.16", + "base_power_2": "4652.17", + "name": "ld_356811a0b", + "nominal_voltage": "120.09", + "parent": "sx2804956a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8535", + "y": "2359" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2820528c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "2542", + "y": "-5967" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2860493a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "18971", + "y": "-8798" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3010570a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7277", + "y": "7317" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5318.39", + "base_power_2": "3258.93", + "name": "ld_302392a0a", + "nominal_voltage": "120.09", + "parent": "sx3010570a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-7395", + "y": "7520" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2955081", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-13032", + "y": "6076" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048937", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-9138", + "y": "20112" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2952003b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-6202", + "y": "-8361" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1222.65", + "base_power_2": "8808.27", + "name": "ld_337614b0a", + "nominal_voltage": "120.09", + "parent": "sx2952003b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6141", + "y": "-8584" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2804261c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-5250", + "y": "104" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047821", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-8702", + "y": "-12245" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897777c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "16442", + "y": "-625" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3159037", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-2572", + "y": "16417" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047824", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9217", + "y": "-12898" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047825", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3036", + "y": "15547" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047826", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3157", + "y": "15210" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000704b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-15237", + "y": "-81" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3140238a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "10121", + "y": "15212" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3457.44", + "base_power_2": "9109.76", + "name": "ld_227905262a0a", + "nominal_voltage": "120.09", + "parent": "sx3140238a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "10326", + "y": "15323" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047828", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3639", + "y": "14216" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2842390", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-19292", + "y": "5469" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2955078", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "621", + "y": "7827" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2955076", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "830", + "y": "7819" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2803194c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-3000", + "y": "-6742" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2955077", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "520", + "y": "6912" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2955074", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-6431", + "y": "4544" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p859694", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "6268", + "y": "-5910" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p1197121", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-9656", + "y": "4162" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "221-242079", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "1035", + "y": "-1431" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3045895", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-16658", + "y": "5251" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104796", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-2201", + "y": "-4081" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000910c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-12152", + "y": "6947" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000910c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000910c", + "phases": "CS", + "x": "-11949", + "y": "7081" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "5402.72", + "name": "ld_2000910c0b", + "nominal_voltage": "120.09", + "parent": "sx2000910c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-12104", + "y": "7175" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2897778a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5127", + "y": "9429" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047831", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3875", + "y": "14809" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2823592a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "292", + "y": "6203" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3122819c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-7302", + "y": "-3655" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p850401", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3883", + "y": "-5705" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047834", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9473", + "y": "-13183" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047835", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9523", + "y": "-13475" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p850400", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-4214", + "y": "-5784" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047836", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9568", + "y": "-13764" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047837", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9601", + "y": "-14237" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2804262a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "2748", + "y": "-13950" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000703b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14669", + "y": "-85" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160865a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-2213", + "y": "6474" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2860491b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "6425", + "y": "-11863" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2916610b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "16627", + "y": "-9445" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3344.73", + "base_power_2": "9778.98", + "name": "ld_293660b0a", + "nominal_voltage": "120.09", + "parent": "sx2916610b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "16757", + "y": "-9640" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047809", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4181", + "y": "11449" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3252336b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-1804", + "y": "-5493" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3252336b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3252336b", + "phases": "BS", + "x": "-1755", + "y": "-5254" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4169.23", + "base_power_2": "10872.01", + "name": "ld_226308723b0b", + "nominal_voltage": "120.09", + "parent": "sx3252336b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1623", + "y": "-5348" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2860491a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6446", + "y": "-11724" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2842383", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "4215", + "y": "5002" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026907", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6370", + "y": "-2654" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2842384", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "3382", + "y": "6783" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3195310a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3225", + "y": "10988" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2992556a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5367", + "y": "11850" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2861157c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-6636", + "y": "13157" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2798.83", + "base_power_2": "7685.70", + "name": "ld_251867c0b", + "nominal_voltage": "120.09", + "parent": "sx2861157c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6867", + "y": "13125" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3048230c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "6520", + "y": "-4107" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5712486-1_int", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-7275", + "y": "-4612" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3160864b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5270", + "y": "6217" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026905", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "5900", + "y": "-3168" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897775c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-11458", + "y": "-5852" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026906", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "2450", + "y": "-15211" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2858175a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8789", + "y": "17783" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2842379", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-9873", + "y": "3245" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026902", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "5454", + "y": "-3720" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000702b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14099", + "y": "-56" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2860492c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-565", + "y": "-12749" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047819", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-8412", + "y": "-11891" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048231b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4153", + "y": "-3671" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2691936a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "487", + "y": "-17677" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2861158c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-7472", + "y": "18102" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5535.51", + "base_power_2": "4949.03", + "name": "ld_251858c0b", + "nominal_voltage": "120.09", + "parent": "sx2861158c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-7274", + "y": "18221" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2804260b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-13146", + "y": "13516" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048946", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "5661", + "y": "1850" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "221-306687", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4084", + "y": "-9365" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2917255c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2730", + "y": "-4171" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2897776c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-7971", + "y": "-3549" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160863a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-2486", + "y": "9146" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047812", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4060", + "y": "11921" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "221-306686", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-5047", + "y": "-6061" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047813", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-8779", + "y": "-12726" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2801895", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-15579", + "y": "16828" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166394", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-7532", + "y": "14625" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166393", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-7679", + "y": "15386" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2673316a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-13564", + "y": "3311" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1166396", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-7892", + "y": "16106" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2801896", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "3444", + "y": "-11136" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166395", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-7797", + "y": "15754" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166398", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-7776", + "y": "14583" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2767414", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-16217", + "y": "5320" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160872", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "130", + "y": "4766" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160871", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "3078", + "y": "7972" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166399", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-8000", + "y": "16449" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691967b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "13474", + "y": "657" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3319.22", + "base_power_2": "2701.40", + "name": "ld_338976b0b", + "nominal_voltage": "120.09", + "parent": "sx2691967b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "13277", + "y": "776" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2786266a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4543", + "y": "4164" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2710516", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "11622", + "y": "3881" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710517", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6993", + "y": "-8638" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710514", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4127", + "y": "6564" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710515", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "6039", + "y": "7474" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235275", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-6605", + "y": "3138" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710518", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "12458", + "y": "-3983" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710519", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "13619", + "y": "-6024" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235273", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "8662", + "y": "7620" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3101788a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9404", + "y": "15547" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "e183493", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-11681", + "y": "5332" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2973791a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "2790", + "y": "-2249" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2710512", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3713", + "y": "13771" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160878", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-16024", + "y": "5879" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710513", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3462", + "y": "14548" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710510", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-3465", + "y": "-11543" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710511", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8572", + "y": "4446" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2673315a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-16400", + "y": "2921" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1166387", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "5391", + "y": "1889" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691966b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "7906", + "y": "7430" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "14923.32", + "base_power_2": "5128.23", + "name": "ld_339010b0a", + "nominal_voltage": "120.09", + "parent": "sx2691966b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7757", + "y": "7606" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1166386", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "4756", + "y": "2180" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2767409", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-8676", + "y": "2301" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2767408", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-13", + "y": "6800" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2767407", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9258", + "y": "3232" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710525", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "6829", + "y": "-6485" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3195318b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-174", + "y": "3362" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3101787a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "10073", + "y": "15746" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3214549a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-566", + "y": "-3356" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1442.87", + "base_power_2": "16845.79", + "name": "ld_226308731a0a", + "nominal_voltage": "120.09", + "parent": "sx3214549a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-440", + "y": "-3163" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2710520", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-100", + "y": "-12687" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973791", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "2558", + "y": "-2249" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2685805", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5742", + "y": "-4416" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2936276b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "1958", + "y": "-1754" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2842390c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-19771", + "y": "5535" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4057.09", + "base_power_2": "5324.35", + "name": "ld_21325725c0b", + "nominal_voltage": "120.09", + "parent": "sx2842390c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-20000", + "y": "5581" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2685809", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "15722", + "y": "-435" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710521", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-397", + "y": "-14097" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166391", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-7284", + "y": "14657" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3178980c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-5822", + "y": "94" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3644.99", + "base_power_2": "2643.67", + "name": "ld_302510c0b", + "nominal_voltage": "120.09", + "parent": "sx3178980c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6048", + "y": "34" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673314c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "5264", + "y": "-2916" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104796c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2516", + "y": "-4437" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7540.92", + "base_power_2": "2943.61", + "name": "ld_260569c0a", + "nominal_voltage": "120.09", + "parent": "sx3104796c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2679", + "y": "-4601" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160896c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2766", + "y": "-3737" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3555.11", + "base_power_2": "2733.55", + "name": "ld_260573c0a", + "nominal_voltage": "120.09", + "parent": "sx3160896c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2974", + "y": "-3839" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2690941b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2607", + "y": "17427" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5179.66", + "base_power_2": "4851.27", + "name": "ld_323387b0b", + "nominal_voltage": "120.09", + "parent": "sx2690941b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2643", + "y": "17659" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108489", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "7170", + "y": "2938" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710536", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5021", + "y": "-3508" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108499", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6120", + "y": "10299" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710537", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-14614", + "y": "14641" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108493", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6807", + "y": "4609" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3195315a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5176", + "y": "-13049" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108492", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "7453", + "y": "2940" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710530", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "7163", + "y": "4141" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160896", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-2303", + "y": "-3635" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108490", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6517", + "y": "3135" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3178981b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2039", + "y": "-10549" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3178981b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3178981b", + "phases": "BS", + "x": "-2016", + "y": "-10779" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7866.96", + "base_power_2": "2163.97", + "name": "ld_21396331b0a", + "nominal_voltage": "120.09", + "parent": "sx3178981b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2238", + "y": "-10669" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2936275b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "1519", + "y": "-2076" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2710532", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "17588", + "y": "-8567" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2730149", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-362", + "y": "-5438" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710519a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13742", + "y": "-5809" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2673313b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "11265", + "y": "7558" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3195751a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-5405", + "y": "-16520" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3207907c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "17105", + "y": "-6101" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3207907b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "16973", + "y": "-6053" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5535139-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "427", + "y": "-4349" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3101789a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9528", + "y": "-4641" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2710542", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "5807", + "y": "-7134" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2730163c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8130", + "y": "3900" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9991.24", + "base_power_2": "3586.08", + "name": "ld_260481c0b", + "nominal_voltage": "120.09", + "parent": "sx2730163c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8046", + "y": "3687" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3178982a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "10037", + "y": "-4587" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3922.45", + "base_power_2": "8314.66", + "name": "ld_294843a0a", + "nominal_voltage": "120.09", + "parent": "sx3178982a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9944", + "y": "-4374" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d5623395-1_int", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4143", + "y": "-1692" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710546", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "402", + "y": "11979" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710543", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "842", + "y": "2787" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710544", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "2164", + "y": "-4067" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710518a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "12666", + "y": "-3851" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p903490", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-1305", + "y": "-3703" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166356", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5635", + "y": "3089" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3122848c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "7129", + "y": "-7635" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3698.24", + "base_power_2": "5683.20", + "name": "ld_21397121c0a", + "nominal_voltage": "120.09", + "parent": "sx3122848c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6901", + "y": "-7619" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1166355", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6202", + "y": "3306" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166358", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "4314", + "y": "2768" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2954355a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "11291", + "y": "-7774" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3482.40", + "base_power_2": "5094.92", + "name": "ld_293672a0a", + "nominal_voltage": "120.09", + "parent": "sx2954355a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11064", + "y": "-7838" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3207907a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "16808", + "y": "-6114" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3068944b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9278", + "y": "2856" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3081380a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "198", + "y": "7471" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879061b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-1069", + "y": "4238" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1765.94", + "base_power_2": "2244.37", + "name": "ld_337692b0a", + "nominal_voltage": "120.09", + "parent": "sx2879061b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1193", + "y": "4433" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3027157", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "197", + "y": "2428" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3027156", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "1532", + "y": "2455" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x1108404a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-6533", + "y": "-8259" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x1108404c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-6622", + "y": "-8110" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x1108404b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-6396", + "y": "-8304" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2673319c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "13195", + "y": "-4828" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2710517a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "7013", + "y": "-8881" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3122847a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-3279", + "y": "-14304" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2442.92", + "base_power_2": "3041.62", + "name": "ld_21483138a0b", + "nominal_voltage": "120.09", + "parent": "sx3122847a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3490", + "y": "-14217" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2916619b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "10761", + "y": "9919" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3277.00", + "base_power_2": "6753.93", + "name": "ld_339006b0b", + "nominal_voltage": "120.09", + "parent": "sx2916619b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "10715", + "y": "10144" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3085389b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-15205", + "y": "15130" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2954354a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13472", + "y": "-5370" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7427.20", + "base_power_2": "1717.13", + "name": "ld_302675a0b", + "nominal_voltage": "120.09", + "parent": "sx2954354a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "13505", + "y": "-5152" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2766729a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "10161", + "y": "-9108" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2791.05", + "base_power_2": "6353.28", + "name": "ld_293523a0b", + "nominal_voltage": "120.09", + "parent": "sx2766729a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "10367", + "y": "-9231" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x1108405b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-7139", + "y": "-8516" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x1108405a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7004", + "y": "-8535" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x1108405c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-7275", + "y": "-8370" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2673318c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "17581", + "y": "1671" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1166374", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "4364", + "y": "3880" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2954357a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3115", + "y": "-16300" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5265.45", + "base_power_2": "8445.89", + "name": "ld_355936a0a", + "nominal_voltage": "120.09", + "parent": "sx2954357a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3211", + "y": "-16514" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1166373", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "4401", + "y": "3520" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710516a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "11861", + "y": "3866" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1166376", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "3532", + "y": "6440" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166375", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "4304", + "y": "4618" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691965b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "6645", + "y": "1756" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1738.95", + "base_power_2": "3364.14", + "name": "ld_338983b0a", + "nominal_voltage": "120.09", + "parent": "sx2691965b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6494", + "y": "1559" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1166377", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "3706", + "y": "6088" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916618b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "13062", + "y": "10223" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6522.57", + "base_power_2": "8518.67", + "name": "ld_323283b0b", + "nominal_voltage": "120.09", + "parent": "sx2916618b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "13282", + "y": "10308" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "e183473", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "961", + "y": "-3829" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000915c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-12571", + "y": "8712" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000915c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000915c", + "phases": "CS", + "x": "-12688", + "y": "8926" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "5402.72", + "name": "ld_2000915c0b", + "nominal_voltage": "120.09", + "parent": "sx2000915c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-12489", + "y": "8933" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "e183472", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-2007", + "y": "-6062" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2798067b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-1404", + "y": "-6942" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2936279c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-15010", + "y": "6206" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001015b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8483", + "y": "6768" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001015b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001015b", + "phases": "BS", + "x": "-8247", + "y": "6895" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "14790.10", + "base_power_2": "13043.62", + "name": "ld_2001015b0a", + "nominal_voltage": "120.09", + "parent": "sx2001015b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-8393", + "y": "6987" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2730107", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "10925", + "y": "14599" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x_293471c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "7045", + "y": "-5663" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2730108", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-2942", + "y": "9395" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x_293471a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6794", + "y": "-5791" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2730106", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "5472", + "y": "1143" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x_293471b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "6974", + "y": "-5756" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1166361", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5415", + "y": "3511" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2673317a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "7448", + "y": "-9010" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2767414c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-16376", + "y": "5497" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1166362", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6003", + "y": "3431" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3122849b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3324", + "y": "150" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1790.40", + "base_power_2": "4230.22", + "name": "ld_293423b0a", + "nominal_voltage": "120.09", + "parent": "sx3122849b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3394", + "y": "-70" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1166364", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "4109", + "y": "2674" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804956", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "7938", + "y": "2758" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160861", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-967", + "y": "1399" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710515c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "5841", + "y": "7627" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2804957", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-9117", + "y": "19830" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166366", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "3375", + "y": "2747" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166369", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4798", + "y": "3467" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916617b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "10411", + "y": "10332" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9892.71", + "base_power_2": "3231.00", + "name": "ld_339007b0b", + "nominal_voltage": "120.09", + "parent": "sx2916617b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "10412", + "y": "10565" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1166368", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "3716", + "y": "3013" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2745799c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "2333", + "y": "-6285" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5958866-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-11254", + "y": "5055" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710505", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4088", + "y": "14930" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710504", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-2984", + "y": "16097" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3120376a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "2219", + "y": "-15832" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2710509", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-15225", + "y": "1702" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710508", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-10280", + "y": "-13608" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160863", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-2553", + "y": "8920" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216123", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "9427", + "y": "1345" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160862", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-1760", + "y": "1262" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x1108403c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-7128", + "y": "-7697" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3160865", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-1995", + "y": "6389" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001014b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8487", + "y": "6306" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001014b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001014b", + "phases": "BS", + "x": "-8327", + "y": "6514" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "16643.21", + "base_power_2": "15916.36", + "name": "ld_2001014b0a", + "nominal_voltage": "120.09", + "parent": "sx2001014b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-8251", + "y": "6426" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3160864", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-5358", + "y": "5993" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3253995", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "10487", + "y": "-1039" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166370", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "4057", + "y": "2458" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x1108403b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-7421", + "y": "-8069" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3160868", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-7853", + "y": "2645" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x1108403a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7321", + "y": "-7677" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p829796", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "8852", + "y": "12840" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p829797", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5376", + "y": "415" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879054a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-17602", + "y": "2669" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5547.53", + "base_power_2": "3596.80", + "name": "ld_247061a0b", + "nominal_voltage": "120.09", + "parent": "sx2879054a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-17840", + "y": "2670" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3632979a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "11029", + "y": "4227" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p829798", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6847", + "y": "3040" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766726b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8424", + "y": "8127" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1186.94", + "base_power_2": "4833.68", + "name": "ld_302373b0b", + "nominal_voltage": "120.09", + "parent": "sx2766726b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8398", + "y": "8357" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2954351c", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7787", + "y": "-5759" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2529.42", + "base_power_2": "3759.24", + "name": "ld_302805c0a", + "nominal_voltage": "120.09", + "parent": "sx2954351c", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-7981", + "y": "-5889" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x0247160b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3483", + "y": "-4289" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2954350c", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8700", + "y": "-3908" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2954350c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2954350c", + "phases": "BS", + "x": "-8633", + "y": "-3679" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4494.68", + "base_power_2": "1793.98", + "name": "ld_302809c0a", + "nominal_voltage": "120.09", + "parent": "sx2954350c", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8810", + "y": "-3706" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2929261a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6829", + "y": "6938" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1744.65", + "base_power_2": "3739.88", + "name": "ld_225533337a0a", + "nominal_voltage": "120.09", + "parent": "sx2929261a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6940", + "y": "7142" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3215385a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-14826", + "y": "3379" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2008.75", + "base_power_2": "11702.59", + "name": "ld_21384099a0b", + "nominal_voltage": "120.09", + "parent": "sx3215385a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-15019", + "y": "3519" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3215385c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-14901", + "y": "2944" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "12452.23", + "base_power_2": "3279.73", + "name": "ld_21384099c0b", + "nominal_voltage": "120.09", + "parent": "sx3215385c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-15128", + "y": "2999" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3215385b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14922", + "y": "3192" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3577.16", + "base_power_2": "19567.16", + "name": "ld_21384099b0b", + "nominal_voltage": "120.09", + "parent": "sx3215385b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-15138", + "y": "3291" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "e206614", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "9142", + "y": "7961" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3178988b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "8246", + "y": "4108" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4066.06", + "base_power_2": "3037.04", + "name": "ld_339001b0a", + "nominal_voltage": "120.09", + "parent": "sx3178988b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8433", + "y": "3983" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2710525c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "6872", + "y": "-6718" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d6017295-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-1226", + "y": "1247" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766725c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "20467", + "y": "724" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5219.13", + "base_power_2": "1069.53", + "name": "ld_21399220c0b", + "nominal_voltage": "120.09", + "parent": "sx2766725c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "20623", + "y": "899" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2857591a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2039", + "y": "-13820" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3101194c", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-2955", + "y": "-8565" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3101194c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3101194c", + "phases": "AS", + "x": "-2845", + "y": "-8787" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "31117.37", + "base_power_2": "3439.33", + "name": "ld_21459660c0a", + "nominal_voltage": "120.09", + "parent": "sx3101194c", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2737", + "y": "-8659" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2802481a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-1111", + "y": "-3544" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5710794-3_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "2548", + "y": "3580" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2708293", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3639", + "y": "5175" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3216123a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9246", + "y": "1195" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3066829", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "3766", + "y": "5010" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066826", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "7574", + "y": "4120" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139551", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "15340", + "y": "-5745" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139550", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "7975", + "y": "-9034" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139552", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "15986", + "y": "-4962" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108527", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "7434", + "y": "13034" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108526", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8533", + "y": "13669" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108529", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8572", + "y": "12568" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x0247162b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3728", + "y": "-3757" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3085388b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-15808", + "y": "14249" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2954353a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "15803", + "y": "-187" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3522.91", + "base_power_2": "8714.20", + "name": "ld_338945a0a", + "nominal_voltage": "120.09", + "parent": "sx2954353a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "16029", + "y": "-124" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069199", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-9667", + "y": "-6986" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108524", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "8103", + "y": "14159" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2876797a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-1839", + "y": "1822" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108532", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8428", + "y": "12836" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104145b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "9128", + "y": "9170" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048199", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9509", + "y": "-14021" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139544", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-7622", + "y": "-3886" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066821", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "11043", + "y": "-5606" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139543", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-9301", + "y": "-6040" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139546", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-7126", + "y": "-1171" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139545", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-6874", + "y": "-3692" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048196", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-5187", + "y": "614" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139547", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-14572", + "y": "5025" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1186052", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "1034", + "y": "-189" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139549", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6538", + "y": "-8773" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3172805", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "12754", + "y": "-4378" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d6413567-3_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-5555", + "y": "-8563" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766727b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-11521", + "y": "10012" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3426.35", + "base_power_2": "5687.06", + "name": "ld_302367b0b", + "nominal_voltage": "120.09", + "parent": "sx2766727b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-11735", + "y": "10106" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2954352c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-6412", + "y": "-4202" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7647.75", + "base_power_2": "2836.78", + "name": "ld_2127090c0b", + "nominal_voltage": "120.09", + "parent": "sx2954352c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6491", + "y": "-4416" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069187", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-4676", + "y": "-14164" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108534", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8417", + "y": "13413" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069189", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-6724", + "y": "-5634" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108535", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8420", + "y": "13125" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2786204a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3356", + "y": "9466" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5323.04", + "base_power_2": "10408.92", + "name": "ld_223662a0a", + "nominal_voltage": "120.09", + "parent": "sx2786204a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3476", + "y": "9271" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2876798b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "2721", + "y": "-237" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108540", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "9756", + "y": "13577" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069192", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-5085", + "y": "-12000" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069191", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-5028", + "y": "-12459" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3157167a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8487", + "y": "14661" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3066830", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4413", + "y": "11960" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3029495b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-15136", + "y": "16644" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3857.33", + "base_power_2": "2163.29", + "name": "ld_391736b0a", + "nominal_voltage": "120.09", + "parent": "sx3029495b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-15111", + "y": "16878" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3066808", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "9512", + "y": "-2452" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066807", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-14370", + "y": "647" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066806", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-15401", + "y": "1509" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066805", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-6554", + "y": "4442" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3097861c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "7239", + "y": "15166" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3066804", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "13494", + "y": "-6862" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2673312a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "12332", + "y": "4308" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "198-5320", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "841", + "y": "-385" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066801", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-3635", + "y": "-2334" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710546b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "707", + "y": "12346" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8469.11", + "base_power_2": "10022.46", + "name": "ld_337704b0b", + "nominal_voltage": "120.09", + "parent": "sx2710546b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "872", + "y": "12510" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "hvmv_sub1_48332", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "2801", + "y": "3201" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069175", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-6152", + "y": "-7101" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766722b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-441", + "y": "9208" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1648.49", + "base_power_2": "8382.43", + "name": "ld_337700b0b", + "nominal_voltage": "120.09", + "parent": "sx2766722b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-558", + "y": "9410" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3066809", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "11120", + "y": "-5515" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991911c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-7846", + "y": "-2792" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3022.71", + "base_power_2": "5327.81", + "name": "ld_138258c0a", + "nominal_voltage": "120.09", + "parent": "sx2991911c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8021", + "y": "-2639" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3177665", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "12944", + "y": "-936" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2820531b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "17067", + "y": "-1139" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069184", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-6444", + "y": "-6369" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2730163", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-7965", + "y": "4331" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069181", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-4909", + "y": "-13350" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3178997", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-4524", + "y": "862" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125929", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-9737", + "y": "3458" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2952007", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-8156", + "y": "17920" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3312692a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "7291", + "y": "20367" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3920.23", + "base_power_2": "5224.10", + "name": "ld_2223661373a0a", + "nominal_voltage": "120.09", + "parent": "sx3312692a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7132", + "y": "20536" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3159037b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2095", + "y": "16457" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "13457.42", + "base_power_2": "1583.81", + "name": "ld_323391b0b", + "nominal_voltage": "120.09", + "parent": "sx3159037b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1868", + "y": "16505" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3160123a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4222", + "y": "-828" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2952003", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-6470", + "y": "-7956" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066819", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "14284", + "y": "-5864" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066818", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-1277", + "y": "-10855" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125911", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9371", + "y": "2397" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066817", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "19595", + "y": "-6671" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066816", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "18411", + "y": "-7187" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125913", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9559", + "y": "3116" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066815", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "11109", + "y": "-3227" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125914", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-9888", + "y": "4231" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001315a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-16209", + "y": "-8822" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001315a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001315a", + "phases": "AS", + "x": "-16236", + "y": "-9065" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "11535.51", + "base_power_2": "11373.03", + "name": "ld_2001315a0a", + "nominal_voltage": "120.09", + "parent": "sx2001315a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-16038", + "y": "-8983" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3066814", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10092", + "y": "5128" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066813", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-763", + "y": "4353" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125916", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9632", + "y": "3488" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2673311a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3067", + "y": "-3331" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3066812", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3666", + "y": "3899" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125917", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-9432", + "y": "4229" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069169", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-5003", + "y": "-10001" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710521a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-499", + "y": "-14334" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3315860", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "4502", + "y": "-11722" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766721a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-17238", + "y": "2308" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2766721a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2766721a", + "phases": "AS", + "x": "-17481", + "y": "2266" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "9081.20", + "base_power_2": "6313.31", + "name": "ld_247059a0b", + "nominal_voltage": "120.09", + "parent": "sx2766721a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-17354", + "y": "2104" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2991910b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-1205", + "y": "5248" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2123.25", + "base_power_2": "3897.37", + "name": "ld_337694b0a", + "nominal_voltage": "120.09", + "parent": "sx2991910b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1375", + "y": "5410" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069174", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-6417", + "y": "-3265" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001500", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-14960", + "y": "-1974" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104144a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4389", + "y": "1548" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3066811", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-5276", + "y": "-5490" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3251854a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3431", + "y": "250" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5799561-2_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-201", + "y": "7092" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066810", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "1147", + "y": "2835" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125919", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-8967", + "y": "4223" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125902", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-12102", + "y": "5608" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125903", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-11567", + "y": "6162" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125904", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-11658", + "y": "5927" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001314a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-16631", + "y": "-8522" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001314a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001314a", + "phases": "AS", + "x": "-16787", + "y": "-8710" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "13212.76", + "base_power_2": "11435.14", + "name": "ld_2001314a0b", + "nominal_voltage": "120.09", + "parent": "sx2001314a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-16597", + "y": "-8755" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254915b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-6209", + "y": "6296" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1250.30", + "base_power_2": "3852.80", + "name": "ld_260520b0b", + "nominal_voltage": "120.09", + "parent": "sx3254915b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6315", + "y": "6094" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1125905", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9173", + "y": "1684" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2673310a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3650", + "y": "-16060" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2767409b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8878", + "y": "2144" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2710520a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "76", + "y": "-12855" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710544a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "2004", + "y": "-4532" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710544a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2710544a", + "phases": "AS", + "x": "1874", + "y": "-4733" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3580.78", + "base_power_2": "4996.54", + "name": "ld_21482279a0a", + "nominal_voltage": "120.09", + "parent": "sx2710544a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2114", + "y": "-4736" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069154", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-2306", + "y": "-11724" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3214055c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8839", + "y": "7370" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2243.53", + "base_power_2": "4045.13", + "name": "ld_226192175c0b", + "nominal_voltage": "120.09", + "parent": "sx3214055c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9026", + "y": "7516" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069156", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-3305", + "y": "-11316" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069155", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-2818", + "y": "-11548" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766724c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "20027", + "y": "-530" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3324.51", + "base_power_2": "6056.93", + "name": "ld_294786c0b", + "nominal_voltage": "120.09", + "parent": "sx2766724c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "20231", + "y": "-420" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3142078b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "62", + "y": "3672" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2730187", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5842", + "y": "2905" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "f739845", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6662", + "y": "-5246" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879055c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-3143", + "y": "-2082" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4023.69", + "base_power_2": "3264.97", + "name": "ld_138465c0b", + "nominal_voltage": "120.09", + "parent": "sx2879055c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2918", + "y": "-2106" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "f739844", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4497", + "y": "-2887" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2936271a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-6346", + "y": "3425" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "f739842", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3855", + "y": "-4219" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "f739841", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3618", + "y": "-4741" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2764399", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "12957", + "y": "2716" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166400", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-7985", + "y": "15916" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069147", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-3844", + "y": "-2211" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166402", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-8205", + "y": "17122" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766723a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "18464", + "y": "-10068" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6188.83", + "base_power_2": "2955.50", + "name": "ld_391986a0a", + "nominal_voltage": "120.09", + "parent": "sx2766723a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "18464", + "y": "-10303" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069149", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-3322", + "y": "-1372" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069148", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-3404", + "y": "-1146" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3232902a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3860", + "y": "-1526" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8138.47", + "base_power_2": "4098.65", + "name": "ld_226194826a0a", + "nominal_voltage": "120.09", + "parent": "sx3232902a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4031", + "y": "-1681" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1166407", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-8367", + "y": "17788" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785543b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "11343", + "y": "8897" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3142079b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9032", + "y": "1163" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2936270a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-1784", + "y": "7061" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2726983a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9889", + "y": "12408" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7071.26", + "base_power_2": "6640.08", + "name": "ld_226109079a0b", + "nominal_voltage": "120.09", + "parent": "sx2726983a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "10088", + "y": "12294" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2841639a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "2588", + "y": "-14436" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1186000", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-5957", + "y": "14584" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001313a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-15995", + "y": "-8085" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001313a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001313a", + "phases": "AS", + "x": "-15878", + "y": "-8297" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "11476.78", + "base_power_2": "14237.96", + "name": "ld_2001313a0b", + "nominal_voltage": "120.09", + "parent": "sx2001313a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-15763", + "y": "-8104" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2763072", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-12170", + "y": "11901" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2952014", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-4784", + "y": "-15328" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3029055b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-975", + "y": "-7274" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1677.82", + "base_power_2": "13363.42", + "name": "ld_260607b0b", + "nominal_voltage": "120.09", + "parent": "sx3029055b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1105", + "y": "-7468" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2952013", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-478", + "y": "-12356" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916620b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "12332", + "y": "32" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3476.08", + "base_power_2": "3627.01", + "name": "ld_338977b0b", + "nominal_voltage": "120.09", + "parent": "sx2916620b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12312", + "y": "-196" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2916620a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "12353", + "y": "927" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2051.88", + "base_power_2": "1607.92", + "name": "ld_338977a0b", + "nominal_voltage": "120.09", + "parent": "sx2916620a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12469", + "y": "1126" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197660b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4747", + "y": "12325" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2860485b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "11088", + "y": "7165" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069136", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-723", + "y": "-12016" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991915b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "324", + "y": "15754" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7472.93", + "base_power_2": "2558.00", + "name": "ld_392036b0a", + "nominal_voltage": "120.09", + "parent": "sx2991915b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "115", + "y": "15863" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2803199b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-7843", + "y": "-9243" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069135", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-182", + "y": "-12018" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2803199c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-7546", + "y": "-9331" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026890", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "2762", + "y": "-15642" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2803199a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7709", + "y": "-9331" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3029518b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-1665", + "y": "2930" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069131", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-110", + "y": "-13007" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069133", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-278", + "y": "-13862" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841638c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-848", + "y": "-12540" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2935555a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5656", + "y": "5283" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026886", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "3947", + "y": "-6080" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026880", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4205", + "y": "-4514" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3141388c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-5459", + "y": "-3396" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2065.50", + "base_power_2": "2130.38", + "name": "ld_138416c0a", + "nominal_voltage": "120.09", + "parent": "sx3141388c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5422", + "y": "-3616" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3233413b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-1642", + "y": "-5649" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026883", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "7651", + "y": "-7926" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2820535b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "7745", + "y": "1846" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160872c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "348", + "y": "4893" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3254869b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-1159", + "y": "-7022" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2631.69", + "base_power_2": "3388.93", + "name": "ld_260575b0a", + "nominal_voltage": "120.09", + "parent": "sx3254869b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1234", + "y": "-7243" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2860486c", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7199", + "y": "-5879" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3141389a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-312", + "y": "-18359" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4972.30", + "base_power_2": "3605.01", + "name": "ld_356007a0a", + "nominal_voltage": "120.09", + "parent": "sx3141389a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-543", + "y": "-18400" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3178969", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "3962", + "y": "-11831" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991914c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "19200", + "y": "-1480" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3843.10", + "base_power_2": "2445.56", + "name": "ld_338941c0a", + "nominal_voltage": "120.09", + "parent": "sx2991914c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "19368", + "y": "-1645" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2917330a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-6975", + "y": "1738" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8350.56", + "base_power_2": "3886.56", + "name": "ld_260474a0b", + "nominal_voltage": "120.09", + "parent": "sx2917330a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-7051", + "y": "1515" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2973833b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "4027", + "y": "3518" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026874", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "3971", + "y": "-4390" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2935556b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "13065", + "y": "3633" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991640", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-13801", + "y": "1103" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069130", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-141", + "y": "-13630" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026876", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6127", + "y": "-4378" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2823545a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4074", + "y": "13586" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1461.71", + "base_power_2": "7682.62", + "name": "ld_356807a0a", + "nominal_voltage": "120.09", + "parent": "sx2823545a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3918", + "y": "13759" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026872", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "3265", + "y": "-8050" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841637c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "7162", + "y": "-5533" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026877", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "2624", + "y": "-14755" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2973171b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "8303", + "y": "7618" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160871c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "2959", + "y": "8188" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2860483b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5409", + "y": "-8490" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d2001301_int", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-15077", + "y": "-2539" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3178979", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "16899", + "y": "2261" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991913a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5744", + "y": "-12324" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1599.86", + "base_power_2": "3884.68", + "name": "ld_138571a0b", + "nominal_voltage": "120.09", + "parent": "sx2991913a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5943", + "y": "-12449" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2935553b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-6632", + "y": "-9467" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2766720a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9057", + "y": "-111" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8385.16", + "base_power_2": "3851.95", + "name": "ld_441311a0b", + "nominal_voltage": "120.09", + "parent": "sx2766720a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9267", + "y": "-11" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3178974", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3939", + "y": "15103" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2763407c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-6116", + "y": "14467" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3178973", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "978", + "y": "1855" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3178972", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "7129", + "y": "5387" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3178971", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3839", + "y": "5585" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2820533a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13153", + "y": "-4246" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3178978", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6095", + "y": "-8221" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3011298c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-15073", + "y": "7041" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1395.94", + "base_power_2": "2799.94", + "name": "ld_207286c0a", + "nominal_voltage": "120.09", + "parent": "sx3011298c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-15251", + "y": "7193" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3178977", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-9276", + "y": "-4433" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3178976", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "12027", + "y": "-5112" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3178975", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-5391", + "y": "-5144" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841636b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-10500", + "y": "10463" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2000200", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-8843", + "y": "1144" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785546a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2695", + "y": "-14820" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2690868c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2432", + "y": "-7426" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2860484b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3722", + "y": "-1304" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254220c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "3575", + "y": "-13380" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2991912a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-15910", + "y": "2556" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2370.37", + "base_power_2": "3114.16", + "name": "ld_247056a0a", + "nominal_voltage": "120.09", + "parent": "sx2991912a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-16120", + "y": "2456" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026895", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "3058", + "y": "-6081" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026896", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "4637", + "y": "-4845" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2935554a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5638", + "y": "5404" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3178982", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "10377", + "y": "-4932" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026898", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "7502", + "y": "-8101" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026891", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6151", + "y": "-3450" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3178988", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "7919", + "y": "4430" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3233412a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-2637", + "y": "-5380" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2841635a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "19723", + "y": "-1295" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2897784b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5051", + "y": "-2892" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3178981", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-2017", + "y": "-10081" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785547b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "518", + "y": "11162" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3178980", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-5361", + "y": "250" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108508", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "7547", + "y": "14765" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991919a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-6764", + "y": "7362" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2375.94", + "base_power_2": "3108.59", + "name": "ld_302400a0b", + "nominal_voltage": "120.09", + "parent": "sx2991919a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6960", + "y": "7488" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2804269b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "12122", + "y": "10644" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108505", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "7016", + "y": "8081" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140522", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "19748", + "y": "-14" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3141400a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-14282", + "y": "2477" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1140521", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "20472", + "y": "-516" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108507", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6274", + "y": "10487" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140520", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "20412", + "y": "-926" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2860489a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-6287", + "y": "8303" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108506", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6398", + "y": "9578" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108501", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6257", + "y": "9938" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140526", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "9500", + "y": "-9296" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2917333a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5217", + "y": "4421" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6164.40", + "base_power_2": "2979.93", + "name": "ld_260632a0b", + "nominal_voltage": "120.09", + "parent": "sx2917333a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5452", + "y": "4411" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108500", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6998", + "y": "7410" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140525", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "8903", + "y": "-9440" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140524", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "18943", + "y": "-663" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140523", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "19372", + "y": "-820" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047780", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-5246", + "y": "-5248" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122812b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4191", + "y": "4018" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1140528", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6522", + "y": "-11085" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140527", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "7972", + "y": "-8138" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841634b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "431", + "y": "15635" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2935559a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3756", + "y": "10991" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047786", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-5789", + "y": "-7365" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047787", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4207", + "y": "7224" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3141401a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "17111", + "y": "3432" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3119793", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3685", + "y": "-8731" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026848", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "3329", + "y": "-3992" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026849", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "3529", + "y": "-4139" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026844", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6125", + "y": "-5037" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897781a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "7099", + "y": "-13425" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026847", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "3242", + "y": "-3769" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3029498c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-13892", + "y": "3642" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4032.80", + "base_power_2": "3255.86", + "name": "ld_247036c0b", + "nominal_voltage": "120.09", + "parent": "sx3029498c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-13884", + "y": "3876" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1139540", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-5069", + "y": "-11013" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139542", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-8200", + "y": "-4823" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5895780-3_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "18514", + "y": "-1048" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139541", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-5846", + "y": "-7833" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991918b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14432", + "y": "13101" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7696.18", + "base_power_2": "2334.74", + "name": "ld_391749b0a", + "nominal_voltage": "120.09", + "parent": "sx2991918b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-14610", + "y": "12950" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2726975", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3154", + "y": "15756" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2726974", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "12415", + "y": "9877" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2726973", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "13980", + "y": "-76" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108514", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "7707", + "y": "14556" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122810b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9161", + "y": "-13388" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1140519", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "18148", + "y": "-997" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026830", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8006", + "y": "-8577" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047792", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-5145", + "y": "8978" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140518", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "14185", + "y": "1170" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3729298a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "15177", + "y": "2010" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10827.89", + "base_power_2": "2883.45", + "name": "ld_2224386617a0a", + "nominal_voltage": "120.09", + "parent": "sx3729298a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "15381", + "y": "2124" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3122811a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-2506", + "y": "4129" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047793", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4373", + "y": "8524" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140517", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "7976", + "y": "13645" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047794", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4876", + "y": "8865" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108520", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "7863", + "y": "14335" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140516", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-6871", + "y": "-423" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2876796a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3600", + "y": "2728" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2726983", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9432", + "y": "12488" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047795", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4366", + "y": "9126" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047796", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4971", + "y": "9095" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841633a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "18095", + "y": "-2501" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3011293a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "508", + "y": "-1978" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10809.90", + "base_power_2": "7478.76", + "name": "ld_2129466a0b", + "nominal_voltage": "120.09", + "parent": "sx3011293a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "327", + "y": "-2128" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3011293b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "945", + "y": "-2178" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3836.84", + "base_power_2": "20013.18", + "name": "ld_2129466b0a", + "nominal_voltage": "120.09", + "parent": "sx3011293b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "899", + "y": "-2407" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3011293c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "671", + "y": "-2177" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3011293c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3011293c", + "phases": "CS", + "x": "604", + "y": "-2413" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "18062.07", + "base_power_2": "2907.00", + "name": "ld_2129466c0b", + "nominal_voltage": "120.09", + "parent": "sx3011293c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "476", + "y": "-2310" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1139537", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6308", + "y": "-12503" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3029497c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-11427", + "y": "906" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1670.57", + "base_power_2": "2525.31", + "name": "ld_337631c0b", + "nominal_voltage": "120.09", + "parent": "sx3029497c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-11302", + "y": "1101" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026834", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6216", + "y": "-5713" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139539", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-139", + "y": "-12353" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139538", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-916", + "y": "-11242" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3086098a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4162", + "y": "3084" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2991917b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-11003", + "y": "11654" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3288.38", + "base_power_2": "3814.71", + "name": "ld_391757b0a", + "nominal_voltage": "120.09", + "parent": "sx2991917b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-10936", + "y": "11877" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2860487c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-6804", + "y": "-6098" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3141402c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "14041", + "y": "-4634" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2674027b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "7264", + "y": "9688" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "193-51796", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-457", + "y": "-3757" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3729297a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "15005", + "y": "1559" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3460.44", + "base_power_2": "8776.68", + "name": "ld_2224386592a0b", + "nominal_voltage": "120.09", + "parent": "sx3729297a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "15192", + "y": "1697" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3122814c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "1443", + "y": "2299" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3552667c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-1465", + "y": "1626" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4093.70", + "base_power_2": "6390.84", + "name": "ld_2224061203c0b", + "nominal_voltage": "120.09", + "parent": "sx3552667c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1566", + "y": "1832" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2917336c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-16160", + "y": "6612" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2515.00", + "base_power_2": "3773.66", + "name": "ld_260513c0b", + "nominal_voltage": "120.09", + "parent": "sx2917336c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-16266", + "y": "6823" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047763", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-3141", + "y": "1744" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3141403a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-1250", + "y": "-13544" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026861", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "4881", + "y": "-10806" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2935557a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "2882", + "y": "-3855" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047766", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3618", + "y": "3769" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047767", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3896", + "y": "-846" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047768", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3753", + "y": "4474" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047769", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4035", + "y": "5882" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2823544a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4772", + "y": "12313" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2712.45", + "base_power_2": "6431.88", + "name": "ld_356804a0a", + "nominal_voltage": "120.09", + "parent": "sx2823544a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4549", + "y": "12380" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3008248a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8443", + "y": "17355" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2600.94", + "base_power_2": "2883.60", + "name": "ld_321159a0a", + "nominal_voltage": "120.09", + "parent": "sx3008248a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8227", + "y": "17440" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2802480b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2258", + "y": "-5852" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2841632b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "15022", + "y": "1150" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026866", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6114", + "y": "-4702" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069der480-1", + "nominal_voltage": "277.13", + "phases": "ABCN", + "x": "-9574", + "y": "-4482" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3139366", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "1436", + "y": "177" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3197661c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "7225", + "y": "-8449" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2746587", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "5984", + "y": "-5939" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2860488b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-13797", + "y": "13169" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2991916b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "151", + "y": "15114" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3954.57", + "base_power_2": "9169.14", + "name": "ld_337710b0a", + "nominal_voltage": "120.09", + "parent": "sx2991916b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-39", + "y": "15249" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m1209-dies1", + "nominal_voltage": "277.13", + "phases": "ABCN", + "x": "110", + "y": "-1943" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209-dies1_dgmtr", + "nominal_voltage": "277.13", + "parent": "m1209-dies1", + "phases": "ABCN", + "x": "-66", + "y": "-2106" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "m1026851", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "2691", + "y": "-10018" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3029499a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "14704", + "y": "-5504" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3563.25", + "base_power_2": "3189.33", + "name": "ld_302678a0a", + "nominal_voltage": "120.09", + "parent": "sx3029499a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "14855", + "y": "-5324" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026852", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "3354", + "y": "-10795" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026854", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "3753", + "y": "-11169" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122813a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-59", + "y": "-14388" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047773", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4633", + "y": "-3384" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p862322", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-7310", + "y": "-8519" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026859", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "3265", + "y": "-12792" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047777", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-5187", + "y": "-5006" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000709b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-17578", + "y": "-60" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2841631c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "14195", + "y": "-5126" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026855", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "5443", + "y": "-10613" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026857", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "3415", + "y": "-12270" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026858", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "4319", + "y": "-10987" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897780b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "8667", + "y": "-9842" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3251807a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9842", + "y": "18201" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1992.42", + "base_power_2": "7151.91", + "name": "ld_225673440a0a", + "nominal_voltage": "120.09", + "parent": "sx3251807a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "10041", + "y": "18321" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3027670b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2933", + "y": "-6146" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2822870", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "19906", + "y": "224" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879767", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9400", + "y": "3419" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026808", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "20148", + "y": "-926" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160113", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "12258", + "y": "10219" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048199b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9429", + "y": "-14261" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2972704c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-10044", + "y": "-6684" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4043.10", + "base_power_2": "5338.34", + "name": "ld_228445756c0a", + "nominal_voltage": "120.09", + "parent": "sx2972704c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-10255", + "y": "-6784" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2805031c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-10062", + "y": "3918" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254205c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "7327", + "y": "-5385" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2684420", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-8978", + "y": "-12573" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2859391b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "8343", + "y": "-3595" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4393.91", + "base_power_2": "5637.02", + "name": "ld_227989724b0a", + "nominal_voltage": "120.09", + "parent": "sx2859391b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8293", + "y": "-3369" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2822868", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "18443", + "y": "-9318" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822869", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "19873", + "y": "-1047" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822866", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "7316", + "y": "4567" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879773", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-14269", + "y": "7067" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160115", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "7430", + "y": "5372" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047744", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3828", + "y": "5320" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841630c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-6592", + "y": "-3678" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2822867", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-721", + "y": "2868" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160114", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4330", + "y": "1812" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026805", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-3941", + "y": "-15307" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822864", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-17354", + "y": "4230" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160117", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4363", + "y": "9728" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822865", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-16792", + "y": "4181" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026807", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "20319", + "y": "-725" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822862", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-15173", + "y": "1641" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026800", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "20349", + "y": "-178" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822863", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-10545", + "y": "-2946" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822860", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-10476", + "y": "-13778" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822861", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-1627", + "y": "3901" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2804282c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-3797", + "y": "242" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3901.56", + "base_power_2": "5479.88", + "name": "ld_337641c0a", + "nominal_voltage": "120.09", + "parent": "sx2804282c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3756", + "y": "466" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2764412", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9315", + "y": "13465" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916603b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8368", + "y": "-12617" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3451.76", + "base_power_2": "5661.64", + "name": "ld_323403b0a", + "nominal_voltage": "120.09", + "parent": "sx2916603b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8327", + "y": "-12847" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2879753", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9254", + "y": "842" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3251806b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "2535", + "y": "-11339" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6012.94", + "base_power_2": "7679.54", + "name": "ld_355602b0b", + "nominal_voltage": "120.09", + "parent": "sx3251806b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2309", + "y": "-11278" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3027671a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-1290", + "y": "-4136" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2764411", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-8872", + "y": "19297" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879752", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-11", + "y": "3818" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160123", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4006", + "y": "-908" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2801949", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "11350", + "y": "6687" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3254206b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "4521", + "y": "-10884" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3160098a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "10965", + "y": "11897" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3963.68", + "base_power_2": "1520.85", + "name": "ld_339048a0b", + "nominal_voltage": "120.09", + "parent": "sx3160098a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11085", + "y": "12094" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104856a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6453", + "y": "3014" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2765.78", + "base_power_2": "2718.75", + "name": "ld_260467a0a", + "nominal_voltage": "120.09", + "parent": "sx3104856a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6688", + "y": "2927" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2804270b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "9513", + "y": "9152" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254207a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5441", + "y": "3626" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047750", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3831", + "y": "5046" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047751", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3404", + "y": "3855" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000902c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-13036", + "y": "3053" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000902c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000902c", + "phases": "CS", + "x": "-13085", + "y": "3281" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "5402.72", + "name": "ld_2000902c0b", + "nominal_voltage": "120.09", + "parent": "sx2000902c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-13240", + "y": "3157" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3122827a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "12069", + "y": "-7483" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047752", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3854", + "y": "4771" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822877", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-4245", + "y": "1673" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047755", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3517", + "y": "3601" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047756", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3460", + "y": "3238" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822873", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "7285", + "y": "4377" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822871", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "3041", + "y": "-8689" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822872", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "14716", + "y": "33" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254873c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-7957", + "y": "15031" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6247.11", + "base_power_2": "4155.10", + "name": "ld_251862c0a", + "nominal_voltage": "120.09", + "parent": "sx3254873c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8187", + "y": "15006" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3217052c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "1358", + "y": "6774" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6552.43", + "base_power_2": "3932.11", + "name": "ld_260528c0b", + "nominal_voltage": "120.09", + "parent": "sx3217052c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1592", + "y": "6768" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3029500a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "12266", + "y": "-5502" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3082993", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "7951", + "y": "19651" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3649298", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6461", + "y": "-11973" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3649297", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6504", + "y": "-11528" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916602a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "11582", + "y": "13384" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4178.94", + "base_power_2": "4965.39", + "name": "ld_339049a0a", + "nominal_voltage": "120.09", + "parent": "sx2916602a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11740", + "y": "13557" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197654a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13813", + "y": "907" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3649299", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6405", + "y": "-12387" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2764403", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "14094", + "y": "1396" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104853c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-243", + "y": "7424" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9872.51", + "base_power_2": "3704.81", + "name": "ld_260518c0b", + "nominal_voltage": "120.09", + "parent": "sx3104853c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-206", + "y": "7658" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3254203b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9836", + "y": "-14197" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3179673c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "3493", + "y": "8645" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026820", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-809", + "y": "-12936" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3066809c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11077", + "y": "-6000" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5150.60", + "base_power_2": "5333.93", + "name": "ld_338958c0a", + "nominal_voltage": "120.09", + "parent": "sx3066809c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "10976", + "y": "-6215" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047720", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "4628", + "y": "5022" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047721", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "12945", + "y": "-5288" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026826", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-376", + "y": "-12564" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047722", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "2654", + "y": "3917" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254870c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-933", + "y": "-8032" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6812.20", + "base_power_2": "3672.34", + "name": "ld_260581c0a", + "nominal_voltage": "120.09", + "parent": "sx3254870c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1060", + "y": "-8233" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2879794", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-6830", + "y": "2727" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047723", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "13036", + "y": "-5622" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047724", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "3106", + "y": "4239" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026829", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6277", + "y": "-6050" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047725", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "3017", + "y": "4475" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3082992", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "2874", + "y": "-4800" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026823", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-1065", + "y": "-12992" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3216988b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-101", + "y": "-9105" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026824", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6544", + "y": "-5863" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047728", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "2926", + "y": "4708" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047729", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "13144", + "y": "-5950" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3217053c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "761", + "y": "6604" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3535.81", + "base_power_2": "3752.85", + "name": "ld_260529c0a", + "nominal_voltage": "120.09", + "parent": "sx3217053c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "978", + "y": "6509" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3082983", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "9442", + "y": "8347" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3251808a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9287", + "y": "14651" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3695.74", + "base_power_2": "4881.58", + "name": "ld_226029836a0a", + "nominal_voltage": "120.09", + "parent": "sx3251808a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9213", + "y": "14434" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3082988", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-8111", + "y": "2489" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3197653b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "14211", + "y": "9609" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254204a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13885", + "y": "-1739" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3067478a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "1", + "y": "-6009" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3067478a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3067478a", + "phases": "AS", + "x": "231", + "y": "-6096" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "1373.95", + "base_power_2": "12337.39", + "name": "ld_260598a0a", + "nominal_voltage": "120.09", + "parent": "sx3067478a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "91", + "y": "-6226" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026810", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-3139", + "y": "-14832" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822859", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-14285", + "y": "14423" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2748839b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8693", + "y": "1550" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2822857", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "4518", + "y": "-9668" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822858", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "5405", + "y": "-9833" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047732", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "1252", + "y": "2890" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047733", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "13394", + "y": "-6570" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "196-29521", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "6514", + "y": "3516" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047737", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "743", + "y": "2600" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p873800", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-5018", + "y": "-5812" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3082981", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-12889", + "y": "1419" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026812", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-2591", + "y": "-14346" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p873801", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-4744", + "y": "-5937" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "196-29520", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16062", + "y": "-661" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3179674b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "1363", + "y": "-2415" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3197625c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "7794", + "y": "15113" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4404.90", + "base_power_2": "1883.76", + "name": "ld_339044c0a", + "nominal_voltage": "120.09", + "parent": "sx3197625c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7708", + "y": "15332" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2786274c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-13609", + "y": "7390" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3102793b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "9838", + "y": "10997" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3150961c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-880", + "y": "-8630" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2748124b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2923", + "y": "16874" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4907.28", + "base_power_2": "5123.65", + "name": "ld_323392b0a", + "nominal_voltage": "120.09", + "parent": "sx2748124b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3008", + "y": "17093" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2897789b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "12606", + "y": "11190" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047702", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6344", + "y": "5974" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047707", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6325", + "y": "6653" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "regxfmr_hvmv11sub3_lsb", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "9186", + "y": "-3165" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3160878c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-16176", + "y": "6079" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3029055", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-873", + "y": "-6809" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2955081a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-13049", + "y": "6538" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2234.89", + "base_power_2": "3249.65", + "name": "ld_260508a0b", + "nominal_voltage": "120.09", + "parent": "sx2955081a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-13024", + "y": "6766" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2805036b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3291", + "y": "2638" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3197624b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-10223", + "y": "-13189" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3490.38", + "base_power_2": "1612.71", + "name": "ld_323235b0a", + "nominal_voltage": "120.09", + "parent": "sx3197624b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-10449", + "y": "-13132" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2915534a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-1882", + "y": "-6511" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4195.37", + "base_power_2": "9515.97", + "name": "ld_227917122a0a", + "nominal_voltage": "120.09", + "parent": "sx2915534a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1659", + "y": "-6560" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2786273b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3520", + "y": "2036" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5578300-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "7676", + "y": "10324" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5867591-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-1308", + "y": "-5750" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047711", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "12865", + "y": "-4582" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047713", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "5221", + "y": "5145" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000715b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-19648", + "y": "290" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047718", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "12887", + "y": "-4943" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2801950", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-7496", + "y": "-5004" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2804283a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-4044", + "y": "-15757" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2804283a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2804283a", + "phases": "AS", + "x": "-4027", + "y": "-16004" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7749.99", + "base_power_2": "1394.34", + "name": "ld_138564a0b", + "nominal_voltage": "120.09", + "parent": "sx2804283a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4173", + "y": "-15952" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3010580b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "11674", + "y": "8595" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4253.55", + "base_power_2": "1767.07", + "name": "ld_21451973b0a", + "nominal_voltage": "120.09", + "parent": "sx3010580b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11887", + "y": "8491" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3235946a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5862", + "y": "11195" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3139598b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4441", + "y": "-9940" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3102286", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-1310", + "y": "-5631" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3254208c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11958", + "y": "-7139" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3235945c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "10225", + "y": "13907" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2933120c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11623", + "y": "-7856" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5176.57", + "base_power_2": "10555.39", + "name": "ld_226192890c0b", + "nominal_voltage": "120.09", + "parent": "sx2933120c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11556", + "y": "-8083" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2000714b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-19412", + "y": "-7" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000712b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-18719", + "y": "276" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3552667", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-1517", + "y": "1170" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160100", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-7656", + "y": "-11959" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160102", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6202", + "y": "-3745" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2805034a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3582", + "y": "7782" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3160101", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-7429", + "y": "5061" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2989564b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "12833", + "y": "10867" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2536.95", + "base_power_2": "3483.67", + "name": "ld_323286b0a", + "nominal_voltage": "120.09", + "parent": "sx2989564b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "13056", + "y": "10947" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104850c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2347", + "y": "1659" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8298.58", + "base_power_2": "2185.95", + "name": "ld_260561c0a", + "nominal_voltage": "120.09", + "parent": "sx3104850c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2566", + "y": "1589" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d5863704-2_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "12682", + "y": "-2164" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089der480-2", + "nominal_voltage": "277.13", + "phases": "ABCN", + "x": "11202", + "y": "9608" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089der480-1", + "nominal_voltage": "277.13", + "phases": "ABCN", + "x": "-11153", + "y": "-3336" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3254209c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "12443", + "y": "-2195" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3645809c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "8911", + "y": "-10281" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "12876.25", + "base_power_2": "8092.82", + "name": "ld_2224230615c0b", + "nominal_voltage": "120.09", + "parent": "sx3645809c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8884", + "y": "-10519" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3160104", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "513", + "y": "13542" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160103", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "9838", + "y": "1579" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160106", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "10599", + "y": "-8020" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160105", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-9470", + "y": "-4234" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3179678b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14786", + "y": "5954" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3160108", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "2929", + "y": "-11650" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160107", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-12866", + "y": "1950" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "221-311905", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-8879", + "y": "-8386" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160109", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "15711", + "y": "-578" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000713b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-19041", + "y": "-134" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2804272b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "6338", + "y": "6174" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1125966", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-170", + "y": "-7976" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000711b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-18340", + "y": "-102" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1125968", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-532", + "y": "-6657" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125969", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-733", + "y": "-5790" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001009b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9909", + "y": "4899" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001009b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001009b", + "phases": "BS", + "x": "-9699", + "y": "5013" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "9758.28", + "base_power_2": "6299.93", + "name": "ld_2001009b0a", + "nominal_voltage": "120.09", + "parent": "sx2001009b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-9729", + "y": "4756" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2000408a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-13202", + "y": "-3511" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2806553c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-7479", + "y": "14133" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7817.01", + "base_power_2": "2667.53", + "name": "ld_227411655c0b", + "nominal_voltage": "120.09", + "parent": "sx2806553c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-7692", + "y": "14040" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2000905", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-12757", + "y": "4193" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000904", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-12790", + "y": "3681" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000903", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-12860", + "y": "3154" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125960", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-1010", + "y": "-3180" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000902", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-12937", + "y": "2604" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125961", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-1581", + "y": "-3717" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000909", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-12476", + "y": "6086" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125962", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-1019", + "y": "-3720" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000908", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-12540", + "y": "5626" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000907", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-12623", + "y": "5163" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000906", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-12699", + "y": "4687" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2767407b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9048", + "y": "3133" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2748128c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-12080", + "y": "774" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2965.95", + "base_power_2": "7518.58", + "name": "ld_337629c0b", + "nominal_voltage": "120.09", + "parent": "sx2748128c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-12039", + "y": "999" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2000901", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-13093", + "y": "1479" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000900", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-13160", + "y": "916" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000909c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-12170", + "y": "6472" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000909c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000909c", + "phases": "CS", + "x": "-12037", + "y": "6671" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "5402.72", + "name": "ld_2000909c0b", + "nominal_voltage": "120.09", + "parent": "sx2000909c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-11944", + "y": "6523" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001312a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-16727", + "y": "-7850" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001312a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001312a", + "phases": "AS", + "x": "-16830", + "y": "-8072" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7469.20", + "base_power_2": "9240.79", + "name": "ld_2001312a0b", + "nominal_voltage": "120.09", + "parent": "sx2001312a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-16945", + "y": "-7935" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1125955", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-1421", + "y": "-2119" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710509c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-15475", + "y": "1657" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000710b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-17971", + "y": "303" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1125957", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-1606", + "y": "-2261" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3010585a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-4695", + "y": "-15562" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9328.55", + "base_power_2": "4382.79", + "name": "ld_294810a0a", + "nominal_voltage": "120.09", + "parent": "sx3010585a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4926", + "y": "-15621" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1125959", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-1854", + "y": "-3736" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000409a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-13425", + "y": "-3899" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001008b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-10602", + "y": "4997" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001008b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001008b", + "phases": "BS", + "x": "-10657", + "y": "5237" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "6218.23", + "base_power_2": "8400.55", + "name": "ld_2001008b0b", + "nominal_voltage": "120.09", + "parent": "sx2001008b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-10471", + "y": "5192" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1125952", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-958", + "y": "-2123" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2767408c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "169", + "y": "6648" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2748127a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6907", + "y": "6155" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3956.53", + "base_power_2": "1528.01", + "name": "ld_338919a0b", + "nominal_voltage": "120.09", + "parent": "sx2748127a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7098", + "y": "6312" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2857591", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-1804", + "y": "-13783" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3066804a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13690", + "y": "-7347" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7105.66", + "base_power_2": "6605.68", + "name": "ld_21380599a0b", + "nominal_voltage": "120.09", + "parent": "sx3066804a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "13782", + "y": "-7574" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001311a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-16835", + "y": "-7406" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001311a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001311a", + "phases": "AS", + "x": "-16996", + "y": "-7590" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "9304.37", + "base_power_2": "9136.30", + "name": "ld_2001311a0b", + "nominal_voltage": "120.09", + "parent": "sx2001311a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-17068", + "y": "-7429" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2763153", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "1388", + "y": "-1321" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125943", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-674", + "y": "-7882" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125944", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-833", + "y": "-524" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710508b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-10528", + "y": "-13585" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000406a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-12746", + "y": "-2697" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2673326b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "3544", + "y": "-10537" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3232902", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "3579", + "y": "-1153" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125947", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-881", + "y": "-1063" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001007b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-10894", + "y": "4588" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001007b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001007b", + "phases": "BS", + "x": "-10855", + "y": "4844" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7051.48", + "base_power_2": "3717.35", + "name": "ld_2001007b0a", + "nominal_voltage": "120.09", + "parent": "sx2001007b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-10989", + "y": "4801" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3118855c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11029", + "y": "10841" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2729206c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "10897", + "y": "2292" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6645.79", + "base_power_2": "9086.17", + "name": "ld_2212168866c0a", + "nominal_voltage": "120.09", + "parent": "sx2729206c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11046", + "y": "2468" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1125940", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-5593", + "y": "6008" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2952013a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-859", + "y": "-12095" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2421.45", + "base_power_2": "1238.34", + "name": "ld_355843a0a", + "nominal_voltage": "120.09", + "parent": "sx2952013a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-985", + "y": "-11901" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3728043a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "15886", + "y": "4507" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2748126c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "4088", + "y": "6602" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1067.07", + "base_power_2": "9417.47", + "name": "ld_321891c0b", + "nominal_voltage": "120.09", + "parent": "sx2748126c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3865", + "y": "6633" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000907c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-12889", + "y": "5559" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000907c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000907c", + "phases": "CS", + "x": "-12913", + "y": "5791" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "5402.72", + "name": "ld_2000907c0a", + "nominal_voltage": "120.09", + "parent": "sx2000907c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-13114", + "y": "5619" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001310a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-16859", + "y": "-6943" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001310a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001310a", + "phases": "AS", + "x": "-17054", + "y": "-7089" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "10172.24", + "base_power_2": "10687.75", + "name": "ld_2001310a0a", + "nominal_voltage": "120.09", + "parent": "sx2001310a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-17091", + "y": "-6911" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2990098a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-1642", + "y": "-4618" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3066801c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-3197", + "y": "-2502" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2834.39", + "base_power_2": "1361.49", + "name": "ld_138464c0b", + "nominal_voltage": "120.09", + "parent": "sx3066801c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2970", + "y": "-2486" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2952014a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-5271", + "y": "-15368" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2162.01", + "base_power_2": "3322.52", + "name": "ld_294809a0a", + "nominal_voltage": "120.09", + "parent": "sx2952014a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5494", + "y": "-15443" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1125934", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-7453", + "y": "4400" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000407a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-12983", + "y": "-3110" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2875754c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-16354", + "y": "5926" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2822870c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "19939", + "y": "474" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2916609c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-9579", + "y": "-5417" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4784.53", + "base_power_2": "5627.84", + "name": "ld_138346c0b", + "nominal_voltage": "120.09", + "parent": "sx2916609c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9398", + "y": "-5275" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729207c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11392", + "y": "2250" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6123.75", + "base_power_2": "14845.32", + "name": "ld_2212168874c0b", + "nominal_voltage": "120.09", + "parent": "sx2729207c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11597", + "y": "2362" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3728042a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "15556", + "y": "4362" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3101782", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4984", + "y": "13284" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2948732b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "2811", + "y": "-8983" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2748125c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11704", + "y": "-7200" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5778.05", + "base_power_2": "4706.49", + "name": "ld_338962c0b", + "nominal_voltage": "120.09", + "parent": "sx2748125c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11881", + "y": "-7337" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3101789", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9592", + "y": "-4872" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5860450-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "15160", + "y": "1063" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3101788", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9640", + "y": "15512" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001006b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-10825", + "y": "3721" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001006b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001006b", + "phases": "BS", + "x": "-10661", + "y": "3884" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "6172.98", + "base_power_2": "5043.05", + "name": "ld_2001006b0a", + "nominal_voltage": "120.09", + "parent": "sx2001006b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-10667", + "y": "3556" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000908c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-12200", + "y": "5954" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000908c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000908c", + "phases": "CS", + "x": "-12069", + "y": "6148" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "5402.72", + "name": "ld_2000908c0b", + "nominal_voltage": "120.09", + "parent": "sx2000908c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-11972", + "y": "5951" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3101787", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9841", + "y": "15660" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000404a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-12390", + "y": "-1662" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2814529b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "15947", + "y": "-9610" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4684.32", + "base_power_2": "15367.22", + "name": "ld_2120126b0a", + "nominal_voltage": "120.09", + "parent": "sx2814529b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "15887", + "y": "-9838" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2814529c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "16244", + "y": "-9644" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2814529c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2814529c", + "phases": "CS", + "x": "16232", + "y": "-9890" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "9231.69", + "base_power_2": "11737.39", + "name": "ld_2120126c0a", + "nominal_voltage": "120.09", + "parent": "sx2814529c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "16410", + "y": "-9811" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2916608c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11976", + "y": "7134" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3981.92", + "base_power_2": "4156.06", + "name": "ld_321852c0b", + "nominal_voltage": "120.09", + "parent": "sx2916608c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12179", + "y": "7253" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3215340a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9375", + "y": "12069" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2814529a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "15690", + "y": "-9450" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2814529a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2814529a", + "phases": "AS", + "x": "15580", + "y": "-9667" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4395.48", + "base_power_2": "13893.18", + "name": "ld_2120126a0a", + "nominal_voltage": "120.09", + "parent": "sx2814529a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "15458", + "y": "-9481" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2692000", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "1665", + "y": "-2480" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3728041a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "15435", + "y": "5328" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2745806c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "12263", + "y": "-8615" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2998.31", + "base_power_2": "7486.23", + "name": "ld_226194262c0b", + "nominal_voltage": "120.09", + "parent": "sx2745806c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12327", + "y": "-8845" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000905c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-13109", + "y": "4527" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000905c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000905c", + "phases": "CS", + "x": "-13253", + "y": "4714" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "5402.72", + "name": "ld_2000905c0b", + "nominal_voltage": "120.09", + "parent": "sx2000905c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-13340", + "y": "4518" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3066807c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-14822", + "y": "515" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1147.34", + "base_power_2": "3048.53", + "name": "ld_337624c0a", + "nominal_voltage": "120.09", + "parent": "sx3066807c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-15051", + "y": "485" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001005b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-11539", + "y": "3680" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001005b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001005b", + "phases": "BS", + "x": "-11534", + "y": "3915" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7918.91", + "base_power_2": "4817.10", + "name": "ld_2001005b0b", + "nominal_voltage": "120.09", + "parent": "sx2001005b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-11723", + "y": "3820" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2879073c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-10363", + "y": "-5186" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5309.79", + "base_power_2": "4071.65", + "name": "ld_138371c0b", + "nominal_voltage": "120.09", + "parent": "sx2879073c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-10594", + "y": "-5160" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1186078", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-6764", + "y": "13960" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1186072", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "1245", + "y": "3903" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000403a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-11868", + "y": "-1458" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3216368c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "16489", + "y": "-8409" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000405a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-12398", + "y": "-2291" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2710505b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4295", + "y": "15056" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3122835b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "9914", + "y": "9732" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3604.29", + "base_power_2": "5509.11", + "name": "ld_339008b0a", + "nominal_voltage": "120.09", + "parent": "sx3122835b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9791", + "y": "9930" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1125990", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-326", + "y": "-6074" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916607c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "6442", + "y": "8525" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2711.74", + "base_power_2": "7772.80", + "name": "ld_321882c0b", + "nominal_voltage": "120.09", + "parent": "sx2916607c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6285", + "y": "8701" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2729206", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "10764", + "y": "1841" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125994", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-621", + "y": "-5411" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729207", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "11016", + "y": "1936" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048196b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5019", + "y": "830" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1125997", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-93", + "y": "-4877" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "regxfmr_hvmv69sub1_lsb1", + "nominal_voltage": "39837.17", + "phases": "ABCN", + "x": "3605", + "y": "2036" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104830", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6959", + "y": "6029" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3728040a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "15195", + "y": "5076" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3066808c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "9190", + "y": "-2780" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5187.32", + "base_power_2": "1101.34", + "name": "ld_337654c0b", + "nominal_voltage": "120.09", + "parent": "sx3066808c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8980", + "y": "-2870" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3214071c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-995", + "y": "-1407" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2204.06", + "base_power_2": "8280.48", + "name": "ld_226194419c0a", + "nominal_voltage": "120.09", + "parent": "sx3214071c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-772", + "y": "-1461" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3156034", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "11318", + "y": "-5595" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000906c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-13031", + "y": "5044" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000906c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000906c", + "phases": "CS", + "x": "-13234", + "y": "5171" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "5402.72", + "name": "ld_2000906c0b", + "nominal_voltage": "120.09", + "parent": "sx2000906c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-13043", + "y": "5273" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1186065", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "1934", + "y": "792" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879072b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-1145", + "y": "6027" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3267.76", + "base_power_2": "2752.86", + "name": "ld_337695b0a", + "nominal_voltage": "120.09", + "parent": "sx2879072b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1361", + "y": "6117" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3232933", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "11272", + "y": "-8124" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1186067", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "1987", + "y": "2950" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001004b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-11784", + "y": "3195" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001004b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001004b", + "phases": "BS", + "x": "-11813", + "y": "3425" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7219.24", + "base_power_2": "3941.14", + "name": "ld_2001004b0b", + "nominal_voltage": "120.09", + "parent": "sx2001004b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-11984", + "y": "3307" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2917310b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8809", + "y": "1340" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1186061", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "1652", + "y": "334" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1186064", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "1813", + "y": "274" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3008232b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "13227", + "y": "2975" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1186063", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "1681", + "y": "-252" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125987", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-121", + "y": "-6736" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125988", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "294", + "y": "-7218" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125989", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-214", + "y": "-6403" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710504b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3084", + "y": "16320" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2916606c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-17556", + "y": "3995" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1366.88", + "base_power_2": "4921.78", + "name": "ld_275007c0b", + "nominal_voltage": "120.09", + "parent": "sx2916606c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-17767", + "y": "3886" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1125982", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-888", + "y": "-6565" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897792a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13068", + "y": "-2495" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2897792a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2897792a", + "phases": "AS", + "x": "13274", + "y": "-2625" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4926.11", + "base_power_2": "3651.21", + "name": "ld_338985a0a", + "nominal_voltage": "120.09", + "parent": "sx2897792a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "13299", + "y": "-2459" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000903c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-12977", + "y": "3630" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000903c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000903c", + "phases": "CS", + "x": "-13123", + "y": "3819" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5906.56", + "base_power_2": "8533.21", + "name": "ld_2000903c0a", + "nominal_voltage": "120.09", + "parent": "sx2000903c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-12929", + "y": "3858" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3066805a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7008", + "y": "4556" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5466.65", + "base_power_2": "3677.68", + "name": "ld_337674a0b", + "nominal_voltage": "120.09", + "parent": "sx3066805a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-7232", + "y": "4507" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2879071b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-349", + "y": "9702" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3592.01", + "base_power_2": "6438.92", + "name": "ld_337701b0a", + "nominal_voltage": "120.09", + "parent": "sx2879071b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-499", + "y": "9880" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3178997c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-5090", + "y": "818" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3178997c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3178997c", + "phases": "CS", + "x": "-5342", + "y": "899" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "2277.83", + "base_power_2": "4010.83", + "name": "ld_293422c0a", + "nominal_voltage": "120.09", + "parent": "sx3178997c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5304", + "y": "730" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3217057a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-1845", + "y": "8553" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1987.15", + "base_power_2": "1672.65", + "name": "ld_218475a0b", + "nominal_voltage": "120.09", + "parent": "sx3217057a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1804", + "y": "8784" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001003b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-12038", + "y": "2718" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001003b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001003b", + "phases": "BS", + "x": "-12074", + "y": "2946" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5906.56", + "base_power_2": "8533.21", + "name": "ld_2001003b0b", + "nominal_voltage": "120.09", + "parent": "sx2001003b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-12255", + "y": "2793" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1125976", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-330", + "y": "-6936" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125978", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-953", + "y": "-6327" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125979", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-2307", + "y": "-3937" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916605c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-17049", + "y": "3748" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2362.63", + "base_power_2": "3926.03", + "name": "ld_274987c0a", + "nominal_voltage": "120.09", + "parent": "sx2916605c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-17246", + "y": "3619" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3122837c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "4880", + "y": "-5900" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9208.50", + "base_power_2": "6523.46", + "name": "ld_355432c0a", + "nominal_voltage": "120.09", + "parent": "sx3122837c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4722", + "y": "-5735" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d5513564-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-819", + "y": "6819" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000915", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-12417", + "y": "8215" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2764436", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-7122", + "y": "-10454" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000914", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-12303", + "y": "7969" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000913", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-12266", + "y": "7658" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125974", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-2070", + "y": "-3877" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104850", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-1931", + "y": "1450" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000912", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-12298", + "y": "7309" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000911", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-12391", + "y": "6936" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000910", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-12427", + "y": "6525" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000904c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-12482", + "y": "4061" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000904c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000904c", + "phases": "CS", + "x": "-12407", + "y": "4286" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7219.24", + "base_power_2": "3941.14", + "name": "ld_2000904c0a", + "nominal_voltage": "120.09", + "parent": "sx2000904c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-12255", + "y": "4102" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3066806c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-15846", + "y": "1285" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4416.54", + "base_power_2": "1872.12", + "name": "ld_275002c0a", + "nominal_voltage": "120.09", + "parent": "sx3066806c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-16072", + "y": "1216" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897793a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "12437", + "y": "-3347" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1356.75", + "base_power_2": "2303.04", + "name": "ld_338987a0b", + "nominal_voltage": "120.09", + "parent": "sx2897793a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12256", + "y": "-3486" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3104859", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-14642", + "y": "8818" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3251799a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-1407", + "y": "-854" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3217056a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-2521", + "y": "8282" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "12146.57", + "base_power_2": "6142.09", + "name": "ld_218474a0b", + "nominal_voltage": "120.09", + "parent": "sx3217056a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2689", + "y": "8443" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2879070b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "7804", + "y": "-8781" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4047.08", + "base_power_2": "5066.32", + "name": "ld_338934b0a", + "nominal_voltage": "120.09", + "parent": "sx2879070b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8041", + "y": "-8751" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3189190a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "18064", + "y": "-5530" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3104856", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5904", + "y": "3097" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748129a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5261", + "y": "-14608" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3597.31", + "base_power_2": "13206.81", + "name": "ld_138567a0b", + "nominal_voltage": "120.09", + "parent": "sx2748129a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5484", + "y": "-14677" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2916234", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4352", + "y": "-6906" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001002b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-11862", + "y": "1876" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001002b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001002b", + "phases": "BS", + "x": "-11641", + "y": "1789" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "5402.72", + "name": "ld_2001002b0a", + "nominal_voltage": "120.09", + "parent": "sx2001002b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-11670", + "y": "2011" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2000402a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-11752", + "y": "-848" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3104853", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-494", + "y": "6991" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001308a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-16006", + "y": "-6331" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001308a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001308a", + "phases": "AS", + "x": "-15978", + "y": "-6570" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "9304.64", + "name": "ld_2001308a0a", + "nominal_voltage": "120.09", + "parent": "sx2001308a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-15798", + "y": "-6436" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2879066b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5177", + "y": "-8227" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3242.71", + "base_power_2": "5870.69", + "name": "ld_323252b0b", + "nominal_voltage": "120.09", + "parent": "sx2879066b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5048", + "y": "-8423" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m3037449", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "673", + "y": "-7636" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710514b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4203", + "y": "6796" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2673320b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "979", + "y": "15967" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2766738c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "10492", + "y": "1127" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "22884.15", + "base_power_2": "28837.50", + "name": "ld_338978c0a", + "nominal_voltage": "120.09", + "parent": "sx2766738c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "10503", + "y": "892" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m3037441", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "17222", + "y": "-6165" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001308a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-16106", + "y": "-6105" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000412a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-14516", + "y": "-4810" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000412a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000412a", + "phases": "AS", + "x": "-14755", + "y": "-4834" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "11997.23", + "base_power_2": "10551.25", + "name": "ld_2000412a0a", + "nominal_voltage": "120.09", + "parent": "sx2000412a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-14642", + "y": "-5007" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2692600c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "10725", + "y": "13430" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7614.55", + "base_power_2": "2869.99", + "name": "ld_356798c0a", + "nominal_voltage": "120.09", + "parent": "sx2692600c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "10951", + "y": "13492" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104135a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-9398", + "y": "8198" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000411a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-13844", + "y": "-4616" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879065b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4384", + "y": "-6092" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2637.11", + "base_power_2": "1373.20", + "name": "ld_247126b0b", + "nominal_voltage": "120.09", + "parent": "sx2879065b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4487", + "y": "-5880" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001307a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-16524", + "y": "-5741" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001307a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001307a", + "phases": "AS", + "x": "-16758", + "y": "-5800" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7466.54", + "base_power_2": "8603.86", + "name": "ld_2001307a0a", + "nominal_voltage": "120.09", + "parent": "sx2001307a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-16601", + "y": "-5960" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2897790c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "5341", + "y": "908" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2710513b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3438", + "y": "14779" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m3037455", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "610", + "y": "6856" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d6140778-1_int", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9637", + "y": "8850" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3037453", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-2362", + "y": "-14295" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv11sub1_lsb", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "3042", + "y": "2824" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3037452", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-4882", + "y": "9478" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2730149c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "134", + "y": "-5526" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2730149c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2730149c", + "phases": "CS", + "x": "376", + "y": "-5539" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3764.36", + "base_power_2": "2524.30", + "name": "ld_260601c0a", + "nominal_voltage": "120.09", + "parent": "sx2730149c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "282", + "y": "-5705" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001307a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-16314", + "y": "-5606" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000413a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-14048", + "y": "-5511" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000413a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000413a", + "phases": "AS", + "x": "-14042", + "y": "-5758" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7297.46", + "base_power_2": "4923.84", + "name": "ld_2000413a0a", + "nominal_voltage": "120.09", + "parent": "sx2000413a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-13877", + "y": "-5674" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3141393c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11909", + "y": "12196" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7271.86", + "base_power_2": "3212.68", + "name": "ld_442373c0b", + "nominal_voltage": "120.09", + "parent": "sx3141393c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12103", + "y": "12326" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104136b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "14952", + "y": "-421" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3008237c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "4491", + "y": "954" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3765.23", + "base_power_2": "6719.31", + "name": "ld_226193838c0b", + "nominal_voltage": "120.09", + "parent": "sx3008237c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4344", + "y": "759" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2879064a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5488", + "y": "-10545" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5536.49", + "base_power_2": "3607.84", + "name": "ld_138581a0a", + "nominal_voltage": "120.09", + "parent": "sx2879064a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5637", + "y": "-10723" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3270814a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-231", + "y": "-18661" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8481.95", + "base_power_2": "3755.16", + "name": "ld_226191850a0b", + "nominal_voltage": "120.09", + "parent": "sx3270814a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-407", + "y": "-18817" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2000412a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-14279", + "y": "-4732" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3086002c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "10731", + "y": "14296" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power": "12MVA", + "bustype": "SWING", + "name": "sourcebus", + "nominal_voltage": "66395.28", + "phases": "ABCN", + "positive_sequence_voltage": "${VSOURCE}", + "power_convergence_value": "100VA", + "x": "3552", + "y": "2685" + }, + "children": [], + "name": "substation" + }, + { + "attributes": { + "name": "sx2691973a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3083", + "y": "-15614" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3958.18", + "base_power_2": "1526.36", + "name": "ld_355935a0a", + "nominal_voltage": "120.09", + "parent": "sx2691973a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3271", + "y": "-15754" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p828362", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10042", + "y": "-802" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001306a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-16441", + "y": "-5225" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001306a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001306a", + "phases": "AS", + "x": "-16681", + "y": "-5260" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "6877.54", + "base_power_2": "4010.74", + "name": "ld_2001306a0b", + "nominal_voltage": "120.09", + "parent": "sx2001306a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-16558", + "y": "-5425" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2710512b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3806", + "y": "13983" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2861218c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-11328", + "y": "4731" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3757.32", + "base_power_2": "9820.00", + "name": "ld_260505c0a", + "nominal_voltage": "120.09", + "parent": "sx2861218c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-11553", + "y": "4814" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2891575c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8186", + "y": "19524" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2891575c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2891575c", + "phases": "CS", + "x": "-7969", + "y": "19625" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3168.21", + "base_power_2": "3120.45", + "name": "ld_225533423c0b", + "nominal_voltage": "120.09", + "parent": "sx2891575c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8163", + "y": "19756" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000410a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-13574", + "y": "-4522" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000410a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000410a", + "phases": "AS", + "x": "-13537", + "y": "-4762" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "10545.81", + "base_power_2": "6111.35", + "name": "ld_2000410a0a", + "nominal_voltage": "120.09", + "parent": "sx2000410a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-13392", + "y": "-4669" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001305a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-16068", + "y": "-4659" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2822877b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4511", + "y": "1716" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3141394b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "6781", + "y": "13323" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6320.12", + "base_power_2": "3710.81", + "name": "ld_339042b0b", + "nominal_voltage": "120.09", + "parent": "sx3141394b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6604", + "y": "13474" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001306a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-16214", + "y": "-5125" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2917328b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-10785", + "y": "4289" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1546.32", + "base_power_2": "8484.61", + "name": "ld_21389092b0b", + "nominal_voltage": "120.09", + "parent": "sx2917328b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-11032", + "y": "4305" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104133a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "11907", + "y": "-6659" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1137002", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6327", + "y": "6322" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137003", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5451", + "y": "5339" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137005", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "3578", + "y": "4520" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879063b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "5675", + "y": "-1785" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2317.86", + "base_power_2": "7713.07", + "name": "ld_337646b0a", + "nominal_voltage": "120.09", + "parent": "sx2879063b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5815", + "y": "-1963" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001305a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-16300", + "y": "-4747" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001305a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001305a", + "phases": "AS", + "x": "-16514", + "y": "-4858" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "4953.40", + "name": "ld_2001305a0a", + "nominal_voltage": "120.09", + "parent": "sx2001305a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-16519", + "y": "-4668" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2710511a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8818", + "y": "4412" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2842379a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-10027", + "y": "3052" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3177894a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8133", + "y": "20030" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5997.38", + "base_power_2": "3146.95", + "name": "ld_227903012a0b", + "nominal_voltage": "120.09", + "parent": "sx3177894a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8090", + "y": "20259" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p828359", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "10519", + "y": "1245" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000411a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-13829", + "y": "-4868" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000411a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000411a", + "phases": "AS", + "x": "-13840", + "y": "-5110" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7463.88", + "base_power_2": "4009.14", + "name": "ld_2000411a0b", + "nominal_voltage": "120.09", + "parent": "sx2000411a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-13680", + "y": "-5048" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001304a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-15903", + "y": "-4169" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2726975b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3408", + "y": "16162" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2568.43", + "base_power_2": "3452.19", + "name": "ld_226193422b0a", + "nominal_voltage": "120.09", + "parent": "sx2726975b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3529", + "y": "16362" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3141395c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "1888", + "y": "3920" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2377.72", + "base_power_2": "8106.81", + "name": "ld_2149184c0a", + "nominal_voltage": "120.09", + "parent": "sx3141395c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1947", + "y": "4144" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p1121283", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "8727", + "y": "-8739" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3177881c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "5822", + "y": "-6318" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3104134c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "2750", + "y": "-12815" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p1121282", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "9104", + "y": "-8824" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2861219b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5120", + "y": "4594" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3750.08", + "base_power_2": "9373.64", + "name": "ld_21389761b0a", + "nominal_voltage": "120.09", + "parent": "sx2861219b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5047", + "y": "4379" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2879062c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-10466", + "y": "35" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5664.03", + "base_power_2": "3717.41", + "name": "ld_21385192c0b", + "nominal_voltage": "120.09", + "parent": "sx2879062c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-10308", + "y": "201" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p828360", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "10536", + "y": "1680" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000410a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-13627", + "y": "-4275" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3214069c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-1419", + "y": "-2783" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7925.46", + "base_power_2": "2559.08", + "name": "ld_226194421c0a", + "nominal_voltage": "120.09", + "parent": "sx3214069c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1636", + "y": "-2862" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2842384c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "3659", + "y": "7192" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1134.78", + "base_power_2": "3061.10", + "name": "ld_260637c0a", + "nominal_voltage": "120.09", + "parent": "sx2842384c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3820", + "y": "7368" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001304a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-16136", + "y": "-4243" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001304a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001304a", + "phases": "AS", + "x": "-16376", + "y": "-4252" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7219.24", + "base_power_2": "3844.66", + "name": "ld_2001304a0a", + "nominal_voltage": "120.09", + "parent": "sx2001304a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-16255", + "y": "-4440" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2991923a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4433", + "y": "-13549" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8282.71", + "base_power_2": "3954.41", + "name": "ld_302735a0b", + "nominal_voltage": "120.09", + "parent": "sx2991923a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4447", + "y": "-13785" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2710510c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-3541", + "y": "-11791" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001303a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-15709", + "y": "-3690" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3104131a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5998", + "y": "8418" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2726974b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "12886", + "y": "9882" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3216.90", + "base_power_2": "9906.81", + "name": "ld_226193395b0b", + "nominal_voltage": "120.09", + "parent": "sx2726974b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "13108", + "y": "9949" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m1142-lng1", + "nominal_voltage": "277.13", + "phases": "ABCN", + "x": "-7748", + "y": "3308" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142-lng1_dgmtr", + "nominal_voltage": "277.13", + "parent": "m1142-lng1", + "phases": "ABCN", + "x": "-7977", + "y": "3283" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "x2822871b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "2819", + "y": "-8572" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3066811b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5317", + "y": "-5981" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1861.35", + "base_power_2": "8169.58", + "name": "ld_2126875b0b", + "nominal_voltage": "120.09", + "parent": "sx3066811b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5387", + "y": "-6210" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2842383a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4628", + "y": "4764" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5123.41", + "base_power_2": "3453.91", + "name": "ld_260634a0b", + "nominal_voltage": "120.09", + "parent": "sx2842383a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4849", + "y": "4831" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001303a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-15939", + "y": "-3774" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001303a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001303a", + "phases": "AS", + "x": "-16154", + "y": "-3878" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "6314.80", + "base_power_2": "8533.21", + "name": "ld_2001303a0b", + "nominal_voltage": "120.09", + "parent": "sx2001303a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-16154", + "y": "-3688" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2879069a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-2885", + "y": "4713" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3243.45", + "base_power_2": "3509.12", + "name": "ld_338894a0b", + "nominal_voltage": "120.09", + "parent": "sx2879069a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2787", + "y": "4925" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673323c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "6632", + "y": "-6171" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2991922a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5228", + "y": "-12760" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3712.98", + "base_power_2": "1771.55", + "name": "ld_302734a0a", + "nominal_voltage": "120.09", + "parent": "sx2991922a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5320", + "y": "-12976" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001302a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-15500", + "y": "-3196" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3235245", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "12527", + "y": "-1921" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026796", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "19846", + "y": "-205" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235246", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3794", + "y": "13320" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026797", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "20098", + "y": "-163" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235243", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-6305", + "y": "-5583" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026798", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-4523", + "y": "-15297" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841629c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-6622", + "y": "-2825" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3235244", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-6920", + "y": "4746" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2726973a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "14370", + "y": "-315" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3761.95", + "base_power_2": "5382.38", + "name": "ld_226192926a0b", + "nominal_voltage": "120.09", + "parent": "sx2726973a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "14498", + "y": "-505" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3235241", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "4771", + "y": "6038" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026792", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-4529", + "y": "-15817" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235242", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "11237", + "y": "11474" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2822872b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "14885", + "y": "199" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3104132a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-4342", + "y": "10164" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026795", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "19595", + "y": "-264" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3066812a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-4145", + "y": "3905" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8256.79", + "base_power_2": "3980.33", + "name": "ld_323263a0a", + "nominal_voltage": "120.09", + "parent": "sx3066812a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4383", + "y": "3924" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3235249", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "1807", + "y": "-16299" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235247", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "12247", + "y": "4465" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2860500b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5660", + "y": "9539" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3747.26", + "base_power_2": "5366.15", + "name": "ld_323274b0a", + "nominal_voltage": "120.09", + "parent": "sx2860500b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5807", + "y": "9728" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3235248", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "7674", + "y": "8539" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879068b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3960", + "y": "-2691" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6978.03", + "base_power_2": "3052.90", + "name": "ld_323254b0b", + "nominal_voltage": "120.09", + "parent": "sx2879068b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3922", + "y": "-2911" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673322b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "8674", + "y": "-4066" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2764412a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9297", + "y": "13234" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2954361b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "12696", + "y": "9234" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2088.60", + "base_power_2": "7942.33", + "name": "ld_21383494b0b", + "nominal_voltage": "120.09", + "parent": "sx2954361b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12824", + "y": "9039" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2991921c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "7398", + "y": "-5135" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5483.00", + "base_power_2": "5001.53", + "name": "ld_2129399c0b", + "nominal_voltage": "120.09", + "parent": "sx2991921c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7443", + "y": "-5359" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2730149c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-111", + "y": "-5473" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3235256", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-1257", + "y": "-11931" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235257", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "2864", + "y": "-9349" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235254", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6000", + "y": "-10413" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235255", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8840", + "y": "-9183" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841628a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-13726", + "y": "2596" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3235252", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "256", + "y": "-25" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2822873b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "7042", + "y": "4337" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3235253", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-5179", + "y": "-12230" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235250", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-660", + "y": "7371" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235251", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-9582", + "y": "-4005" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001302a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-15732", + "y": "-3274" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001302a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001302a", + "phases": "AS", + "x": "-15950", + "y": "-3370" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4976.87", + "base_power_2": "5160.43", + "name": "ld_2001302a0b", + "nominal_voltage": "120.09", + "parent": "sx2001302a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-15941", + "y": "-3172" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3139086b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "1092", + "y": "11699" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6402.30", + "base_power_2": "3628.63", + "name": "ld_226192846b0b", + "nominal_voltage": "120.09", + "parent": "sx3139086b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1322", + "y": "11738" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3141390b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-15673", + "y": "13769" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4955.74", + "base_power_2": "5075.19", + "name": "ld_391743b0b", + "nominal_voltage": "120.09", + "parent": "sx3141390b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-15890", + "y": "13682" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3235258", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16831", + "y": "-3312" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2692633c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "7708", + "y": "10078" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2913406b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "83", + "y": "11189" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879067a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3927", + "y": "6316" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3237.64", + "base_power_2": "8999.47", + "name": "ld_21380616a0b", + "nominal_voltage": "120.09", + "parent": "sx2879067a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3869", + "y": "6545" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2973180b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "1022", + "y": "14091" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2673321a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13785", + "y": "-5429" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2764411c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8772", + "y": "19513" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2991920a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-6988", + "y": "8255" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2120.69", + "base_power_2": "3363.85", + "name": "ld_2118822a0b", + "nominal_voltage": "120.09", + "parent": "sx2991920a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-7141", + "y": "8435" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3235267", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "4521", + "y": "5995" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3234149a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "66", + "y": "-1095" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "45672.08", + "base_power_2": "45750.60", + "name": "ld_227944551a0a", + "nominal_voltage": "120.09", + "parent": "sx3234149a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-125", + "y": "-1234" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3235268", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "4275", + "y": "5426" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3234149b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-1", + "y": "-770" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "21302.04", + "base_power_2": "78966.00", + "name": "ld_227944551b0a", + "nominal_voltage": "120.09", + "parent": "sx3234149b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-170", + "y": "-926" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3234149c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "249", + "y": "-1214" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "96630.66", + "base_power_2": "8214.70", + "name": "ld_227944551c0b", + "nominal_voltage": "120.09", + "parent": "sx3234149c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "85", + "y": "-1388" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2841627a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3591", + "y": "-5886" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3235266", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-7921", + "y": "-4914" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104130b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-11900", + "y": "11840" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3066810c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "1621", + "y": "2805" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2353.35", + "base_power_2": "8131.19", + "name": "ld_337659c0b", + "nominal_voltage": "120.09", + "parent": "sx3066810c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1849", + "y": "2768" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3216337a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "1383", + "y": "-17924" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5411.74", + "base_power_2": "7279.82", + "name": "ld_356011a0a", + "nominal_voltage": "120.09", + "parent": "sx3216337a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1465", + "y": "-18144" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2989565a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-11283", + "y": "6838" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6609.69", + "base_power_2": "2534.64", + "name": "ld_21389237a0b", + "nominal_voltage": "120.09", + "parent": "sx2989565a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-11192", + "y": "7054" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3047058a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "14157", + "y": "-7366" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7622.83", + "base_power_2": "6088.51", + "name": "ld_227902981a0b", + "nominal_voltage": "120.09", + "parent": "sx3047058a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "14262", + "y": "-7581" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2748781a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4571", + "y": "14019" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2766730b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "9074", + "y": "-4056" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4988.27", + "base_power_2": "1032.35", + "name": "ld_355359b0a", + "nominal_voltage": "120.09", + "parent": "sx2766730b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9186", + "y": "-3853" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2989432b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4138", + "y": "12192" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3934.39", + "base_power_2": "9189.33", + "name": "ld_226163575b0a", + "nominal_voltage": "120.09", + "parent": "sx2989432b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4137", + "y": "12427" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2991927b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "2611", + "y": "-12314" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9081.61", + "base_power_2": "4042.10", + "name": "ld_355607b0a", + "nominal_voltage": "120.09", + "parent": "sx2991927b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2433", + "y": "-12469" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p895102", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-850", + "y": "-6058" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3029506b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "9941", + "y": "-5413" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026764", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "12058", + "y": "-5355" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895107", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-584", + "y": "-6982" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2915542c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-9539", + "y": "-9807" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "12919.55", + "base_power_2": "8049.52", + "name": "ld_227921427c0b", + "nominal_voltage": "120.09", + "parent": "sx2915542c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9725", + "y": "-9959" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2935567b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "6978", + "y": "5273" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048214", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3589", + "y": "10962" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895104", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5991", + "y": "-12314" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026760", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "17122", + "y": "-3457" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895106", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-278", + "y": "-7292" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895105", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-13421", + "y": "2602" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841626c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8553", + "y": "-4738" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048210", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-5834", + "y": "8742" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048211", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8439", + "y": "-11500" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048212", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "2206", + "y": "-15253" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2804277c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "7386", + "y": "14494" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026767", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "11981", + "y": "-5843" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000100", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-7166", + "y": "1840" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3233413", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-1802", + "y": "-5828" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026769", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "18153", + "y": "-1967" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3233412", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-2842", + "y": "-5469" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216338b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "2480", + "y": "-9907" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9165.46", + "base_power_2": "3958.25", + "name": "ld_355599b0a", + "nominal_voltage": "120.09", + "parent": "sx3216338b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2245", + "y": "-9925" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2860504a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "18857", + "y": "-9068" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3587.04", + "base_power_2": "1897.50", + "name": "ld_293667a0b", + "nominal_voltage": "120.09", + "parent": "sx2860504a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "19062", + "y": "-9183" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2989566b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2365", + "y": "-6729" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4585.12", + "base_power_2": "1435.50", + "name": "ld_260602b0a", + "nominal_voltage": "120.09", + "parent": "sx2989566b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2209", + "y": "-6913" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2748780a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5481", + "y": "12144" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047pv-3", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16204", + "y": "142" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047pv-3_pvmtr", + "nominal_voltage": "7200.00", + "parent": "m1047pv-3", + "phases": "ABCN", + "x": "16442", + "y": "188" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "x3254210c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2876", + "y": "-12037" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047pv-2", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "15963", + "y": "81" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047pv-1", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "15725", + "y": "-9" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895111", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-912", + "y": "722" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895113", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-279", + "y": "4359" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895112", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-456", + "y": "3514" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3029505c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "17212", + "y": "1675" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2915542b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9419", + "y": "-9875" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10852.73", + "base_power_2": "9198.81", + "name": "ld_227921427b0a", + "nominal_voltage": "120.09", + "parent": "sx2915542b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9502", + "y": "-10100" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2915542a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-9112", + "y": "-9943" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9685.71", + "base_power_2": "8602.95", + "name": "ld_227921427a0b", + "nominal_voltage": "120.09", + "parent": "sx2915542a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9134", + "y": "-10179" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3048207", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-6042", + "y": "-8027" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p901894", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "3581", + "y": "-11722" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2935568b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3995", + "y": "13063" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048208", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-7820", + "y": "-2448" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3108449a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6572", + "y": "10864" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048209", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "777", + "y": "16034" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216988", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-132", + "y": "-8854" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048203", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-5628", + "y": "9178" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895114", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "34", + "y": "4602" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048205", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-15525", + "y": "2888" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895117", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "6434", + "y": "2710" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841625c", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9023", + "y": "-3619" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048206", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-3745", + "y": "-11011" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048200", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-14436", + "y": "15763" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048201", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-14124", + "y": "16459" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p873787", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "4825", + "y": "-880" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216339b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-13534", + "y": "15934" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8685.83", + "base_power_2": "1345.10", + "name": "ld_391741b0a", + "nominal_voltage": "120.09", + "parent": "sx3216339b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-13303", + "y": "15939" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3160098", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10741", + "y": "11482" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3216370a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9550", + "y": "-8100" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3216370c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "9415", + "y": "-8230" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3216370b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "9528", + "y": "-7906" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2766732b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4583", + "y": "-4403" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2979.27", + "base_power_2": "1031.03", + "name": "ld_247164b0b", + "nominal_voltage": "120.09", + "parent": "sx2766732b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4697", + "y": "-4199" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3122821b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "13382", + "y": "-648" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026785", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "19131", + "y": "-717" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026786", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "19366", + "y": "-489" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122822a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "18835", + "y": "-9972" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3008232b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "13461", + "y": "3038" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3591.53", + "base_power_2": "3511.56", + "name": "ld_226192492b0b", + "nominal_voltage": "120.09", + "parent": "sx3008232b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "13693", + "y": "3081" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026783", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "18895", + "y": "-953" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841624b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "1888", + "y": "-11878" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026784", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "19139", + "y": "-901" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047688", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6856", + "y": "4924" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2860501b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4230", + "y": "3075" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8749.89", + "base_power_2": "1281.04", + "name": "ld_323265b0a", + "nominal_voltage": "120.09", + "parent": "sx2860501b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4056", + "y": "2924" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3159645a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6333", + "y": "7435" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3034.55", + "base_power_2": "6109.78", + "name": "ld_228446184a0a", + "nominal_voltage": "120.09", + "parent": "sx3159645a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6243", + "y": "7650" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3048230", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "6336", + "y": "-4262" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048231", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4262", + "y": "-3899" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3103822c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "9382", + "y": "-6293" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6862.21", + "base_power_2": "8869.75", + "name": "ld_228665517c0b", + "nominal_voltage": "120.09", + "parent": "sx3103822c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9450", + "y": "-6513" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "221-312488", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-10486", + "y": "-7103" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026780", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "18656", + "y": "-1295" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3029507b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-11184", + "y": "10258" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3065696a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13448", + "y": "-7854" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8863.54", + "base_power_2": "3373.58", + "name": "ld_227921416a0a", + "nominal_voltage": "120.09", + "parent": "sx3065696a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "13468", + "y": "-8095" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3122820a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6694", + "y": "-9560" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026774", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "18416", + "y": "-1636" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3091052", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4558", + "y": "-6616" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026777", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-5345", + "y": "-16167" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001400", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-14834", + "y": "-1717" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2821770a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-2551", + "y": "-5974" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2805.07", + "base_power_2": "10906.27", + "name": "ld_227917119a0b", + "nominal_voltage": "120.09", + "parent": "sx2821770a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2406", + "y": "-6168" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2935566c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "4990", + "y": "717" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048227", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6103", + "y": "-1745" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841623a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "10663", + "y": "-4517" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048228", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-15391", + "y": "2322" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026773", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-5085", + "y": "-16120" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047699", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6324", + "y": "5200" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048221", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "15060", + "y": "-7032" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048222", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "5104", + "y": "-5568" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2951995c", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-2929", + "y": "-8050" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6236.52", + "base_power_2": "25227.40", + "name": "ld_226192801c0a", + "nominal_voltage": "120.09", + "parent": "sx2951995c", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2705", + "y": "-8113" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026778", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "18230", + "y": "-387" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026779", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "11982", + "y": "-4873" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729206c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "10809", + "y": "2075" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "196-29518", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "9017", + "y": "555" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "196-29519", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "11628", + "y": "-2868" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897554", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "11526", + "y": "1566" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3197652a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3659", + "y": "787" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254213b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "9697", + "y": "8137" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3029502a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-11332", + "y": "482" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026722", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "950", + "y": "15069" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122824a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-6520", + "y": "8201" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2970258c", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5205", + "y": "-6765" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8580.58", + "base_power_2": "7151.38", + "name": "ld_21459640c0b", + "nominal_voltage": "120.09", + "parent": "sx2970258c", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5092", + "y": "-6974" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2841622a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-4012", + "y": "4246" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3141396c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "9861", + "y": "-2626" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4566.31", + "base_power_2": "1722.35", + "name": "ld_337655c0a", + "nominal_voltage": "120.09", + "parent": "sx3141396c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9940", + "y": "-2841" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047669", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8037", + "y": "3716" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729207c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11197", + "y": "2108" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2897793a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "12622", + "y": "-3213" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026724", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16567", + "y": "-4195" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2955077c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "381", + "y": "7407" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2955077c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2955077c", + "phases": "CS", + "x": "225", + "y": "7601" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "9925.63", + "base_power_2": "3651.69", + "name": "ld_260543c0b", + "nominal_voltage": "120.09", + "parent": "sx2955077c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "488", + "y": "7614" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026726", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16195", + "y": "-8853" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2895449c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "3776", + "y": "5199" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8733.19", + "base_power_2": "1751.35", + "name": "ld_226193134c0a", + "nominal_voltage": "120.09", + "parent": "sx2895449c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3578", + "y": "5330" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3029501b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-83", + "y": "717" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2711226b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4822", + "y": "5466" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1137001", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6461", + "y": "6244" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5534967-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-8341", + "y": "-541" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2801902", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "9924", + "y": "9207" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2801909", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "1723", + "y": "4656" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3254214b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "463", + "y": "13007" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047671", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8297", + "y": "4372" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122823b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-10638", + "y": "10083" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047672", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "7739", + "y": "4176" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3141397b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5693", + "y": "-9054" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8341.08", + "base_power_2": "1689.85", + "name": "ld_21396796b0b", + "nominal_voltage": "120.09", + "parent": "sx3141397b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5715", + "y": "-9293" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2841621c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "2189", + "y": "3790" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026713", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "18174", + "y": "-8787" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2955078a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "616", + "y": "8334" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2139.13", + "base_power_2": "7005.20", + "name": "ld_260542a0a", + "nominal_voltage": "120.09", + "parent": "sx2955078a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "624", + "y": "8571" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3214112b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "28", + "y": "13343" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2520.48", + "base_power_2": "3500.14", + "name": "ld_226881057b0b", + "nominal_voltage": "120.09", + "parent": "sx3214112b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-198", + "y": "13396" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2955074a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-6621", + "y": "4096" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10519.09", + "base_power_2": "3192.25", + "name": "ld_260479a0b", + "nominal_voltage": "120.09", + "parent": "sx2955074a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6706", + "y": "3883" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2991929b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "9404", + "y": "10716" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3682.98", + "base_power_2": "6347.95", + "name": "ld_2147708b0a", + "nominal_voltage": "120.09", + "parent": "sx2991929b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9269", + "y": "10904" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2711225c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-255", + "y": "4840" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2860499b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "8549", + "y": "5703" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2879767b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9183", + "y": "3512" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3141398a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6398", + "y": "-10045" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3733.74", + "base_power_2": "4843.58", + "name": "ld_21386976a0a", + "nominal_voltage": "120.09", + "parent": "sx3141398a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6396", + "y": "-10281" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3254211b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3847", + "y": "-8366" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2916602a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "11425", + "y": "13202" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3029504b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-132", + "y": "9987" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2948732", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "2750", + "y": "-9213" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000414a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-14403", + "y": "-5790" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000414a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000414a", + "phases": "AS", + "x": "-14487", + "y": "-6022" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3849.41", + "base_power_2": "8320.63", + "name": "ld_2000414a0b", + "nominal_voltage": "120.09", + "parent": "sx2000414a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-14313", + "y": "-6008" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026744", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16839", + "y": "-3809" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122826a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6879", + "y": "-12709" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2841620b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2886", + "y": "-9416" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026745", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "1329", + "y": "15402" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047649", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8925", + "y": "2330" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897791b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "13353", + "y": "9835" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2860506b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "10910", + "y": "6473" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5555.59", + "base_power_2": "3557.81", + "name": "ld_321856b0b", + "nominal_voltage": "120.09", + "parent": "sx2860506b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "10939", + "y": "6243" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001309a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-16823", + "y": "-6431" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001309a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001309a", + "phases": "AS", + "x": "-17065", + "y": "-6437" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4076.21", + "base_power_2": "5402.72", + "name": "ld_2001309a0b", + "nominal_voltage": "120.09", + "parent": "sx2001309a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-16963", + "y": "-6616" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197618a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "660", + "y": "-18702" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2929.82", + "base_power_2": "2554.72", + "name": "ld_356008a0b", + "nominal_voltage": "120.09", + "parent": "sx3197618a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "685", + "y": "-18934" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3216336a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "977", + "y": "-17958" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2103.05", + "base_power_2": "7041.28", + "name": "ld_356010a0b", + "nominal_voltage": "120.09", + "parent": "sx3216336a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1012", + "y": "-18189" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2711224b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9007", + "y": "1967" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254212b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2818", + "y": "-10276" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x0247171b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4531", + "y": "-2367" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2916603b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8401", + "y": "-12380" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3029503c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-9931", + "y": "-5719" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000415a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-14841", + "y": "-5849" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000415a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000415a", + "phases": "AS", + "x": "-15019", + "y": "-6014" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "6706.71", + "base_power_2": "5676.72", + "name": "ld_2000415a0b", + "nominal_voltage": "120.09", + "parent": "sx2000415a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-14843", + "y": "-6084" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026732", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "13493", + "y": "-6790" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122825a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-6793", + "y": "7734" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3141399c", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7831", + "y": "-6148" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "11618.05", + "base_power_2": "4113.91", + "name": "ld_302804c0a", + "nominal_voltage": "120.09", + "parent": "sx3141399c", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8026", + "y": "-6279" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2689691a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8343", + "y": "-4584" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2955005", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-130", + "y": "-8305" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026734", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "13482", + "y": "-7078" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2955076a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "967", + "y": "8316" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5082.95", + "base_power_2": "3494.37", + "name": "ld_21243817a0b", + "nominal_voltage": "120.09", + "parent": "sx2955076a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1040", + "y": "8544" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2955006", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "10016", + "y": "13551" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897792a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "12832", + "y": "-2395" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026736", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "1147", + "y": "15231" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766723", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "18522", + "y": "-9581" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216361", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "12045", + "y": "6311" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766722", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-300", + "y": "8760" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766721", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-16778", + "y": "2557" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766720", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8629", + "y": "-307" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3046854b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-234", + "y": "10616" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9241.86", + "base_power_2": "5799.37", + "name": "ld_227732939b0b", + "nominal_voltage": "120.09", + "parent": "sx3046854b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-419", + "y": "10759" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2766727", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-11049", + "y": "9905" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766726", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-8535", + "y": "7653" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766725", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "20114", + "y": "379" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748131b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5703", + "y": "-6182" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3362.96", + "base_power_2": "5750.44", + "name": "ld_323250b0a", + "nominal_voltage": "120.09", + "parent": "sx2748131b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5800", + "y": "-6393" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2766724", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "19599", + "y": "-733" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "q16642_cap", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "13273", + "y": "-87" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766729", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9697", + "y": "-8890" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766728", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "9390", + "y": "-8651" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197633a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3120", + "y": "5083" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2302.93", + "base_power_2": "6841.40", + "name": "ld_338893a0b", + "nominal_voltage": "120.09", + "parent": "sx3197633a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3082", + "y": "5315" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2748132a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3908", + "y": "-6874" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3544.40", + "base_power_2": "5032.92", + "name": "ld_302637a0b", + "nominal_voltage": "120.09", + "parent": "sx2748132a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3848", + "y": "-7100" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2805031c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-10222", + "y": "3747" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2289.38", + "base_power_2": "13442.58", + "name": "ld_260491c0a", + "nominal_voltage": "120.09", + "parent": "sx2805031c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-10345", + "y": "3552" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047623", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "13903", + "y": "1543" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785517c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "10993", + "y": "-5418" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3215.36", + "base_power_2": "4073.30", + "name": "ld_338957c0b", + "nominal_voltage": "120.09", + "parent": "sx2785517c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "10963", + "y": "-5664" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2785528b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2831", + "y": "-9869" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3143999a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5206", + "y": "-2022" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3216358", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "56", + "y": "-12195" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3649304a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6268", + "y": "-14362" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2804270b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "9410", + "y": "9365" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5784.87", + "base_power_2": "3328.53", + "name": "ld_339013b0a", + "nominal_voltage": "120.09", + "parent": "sx2804270b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9296", + "y": "9567" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "r18242", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "558", + "y": "-12182" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2674052c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-19331", + "y": "5867" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "r18241", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-2583", + "y": "1842" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216350", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "13396", + "y": "-5644" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2972704c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-9821", + "y": "-6595" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3216351", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "17563", + "y": "-7531" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766716", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "12284", + "y": "-1837" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104830c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "7187", + "y": "6152" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2766715", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "4691", + "y": "-10536" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748130b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2501", + "y": "-10391" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4012.94", + "base_power_2": "9110.78", + "name": "ld_138753b0b", + "nominal_voltage": "120.09", + "parent": "sx2748130b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2600", + "y": "-10602" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2766719", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8773", + "y": "4610" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "r18243", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16288", + "y": "-4579" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197632b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4499", + "y": "6447" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3646.34", + "base_power_2": "2374.28", + "name": "ld_323266b0a", + "nominal_voltage": "120.09", + "parent": "sx3197632b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4618", + "y": "6649" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2766718", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-4175", + "y": "-10691" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766717", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-3654", + "y": "-782" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "r18245", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "4444", + "y": "2059" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2804282c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-3937", + "y": "59" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3216349", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "370", + "y": "14047" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047633", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "11313", + "y": "1422" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216343", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-12948", + "y": "1172" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785518c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-3464", + "y": "-497" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4134.76", + "base_power_2": "2153.90", + "name": "ld_138469c0b", + "nominal_voltage": "120.09", + "parent": "sx2785518c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3685", + "y": "-431" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3216344", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3843", + "y": "3638" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785529c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "2867", + "y": "-10933" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3216342", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "5220", + "y": "-1360" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216347", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-6130", + "y": "-3106" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216348", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "3332", + "y": "-5357" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216345", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "7048", + "y": "-9669" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216346", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "12362", + "y": "-6090" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2674051a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-11049", + "y": "6353" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026709", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "17082", + "y": "-8121" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2989571a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8698", + "y": "20318" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2964.52", + "base_power_2": "2520.01", + "name": "ld_225991691a0a", + "nominal_voltage": "120.09", + "parent": "sx2989571a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8733", + "y": "20547" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3632979", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "11034", + "y": "3987" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3141411c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "13722", + "y": "-3291" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "28393.51", + "base_power_2": "3070.41", + "name": "ld_21197413c0a", + "nominal_voltage": "120.09", + "parent": "sx3141411c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "13962", + "y": "-3270" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197631a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6592", + "y": "6212" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1136.67", + "base_power_2": "4347.87", + "name": "ld_338920a0a", + "nominal_voltage": "120.09", + "parent": "sx3197631a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6758", + "y": "6396" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3216338", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "2977", + "y": "-9912" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3067478", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-438", + "y": "-5742" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216339", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-14009", + "y": "15953" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026700", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16288", + "y": "-7112" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2991909a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5455", + "y": "-2581" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3215549b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4765", + "y": "10635" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8741.30", + "base_power_2": "1289.63", + "name": "ld_228219458b0b", + "nominal_voltage": "120.09", + "parent": "sx3215549b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4994", + "y": "10702" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2763153a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "1877", + "y": "-1206" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2868.69", + "base_power_2": "6275.64", + "name": "ld_293425a0b", + "nominal_voltage": "120.09", + "parent": "sx2763153a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2107", + "y": "-1155" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026705", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "17347", + "y": "-8584" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026706", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16401", + "y": "-7517" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2876814a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5933", + "y": "-5342" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026708", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16839", + "y": "-7946" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3649302a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6100", + "y": "-14014" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3216336", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "954", + "y": "-17478" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3778577", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "1437", + "y": "3340" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026701", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "17344", + "y": "-8118" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216337", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "1225", + "y": "-17464" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026702", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "15661", + "y": "-5331" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785519a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-4726", + "y": "-14928" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8564.59", + "base_power_2": "4703.45", + "name": "ld_138566a0a", + "nominal_voltage": "120.09", + "parent": "sx2785519a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4501", + "y": "-14915" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026703", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "17420", + "y": "-9086" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026704", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "712", + "y": "15230" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d6138608-3_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-10752", + "y": "310" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3141412a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9792", + "y": "-5460" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1788.32", + "base_power_2": "3696.21", + "name": "ld_391996a0b", + "nominal_voltage": "120.09", + "parent": "sx3141412a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9559", + "y": "-5491" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2842329c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2286", + "y": "-2799" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3411.68", + "base_power_2": "2876.98", + "name": "ld_260568c0b", + "nominal_voltage": "120.09", + "parent": "sx2842329c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2514", + "y": "-2801" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197630a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-2100", + "y": "-11506" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4626.54", + "base_power_2": "4517.79", + "name": "ld_138644a0a", + "nominal_voltage": "120.09", + "parent": "sx3197630a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2307", + "y": "-11408" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2879752b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "168", + "y": "4008" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2991908a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "769", + "y": "1807" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047612", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "10368", + "y": "1457" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047613", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "10237", + "y": "1210" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3649301a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6401", + "y": "-13735" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047615", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "9696", + "y": "859" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3010567", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-9643", + "y": "-4712" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3215203a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-9308", + "y": "-8154" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3010568", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "17064", + "y": "1133" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2954339b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-15113", + "y": "15541" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8403.96", + "base_power_2": "1626.97", + "name": "ld_391739b0a", + "nominal_voltage": "120.09", + "parent": "sx2954339b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-15344", + "y": "15576" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3027133a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-1940", + "y": "-14248" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3010565", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-11005", + "y": "-5600" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2992656a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5336", + "y": "2763" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7302.22", + "base_power_2": "6409.12", + "name": "ld_260627a0b", + "nominal_voltage": "120.09", + "parent": "sx2992656a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5531", + "y": "2874" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3010566", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9185", + "y": "-3662" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3010563", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "10804", + "y": "-4988" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160878c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-16313", + "y": "6284" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2685.95", + "base_power_2": "3602.71", + "name": "ld_260511c0b", + "nominal_voltage": "120.09", + "parent": "sx3160878c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-16449", + "y": "6479" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3010564", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "6455", + "y": "7718" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3008248", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8882", + "y": "17161" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3010561", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "7136", + "y": "-1864" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3010562", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-5121", + "y": "9302" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2821087a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-2161", + "y": "-4578" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3010560", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "11691", + "y": "-1601" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197637c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-6193", + "y": "-7470" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3197637c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3197637c", + "phases": "CS", + "x": "-6030", + "y": "-7643" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3983.05", + "base_power_2": "3305.61", + "name": "ld_138585c0a", + "nominal_voltage": "120.09", + "parent": "sx3197637c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6173", + "y": "-7690" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2691959b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4923", + "y": "-2276" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1134480", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8078", + "y": "2921" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2805036b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3073", + "y": "2776" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2805036b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2805036b", + "phases": "BS", + "x": "-2832", + "y": "2840" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "1909.06", + "base_power_2": "2101.25", + "name": "ld_275248b0a", + "nominal_voltage": "120.09", + "parent": "sx2805036b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3023", + "y": "3000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3123452c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-898", + "y": "-4626" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4988.87", + "base_power_2": "5495.67", + "name": "ld_260574c0a", + "nominal_voltage": "120.09", + "parent": "sx3123452c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1056", + "y": "-4808" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3215203c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-9392", + "y": "-8321" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3215203b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9029", + "y": "-8127" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1134479", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "9296", + "y": "3175" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1134478", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "9937", + "y": "2847" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d2000100_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-8004", + "y": "1490" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1134477", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10002", + "y": "4660" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1134476", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10166", + "y": "5595" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3067447a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6631", + "y": "327" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2837.91", + "base_power_2": "6306.42", + "name": "ld_21386157a0b", + "nominal_voltage": "120.09", + "parent": "sx3067447a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6868", + "y": "326" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1134475", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10577", + "y": "7911" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1134474", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10746", + "y": "8843" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1134472", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "11252", + "y": "12679" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2915534a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-2103", + "y": "-6428" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3010569", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "12682", + "y": "-6264" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1142099", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "5818", + "y": "1799" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2954338b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "4958", + "y": "-10356" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3371.22", + "base_power_2": "6659.71", + "name": "ld_355618b0b", + "nominal_voltage": "120.09", + "parent": "sx2954338b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5145", + "y": "-10491" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2763811c", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3374", + "y": "-7475" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "20560.80", + "base_power_2": "10903.12", + "name": "ld_21459629c0a", + "nominal_voltage": "120.09", + "parent": "sx2763811c", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3168", + "y": "-7567" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1142098", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5822", + "y": "148" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3010570", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-6999", + "y": "6924" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197636b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "639", + "y": "-54" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9249.03", + "base_power_2": "3874.68", + "name": "ld_2148580b0b", + "nominal_voltage": "120.09", + "parent": "sx3197636b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "761", + "y": "142" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3085410b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "8288", + "y": "5965" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3067448c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-6314", + "y": "14268" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2661.58", + "base_power_2": "7822.96", + "name": "ld_262075c0a", + "nominal_voltage": "120.09", + "parent": "sx3067448c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6516", + "y": "14384" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m3021569", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "4420", + "y": "-11478" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2745811c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8329", + "y": "15718" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8503.62", + "base_power_2": "1980.92", + "name": "ld_251863c0a", + "nominal_voltage": "120.09", + "parent": "sx2745811c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8542", + "y": "15814" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m3019248", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "4290", + "y": "-11257" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748135a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7325", + "y": "6487" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3883.33", + "base_power_2": "5261.00", + "name": "ld_2150172a0a", + "nominal_voltage": "120.09", + "parent": "sx2748135a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-7509", + "y": "6349" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3029183", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "1497", + "y": "15582" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2763812c", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3140", + "y": "-7769" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9083.61", + "base_power_2": "22380.31", + "name": "ld_21459651c0b", + "nominal_voltage": "120.09", + "parent": "sx2763812c", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2912", + "y": "-7833" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3030199", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-6941", + "y": "4459" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3030197", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-363", + "y": "2771" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3010585", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-4253", + "y": "-15325" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l0247171", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4500", + "y": "-2626" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197635b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-882", + "y": "7197" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1200.84", + "base_power_2": "4819.78", + "name": "ld_337696b0b", + "nominal_voltage": "120.09", + "parent": "sx3197635b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-976", + "y": "7419" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3010580", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "11173", + "y": "8633" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748133c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-7930", + "y": "-5483" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3395.44", + "base_power_2": "2893.22", + "name": "ld_302861c0b", + "nominal_voltage": "120.09", + "parent": "sx2748133c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8115", + "y": "-5625" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1089093", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-4407", + "y": "-2440" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089094", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-4114", + "y": "-2338" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p860892", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-9199", + "y": "-5772" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2783231", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "6765", + "y": "4556" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2914324", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-3537", + "y": "-15073" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2914323", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "8057", + "y": "-4652" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3235946a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5952", + "y": "11413" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8770.01", + "base_power_2": "3467.10", + "name": "ld_356800a0a", + "nominal_voltage": "120.09", + "parent": "sx3235946a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6069", + "y": "11613" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2804283a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-4047", + "y": "-15492" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3649306a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6589", + "y": "-13227" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3008279", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "13867", + "y": "1774" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2804272b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "6112", + "y": "6321" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2804272b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2804272b", + "phases": "BS", + "x": "5936", + "y": "6502" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "1368.12", + "base_power_2": "4652.50", + "name": "ld_338993b0a", + "nominal_voltage": "120.09", + "parent": "sx2804272b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5878", + "y": "6355" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l0247160", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3553", + "y": "-4512" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089097", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4808", + "y": "910" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1134471", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9305", + "y": "11706" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089096", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-4653", + "y": "-2640" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1134470", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9376", + "y": "13933" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l0247162", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3807", + "y": "-3984" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197634b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "7159", + "y": "-1123" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10758.15", + "base_power_2": "4283.09", + "name": "ld_355767b0b", + "nominal_voltage": "120.09", + "parent": "sx3197634b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7252", + "y": "-901" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2766499c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11287", + "y": "1185" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2805034a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3715", + "y": "7989" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2218.80", + "base_power_2": "1440.99", + "name": "ld_260647a0b", + "nominal_voltage": "120.09", + "parent": "sx2805034a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3837", + "y": "8194" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3067447", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6136", + "y": "327" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3067448", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-5933", + "y": "13980" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897789b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "12706", + "y": "11427" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2897789b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2897789b", + "phases": "BS", + "x": "12865", + "y": "11613" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4461.51", + "base_power_2": "1559.11", + "name": "ld_323287b0b", + "nominal_voltage": "120.09", + "parent": "sx2897789b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12661", + "y": "11657" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3235945c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "10454", + "y": "13977" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4692.61", + "base_power_2": "5791.93", + "name": "ld_356796c0b", + "nominal_voltage": "120.09", + "parent": "sx3235945c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "10684", + "y": "14023" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3649305a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6574", + "y": "-14561" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1134469", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9248", + "y": "17198" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2804277c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "7169", + "y": "14604" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6131.66", + "base_power_2": "4352.88", + "name": "ld_339043c0a", + "nominal_voltage": "120.09", + "parent": "sx2804277c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6962", + "y": "14716" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2710530b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "6682", + "y": "4161" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5619.36", + "base_power_2": "3494.04", + "name": "ld_21381118b0a", + "nominal_voltage": "120.09", + "parent": "sx2710530b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6445", + "y": "4157" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3234185", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-2291", + "y": "16912" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001der-4", + "nominal_voltage": "277.13", + "phases": "ABCN", + "x": "-15220", + "y": "-2416" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001der-5", + "nominal_voltage": "277.13", + "phases": "ABCN", + "x": "-15363", + "y": "-2303" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001215c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-19451", + "y": "-5668" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001215c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001215c", + "phases": "CS", + "x": "-19584", + "y": "-5870" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "11896.39", + "base_power_2": "12683.86", + "name": "ld_2001215c0b", + "nominal_voltage": "120.09", + "parent": "sx2001215c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-19357", + "y": "-5882" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "q14413", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "3719", + "y": "-6756" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001der-1", + "nominal_voltage": "277.13", + "phases": "ABCN", + "x": "-14632", + "y": "-2334" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "q14414", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "14555", + "y": "-6494" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001der-2", + "nominal_voltage": "277.13", + "phases": "ABCN", + "x": "-15054", + "y": "-2102" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "q14411", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-624", + "y": "2562" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2841615a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "1524", + "y": "-17386" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2137.74", + "base_power_2": "3346.79", + "name": "ld_356012a0b", + "nominal_voltage": "120.09", + "parent": "sx2841615a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1638", + "y": "-17591" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2001der-3", + "nominal_voltage": "277.13", + "phases": "ABCN", + "x": "-14766", + "y": "-2433" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "q14412", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "7199", + "y": "-11033" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3030126", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-640", + "y": "-7302" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3011229a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4930", + "y": "11426" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1860.44", + "base_power_2": "3624.10", + "name": "ld_356801a0b", + "nominal_voltage": "120.09", + "parent": "sx3011229a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4711", + "y": "11499" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2748139b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "2869", + "y": "-12423" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5346.61", + "base_power_2": "3766.80", + "name": "ld_21400108b0b", + "nominal_voltage": "120.09", + "parent": "sx2748139b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2667", + "y": "-12553" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001214c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-19712", + "y": "-5225" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001214c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001214c", + "phases": "CS", + "x": "-19859", + "y": "-5419" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "8488.27", + "base_power_2": "10913.62", + "name": "ld_2001214c0b", + "nominal_voltage": "120.09", + "parent": "sx2001214c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-19946", + "y": "-5239" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m4362181", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "418", + "y": "12378" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2991902b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14462", + "y": "13919" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3233412a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-2459", + "y": "-5236" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3233412a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3233412a", + "phases": "AS", + "x": "-2258", + "y": "-5125" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "14917.54", + "base_power_2": "3371.12", + "name": "ld_226308717a0b", + "nominal_voltage": "120.09", + "parent": "sx3233412a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2302", + "y": "-5398" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2785511a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8491", + "y": "15240" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7784.81", + "base_power_2": "1359.52", + "name": "ld_339046a0b", + "nominal_voltage": "120.09", + "parent": "sx2785511a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8392", + "y": "15454" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104118c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "4430", + "y": "6993" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "12774.60", + "base_power_2": "2957.36", + "name": "ld_321890c0a", + "nominal_voltage": "120.09", + "parent": "sx3104118c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4271", + "y": "7158" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d5504876-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-6078", + "y": "4274" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3645810c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "9273", + "y": "-10554" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "16095.78", + "base_power_2": "15368.13", + "name": "ld_2224230651c0b", + "nominal_voltage": "120.09", + "parent": "sx3645810c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9335", + "y": "-10783" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2685809a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "15965", + "y": "-390" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2745848", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8590", + "y": "-1973" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2851933", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16777", + "y": "-6582" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1145954", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6225", + "y": "-4351" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1145956", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-7145", + "y": "4045" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160872c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "579", + "y": "4983" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "11318.76", + "base_power_2": "4413.20", + "name": "ld_260551c0a", + "nominal_voltage": "120.09", + "parent": "sx3160872c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "800", + "y": "5063" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1145955", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-8237", + "y": "6270" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897784b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5168", + "y": "-2645" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2386.44", + "base_power_2": "12654.80", + "name": "ld_247170b0a", + "nominal_voltage": "120.09", + "parent": "sx2897784b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5378", + "y": "-2534" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001213c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-19674", + "y": "-4728" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001213c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001213c", + "phases": "CS", + "x": "-19900", + "y": "-4821" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "10917.83", + "base_power_2": "9863.14", + "name": "ld_2001213c0a", + "nominal_voltage": "120.09", + "parent": "sx2001213c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-19884", + "y": "-4622" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3195751", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-5246", + "y": "-16324" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3065696", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "13441", + "y": "-7346" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3198348a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "560", + "y": "5451" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "11072.13", + "base_power_2": "7216.53", + "name": "ld_260552a0b", + "nominal_voltage": "120.09", + "parent": "sx3198348a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "662", + "y": "5663" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991901b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "3007", + "y": "-9695" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3010556", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-4593", + "y": "-10354" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3027132a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9452", + "y": "15932" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3010557", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8896", + "y": "14525" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3008232", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "12988", + "y": "2912" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2992657a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-6590", + "y": "1759" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2992657a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2992657a", + "phases": "AS", + "x": "-6663", + "y": "1529" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4479.15", + "base_power_2": "4665.18", + "name": "ld_21475841a0b", + "nominal_voltage": "120.09", + "parent": "sx2992657a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6398", + "y": "1628" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3233413b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-1477", + "y": "-5477" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "15829.79", + "base_power_2": "4221.76", + "name": "ld_226308727b0b", + "nominal_voltage": "120.09", + "parent": "sx3233413b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1331", + "y": "-5298" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2785512b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9275", + "y": "-12314" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3620.94", + "base_power_2": "6409.99", + "name": "ld_323245b0a", + "nominal_voltage": "120.09", + "parent": "sx2785512b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9504", + "y": "-12268" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3008237", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "4777", + "y": "1361" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5956471-2_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10380", + "y": "-2465" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160871c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "2855", + "y": "8406" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1047.22", + "base_power_2": "9437.32", + "name": "ld_260638c0a", + "nominal_voltage": "120.09", + "parent": "sx3160871c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2773", + "y": "8629" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2970258c", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5150", + "y": "-6537" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2990098", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-1886", + "y": "-4635" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104119a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "11609", + "y": "-2457" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9043.69", + "base_power_2": "10064.03", + "name": "ld_338956a0b", + "nominal_voltage": "120.09", + "parent": "sx3104119a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11741", + "y": "-2272" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3048200b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14170", + "y": "15418" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2447.19", + "base_power_2": "1563.12", + "name": "ld_391740b0a", + "nominal_voltage": "120.09", + "parent": "sx3048200b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-14347", + "y": "15270" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001212c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-18796", + "y": "-4877" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001212c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001212c", + "phases": "CS", + "x": "-18804", + "y": "-5117" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "10902.65", + "base_power_2": "9649.22", + "name": "ld_2001212c0a", + "nominal_voltage": "120.09", + "parent": "sx2001212c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-18596", + "y": "-4997" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3010559", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-7309", + "y": "5154" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3198347c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "6050", + "y": "1337" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3198347c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3198347c", + "phases": "CS", + "x": "6275", + "y": "1236" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4084.82", + "base_power_2": "5296.63", + "name": "ld_260622c0b", + "nominal_voltage": "120.09", + "parent": "sx3198347c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6173", + "y": "1128" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m2001-ess1", + "nominal_voltage": "277.13", + "phases": "ABCN", + "x": "-15322", + "y": "-2633" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001-ess1_stmtr", + "nominal_voltage": "277.13", + "parent": "m2001-ess1", + "phases": "ABCN", + "x": "-15467", + "y": "-2816" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m2001-ess2", + "nominal_voltage": "277.13", + "phases": "ABCN", + "x": "-15570", + "y": "-2433" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001-ess2_stmtr", + "nominal_voltage": "277.13", + "parent": "m2001-ess2", + "phases": "ABCN", + "x": "-15775", + "y": "-2556" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "sx2785513a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-8008", + "y": "4975" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2785513a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2785513a", + "phases": "AS", + "x": "-8252", + "y": "4953" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3957.99", + "base_power_2": "8279.13", + "name": "ld_337677a0b", + "nominal_voltage": "120.09", + "parent": "sx2785513a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8196", + "y": "5119" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2724120c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2915", + "y": "-1319" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5291.91", + "base_power_2": "5192.62", + "name": "ld_225577437c0a", + "nominal_voltage": "120.09", + "parent": "sx2724120c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2752", + "y": "-1148" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3645812c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "10208", + "y": "-10093" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10956.57", + "base_power_2": "4775.39", + "name": "ld_2224230754c0b", + "nominal_voltage": "120.09", + "parent": "sx3645812c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "10386", + "y": "-10250" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3727711a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "14940", + "y": "3503" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3048201b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14014", + "y": "16929" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3770.38", + "base_power_2": "9353.33", + "name": "ld_391742b0b", + "nominal_voltage": "120.09", + "parent": "sx3048201b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-13939", + "y": "17149" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2895449c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "3898", + "y": "4977" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2991907a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5301", + "y": "-11616" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2876812a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9196", + "y": "16275" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3179682", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-13627", + "y": "6859" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001211c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-19275", + "y": "-4213" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001211c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001211c", + "phases": "CS", + "x": "-19516", + "y": "-4186" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "12627.29", + "base_power_2": "14288.02", + "name": "ld_2001211c0a", + "nominal_voltage": "120.09", + "parent": "sx2001211c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-19439", + "y": "-4377" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p860847", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4421", + "y": "-4679" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766750", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-648", + "y": "-322" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785514a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-6592", + "y": "5056" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8687.07", + "base_power_2": "3550.04", + "name": "ld_337675a0a", + "nominal_voltage": "120.09", + "parent": "sx2785514a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6654", + "y": "5284" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3552667c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-1440", + "y": "1393" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104117c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11811", + "y": "-8210" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "13553.20", + "base_power_2": "2178.76", + "name": "ld_338964c0b", + "nominal_voltage": "120.09", + "parent": "sx3104117c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11832", + "y": "-8447" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3645811c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "9868", + "y": "-10829" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3038.72", + "base_power_2": "28425.19", + "name": "ld_2224230689c0b", + "nominal_voltage": "120.09", + "parent": "sx3645811c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9991", + "y": "-11033" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p860843", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-13554", + "y": "6576" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3179699", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3317", + "y": "2281" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3226771a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "17755", + "y": "-5334" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3189.88", + "base_power_2": "2294.65", + "name": "ld_227100746a0b", + "nominal_voltage": "120.09", + "parent": "sx3226771a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "17796", + "y": "-5106" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3727712a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "14602", + "y": "3569" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d6290228-6_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "12820", + "y": "-455" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027123", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9086", + "y": "17024" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3142049c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "6952", + "y": "3841" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3179637c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8605", + "y": "16292" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "11018.83", + "base_power_2": "4713.13", + "name": "ld_21386442c0b", + "nominal_voltage": "120.09", + "parent": "sx3179637c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8825", + "y": "16370" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991906a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-17065", + "y": "2863" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "regxfmr_190-8581", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "7976", + "y": "11127" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001210c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-19079", + "y": "-3840" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001210c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001210c", + "phases": "CS", + "x": "-19321", + "y": "-3868" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4011.00", + "base_power_2": "11435.14", + "name": "ld_2001210c0b", + "nominal_voltage": "120.09", + "parent": "sx2001210c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-19269", + "y": "-3702" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2876813a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "695", + "y": "-11538" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2766741", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-4325", + "y": "2410" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1144663", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10865", + "y": "9773" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1144665", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16548", + "y": "-880" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1144664", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "7046", + "y": "5130" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766744", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "10329", + "y": "8604" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766742", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "5283", + "y": "-8183" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785515c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-11623", + "y": "-4605" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3858.07", + "base_power_2": "6626.46", + "name": "ld_293609c0a", + "nominal_voltage": "120.09", + "parent": "sx2785515c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-11855", + "y": "-4589" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2766749", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "158", + "y": "2005" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766748", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4199", + "y": "-4277" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2745806", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "12070", + "y": "-8148" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766747", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "13105", + "y": "-6588" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766746", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "5343", + "y": "6921" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1144667", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9013", + "y": "10290" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1144666", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "7302", + "y": "8120" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104114b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "4452", + "y": "-9062" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3669.68", + "base_power_2": "9454.03", + "name": "ld_355587b0a", + "nominal_voltage": "120.09", + "parent": "sx3104114b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4269", + "y": "-8924" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1144668", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-5117", + "y": "-3173" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m4362177", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "1229", + "y": "2" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897780b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "8895", + "y": "-9902" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1910.41", + "base_power_2": "8120.52", + "name": "ld_293518b0a", + "nominal_voltage": "120.09", + "parent": "sx2897780b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9132", + "y": "-9909" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3048203b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-6006", + "y": "9510" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5578.25", + "base_power_2": "4452.68", + "name": "ld_323273b0b", + "nominal_voltage": "120.09", + "parent": "sx3048203b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6164", + "y": "9688" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3216358a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "83", + "y": "-11965" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3120484c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "4191", + "y": "-5242" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2991905a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-4532", + "y": "2954" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2745811", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-7940", + "y": "15441" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766730", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "8766", + "y": "-4416" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3160098a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "10847", + "y": "11694" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3157710b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4044", + "y": "8281" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4015.37", + "base_power_2": "5098.03", + "name": "ld_226193361b0b", + "nominal_voltage": "120.09", + "parent": "sx3157710b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3914", + "y": "8471" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2766732", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4284", + "y": "-4780" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216370", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "9314", + "y": "-8014" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766738", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10634", + "y": "1607" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv69sub2_hsb", + "nominal_voltage": "39837.17", + "phases": "ABCN", + "x": "6103", + "y": "-2464" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104115b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14742", + "y": "16354" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3561.57", + "base_power_2": "3541.52", + "name": "ld_391738b0b", + "nominal_voltage": "120.09", + "parent": "sx3104115b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-14687", + "y": "16582" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3179682c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-13785", + "y": "7044" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2897781a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "7217", + "y": "-13646" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1107.37", + "base_power_2": "2552.43", + "name": "ld_138770a0a", + "nominal_voltage": "120.09", + "parent": "sx2897781a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7331", + "y": "-13856" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3727710a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "15738", + "y": "3580" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2785516b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4270", + "y": "1774" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4103.00", + "base_power_2": "5010.41", + "name": "ld_138294b0b", + "nominal_voltage": "120.09", + "parent": "sx2785516b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4302", + "y": "1992" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3065665", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5959", + "y": "10638" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "q14404", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-10225", + "y": "-96" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216367", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6305", + "y": "-1212" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216368", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16338", + "y": "-8215" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916599a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "2266", + "y": "-16644" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5617.57", + "base_power_2": "3526.76", + "name": "ld_356015a0a", + "nominal_voltage": "120.09", + "parent": "sx2916599a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2387", + "y": "-16846" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3101814", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "14598", + "y": "-6056" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138000", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8402", + "y": "-383" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216123a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9226", + "y": "962" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5259.19", + "base_power_2": "3318.13", + "name": "ld_338926a0b", + "nominal_voltage": "120.09", + "parent": "sx3216123a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9417", + "y": "828" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897790c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "5340", + "y": "670" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3265.54", + "base_power_2": "7218.99", + "name": "ld_21357984c0a", + "nominal_voltage": "120.09", + "parent": "sx2897790c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5293", + "y": "433" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3066830b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4423", + "y": "12207" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3179646", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "7280", + "y": "9028" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3008237c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "4629", + "y": "1157" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3065750", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-2225", + "y": "17159" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3108449", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6430", + "y": "10672" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916598a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "2565", + "y": "-15927" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2306.80", + "base_power_2": "1353.00", + "name": "ld_355933a0b", + "nominal_voltage": "120.09", + "parent": "sx2916598a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2647", + "y": "-16146" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2895461", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-4617", + "y": "-16062" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2673331b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "5761", + "y": "7284" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2802481a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-983", + "y": "-3340" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "21360.97", + "base_power_2": "6061.71", + "name": "ld_226308730a0b", + "nominal_voltage": "120.09", + "parent": "sx2802481a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-857", + "y": "-3137" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2766749b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "435", + "y": "2400" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7481.21", + "base_power_2": "2549.72", + "name": "ld_337661b0a", + "nominal_voltage": "120.09", + "parent": "sx2766749b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "396", + "y": "2632" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3010557a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8931", + "y": "14764" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104113a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3638", + "y": "-16938" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4913.72", + "base_power_2": "4230.61", + "name": "ld_138560a0a", + "nominal_voltage": "120.09", + "parent": "sx3104113a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3618", + "y": "-17174" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1186der480-1", + "nominal_voltage": "277.13", + "phases": "ABCN", + "x": "-5989", + "y": "14873" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897791b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "13545", + "y": "9984" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "14629.90", + "base_power_2": "3504.12", + "name": "ld_323282b0b", + "nominal_voltage": "120.09", + "parent": "sx2897791b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "13721", + "y": "10140" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3047073", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-3042", + "y": "-6908" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2891575c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8365", + "y": "19357" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3179650", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "3072", + "y": "-1702" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2876798b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "2636", + "y": "-24" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4378.98", + "base_power_2": "9775.66", + "name": "ld_226193745b0a", + "nominal_voltage": "120.09", + "parent": "sx2876798b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2589", + "y": "201" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001209c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-18818", + "y": "-3477" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001209c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001209c", + "phases": "CS", + "x": "-19042", + "y": "-3381" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "9133.10", + "base_power_2": "6878.82", + "name": "ld_2001209c0b", + "nominal_voltage": "120.09", + "parent": "sx2001209c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-19024", + "y": "-3579" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3029495b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-15162", + "y": "16403" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3102286b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-983", + "y": "-5275" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8364.20", + "base_power_2": "21718.28", + "name": "ld_226308729b0a", + "nominal_voltage": "120.09", + "parent": "sx3102286b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-762", + "y": "-5175" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3010556a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-4671", + "y": "-10575" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1027121", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9273", + "y": "16860" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3772794", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6361", + "y": "-12789" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027114", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9489", + "y": "15753" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2861219", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-5505", + "y": "4794" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026chp-2", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "4680", + "y": "-3967" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2861218", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-10827", + "y": "4755" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m1026chp-3", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "4527", + "y": "-3792" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026chp-3_dgmtr", + "nominal_voltage": "7200.00", + "parent": "m1026chp-3", + "phases": "ABCN", + "x": "4375", + "y": "-3616" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "x2766715b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "4900", + "y": "-10662" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3177894a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8170", + "y": "19795" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d2001201_int", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-15387", + "y": "-1367" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3101827", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "9451", + "y": "13352" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001208c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-18541", + "y": "-3185" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001208c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001208c", + "phases": "CS", + "x": "-18781", + "y": "-3155" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7341.98", + "base_power_2": "6317.10", + "name": "ld_2001208c0b", + "nominal_voltage": "120.09", + "parent": "sx2001208c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-18691", + "y": "-3007" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2895449", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "4072", + "y": "4801" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710525c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "6913", + "y": "-6938" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2752.36", + "base_power_2": "7732.17", + "name": "ld_355437c0b", + "nominal_voltage": "120.09", + "parent": "sx2710525c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6935", + "y": "-7159" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1027110", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8962", + "y": "17903" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2861222", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-7166", + "y": "2071" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3179678", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-14724", + "y": "5728" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2861223", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "1812", + "y": "146" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027100", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9484", + "y": "14863" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027101", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-10013", + "y": "-13513" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3179674", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "1317", + "y": "-2173" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3179673", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "3359", + "y": "8431" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027109", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9498", + "y": "15314" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3216367b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "6457", + "y": "-1036" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2991910b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-979", + "y": "5173" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001207c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-18215", + "y": "-2864" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001207c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001207c", + "phases": "CS", + "x": "-18427", + "y": "-2745" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "6217.14", + "base_power_2": "3951.19", + "name": "ld_2001207c0a", + "nominal_voltage": "120.09", + "parent": "sx2001207c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-18422", + "y": "-2962" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3225319", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-14139", + "y": "16210" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3179608", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "10793", + "y": "14729" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026690", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16876", + "y": "-7618" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3179607", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-309", + "y": "-8822" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3030199c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-6574", + "y": "4208" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5609.06", + "base_power_2": "4875.47", + "name": "ld_260480c0b", + "nominal_voltage": "120.09", + "parent": "sx3030199c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6391", + "y": "4075" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001400c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-15046", + "y": "-1617" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3177881c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "5669", + "y": "-6499" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2345.54", + "base_power_2": "8139.00", + "name": "ld_227896008c0b", + "nominal_voltage": "120.09", + "parent": "sx3177881c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5487", + "y": "-6644" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2839305", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5113", + "y": "3515" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766746c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "4933", + "y": "7150" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2392.08", + "base_power_2": "8092.45", + "name": "ld_321886c0b", + "nominal_voltage": "120.09", + "parent": "sx2766746c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4749", + "y": "7291" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2841624", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "2130", + "y": "-11839" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841623", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "10723", + "y": "-4751" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841626", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-8332", + "y": "-4789" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841625", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9033", + "y": "-3868" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841628", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-13621", + "y": "2804" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026682", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "18139", + "y": "-7291" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2823611a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "226", + "y": "4458" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3883.46", + "base_power_2": "4693.86", + "name": "ld_21386877a0b", + "nominal_voltage": "120.09", + "parent": "sx2823611a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "168", + "y": "4239" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2841627", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "3549", + "y": "-5637" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841629", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-6552", + "y": "-3054" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841620", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-2730", + "y": "-9237" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2841619c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-11403", + "y": "-4972" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "11881.09", + "base_power_2": "3850.87", + "name": "ld_337636c0a", + "nominal_voltage": "120.09", + "parent": "sx2841619c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-11636", + "y": "-5003" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2841622", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3781", + "y": "4194" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841621", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "2192", + "y": "3568" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3142078b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "258", + "y": "3821" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1682.15", + "base_power_2": "2328.16", + "name": "ld_330121b0a", + "nominal_voltage": "120.09", + "parent": "sx3142078b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "424", + "y": "3992" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001206c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-17890", + "y": "-2595" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001206c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001206c", + "phases": "CS", + "x": "-18127", + "y": "-2551" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7004.43", + "base_power_2": "5100.61", + "name": "ld_2001206c0a", + "nominal_voltage": "120.09", + "parent": "sx2001206c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-18024", + "y": "-2405" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3216361b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "12213", + "y": "6497" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026681", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "15524", + "y": "-7176" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000413", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-14154", + "y": "-4999" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000412", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-14031", + "y": "-4674" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841615", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "1388", + "y": "-16931" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000411", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-13828", + "y": "-4364" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000410", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-13619", + "y": "-4023" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841616", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-1660", + "y": "4168" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841619", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-10934", + "y": "-4841" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000415", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-14521", + "y": "-5443" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841618", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-5747", + "y": "3978" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000414", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-14318", + "y": "-5265" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026679", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "13369", + "y": "-6919" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2841618a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5685", + "y": "4462" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1555.13", + "base_power_2": "7589.20", + "name": "ld_337673a0a", + "nominal_voltage": "120.09", + "parent": "sx2841618a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5742", + "y": "4688" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3234149a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "264", + "y": "-955" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3142079b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8895", + "y": "959" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4367.94", + "base_power_2": "1652.68", + "name": "ld_21249626b0a", + "nominal_voltage": "120.09", + "parent": "sx3142079b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8735", + "y": "786" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3234149b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "218", + "y": "-683" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3234149c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "401", + "y": "-1020" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2000409", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-13403", + "y": "-3656" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710520a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "225", + "y": "-13043" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3154.40", + "base_power_2": "2330.13", + "name": "ld_138679a0b", + "nominal_voltage": "120.09", + "parent": "sx2710520a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "350", + "y": "-13239" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3029055b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-897", + "y": "-7048" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2000408", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-13176", + "y": "-3272" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000407", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-12935", + "y": "-2876" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766748a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4047", + "y": "-3835" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1531.46", + "base_power_2": "3953.08", + "name": "ld_21470326a0b", + "nominal_voltage": "120.09", + "parent": "sx2766748a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3974", + "y": "-3616" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2991933c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "5313", + "y": "-5307" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "13016.35", + "base_power_2": "7952.73", + "name": "ld_355433c0a", + "nominal_voltage": "120.09", + "parent": "sx2991933c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5178", + "y": "-5118" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2000402", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-11515", + "y": "-804" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000401", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-10849", + "y": "42" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000400", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-10517", + "y": "472" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000406", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-12680", + "y": "-2470" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000405", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-12412", + "y": "-2058" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000404", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-12141", + "y": "-1638" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3178969b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "3886", + "y": "-12059" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2000403", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-11828", + "y": "-1226" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2955047a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "7489", + "y": "8887" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5874.56", + "base_power_2": "3269.77", + "name": "ld_21469911a0b", + "nominal_voltage": "120.09", + "parent": "sx2955047a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7686", + "y": "9003" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001205c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-17533", + "y": "-2295" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001205c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001205c", + "phases": "CS", + "x": "-17766", + "y": "-2240" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4378.56", + "base_power_2": "5464.21", + "name": "ld_2001205c0b", + "nominal_voltage": "120.09", + "parent": "sx2001205c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-17649", + "y": "-2096" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2748840b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "724", + "y": "-4256" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3048962a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-544", + "y": "3973" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3047060", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "14672", + "y": "-7013" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m4277837", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-2525", + "y": "3195" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710521a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-591", + "y": "-14569" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710521a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2710521a", + "phases": "AS", + "x": "-731", + "y": "-14766" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3778.26", + "base_power_2": "8458.86", + "name": "ld_138680a0b", + "nominal_voltage": "120.09", + "parent": "sx2710521a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-524", + "y": "-14793" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3010559a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7470", + "y": "5345" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2766747a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13126", + "y": "-7053" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1467.28", + "base_power_2": "7677.05", + "name": "ld_391989a0b", + "nominal_voltage": "120.09", + "parent": "sx2766747a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12923", + "y": "-7131" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026697", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "17116", + "y": "-7867" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973180b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "1234", + "y": "14199" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3547.23", + "base_power_2": "9576.48", + "name": "ld_21398646b0b", + "nominal_voltage": "120.09", + "parent": "sx2973180b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1437", + "y": "14312" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026699", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "736", + "y": "14924" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3047059", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "14284", + "y": "-6979" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026693", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "660", + "y": "14602" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3179637", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-8181", + "y": "16066" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026695", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "15018", + "y": "-6187" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3157718a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "7333", + "y": "13982" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4705.16", + "base_power_2": "3872.16", + "name": "ld_226194093a0a", + "nominal_voltage": "120.09", + "parent": "sx3157718a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7118", + "y": "14075" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001204c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-17148", + "y": "-1973" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001204c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001204c", + "phases": "CS", + "x": "-17379", + "y": "-1912" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5857.38", + "base_power_2": "9022.50", + "name": "ld_2001204c0a", + "nominal_voltage": "120.09", + "parent": "sx2001204c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-17247", + "y": "-1764" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3047058", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "13896", + "y": "-6925" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2841616a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-1786", + "y": "4673" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841616a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2841616a", + "phases": "AS", + "x": "-1806", + "y": "4916" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7263.83", + "base_power_2": "1880.50", + "name": "ld_21031684a0b", + "nominal_voltage": "120.09", + "parent": "sx2841616a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1973", + "y": "4816" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197629b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4553", + "y": "-6261" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5205.43", + "base_power_2": "3907.97", + "name": "ld_247122b0b", + "nominal_voltage": "120.09", + "parent": "sx3197629b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4605", + "y": "-6053" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2991939b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "7586", + "y": "-1390" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6271.58", + "base_power_2": "3759.35", + "name": "ld_337652b0a", + "nominal_voltage": "120.09", + "parent": "sx2991939b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7816", + "y": "-1341" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3139598", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4332", + "y": "-9741" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3123509c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "671", + "y": "-1322" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p829957", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-1814", + "y": "7920" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766742b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "5593", + "y": "-7826" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3270.10", + "base_power_2": "2750.52", + "name": "ld_355585b0b", + "nominal_voltage": "120.09", + "parent": "sx2766742b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5826", + "y": "-7832" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047592", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8819", + "y": "-7309" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p829956", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-839", + "y": "1202" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785520b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3190", + "y": "-8986" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2806553c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-7261", + "y": "14225" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2861223b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "1976", + "y": "-28" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5534970-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "17645", + "y": "-2720" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3086079b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "1551", + "y": "-1601" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3082992a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3025", + "y": "-4626" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026646", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6534", + "y": "-8484" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026647", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8401", + "y": "-8711" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026648", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8869", + "y": "-8648" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3156034a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "11492", + "y": "-5155" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1299.33", + "base_power_2": "2360.47", + "name": "ld_391993a0b", + "nominal_voltage": "120.09", + "parent": "sx3156034a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11545", + "y": "-4931" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197628c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-4071", + "y": "-11952" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3838.29", + "base_power_2": "6646.25", + "name": "ld_138651c0b", + "nominal_voltage": "120.09", + "parent": "sx3197628c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4234", + "y": "-12120" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2766741a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-4782", + "y": "2585" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3274.38", + "base_power_2": "8962.73", + "name": "ld_21386754a0b", + "nominal_voltage": "120.09", + "parent": "sx2766741a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5011", + "y": "2536" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2691954b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2002", + "y": "-170" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3253995c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "10880", + "y": "-799" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "20672.30", + "base_power_2": "16544.19", + "name": "ld_21396815c0a", + "nominal_voltage": "120.09", + "parent": "sx3253995c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11105", + "y": "-750" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047593", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "9818", + "y": "303" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785521c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "9046", + "y": "-7606" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2724120", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-3296", + "y": "-1612" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3768670", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6552", + "y": "-10194" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2937757c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-6087", + "y": "13807" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3082993a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "7717", + "y": "19592" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3086078a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-1943", + "y": "7401" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p829974", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "3319", + "y": "7345" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2674047c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-3045", + "y": "6194" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p829979", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "1637", + "y": "-680" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197627c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-13572", + "y": "574" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5149.67", + "base_power_2": "5334.87", + "name": "ld_337625c0b", + "nominal_voltage": "120.09", + "parent": "sx3197627c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-13754", + "y": "429" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3048210a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5992", + "y": "8933" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026670", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "13695", + "y": "-5501" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p829975", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "3028", + "y": "7672" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p829976", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "623", + "y": "7558" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p829977", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "1798", + "y": "561" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766744b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "10531", + "y": "9007" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3660.30", + "base_power_2": "6370.63", + "name": "ld_2127319b0a", + "nominal_voltage": "120.09", + "parent": "sx2766744b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "10744", + "y": "9090" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p829978", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5076", + "y": "3345" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841645", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "3901", + "y": "5258" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026665", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "11309", + "y": "-7883" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5861005-2_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "309", + "y": "5633" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841648", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "2306", + "y": "-3856" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2925506c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "1246", + "y": "1165" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2885.93", + "base_power_2": "7598.60", + "name": "ld_225533703c0a", + "nominal_voltage": "120.09", + "parent": "sx2925506c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1476", + "y": "1129" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026667", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "18636", + "y": "-7039" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026660", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "10824", + "y": "-8058" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3225319b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-13732", + "y": "16471" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9479.39", + "base_power_2": "5561.85", + "name": "ld_225533675b0b", + "nominal_voltage": "120.09", + "parent": "sx3225319b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-13544", + "y": "16608" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2839332", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-1493", + "y": "7640" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026661", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "18874", + "y": "-6924" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2839331", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9530", + "y": "11677" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026662", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "13392", + "y": "-5124" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047566", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16749", + "y": "2761" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047568", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16508", + "y": "1983" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3142050c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8258", + "y": "14509" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160896c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2539", + "y": "-3678" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3177881", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "5953", + "y": "-6114" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841641", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "6295", + "y": "6066" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785522b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "11380", + "y": "6361" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p829960", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-5405", + "y": "5243" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p829961", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-9166", + "y": "4037" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2763072b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-12409", + "y": "11899" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p829962", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-1073", + "y": "6693" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p829963", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9764", + "y": "3860" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197626c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-14073", + "y": "1745" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5850.65", + "base_power_2": "3530.79", + "name": "ld_337623c0a", + "nominal_voltage": "120.09", + "parent": "sx3197626c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-14280", + "y": "1847" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3048211a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8650", + "y": "-11643" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p829965", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-6295", + "y": "3928" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047580", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10156", + "y": "-1355" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841635", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "19559", + "y": "-1111" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841634", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "554", + "y": "15421" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047572", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10270", + "y": "-1908" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841637", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "7026", + "y": "-5312" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3177894", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8194", + "y": "19555" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026655", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "11999", + "y": "-4136" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841636", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-10563", + "y": "10210" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026656", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9855", + "y": "-8375" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047574", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "14603", + "y": "835" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2861222a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7335", + "y": "1892" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2933135a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4746", + "y": "-220" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2841639", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "2772", + "y": "-14283" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047575", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "15414", + "y": "1204" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841638", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-763", + "y": "-12296" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3029183b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "1651", + "y": "15769" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047577", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "9163", + "y": "-6581" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2814529c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "16187", + "y": "-9392" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2814529a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "15875", + "y": "-9278" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2814529b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "16018", + "y": "-9378" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2841631", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "13953", + "y": "-5175" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026657", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "10343", + "y": "-8224" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2820556a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "2959", + "y": "-5742" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2841630", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-6434", + "y": "-3507" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026658", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "12501", + "y": "-4444" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841633", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "17910", + "y": "-2351" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841632", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "14885", + "y": "956" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785523c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-5834", + "y": "-3280" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2895496", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-1124", + "y": "852" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048212a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "1970", + "y": "-15318" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2898522", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6272", + "y": "3473" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2898526", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-13563", + "y": "6737" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089103", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-5593", + "y": "287" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879753b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9279", + "y": "596" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1089102", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-4914", + "y": "-2820" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3065665a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6172", + "y": "11055" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8554.27", + "base_power_2": "3682.84", + "name": "ld_227895952a0b", + "nominal_voltage": "120.09", + "parent": "sx3065665a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6290", + "y": "11255" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104859b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14386", + "y": "9231" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4902.70", + "base_power_2": "1117.92", + "name": "ld_138798b0b", + "nominal_voltage": "120.09", + "parent": "sx3104859b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-14298", + "y": "9448" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2691950c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-9603", + "y": "-6013" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3649300a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6419", + "y": "-13386" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047548", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10593", + "y": "-3588" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3086075b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "1135", + "y": "-4102" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2766717c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-3878", + "y": "-700" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2785524c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-10406", + "y": "-5793" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1089115", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-7479", + "y": "-3390" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089118", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-7670", + "y": "-2645" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089119", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-7859", + "y": "-1936" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1149225", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-8392", + "y": "2391" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026chp-1", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "4845", + "y": "-4135" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089112", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-7284", + "y": "-4156" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p829986", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-11870", + "y": "5751" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089113", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-5989", + "y": "-68" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5565090-1_int", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-15360", + "y": "16376" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2917359a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7439", + "y": "3169" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4921.26", + "base_power_2": "3656.06", + "name": "ld_21482431a0a", + "nominal_voltage": "120.09", + "parent": "sx2917359a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-7631", + "y": "3038" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047550", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16621", + "y": "1473" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047552", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10227", + "y": "-4370" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3086074c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "1053", + "y": "7081" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047558", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16687", + "y": "1784" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2766716c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "12457", + "y": "-1663" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5774470-2_int", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "13929", + "y": "-6674" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785525c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-9519", + "y": "-7374" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2842330c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "10279", + "y": "14559" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2338.00", + "base_power_2": "8146.54", + "name": "ld_356795c0b", + "nominal_voltage": "120.09", + "parent": "sx2842330c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "10361", + "y": "14777" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1149235", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "2979", + "y": "7373" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1149236", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "3212", + "y": "7106" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1149233", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "1367", + "y": "7452" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048214a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3475", + "y": "11188" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3048946c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "6177", + "y": "1788" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3881.28", + "base_power_2": "2407.38", + "name": "ld_260624c0a", + "nominal_voltage": "120.09", + "parent": "sx3048946c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6407", + "y": "1863" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1089120", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-8375", + "y": "-1532" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5587291-3_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8242", + "y": "11789" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089122", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-9115", + "y": "-5497" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691953a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8409", + "y": "-11826" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047520", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "15517", + "y": "-158" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047521", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "15228", + "y": "-552" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047522", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "15789", + "y": "200" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047526", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "14729", + "y": "-876" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879092c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11700", + "y": "-3547" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2785526b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8765", + "y": "7910" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047528", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "13719", + "y": "-1506" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089138", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-13402", + "y": "2902" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1186der-2", + "nominal_voltage": "277.13", + "phases": "ABCN", + "x": "-6017", + "y": "15126" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2983432a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6151", + "y": "7466" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1186der-1", + "nominal_voltage": "277.13", + "phases": "ABCN", + "x": "-5830", + "y": "15065" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2766719a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8977", + "y": "4758" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1149249", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-8656", + "y": "18720" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2895489", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8738", + "y": "9108" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1186der-3", + "nominal_voltage": "277.13", + "phases": "ABCN", + "x": "-6181", + "y": "15036" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089132", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-9440", + "y": "-5553" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2898515", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "5086", + "y": "2057" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089131", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-11804", + "y": "1131" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691952a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "14264", + "y": "-6485" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2992624a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-8594", + "y": "4463" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2691951c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-7973", + "y": "-4347" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047534", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16558", + "y": "1157" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785527a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9606", + "y": "-9011" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2766718c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-4292", + "y": "-10898" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1089148", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-16552", + "y": "2709" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5746546-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-10102", + "y": "-1573" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2804956a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8147", + "y": "2626" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3197639", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8012", + "y": "-9286" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197638", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "3759", + "y": "-4239" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197637", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-6386", + "y": "-7121" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197636", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "504", + "y": "-494" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197635", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-756", + "y": "6706" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3120504a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9166", + "y": "19384" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2103.09", + "base_power_2": "3381.44", + "name": "ld_225897846a0b", + "nominal_voltage": "120.09", + "parent": "sx3120504a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9260", + "y": "19597" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1089141", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-13379", + "y": "2365" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973178b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-1306", + "y": "3991" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3290.47", + "base_power_2": "2730.15", + "name": "ld_337665b0b", + "nominal_voltage": "120.09", + "parent": "sx2973178b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1379", + "y": "4213" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197645a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4886", + "y": "-13689" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1869.00", + "base_power_2": "7275.33", + "name": "ld_21395962a0a", + "nominal_voltage": "120.09", + "parent": "sx3197645a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4943", + "y": "-13918" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1089143", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-13892", + "y": "2761" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5472341-1_int", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3914", + "y": "-4453" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089145", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-14162", + "y": "2990" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089144", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-14293", + "y": "2747" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748144a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "7072", + "y": "2437" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7634.21", + "base_power_2": "1510.12", + "name": "ld_338984a0b", + "nominal_voltage": "120.09", + "parent": "sx2748144a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7104", + "y": "2198" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3197634", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "6924", + "y": "-1572" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197633", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3180", + "y": "4602" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047503", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "19220", + "y": "-1116" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197632", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4209", + "y": "6061" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197631", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6221", + "y": "5833" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197630", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-1781", + "y": "-11830" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2936214a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8000", + "y": "2215" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2936214a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2936214a", + "phases": "AS", + "x": "8199", + "y": "2073" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5674.09", + "base_power_2": "3470.24", + "name": "ld_356809a0b", + "nominal_voltage": "120.09", + "parent": "sx2936214a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8044", + "y": "1987" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047507", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "17413", + "y": "-939" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1147865", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8760", + "y": "9337" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1147866", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "17899", + "y": "-8574" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2804957c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-9351", + "y": "19889" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3197629", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4167", + "y": "-6551" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1147863", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "5917", + "y": "-3333" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197628", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-3686", + "y": "-11655" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1147864", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5225", + "y": "-3634" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197627", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-13119", + "y": "733" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1147861", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "5906", + "y": "-4943" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197626", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-13769", + "y": "1383" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1147862", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5920", + "y": "-4568" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2801895b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-15720", + "y": "17286" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4776.11", + "base_power_2": "5254.82", + "name": "ld_226191951b0a", + "nominal_voltage": "120.09", + "parent": "sx2801895b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-15771", + "y": "17512" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3197625", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "7969", + "y": "14652" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197624", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9762", + "y": "-13331" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1147860", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "6074", + "y": "-5899" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916627a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3478", + "y": "-15773" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6638.71", + "base_power_2": "2505.62", + "name": "ld_138563a0b", + "nominal_voltage": "120.09", + "parent": "sx2916627a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3282", + "y": "-15903" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3048937c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-9486", + "y": "20476" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3048937c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3048937c", + "phases": "CS", + "x": "-9584", + "y": "20697" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5513.21", + "base_power_2": "3868.23", + "name": "ld_356789c0a", + "nominal_voltage": "120.09", + "parent": "sx3048937c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9717", + "y": "20510" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2727795c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-9201", + "y": "-6719" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3646.86", + "base_power_2": "2641.80", + "name": "ld_227678342c0a", + "nominal_voltage": "120.09", + "parent": "sx2727795c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9108", + "y": "-6930" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3195321a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5362", + "y": "12951" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1089155", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-14694", + "y": "1958" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089158", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-14140", + "y": "1595" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1147867", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-942", + "y": "115" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2690187b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3323", + "y": "-7203" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "20832.09", + "base_power_2": "9250.38", + "name": "ld_226308716b0a", + "nominal_voltage": "120.09", + "parent": "sx2690187b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3163", + "y": "-7372" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3047073c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2845", + "y": "-7354" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3680.81", + "base_power_2": "6803.73", + "name": "ld_227917133c0a", + "nominal_voltage": "120.09", + "parent": "sx3047073c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2701", + "y": "-7540" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197644a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "7481", + "y": "-13457" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3685.44", + "base_power_2": "4891.88", + "name": "ld_138771a0a", + "nominal_voltage": "120.09", + "parent": "sx3197644a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7654", + "y": "-13622" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3085403a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "19187", + "y": "-8525" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2748143a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3718", + "y": "103" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2748143a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2748143a", + "phases": "AS", + "x": "3609", + "y": "-110" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "2225.59", + "base_power_2": "6918.74", + "name": "ld_2121368a0b", + "nominal_voltage": "120.09", + "parent": "sx2748143a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3858", + "y": "-80" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1089160", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-13968", + "y": "918" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047513", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "17161", + "y": "-1023" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047515", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16856", + "y": "-955" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2936213b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "7382", + "y": "13399" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4277.18", + "base_power_2": "10764.06", + "name": "ld_328363b0b", + "nominal_voltage": "120.09", + "parent": "sx2936213b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7201", + "y": "13545" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047518", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "10150", + "y": "-5496" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2937757", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-5903", + "y": "13660" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2801896b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "2991", + "y": "-11043" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1806.67", + "base_power_2": "4213.95", + "name": "ld_226191995b0b", + "nominal_voltage": "120.09", + "parent": "sx2801896b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2842", + "y": "-10843" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160868b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8296", + "y": "2768" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2125.75", + "base_power_2": "7905.18", + "name": "ld_20107693b0a", + "nominal_voltage": "120.09", + "parent": "sx3160868b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8524", + "y": "2742" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2936211c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2117", + "y": "-2030" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4301.21", + "base_power_2": "1987.45", + "name": "ld_260567c0b", + "nominal_voltage": "120.09", + "parent": "sx2936211c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2320", + "y": "-2132" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1089163", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-14161", + "y": "766" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2851933a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "16465", + "y": "-6238" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6030.54", + "base_power_2": "3113.79", + "name": "ld_21393643a0a", + "nominal_voltage": "120.09", + "parent": "sx2851933a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "16333", + "y": "-6048" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1089162", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-13576", + "y": "1240" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089165", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-12954", + "y": "919" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2764399b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "13193", + "y": "2663" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1147858", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "5758", + "y": "-5827" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1147859", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "6123", + "y": "-6421" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197643b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-10175", + "y": "10231" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9147.56", + "base_power_2": "3976.15", + "name": "ld_302369b0a", + "nominal_voltage": "120.09", + "parent": "sx3197643b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-10023", + "y": "10410" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3254227b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "6710", + "y": "5018" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1147857", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8678", + "y": "-5083" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3217064b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-10112", + "y": "1739" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1089170", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-11714", + "y": "264" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2851933c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "17244", + "y": "-6450" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10359.21", + "base_power_2": "5372.75", + "name": "ld_21393643c0a", + "nominal_voltage": "120.09", + "parent": "sx2851933c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "17476", + "y": "-6383" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3235275b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-6824", + "y": "3513" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4013.49", + "base_power_2": "6017.44", + "name": "ld_302507b0a", + "nominal_voltage": "120.09", + "parent": "sx3235275b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-7035", + "y": "3619" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2851933b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "17237", + "y": "-6689" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1627.77", + "base_power_2": "8403.16", + "name": "ld_21393643b0a", + "nominal_voltage": "120.09", + "parent": "sx2851933b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "17473", + "y": "-6660" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3197654", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "13955", + "y": "724" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2936212a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6499", + "y": "-119" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3215.67", + "base_power_2": "5928.66", + "name": "ld_356815a0b", + "nominal_voltage": "120.09", + "parent": "sx2936212a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6731", + "y": "-149" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3197653", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "13968", + "y": "9645" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3727709a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "15643", + "y": "3226" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3197652", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "3898", + "y": "844" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895409", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "3656", + "y": "-6047" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916625b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4678", + "y": "-9326" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8051.30", + "base_power_2": "6989.94", + "name": "ld_21467859b0a", + "nominal_voltage": "120.09", + "parent": "sx2916625b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4784", + "y": "-9123" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3197647", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "18282", + "y": "-614" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197646", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "3005", + "y": "-10414" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089174", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-9076", + "y": "-601" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089173", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-9812", + "y": "-659" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748140a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "10246", + "y": "-5145" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2658.06", + "base_power_2": "6486.27", + "name": "ld_391995a0a", + "nominal_voltage": "120.09", + "parent": "sx2748140a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "10040", + "y": "-5013" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1089176", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-6131", + "y": "-367" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3254228b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "13226", + "y": "9322" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1089177", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-10403", + "y": "-2482" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089179", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-5389", + "y": "-307" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197642c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "14643", + "y": "-6289" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4972.46", + "base_power_2": "1316.20", + "name": "ld_391979c0a", + "nominal_voltage": "120.09", + "parent": "sx3197642c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "14858", + "y": "-6388" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3254229b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "8091", + "y": "4874" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5955074-2_int", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-6748", + "y": "-796" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089183", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-10672", + "y": "-6708" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3139366a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "1524", + "y": "-258" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3363.53", + "base_power_2": "5780.80", + "name": "ld_226264795a0a", + "nominal_voltage": "120.09", + "parent": "sx3139366a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1695", + "y": "-417" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3197645", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4702", + "y": "-13228" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197644", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "7098", + "y": "-13116" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197643", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-10530", + "y": "9881" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197642", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "14181", + "y": "-6064" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5682346-3_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8899", + "y": "3086" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197641", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "19007", + "y": "-379" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197640", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "18192", + "y": "-1846" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2731712b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "11051", + "y": "8373" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2992556", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-5126", + "y": "11768" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069738", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-2463", + "y": "16696" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2860481c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "1781", + "y": "2034" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3118855", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10868", + "y": "10668" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2804261c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-5415", + "y": "-73" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4857.14", + "base_power_2": "1431.52", + "name": "ld_302509c0b", + "nominal_voltage": "120.09", + "parent": "sx2804261c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5597", + "y": "-224" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3030204a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "969", + "y": "4164" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069730", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-2745", + "y": "16159" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089185", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-10061", + "y": "-7867" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691947a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "2955", + "y": "-5549" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2748139", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "3146", + "y": "-12044" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089187", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-10680", + "y": "-3413" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2914324a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-3539", + "y": "-14847" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069731", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-2899", + "y": "15866" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089186", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-10917", + "y": "-3374" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089189", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-10865", + "y": "-4362" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089188", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-10788", + "y": "-3886" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2935551c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-10182", + "y": "-1160" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2748140", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "10530", + "y": "-5529" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2748143", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "3783", + "y": "592" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2748144", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6827", + "y": "2889" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3235273b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "8643", + "y": "8078" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8244.62", + "base_power_2": "1786.31", + "name": "ld_339016b0b", + "nominal_voltage": "120.09", + "parent": "sx3235273b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8534", + "y": "8279" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2748146", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-4707", + "y": "-13474" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897778a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5180", + "y": "9664" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1444.99", + "base_power_2": "2214.81", + "name": "ld_302468a0b", + "nominal_voltage": "120.09", + "parent": "sx2897778a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5291", + "y": "9872" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3179699b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3065", + "y": "2362" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879794a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7223", + "y": "2475" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6115.30", + "base_power_2": "7596.04", + "name": "ld_260475a0b", + "nominal_voltage": "120.09", + "parent": "sx2879794a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-7414", + "y": "2347" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3727707a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "15103", + "y": "2354" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3030203c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "3176", + "y": "8486" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3030205c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "4005", + "y": "3122" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3027122a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6335", + "y": "9349" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1027091", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9254", + "y": "12994" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2804262a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "2534", + "y": "-14050" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2757.63", + "base_power_2": "2726.90", + "name": "ld_355938a0a", + "nominal_voltage": "120.09", + "parent": "sx2804262a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2318", + "y": "-14137" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160865a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-2246", + "y": "6706" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1938.43", + "base_power_2": "7205.90", + "name": "ld_260515a0b", + "nominal_voltage": "120.09", + "parent": "sx3160865a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2037", + "y": "6611" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2860482a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13776", + "y": "-1338" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1089196", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "9447", + "y": "13237" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089195", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "11376", + "y": "11690" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089198", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "9738", + "y": "13000" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991640c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-14277", + "y": "1080" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1071.20", + "base_power_2": "3124.67", + "name": "ld_229106135c0b", + "nominal_voltage": "120.09", + "parent": "sx2991640c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-14500", + "y": "1017" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1089197", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "9147", + "y": "13476" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691946b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-6332", + "y": "280" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1027092", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9097", + "y": "12819" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089199", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8839", + "y": "13574" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2935552c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-17074", + "y": "5922" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2748152", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "11806", + "y": "5203" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2914323b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "7964", + "y": "-4418" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2748157", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "13668", + "y": "1570" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2748158", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "10809", + "y": "-6745" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3727708a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "14860", + "y": "2792" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2803194c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2788", + "y": "-6842" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "15280.59", + "base_power_2": "3544.16", + "name": "ld_227917130c0b", + "nominal_voltage": "120.09", + "parent": "sx2803194c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2595", + "y": "-6963" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897779c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-4941", + "y": "-6" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6455.19", + "base_power_2": "4029.34", + "name": "ld_302508c0b", + "nominal_voltage": "120.09", + "parent": "sx2897779c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5039", + "y": "-216" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3197618", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "592", + "y": "-18221" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3029520b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "976", + "y": "12025" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2691949b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "1590", + "y": "-1734" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3160864b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5217", + "y": "6447" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2383.28", + "base_power_2": "3637.34", + "name": "ld_2127146b0a", + "nominal_voltage": "120.09", + "parent": "sx3160864b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5186", + "y": "6678" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197647a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "18452", + "y": "-164" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1169.48", + "base_power_2": "2490.31", + "name": "ld_294787a0a", + "nominal_voltage": "120.09", + "parent": "sx3197647a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "18470", + "y": "71" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2684420b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9217", + "y": "-12633" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3085402a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-4075", + "y": "9885" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3101194", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3206", + "y": "-8100" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2748124", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-2792", + "y": "16404" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3139103a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9993", + "y": "16650" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1326.75", + "base_power_2": "7817.58", + "name": "ld_225767272a0a", + "nominal_voltage": "120.09", + "parent": "sx3139103a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "10135", + "y": "16837" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2748125", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "11395", + "y": "-6803" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748146a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-4352", + "y": "-13775" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3682.44", + "base_power_2": "4894.88", + "name": "ld_138570a0a", + "nominal_voltage": "120.09", + "parent": "sx2748146a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4203", + "y": "-13949" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897776c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8154", + "y": "-3397" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4147.51", + "base_power_2": "6337.02", + "name": "ld_302858c0a", + "nominal_voltage": "120.09", + "parent": "sx2897776c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8323", + "y": "-3237" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2915534", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-2343", + "y": "-6410" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2936216c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-4601", + "y": "10997" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4098.49", + "base_power_2": "2522.50", + "name": "ld_223663c0a", + "nominal_voltage": "120.09", + "parent": "sx2936216c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4782", + "y": "11150" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2858163a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "12691", + "y": "-6123" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3232301", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-4267", + "y": "-6654" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2860480b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-10233", + "y": "-13969" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3027124c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8688", + "y": "15432" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2804260b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-13050", + "y": "13730" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3647.70", + "base_power_2": "6383.23", + "name": "ld_391752b0b", + "nominal_voltage": "120.09", + "parent": "sx2804260b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-12957", + "y": "13941" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2748126", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "4556", + "y": "6605" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973791a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3011", + "y": "-2314" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4310.99", + "base_power_2": "13977.66", + "name": "ld_260605a0b", + "nominal_voltage": "120.09", + "parent": "sx2973791a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3146", + "y": "-2499" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197646b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "2528", + "y": "-10447" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3517.70", + "base_power_2": "6513.23", + "name": "ld_355944b0b", + "nominal_voltage": "120.09", + "parent": "sx3197646b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2350", + "y": "-10302" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2935550c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-14794", + "y": "1497" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2748127", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6477", + "y": "5875" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691948b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-194", + "y": "11065" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2748128", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-12333", + "y": "589" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160863a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-2371", + "y": "9353" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3588.61", + "base_power_2": "5792.84", + "name": "ld_223660a0b", + "nominal_voltage": "120.09", + "parent": "sx3160863a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2248", + "y": "9551" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2748129", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-4858", + "y": "-14336" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3085400c", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7764", + "y": "-6534" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2911069b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "3152", + "y": "-9095" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5942.85", + "base_power_2": "7776.75", + "name": "ld_225571871b0a", + "nominal_voltage": "120.09", + "parent": "sx2911069b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3326", + "y": "-8938" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2748130", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-2472", + "y": "-9925" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2748131", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-5416", + "y": "-5800" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2748132", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4026", + "y": "-6389" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3085401a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "16450", + "y": "562" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2748133", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-7542", + "y": "-5205" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2748135", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-6957", + "y": "6241" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d6170302-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-14008", + "y": "6816" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2915542", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-9196", + "y": "-9456" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897777c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "16655", + "y": "-508" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4899.52", + "base_power_2": "5585.02", + "name": "ld_338937c0b", + "nominal_voltage": "120.09", + "parent": "sx2897777c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "16859", + "y": "-390" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2916620c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "12678", + "y": "578" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3652.46", + "base_power_2": "3636.20", + "name": "ld_338977c0b", + "nominal_voltage": "120.09", + "parent": "sx2916620c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12890", + "y": "663" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1142100", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6160", + "y": "2462" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973833b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "4105", + "y": "3737" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5993.39", + "base_power_2": "2722.50", + "name": "ld_260630b0a", + "nominal_voltage": "120.09", + "parent": "sx2973833b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4019", + "y": "3950" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1142101", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "7405", + "y": "2760" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2954347b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "12862", + "y": "3163" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3460.88", + "base_power_2": "6570.05", + "name": "ld_321841b0b", + "nominal_voltage": "120.09", + "parent": "sx2954347b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "13073", + "y": "3258" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1142102", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "7727", + "y": "2909" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048963b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5638", + "y": "6492" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710542b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "5440", + "y": "-7176" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8355.38", + "base_power_2": "1675.55", + "name": "ld_355584b0b", + "nominal_voltage": "120.09", + "parent": "sx2710542b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5235", + "y": "-7077" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1142107", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "9142", + "y": "13103" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1142108", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-11424", + "y": "6027" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1142109", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "18189", + "y": "-1131" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027066", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "4056", + "y": "5530" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1142103", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6883", + "y": "5326" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1142104", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6979", + "y": "6725" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1142105", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6701", + "y": "8842" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1142106", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "7924", + "y": "12953" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160862c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2231", + "y": "1246" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3160862c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3160862c", + "phases": "CS", + "x": "-2464", + "y": "1284" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3838.69", + "base_power_2": "5542.76", + "name": "ld_21386143c0b", + "nominal_voltage": "120.09", + "parent": "sx3160862c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2412", + "y": "1103" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3342743c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "8041", + "y": "-7541" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3985.07", + "base_power_2": "3303.59", + "name": "ld_2223703238c0b", + "nominal_voltage": "120.09", + "parent": "sx3342743c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8004", + "y": "-7316" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3216348a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3566", + "y": "-5363" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1027056", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9002", + "y": "9836" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2767343c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-9496", + "y": "19457" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10150.28", + "base_power_2": "5581.68", + "name": "ld_356791c0a", + "nominal_voltage": "120.09", + "parent": "sx2767343c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9728", + "y": "19433" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001203c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-16690", + "y": "-1596" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001203c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001203c", + "phases": "CS", + "x": "-16863", + "y": "-1434" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "9177.84", + "base_power_2": "9240.79", + "name": "ld_2001203c0b", + "nominal_voltage": "120.09", + "parent": "sx2001203c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-16910", + "y": "-1664" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2803199c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-7523", + "y": "-9575" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8963.36", + "base_power_2": "12005.72", + "name": "ld_227760021c0b", + "nominal_voltage": "120.09", + "parent": "sx2803199c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-7536", + "y": "-9811" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897774b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-47", + "y": "2205" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3775.50", + "base_power_2": "2245.12", + "name": "ld_337691b0a", + "nominal_voltage": "120.09", + "parent": "sx2897774b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-37", + "y": "2434" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3085391b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2614", + "y": "450" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "15053.50", + "base_power_2": "4998.05", + "name": "ld_21236413b0b", + "nominal_voltage": "120.09", + "parent": "sx3085391b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2816", + "y": "558" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2710543c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "818", + "y": "3261" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710543c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2710543c", + "phases": "CS", + "x": "919", + "y": "3472" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7733.69", + "base_power_2": "2750.84", + "name": "ld_21474614c0a", + "nominal_voltage": "120.09", + "parent": "sx2710543c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "595", + "y": "3216" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2803199a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7786", + "y": "-9567" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6529.80", + "base_power_2": "11758.86", + "name": "ld_227760021a0a", + "nominal_voltage": "120.09", + "parent": "sx2803199a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-7853", + "y": "-9796" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3142098b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9586", + "y": "1098" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3593.94", + "base_power_2": "9529.77", + "name": "ld_260501b0b", + "nominal_voltage": "120.09", + "parent": "sx3142098b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9535", + "y": "873" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2803199b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8031", + "y": "-9427" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2803199b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2803199b", + "phases": "BS", + "x": "-8237", + "y": "-9565" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "19388.73", + "base_power_2": "3755.60", + "name": "ld_227760021b0a", + "nominal_voltage": "120.09", + "parent": "sx2803199b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8087", + "y": "-9657" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2990826b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-10912", + "y": "-6559" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2990826c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-11108", + "y": "-6357" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1027055", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8996", + "y": "9376" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2954346b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4231", + "y": "14610" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10008.47", + "base_power_2": "2245.85", + "name": "ld_323397b0a", + "nominal_voltage": "120.09", + "parent": "sx2954346b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4458", + "y": "14661" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160861c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-1164", + "y": "1825" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1959.10", + "base_power_2": "2236.77", + "name": "ld_260558c0b", + "nominal_voltage": "120.09", + "parent": "sx3160861c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1206", + "y": "2053" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973171b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "8211", + "y": "7834" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5342.04", + "base_power_2": "4688.89", + "name": "ld_339012b0a", + "nominal_voltage": "120.09", + "parent": "sx2973171b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8130", + "y": "8050" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2990826a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-11043", + "y": "-6489" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d6017316-1_int", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "5451", + "y": "-7827" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3216349b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "161", + "y": "14167" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3778577c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "1565", + "y": "3821" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3516.68", + "base_power_2": "6967.85", + "name": "ld_2224490448c0a", + "nominal_voltage": "120.09", + "parent": "sx3778577c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1590", + "y": "4056" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p893610", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-14591", + "y": "7607" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001202c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-16144", + "y": "-2008" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001202c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001202c", + "phases": "CS", + "x": "-16238", + "y": "-2229" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7454.83", + "base_power_2": "6825.84", + "name": "ld_2001202c0b", + "nominal_voltage": "120.09", + "parent": "sx2001202c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-16368", + "y": "-2072" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897775c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-11673", + "y": "-5971" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5636.18", + "base_power_2": "4848.36", + "name": "ld_138342c0a", + "nominal_voltage": "120.09", + "parent": "sx2897775c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-11883", + "y": "-6081" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2858166a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13182", + "y": "-1599" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3085390b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-7429", + "y": "-12661" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1445.48", + "base_power_2": "4575.14", + "name": "ld_321848b0b", + "nominal_voltage": "120.09", + "parent": "sx3085390b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-7411", + "y": "-12895" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3064514c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8960", + "y": "18195" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3261.73", + "base_power_2": "6119.72", + "name": "ld_251857c0b", + "nominal_voltage": "120.09", + "parent": "sx3064514c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9186", + "y": "18252" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2954349b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-736", + "y": "8889" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5543.04", + "base_power_2": "4487.89", + "name": "ld_337699b0a", + "nominal_voltage": "120.09", + "parent": "sx2954349b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-851", + "y": "9092" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3142099b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "433", + "y": "-3472" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9431.51", + "base_power_2": "3692.20", + "name": "ld_157718b0b", + "nominal_voltage": "120.09", + "parent": "sx3142099b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "323", + "y": "-3681" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1027080", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9092", + "y": "11638" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048965b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "1191", + "y": "7618" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1027087", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9205", + "y": "12537" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3195327a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9888", + "y": "16096" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2767341c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-336", + "y": "-6589" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1525.25", + "base_power_2": "14206.71", + "name": "ld_260577c0b", + "nominal_voltage": "120.09", + "parent": "sx2767341c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-245", + "y": "-6800" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897772a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "14931", + "y": "-5993" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2897772a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2897772a", + "phases": "AS", + "x": "15181", + "y": "-5962" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "1732.40", + "base_power_2": "3752.13", + "name": "ld_302679a0a", + "nominal_voltage": "120.09", + "parent": "sx2897772a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "15134", + "y": "-6124" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3179646b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "7587", + "y": "9386" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10389.28", + "base_power_2": "4651.96", + "name": "ld_328365b0a", + "nominal_voltage": "120.09", + "parent": "sx3179646b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7750", + "y": "9549" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x1108410b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9873", + "y": "-8761" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3085393c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-12646", + "y": "2332" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3120.46", + "base_power_2": "10456.86", + "name": "ld_337627c0a", + "nominal_voltage": "120.09", + "parent": "sx3085393c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-12590", + "y": "2555" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2954348a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "1729", + "y": "-17079" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5470.96", + "base_power_2": "3673.37", + "name": "ld_356013a0b", + "nominal_voltage": "120.09", + "parent": "sx2954348a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1847", + "y": "-17281" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3048966c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "5116", + "y": "1835" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1027071", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "4784", + "y": "6285" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3189189", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "15933", + "y": "-7432" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3189188", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "16202", + "y": "-7615" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027073", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "5036", + "y": "6628" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2767342a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5819", + "y": "11982" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3663.31", + "base_power_2": "5481.02", + "name": "ld_356802a0b", + "nominal_voltage": "120.09", + "parent": "sx2767342a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5972", + "y": "12158" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3189190", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "17875", + "y": "-5687" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027068", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "4293", + "y": "5720" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3030126c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-959", + "y": "-7672" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9565.44", + "base_power_2": "4011.88", + "name": "ld_260576c0b", + "nominal_voltage": "120.09", + "parent": "sx3030126c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1118", + "y": "-7847" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897773a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6335", + "y": "5445" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2783.22", + "base_power_2": "3969.36", + "name": "ld_338918a0b", + "nominal_voltage": "120.09", + "parent": "sx2897773a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6533", + "y": "5564" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2692664c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-17188", + "y": "5183" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3085392c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-12234", + "y": "-223" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2028.98", + "base_power_2": "4259.68", + "name": "ld_337630c0b", + "nominal_voltage": "120.09", + "parent": "sx3085392c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-12420", + "y": "-361" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3048890c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8569", + "y": "16914" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2141.94", + "base_power_2": "8342.60", + "name": "ld_2128517c0b", + "nominal_voltage": "120.09", + "parent": "sx3048890c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8796", + "y": "16964" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m3763623", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "9391", + "y": "-10232" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3763624", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8663", + "y": "-8400" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104128a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-16310", + "y": "2572" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3540.51", + "base_power_2": "1944.03", + "name": "ld_247057a0a", + "nominal_voltage": "120.09", + "parent": "sx3104128a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-16495", + "y": "2426" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197641a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "19252", + "y": "79" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3197641a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3197641a", + "phases": "AS", + "x": "19295", + "y": "322" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3889.97", + "base_power_2": "4687.35", + "name": "ld_293591a0a", + "nominal_voltage": "120.09", + "parent": "sx3197641a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "19449", + "y": "204" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3097861c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "7094", + "y": "15360" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1932.90", + "base_power_2": "2262.97", + "name": "ld_225533215c0b", + "nominal_voltage": "120.09", + "parent": "sx3097861c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6958", + "y": "15551" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m3763620", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "9670", + "y": "-9533" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897770c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-12297", + "y": "2151" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7773.14", + "base_power_2": "2711.40", + "name": "ld_337628c0a", + "nominal_voltage": "120.09", + "parent": "sx2897770c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-12275", + "y": "2379" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1027019", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "11129", + "y": "6762" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027013", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10413", + "y": "7850" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027014", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "5465", + "y": "7127" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1008733", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-14252", + "y": "15970" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p903360", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5216", + "y": "-7605" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3216344b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4100", + "y": "3607" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p830058", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "3716", + "y": "2601" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3065750b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2149", + "y": "17396" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3030203", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "3192", + "y": "8234" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2822857b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "4102", + "y": "-9507" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3250.96", + "base_power_2": "2769.66", + "name": "ld_355588b0a", + "nominal_voltage": "120.09", + "parent": "sx2822857b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4012", + "y": "-9296" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3030200", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-439", + "y": "4832" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3763618", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8909", + "y": "-8577" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048968c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-18359", + "y": "4406" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3067506", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "4412", + "y": "2328" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3067507", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-943", + "y": "7055" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027011", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10738", + "y": "7651" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104129a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "17475", + "y": "2440" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1274.42", + "base_power_2": "12436.92", + "name": "ld_338969a0a", + "nominal_voltage": "120.09", + "parent": "sx3104129a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "17648", + "y": "2602" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1027005", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-7701", + "y": "-11689" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197640c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "18610", + "y": "-2114" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3894.62", + "base_power_2": "3394.04", + "name": "ld_338944c0a", + "nominal_voltage": "120.09", + "parent": "sx3197640c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "18823", + "y": "-2217" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3085393", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-12701", + "y": "1861" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027001", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-7515", + "y": "-10674" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897771b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14883", + "y": "9787" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1413.19", + "base_power_2": "4607.43", + "name": "ld_21148701b0a", + "nominal_voltage": "120.09", + "parent": "sx2897771b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-14940", + "y": "10014" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3085392", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-11875", + "y": "83" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027002", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "11310", + "y": "7182" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2767340a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "978", + "y": "-7586" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "22482.09", + "base_power_2": "4940.59", + "name": "ld_260595a0b", + "nominal_voltage": "120.09", + "parent": "sx2767340a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1181", + "y": "-7703" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3085391", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-2316", + "y": "792" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m4122658", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "4082", + "y": "-600" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2767340b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "560", + "y": "-7899" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "22677.76", + "base_power_2": "7404.71", + "name": "ld_260595b0a", + "nominal_voltage": "120.09", + "parent": "sx2767340b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "615", + "y": "-8127" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3085390", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-7541", + "y": "-12185" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027004", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-7804", + "y": "-11133" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m4122657", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-8193", + "y": "15413" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2767340c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "957", + "y": "-7236" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1285.34", + "base_power_2": "30178.58", + "name": "ld_260595c0a", + "nominal_voltage": "120.09", + "parent": "sx2767340c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1190", + "y": "-7237" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3085397", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-6299", + "y": "-8916" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2936268c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-1057", + "y": "5708" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3085396", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-50", + "y": "-13887" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1008742", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-15121", + "y": "15891" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3763619", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8480", + "y": "-8040" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3030204", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "872", + "y": "4366" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3085395", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3001", + "y": "-11711" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1008743", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-14934", + "y": "15645" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3030205", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "4135", + "y": "2919" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3085394", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-16601", + "y": "4400" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p903354", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-1288", + "y": "6799" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1008746", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-14787", + "y": "15345" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3085399", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-7700", + "y": "-5036" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3085398", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6320", + "y": "-2922" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3216345b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "7170", + "y": "-9872" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2822858b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "5593", + "y": "-9505" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6947.61", + "base_power_2": "3083.32", + "name": "ld_355591b0a", + "nominal_voltage": "120.09", + "parent": "sx2822858b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5469", + "y": "-9313" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3120502a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-4385", + "y": "-16049" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2742.60", + "base_power_2": "2741.94", + "name": "ld_294812a0b", + "nominal_voltage": "120.09", + "parent": "sx3120502a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4412", + "y": "-16280" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1027041", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "6874", + "y": "7931" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2802480b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2173", + "y": "-5642" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3614.20", + "base_power_2": "26468.28", + "name": "ld_226308725b0a", + "nominal_voltage": "120.09", + "parent": "sx2802480b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2070", + "y": "-5439" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160117b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4694", + "y": "10060" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5161.72", + "base_power_2": "4869.20", + "name": "ld_21357901b0a", + "nominal_voltage": "120.09", + "parent": "sx3160117b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4840", + "y": "10241" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1027042", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "7724", + "y": "8318" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142der480-1", + "nominal_voltage": "277.13", + "phases": "ABCN", + "x": "-7511", + "y": "3295" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027043", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "9003", + "y": "8906" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104126c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-10745", + "y": "-5903" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104126c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3104126c", + "phases": "CS", + "x": "-10928", + "y": "-6066" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3642.84", + "base_power_2": "3645.82", + "name": "ld_138372c0b", + "nominal_voltage": "120.09", + "parent": "sx3104126c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-10982", + "y": "-5929" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2954345c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "4165", + "y": "5659" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "24034.73", + "base_power_2": "23491.04", + "name": "ld_338915c0b", + "nominal_voltage": "120.09", + "parent": "sx2954345c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3911", + "y": "5665" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1027038", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "10629", + "y": "8612" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027039", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "9423", + "y": "8645" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3150961", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-801", + "y": "-8391" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027036", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "10912", + "y": "8660" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1008752", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-14726", + "y": "14994" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2692661a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5814", + "y": "3755" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1008753", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-15050", + "y": "14161" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3231269b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "2032", + "y": "-9503" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5943.51", + "base_power_2": "7710.58", + "name": "ld_225684682b0a", + "nominal_voltage": "120.09", + "parent": "sx3231269b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1801", + "y": "-9509" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "q1301", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "225", + "y": "5204" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3085389", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-14965", + "y": "15068" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3216346a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "12146", + "y": "-6035" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2917310", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9005", + "y": "1494" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3085388", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-15563", + "y": "14216" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1008758", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-14483", + "y": "14287" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1142110", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-13493", + "y": "2833" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1142111", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-15084", + "y": "2731" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1142112", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-2455", + "y": "2110" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3120503a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9759", + "y": "19116" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3668.87", + "base_power_2": "1815.67", + "name": "ld_225869139a0b", + "nominal_voltage": "120.09", + "parent": "sx3120503a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9916", + "y": "19288" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2822859b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-13892", + "y": "14686" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1940.86", + "base_power_2": "8090.07", + "name": "ld_391747b0b", + "nominal_voltage": "120.09", + "parent": "sx2822859b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-13700", + "y": "14815" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104127b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "1181", + "y": "-524" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1311.90", + "base_power_2": "8719.03", + "name": "ld_337690b0b", + "nominal_voltage": "120.09", + "parent": "sx3104127b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1279", + "y": "-319" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2954344c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11879", + "y": "-6490" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3559.56", + "base_power_2": "10017.76", + "name": "ld_338959c0b", + "nominal_voltage": "120.09", + "parent": "sx2954344c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12052", + "y": "-6640" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1027027", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "5679", + "y": "7199" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027023", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10079", + "y": "8102" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2861197c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2234", + "y": "-3420" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2804269b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "12100", + "y": "10880" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6462.36", + "base_power_2": "3568.57", + "name": "ld_323285b0a", + "nominal_voltage": "120.09", + "parent": "sx2804269b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12114", + "y": "11111" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2692660a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "953", + "y": "7735" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3216347c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-6135", + "y": "-2863" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3085399c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-7974", + "y": "-4716" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4210.24", + "base_power_2": "2078.42", + "name": "ld_302862c0a", + "nominal_voltage": "120.09", + "parent": "sx3085399c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8142", + "y": "-4557" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2917328", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-10364", + "y": "4485" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048228c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-15631", + "y": "2350" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3178974b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3819", + "y": "15312" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104124b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "13076", + "y": "4107" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3630.01", + "base_power_2": "2390.60", + "name": "ld_356065b0b", + "nominal_voltage": "120.09", + "parent": "sx3104124b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "13225", + "y": "4287" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2822864c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-17848", + "y": "4168" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6085.39", + "base_power_2": "3296.05", + "name": "ld_274985c0b", + "nominal_voltage": "120.09", + "parent": "sx2822864c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-18073", + "y": "4092" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2991943c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "7076", + "y": "-4468" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2991943c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2991943c", + "phases": "CS", + "x": "7264", + "y": "-4319" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "6730.32", + "base_power_2": "3754.22", + "name": "ld_21399619c0a", + "nominal_voltage": "120.09", + "parent": "sx2991943c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7313", + "y": "-4478" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2917330", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-6969", + "y": "2220" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2688693c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-14436", + "y": "4912" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2917336", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-16020", + "y": "6136" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2917333", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4758", + "y": "4490" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3082988b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8048", + "y": "2258" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2822865c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-17214", + "y": "3919" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3648.88", + "base_power_2": "3639.78", + "name": "ld_274986c0a", + "nominal_voltage": "120.09", + "parent": "sx2822865c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-17420", + "y": "3800" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3085398b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "5996", + "y": "-2598" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5721.40", + "base_power_2": "4309.53", + "name": "ld_355777b0b", + "nominal_voltage": "120.09", + "parent": "sx3085398b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5944", + "y": "-2371" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d2000901_int", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-13015", + "y": "2047" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2673343b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-6946", + "y": "-10526" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2955005b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "23", + "y": "-8518" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3010569a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "12814", + "y": "-6058" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3649299a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6483", + "y": "-12753" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7309.91", + "base_power_2": "1834.42", + "name": "ld_2224237391a0b", + "nominal_voltage": "120.09", + "parent": "sx3649299a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6619", + "y": "-12938" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3178975b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5541", + "y": "-5333" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2764403a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "14309", + "y": "1808" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2479.84", + "base_power_2": "6664.49", + "name": "ld_226193078a0a", + "nominal_voltage": "120.09", + "parent": "sx2764403a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "14363", + "y": "2032" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2916234a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4320", + "y": "-7154" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104125b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-12356", + "y": "1099" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4867.07", + "base_power_2": "9287.57", + "name": "ld_138264b0a", + "nominal_voltage": "120.09", + "parent": "sx3104125b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-12458", + "y": "895" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d5926308-3_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6704", + "y": "-11393" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d6320328-1_int", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-11082", + "y": "-46" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3008248a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8664", + "y": "17267" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3157708c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "18001", + "y": "-1516" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4567.81", + "base_power_2": "1720.85", + "name": "ld_226192954c0a", + "nominal_voltage": "120.09", + "parent": "sx3157708c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "18236", + "y": "-1547" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2746587c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "5758", + "y": "-6046" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2990828", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-10917", + "y": "-5327" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2822866b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "7651", + "y": "4882" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1516.98", + "base_power_2": "8513.95", + "name": "ld_338922b0b", + "nominal_voltage": "120.09", + "parent": "sx2822866b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7860", + "y": "4985" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2990826", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-10853", + "y": "-6306" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2990827", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-10889", + "y": "-5814" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3649298a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6790", + "y": "-12311" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1638.44", + "base_power_2": "12072.90", + "name": "ld_2224237384a0b", + "nominal_voltage": "120.09", + "parent": "sx3649298a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7011", + "y": "-12386" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3091052a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4703", + "y": "-6809" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2860479b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "4298", + "y": "-11572" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1027000", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "11670", + "y": "6552" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3010568a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "17310", + "y": "1144" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3178976a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "11807", + "y": "-5167" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710536a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4642", + "y": "-3225" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1439.18", + "base_power_2": "7705.15", + "name": "ld_21396867a0a", + "nominal_voltage": "120.09", + "parent": "sx2710536a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4472", + "y": "-3067" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104122a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-4139", + "y": "-15353" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8672.98", + "base_power_2": "4595.06", + "name": "ld_138565a0a", + "nominal_voltage": "120.09", + "parent": "sx3104122a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4130", + "y": "-15595" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3010567c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-9870", + "y": "-4620" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5865224-1_int", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3702", + "y": "-4967" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3067506c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "4743", + "y": "2648" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3204.92", + "base_power_2": "4083.74", + "name": "ld_260620c0a", + "nominal_voltage": "120.09", + "parent": "sx3067506c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4878", + "y": "2831" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2935549b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-1939", + "y": "3312" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3104157c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "3585", + "y": "-2714" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2917359", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-7011", + "y": "3323" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5835167-6_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "14821", + "y": "-6762" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2822867b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-252", + "y": "2944" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2822867b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2822867b", + "phases": "BS", + "x": "-34", + "y": "3037" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3525.70", + "base_power_2": "5587.70", + "name": "ld_21386552b0b", + "nominal_voltage": "120.09", + "parent": "sx2822867b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-70", + "y": "2801" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2767343", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-9028", + "y": "19551" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104123c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "9584", + "y": "3008" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "23479.42", + "base_power_2": "24046.36", + "name": "ld_338924c0b", + "nominal_voltage": "120.09", + "parent": "sx3104123c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9532", + "y": "3233" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3179607b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-402", + "y": "-9056" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3178977c", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-9272", + "y": "-4196" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3649297a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6984", + "y": "-11576" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3696.16", + "base_power_2": "10015.18", + "name": "ld_2224237380a0b", + "nominal_voltage": "120.09", + "parent": "sx3649297a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7210", + "y": "-11634" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2710537b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-15072", + "y": "14765" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3087.13", + "base_power_2": "6943.80", + "name": "ld_391744b0b", + "nominal_voltage": "120.09", + "parent": "sx2710537b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-15300", + "y": "14814" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2688692b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14246", + "y": "4537" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2991940c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-16064", + "y": "1986" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2632.66", + "base_power_2": "3656.00", + "name": "ld_2148060c0b", + "nominal_voltage": "120.09", + "parent": "sx2991940c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-16286", + "y": "1904" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3067507c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-679", + "y": "7487" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2564.70", + "base_power_2": "13167.26", + "name": "ld_260535c0b", + "nominal_voltage": "120.09", + "parent": "sx3067507c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-448", + "y": "7554" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3178978a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6208", + "y": "-8426" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3010566c", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9308", + "y": "-3446" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104120b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2577", + "y": "-12407" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3988.67", + "base_power_2": "2031.95", + "name": "ld_138645b0b", + "nominal_voltage": "120.09", + "parent": "sx3104120b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2647", + "y": "-12632" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3179608c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "10926", + "y": "14943" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2862616c", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-2767", + "y": "-8369" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673300b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-15209", + "y": "14450" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3338.66", + "base_power_2": "9785.05", + "name": "ld_391745b0a", + "nominal_voltage": "120.09", + "parent": "sx2673300b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-15432", + "y": "14522" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160123a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4347", + "y": "-635" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3492.74", + "base_power_2": "1991.79", + "name": "ld_21015706a0a", + "nominal_voltage": "120.09", + "parent": "sx3160123a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4315", + "y": "-406" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2822860b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-10863", + "y": "-14086" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9205.25", + "base_power_2": "3918.46", + "name": "ld_323236b0a", + "nominal_voltage": "120.09", + "parent": "sx2822860b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-11045", + "y": "-14235" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104155c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2210", + "y": "84" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2000300", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-9685", + "y": "803" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2970804c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8713", + "y": "20721" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3178979c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "17029", + "y": "2476" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5746703-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-2180", + "y": "8429" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048887b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-354", + "y": "-8112" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "12920.37", + "base_power_2": "2120.87", + "name": "ld_260586b0b", + "nominal_voltage": "120.09", + "parent": "sx3048887b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-405", + "y": "-8340" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3085395a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3240", + "y": "-12130" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5113.88", + "base_power_2": "3463.44", + "name": "ld_21391094a0a", + "nominal_voltage": "120.09", + "parent": "sx3085395a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3324", + "y": "-12350" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2767342", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5520", + "y": "11614" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3234149", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "444", + "y": "-773" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2767341", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-633", + "y": "-6229" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2767340", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "522", + "y": "-7416" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3189188c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "15962", + "y": "-8042" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "11467.16", + "base_power_2": "9501.91", + "name": "ld_293658c0a", + "nominal_voltage": "120.09", + "parent": "sx3189188c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "15848", + "y": "-8247" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3198358b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14982", + "y": "8934" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2455.74", + "base_power_2": "12585.50", + "name": "ld_138797b0b", + "nominal_voltage": "120.09", + "parent": "sx3198358b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-15129", + "y": "9118" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2692655c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-3501", + "y": "5914" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104121a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3973", + "y": "-16673" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6704.64", + "base_power_2": "2439.69", + "name": "ld_138561a0a", + "nominal_voltage": "120.09", + "parent": "sx3104121a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4041", + "y": "-16901" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3254230a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "12719", + "y": "-4443" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3064514", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-8490", + "y": "18099" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142798", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9477", + "y": "2157" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3312692a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "7453", + "y": "20195" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1142799", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9217", + "y": "2237" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2822861a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-1946", + "y": "4274" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1111.23", + "base_power_2": "8033.10", + "name": "ld_21015829a0a", + "nominal_voltage": "120.09", + "parent": "sx2822861a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2075", + "y": "4471" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2879087a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-1533", + "y": "-13131" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3048888c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8253", + "y": "18767" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3321.34", + "base_power_2": "2967.32", + "name": "ld_251856c0b", + "nominal_voltage": "120.09", + "parent": "sx3048888c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8081", + "y": "18923" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2862616", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-2990", + "y": "-8249" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2689678b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4315", + "y": "-5747" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3963.97", + "base_power_2": "1970.67", + "name": "ld_226192762b0b", + "nominal_voltage": "120.09", + "parent": "sx2689678b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4252", + "y": "-5515" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3189189b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "15711", + "y": "-7851" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4254.55", + "base_power_2": "1766.07", + "name": "ld_293657b0a", + "nominal_voltage": "120.09", + "parent": "sx3189189b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "15568", + "y": "-8038" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2692654a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-9814", + "y": "3607" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3085394c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-16969", + "y": "4706" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5474.35", + "base_power_2": "3907.09", + "name": "ld_274988c0b", + "nominal_voltage": "120.09", + "parent": "sx3085394c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-17178", + "y": "4809" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3198356c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-18346", + "y": "4770" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3009.15", + "base_power_2": "3279.51", + "name": "ld_350993c0b", + "nominal_voltage": "120.09", + "parent": "sx3198356c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-18578", + "y": "4814" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2710532c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "18045", + "y": "-8434" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2564.13", + "base_power_2": "1631.75", + "name": "ld_293666c0a", + "nominal_voltage": "120.09", + "parent": "sx2710532c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "18273", + "y": "-8380" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673346c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "7371", + "y": "-4918" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d6198039-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-839", + "y": "-4768" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047490", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "14383", + "y": "245" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2822862c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-15605", + "y": "1835" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3064.90", + "base_power_2": "3223.76", + "name": "ld_275001c0a", + "nominal_voltage": "120.09", + "parent": "sx2822862c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-15838", + "y": "1805" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3066821a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "10868", + "y": "-5782" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2685805a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5558", + "y": "-4274" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047483", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "11183", + "y": "-1904" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047484", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "12205", + "y": "-1315" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785530a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "18189", + "y": "-9293" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047485", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "13567", + "y": "-390" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3047289b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14287", + "y": "3506" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047486", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "12725", + "y": "-1036" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3047289a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-14520", + "y": "3393" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3048889c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8774", + "y": "17525" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8598.79", + "base_power_2": "1885.75", + "name": "ld_2128464c0b", + "nominal_voltage": "120.09", + "parent": "sx3048889c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9004", + "y": "17558" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m1186-wt3", + "nominal_voltage": "277.13", + "phases": "ABCN", + "x": "-6345", + "y": "15220" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1186-wt3_dgmtr", + "nominal_voltage": "277.13", + "parent": "m1186-wt3", + "phases": "ABCN", + "x": "-6490", + "y": "15412" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "x3216350a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13450", + "y": "-5881" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3085397b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-6248", + "y": "-9414" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3339.91", + "base_power_2": "9783.80", + "name": "ld_323261b0a", + "nominal_voltage": "120.09", + "parent": "sx3085397b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6216", + "y": "-9648" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3047289c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-14424", + "y": "3485" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m1186-wt1", + "nominal_voltage": "277.13", + "phases": "ABCN", + "x": "-5726", + "y": "15286" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1186-wt1_dgmtr", + "nominal_voltage": "277.13", + "parent": "m1186-wt1", + "phases": "ABCN", + "x": "-5658", + "y": "15515" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m1186-wt2", + "nominal_voltage": "277.13", + "phases": "ABCN", + "x": "-6055", + "y": "15371" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1186-wt2_dgmtr", + "nominal_voltage": "277.13", + "parent": "m1186-wt2", + "phases": "ABCN", + "x": "-6096", + "y": "15610" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "sx3198355b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-15910", + "y": "8100" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2429.89", + "base_power_2": "1580.42", + "name": "ld_207288b0a", + "nominal_voltage": "120.09", + "parent": "sx3198355b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-16097", + "y": "8242" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2822863c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-10994", + "y": "-2827" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3836.42", + "base_power_2": "3452.24", + "name": "ld_337635c0b", + "nominal_voltage": "120.09", + "parent": "sx2822863c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-11219", + "y": "-2781" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2785531a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "326", + "y": "-11653" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3104154c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2981", + "y": "-261" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2879089c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "5110", + "y": "6239" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047497", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "15360", + "y": "-422" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2859403a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "2145", + "y": "-2991" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3232902a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3711", + "y": "-1346" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d6440002-2_int", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "1342", + "y": "-11100" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3085396a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "271", + "y": "-14248" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4036.47", + "base_power_2": "5107.86", + "name": "ld_138684a0b", + "nominal_voltage": "120.09", + "parent": "sx3085396a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "384", + "y": "-14452" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3216351a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "17764", + "y": "-7668" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3085410", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "8078", + "y": "5823" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "q16483_cap", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "2070", + "y": "7481" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954352", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-6364", + "y": "-3736" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954353", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "15339", + "y": "-326" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954350", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-8817", + "y": "-4381" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3085403", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "18952", + "y": "-8605" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954351", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-7388", + "y": "-5496" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3085402", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-4303", + "y": "9954" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2730163c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8060", + "y": "4119" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2691943b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4399", + "y": "15730" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047471", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "570", + "y": "13909" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104125", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-12333", + "y": "1539" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3010561a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "7353", + "y": "-1984" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3104126", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-10295", + "y": "-5633" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104123", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "9324", + "y": "2613" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104124", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "12695", + "y": "3791" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104121", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3816", + "y": "-16188" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3176656", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "2847", + "y": "3546" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104122", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-4296", + "y": "-14889" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104120", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-2426", + "y": "-11943" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "221-311359", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "650", + "y": "-585" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2806553", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-7036", + "y": "14303" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954349", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-511", + "y": "8464" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "228-1048090-1_int", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-842", + "y": "-5700" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2992624", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-8466", + "y": "4275" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3263051c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-9879", + "y": "-6915" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2954347", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "12475", + "y": "2885" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954348", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "1597", + "y": "-16623" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954345", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "4521", + "y": "5275" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3085401", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "16224", + "y": "464" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104129", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "17106", + "y": "2102" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954346", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3769", + "y": "14511" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3085400", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-7619", + "y": "-6339" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104127", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "939", + "y": "-907" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954344", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "11505", + "y": "-6363" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104128", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-15857", + "y": "2750" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2895461a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-4664", + "y": "-16311" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254234b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "4791", + "y": "-8742" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3048221a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "15035", + "y": "-7285" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047480", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10615", + "y": "-2198" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691942b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4044", + "y": "-7037" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3104114", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "4853", + "y": "-9287" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3448661b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4154", + "y": "16126" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3104115", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-14868", + "y": "15885" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2673305b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5489", + "y": "996" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2779.57", + "base_power_2": "3292.60", + "name": "ld_138236b0a", + "nominal_voltage": "120.09", + "parent": "sx2673305b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5505", + "y": "1233" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2691941c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "4917", + "y": "5577" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3176661", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-9040", + "y": "20358" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3010560b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "11585", + "y": "-1392" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3104113", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3731", + "y": "-16443" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047478", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "12027", + "y": "-1907" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954338", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "4625", + "y": "-10034" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954339", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-14635", + "y": "15568" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3159448a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-4774", + "y": "-4880" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6408.18", + "base_power_2": "2736.15", + "name": "ld_337684a0a", + "nominal_voltage": "120.09", + "parent": "sx3159448a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4624", + "y": "-4708" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3104118", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "4789", + "y": "6685" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104119", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "11177", + "y": "-2314" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3176660", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "8138", + "y": "6488" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3030200c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-470", + "y": "5072" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3104117", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "11739", + "y": "-7688" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089204", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8834", + "y": "14289" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089203", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10529", + "y": "12224" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089205", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "10997", + "y": "12589" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089207", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10632", + "y": "11855" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197639a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8052", + "y": "-9774" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3361.19", + "base_power_2": "8875.92", + "name": "ld_310569a0a", + "nominal_voltage": "120.09", + "parent": "sx3197639a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8020", + "y": "-10006" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3082981c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-13027", + "y": "1614" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3048222c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "4941", + "y": "-5401" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254231a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13361", + "y": "-3614" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1089200", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "11115", + "y": "12815" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691945c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-9939", + "y": "-4854" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1089202", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10276", + "y": "12494" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089201", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10012", + "y": "12752" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2783231b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "6299", + "y": "4640" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9993.04", + "base_power_2": "3788.65", + "name": "ld_226193886b0a", + "nominal_voltage": "120.09", + "parent": "sx2783231b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6081", + "y": "4689" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2841648a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "2398", + "y": "-4066" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3104145", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "9342", + "y": "9043" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047441", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-718", + "y": "6465" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047442", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-620", + "y": "7104" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104144", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4622", + "y": "1665" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047444", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-511", + "y": "7681" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047447", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-413", + "y": "8236" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2955055b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8838", + "y": "416" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5898.36", + "base_power_2": "4132.57", + "name": "ld_21249647b0b", + "nominal_voltage": "120.09", + "parent": "sx2955055b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8709", + "y": "219" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2785534b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "6132", + "y": "2133" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1089215", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10827", + "y": "9311" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954361", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "12511", + "y": "9676" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5804798-3_int", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3446", + "y": "3092" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197638a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3627", + "y": "-3787" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7852.77", + "base_power_2": "1291.56", + "name": "ld_21396959a0a", + "nominal_voltage": "120.09", + "parent": "sx3197638a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3561", + "y": "-3565" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2897554c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11759", + "y": "1645" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d2000701_int", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-13537", + "y": "272" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3066826b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "7435", + "y": "3913" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "221-559681", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "9314", + "y": "-9060" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2673303c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11235", + "y": "-7506" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3795.27", + "base_power_2": "2493.39", + "name": "ld_338963c0b", + "nominal_voltage": "120.09", + "parent": "sx2673303c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11372", + "y": "-7693" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2691944a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "11903", + "y": "4323" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "221-559682", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "8807", + "y": "-9084" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089213", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10842", + "y": "11098" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104136", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "15034", + "y": "-200" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104134", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "2798", + "y": "-12557" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104135", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-9193", + "y": "8059" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047453", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "145", + "y": "10707" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104132", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-4473", + "y": "9954" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104133", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "11639", + "y": "-6614" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3214549", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-916", + "y": "-3678" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104130", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-11845", + "y": "11606" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104131", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-5940", + "y": "8189" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047457", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "376", + "y": "11566" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3082983b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "9211", + "y": "8364" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2954357", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "2887", + "y": "-15865" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785535b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "14148", + "y": "9991" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2954354", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "13382", + "y": "-5844" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954355", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "11795", + "y": "-7644" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122837", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "5287", + "y": "-5720" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766750c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-617", + "y": "-703" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2766750c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2766750c", + "phases": "CS", + "x": "-432", + "y": "-836" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "10199.22", + "base_power_2": "5532.74", + "name": "ld_293424c0b", + "nominal_voltage": "120.09", + "parent": "sx2766750c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-779", + "y": "-865" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3122835", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "10105", + "y": "9297" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729401b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "4145", + "y": "-12281" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2763811", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3786", + "y": "-7266" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2763812", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3581", + "y": "-7566" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089220", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "11054", + "y": "9413" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5837361-8_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-214", + "y": "198" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2860477a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "65", + "y": "-18886" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254237a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7940", + "y": "-8549" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673308b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "8333", + "y": "-1612" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673308b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2673308b", + "phases": "BS", + "x": "8571", + "y": "-1608" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "11100.69", + "base_power_2": "3940.54", + "name": "ld_337653b0a", + "nominal_voltage": "120.09", + "parent": "sx2673308b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8447", + "y": "-1411" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047420", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "3529", + "y": "-6074" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047423", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "3937", + "y": "-6495" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3010565c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-11269", + "y": "-5559" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047424", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "914", + "y": "-1138" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2935547b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "13193", + "y": "11357" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2785536b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "7231", + "y": "4539" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3122848", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "7151", + "y": "-8086" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122849", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-3118", + "y": "555" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122847", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-2824", + "y": "-14342" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2860478b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "5087", + "y": "-9606" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254238b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "6789", + "y": "-4308" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3178971a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3758", + "y": "5816" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3010564c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "6396", + "y": "7953" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047430", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4782", + "y": "-7262" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2673309c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-4094", + "y": "-1329" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9739.18", + "base_power_2": "3838.14", + "name": "ld_138472c0a", + "nominal_voltage": "120.09", + "parent": "sx2673309c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4315", + "y": "-1398" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3104157", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "3687", + "y": "-2508" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104154", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-3151", + "y": "-104" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3342743", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "7880", + "y": "-7929" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047432", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5651", + "y": "-7948" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841645c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "3653", + "y": "5181" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3104155", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-2409", + "y": "-34" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047433", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5541", + "y": "-8171" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047434", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5452", + "y": "-8397" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047435", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5446", + "y": "-8633" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv11sub2_lsb", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "5214", + "y": "-2667" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2992657", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-6715", + "y": "2235" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785537a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13603", + "y": "2135" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2992656", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5353", + "y": "3216" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5803273-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "2100", + "y": "81" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122815", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "10050", + "y": "7868" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122816", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "9433", + "y": "1071" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122813", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-62", + "y": "-14141" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122814", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "1202", + "y": "2352" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122819", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-7384", + "y": "-3879" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136360", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4032", + "y": "1261" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136361", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4583", + "y": "1821" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122817", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "5684", + "y": "-3206" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136362", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4085", + "y": "1079" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122818", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "5694", + "y": "-4836" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136363", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "4654", + "y": "1952" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2955006c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "10243", + "y": "13638" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3066829c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "3728", + "y": "4757" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2708744b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3802", + "y": "-6683" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3178972c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "7253", + "y": "5596" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673306c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-11506", + "y": "-3922" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9242.17", + "base_power_2": "1242.36", + "name": "ld_293608c0a", + "nominal_voltage": "120.09", + "parent": "sx2673306c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-11737", + "y": "-3940" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047400", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4336", + "y": "-6726" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047401", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "3982", + "y": "-6133" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3010563a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "10928", + "y": "-4775" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "193-48013", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-2191", + "y": "-6592" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3727707", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "14929", + "y": "2186" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047403", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4197", + "y": "-6276" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136353", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "7595", + "y": "2319" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047404", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4392", + "y": "-6434" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136354", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "7240", + "y": "2853" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785538a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "12513", + "y": "-2804" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3727709", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "15393", + "y": "3216" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136355", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "6630", + "y": "4029" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3727708", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "15039", + "y": "2642" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047406", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "3082", + "y": "-5099" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136356", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6004", + "y": "2626" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122811", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-2473", + "y": "3886" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136357", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "5348", + "y": "1407" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122812", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4059", + "y": "3773" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136358", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "5218", + "y": "1481" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047409", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "2656", + "y": "-4511" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136359", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "4907", + "y": "1587" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122810", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9195", + "y": "-13145" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122826", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6628", + "y": "-12706" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048227a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6247", + "y": "-1931" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3122827", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "12297", + "y": "-7412" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122824", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-6365", + "y": "8006" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122825", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-6569", + "y": "7637" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p875742", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "6417", + "y": "-2432" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3178973a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "1021", + "y": "1615" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069662", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "12760", + "y": "11087" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3727710", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "15560", + "y": "3409" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2673307c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-9912", + "y": "-286" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3249.03", + "base_power_2": "6132.41", + "name": "ld_337632c0a", + "nominal_voltage": "120.09", + "parent": "sx2673307c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9713", + "y": "-173" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3010562b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5296", + "y": "9491" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3727712", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "14775", + "y": "3401" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3727711", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "14981", + "y": "3270" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047410", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "2913", + "y": "-5054" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879081a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "18104", + "y": "-7488" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1136365", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "11342", + "y": "506" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136366", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "12000", + "y": "400" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136367", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "11830", + "y": "-185" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122822", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "18685", + "y": "-9776" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136368", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "12510", + "y": "-1785" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122823", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-10439", + "y": "9949" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047419", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "3401", + "y": "-6317" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122820", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6585", + "y": "-9333" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122821", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "13152", + "y": "-709" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2841631c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "14430", + "y": "-5106" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3320.48", + "base_power_2": "10256.84", + "name": "ld_391976c0a", + "nominal_voltage": "120.09", + "parent": "sx2841631c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "14552", + "y": "-5298" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254206b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "4679", + "y": "-11064" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4115.53", + "base_power_2": "5915.40", + "name": "ld_355592b0b", + "nominal_voltage": "120.09", + "parent": "sx3254206b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4846", + "y": "-11230" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973166c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "17465", + "y": "-9815" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7568.47", + "base_power_2": "2916.07", + "name": "ld_293665c0a", + "nominal_voltage": "120.09", + "parent": "sx2973166c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "17472", + "y": "-10046" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3120504a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9078", + "y": "19165" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3251807a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9637", + "y": "18082" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2711224b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8778", + "y": "1897" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1060.76", + "base_power_2": "2949.55", + "name": "ld_260500b0b", + "nominal_voltage": "120.09", + "parent": "sx2711224b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8548", + "y": "1867" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3027671a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-1058", + "y": "-4088" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1706.73", + "base_power_2": "12004.61", + "name": "ld_226308728a0b", + "nominal_voltage": "120.09", + "parent": "sx3027671a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-823", + "y": "-4078" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3254870", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-671", + "y": "-7607" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254873", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-7488", + "y": "15022" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3047073c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2967", + "y": "-7146" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2729405b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3530", + "y": "1747" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3254207a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5353", + "y": "3845" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2598.80", + "base_power_2": "2885.74", + "name": "ld_337671a0b", + "nominal_voltage": "120.09", + "parent": "sx3254207a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5336", + "y": "4079" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3067478a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-214", + "y": "-5873" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3254869", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-1103", + "y": "-6552" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216988b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-77", + "y": "-9347" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6307.14", + "base_power_2": "3723.78", + "name": "ld_260590b0b", + "nominal_voltage": "120.09", + "parent": "sx3216988b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-56", + "y": "-9582" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973167b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "15500", + "y": "-6979" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2069.19", + "base_power_2": "3951.43", + "name": "ld_293656b0a", + "nominal_voltage": "120.09", + "parent": "sx2973167b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "15282", + "y": "-7028" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841630c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-6689", + "y": "-3888" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8576.65", + "base_power_2": "1907.88", + "name": "ld_138404c0a", + "nominal_voltage": "120.09", + "parent": "sx2841630c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6774", + "y": "-4101" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069640", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "12025", + "y": "10120" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3251806b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "2767", + "y": "-11397" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3139598b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4598", + "y": "-10102" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10657.47", + "base_power_2": "4383.76", + "name": "ld_226311345b0a", + "nominal_voltage": "120.09", + "parent": "sx3139598b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4818", + "y": "-10048" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3048937c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-9316", + "y": "20293" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3011229", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5390", + "y": "11315" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729406c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-10822", + "y": "-2358" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3179650b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "3498", + "y": "-1876" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3179650b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3179650b", + "phases": "BS", + "x": "3720", + "y": "-1960" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "1839.53", + "base_power_2": "4181.08", + "name": "ld_251828b0b", + "nominal_voltage": "120.09", + "parent": "sx3179650b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3387", + "y": "-2077" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254204a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "14096", + "y": "-1861" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3279.26", + "base_power_2": "2205.28", + "name": "ld_337715a0a", + "nominal_voltage": "120.09", + "parent": "sx3254204a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "14311", + "y": "-1957" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3066809c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11169", + "y": "-5769" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3086098a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4383", + "y": "3151" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6165.64", + "base_power_2": "12123.02", + "name": "ld_21474556a0b", + "nominal_voltage": "120.09", + "parent": "sx3086098a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4612", + "y": "3148" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104853c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-369", + "y": "7215" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3784018a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-744", + "y": "1697" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3655.98", + "base_power_2": "3096.59", + "name": "ld_2224500658a0a", + "nominal_voltage": "120.09", + "parent": "sx3784018a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-595", + "y": "1520" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d6077791-3_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16040", + "y": "533" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069632", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "12180", + "y": "9771" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142801", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9718", + "y": "2050" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142800", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-8949", + "y": "2287" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3448661", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4107", + "y": "15882" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3217052c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "1117", + "y": "6795" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3029501b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "143", + "y": "744" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3971.66", + "base_power_2": "2048.96", + "name": "ld_337688b0b", + "nominal_voltage": "120.09", + "parent": "sx3029501b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "369", + "y": "721" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2001015", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-8873", + "y": "6389" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142808", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-7584", + "y": "2791" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001010", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-10136", + "y": "5167" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729407b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4029", + "y": "-7946" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2001014", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9049", + "y": "6176" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001013", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9351", + "y": "5997" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897768c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-10996", + "y": "-1782" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2897768c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2897768c", + "phases": "CS", + "x": "-11226", + "y": "-1763" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3965.21", + "base_power_2": "9612.11", + "name": "ld_337634c0b", + "nominal_voltage": "120.09", + "parent": "sx2897768c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-11019", + "y": "-1554" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2001012", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9627", + "y": "5773" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001011", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9898", + "y": "5499" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069627", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "12845", + "y": "9642" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069629", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "11816", + "y": "9830" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973169a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "11625", + "y": "-4265" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2967.37", + "base_power_2": "2517.16", + "name": "ld_21397304a0a", + "nominal_voltage": "120.09", + "parent": "sx2973169a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11420", + "y": "-4161" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254205c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "7513", + "y": "-5561" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4736.29", + "base_power_2": "5748.25", + "name": "ld_302672c0a", + "nominal_voltage": "120.09", + "parent": "sx3254205c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7729", + "y": "-5658" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3254870c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-808", + "y": "-7819" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069620", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "10111", + "y": "10065" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748152b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "12226", + "y": "5450" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1409.20", + "base_power_2": "4611.42", + "name": "ld_321849b0a", + "nominal_voltage": "120.09", + "parent": "sx2748152b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12436", + "y": "5553" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1142813", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-7293", + "y": "3178" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142811", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-6842", + "y": "2449" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197654a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13634", + "y": "1053" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3947.88", + "base_power_2": "8289.23", + "name": "ld_21382992a0b", + "nominal_voltage": "120.09", + "parent": "sx3197654a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "13428", + "y": "1155" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1142810", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-7315", + "y": "2948" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001007", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-10943", + "y": "4074" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001006", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-11211", + "y": "3639" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3251808a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9513", + "y": "14615" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1142815", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-6775", + "y": "3302" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001005", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-11484", + "y": "3202" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3029500a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "12374", + "y": "-5298" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7881.46", + "base_power_2": "1262.87", + "name": "ld_391992a0a", + "nominal_voltage": "120.09", + "parent": "sx3029500a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12323", + "y": "-5075" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1142814", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-7056", + "y": "3129" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001004", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-11763", + "y": "2745" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d6138609-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-7596", + "y": "-4364" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3159448", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-5170", + "y": "-4680" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142819", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-5371", + "y": "4974" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001009", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-10387", + "y": "4821" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142818", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-5923", + "y": "4645" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001008", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-10665", + "y": "4475" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729408b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "8058", + "y": "-691" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2820556", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "3185", + "y": "-5588" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001003", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-12055", + "y": "2285" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897769c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "1273", + "y": "3574" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3728.93", + "base_power_2": "9848.39", + "name": "ld_337660c0b", + "nominal_voltage": "120.09", + "parent": "sx2897769c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1383", + "y": "3778" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2001002", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-12356", + "y": "1820" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001001", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-13067", + "y": "921" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001000", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-13435", + "y": "478" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069619", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "10245", + "y": "9834" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069613", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "13446", + "y": "9685" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2935552c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-17222", + "y": "6120" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4719.22", + "base_power_2": "1569.44", + "name": "ld_274903c0b", + "nominal_voltage": "120.09", + "parent": "sx2935552c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-17371", + "y": "6305" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069610", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "9979", + "y": "10292" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2952014a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-5033", + "y": "-15334" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2860482a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "14011", + "y": "-1412" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5935.98", + "base_power_2": "3208.35", + "name": "ld_338954a0a", + "nominal_voltage": "120.09", + "parent": "sx2860482a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "14235", + "y": "-1492" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935551c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-10413", + "y": "-1168" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2935551c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2935551c", + "phases": "CS", + "x": "-10631", + "y": "-1092" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5362.95", + "base_power_2": "4018.49", + "name": "ld_21387929c0b", + "nominal_voltage": "120.09", + "parent": "sx2935551c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-10495", + "y": "-1382" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2729409b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "2209", + "y": "-12003" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2897766c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-15772", + "y": "907" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6776.92", + "base_power_2": "3707.62", + "name": "ld_2128007c0b", + "nominal_voltage": "120.09", + "parent": "sx2897766c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-15978", + "y": "798" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197625c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "7881", + "y": "14886" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3645809c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "8964", + "y": "-10036" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3150961c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-965", + "y": "-8859" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "13063.88", + "base_power_2": "2668.07", + "name": "ld_223400157c0a", + "nominal_voltage": "120.09", + "parent": "sx3150961c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1046", + "y": "-9082" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069607", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "10396", + "y": "9608" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2804250c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-16841", + "y": "3558" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4200.65", + "base_power_2": "6283.88", + "name": "ld_274992c0a", + "nominal_voltage": "120.09", + "parent": "sx2804250c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-17035", + "y": "3429" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935553b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-6616", + "y": "-9710" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4664.60", + "base_power_2": "5366.33", + "name": "ld_323247b0b", + "nominal_voltage": "120.09", + "parent": "sx2935553b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6582", + "y": "-9943" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069600", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "9961", + "y": "10537" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104850c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2138", + "y": "1559" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2763407", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-5953", + "y": "14289" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138606", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-5338", + "y": "-3900" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138608", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-4506", + "y": "-6319" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138607", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-5172", + "y": "-4185" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2955081a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-13052", + "y": "6308" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3253570", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-5870", + "y": "13332" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2860483b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5359", + "y": "-8734" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1958.51", + "base_power_2": "8072.41", + "name": "ld_21396699b0a", + "nominal_voltage": "120.09", + "parent": "sx2860483b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5366", + "y": "-8972" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2727795", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-9417", + "y": "-6299" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897767c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "12125", + "y": "-6991" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2897767c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2897767c", + "phases": "CS", + "x": "12309", + "y": "-7159" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5284.76", + "base_power_2": "5199.77", + "name": "ld_338960c0a", + "nominal_voltage": "120.09", + "parent": "sx2897767c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12363", + "y": "-6995" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197624b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9992", + "y": "-13253" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3010580b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "11428", + "y": "8614" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1138604", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-4808", + "y": "-1629" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138603", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-4436", + "y": "-661" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2820590", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-15626", + "y": "5706" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254208c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "12142", + "y": "-7317" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10012.58", + "base_power_2": "3564.74", + "name": "ld_338961c0a", + "nominal_voltage": "120.09", + "parent": "sx3254208c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12243", + "y": "-7550" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2858163a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "12514", + "y": "-6264" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1060.77", + "base_power_2": "4423.76", + "name": "ld_391990a0b", + "nominal_voltage": "120.09", + "parent": "sx2858163a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12293", + "y": "-6228" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3254873c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-7722", + "y": "15043" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2933120c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11593", + "y": "-7599" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2898526c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-13312", + "y": "7145" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4850.98", + "base_power_2": "1437.68", + "name": "ld_21393486c0a", + "nominal_voltage": "120.09", + "parent": "sx2898526c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-13241", + "y": "7367" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2748158a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "11217", + "y": "-6725" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4332.35", + "base_power_2": "1152.19", + "name": "ld_293480a0b", + "nominal_voltage": "120.09", + "parent": "sx2748158a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11416", + "y": "-6621" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2911069b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "2991", + "y": "-9272" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2860480b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-10355", + "y": "-14180" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2187.99", + "base_power_2": "7842.94", + "name": "ld_323234b0b", + "nominal_voltage": "120.09", + "parent": "sx2860480b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-10476", + "y": "-14383" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897764b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14655", + "y": "13426" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3727.09", + "base_power_2": "9396.62", + "name": "ld_391750b0a", + "nominal_voltage": "120.09", + "parent": "sx2897764b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-14865", + "y": "13324" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3215203", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-9138", + "y": "-8327" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2820583", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-16926", + "y": "4159" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2823611", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "489", + "y": "4817" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254209c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "12675", + "y": "-2316" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6262.93", + "base_power_2": "9469.03", + "name": "ld_337714c0a", + "nominal_voltage": "120.09", + "parent": "sx3254209c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12914", + "y": "-2264" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3027670b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2860", + "y": "-5911" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "28306.60", + "base_power_2": "1775.88", + "name": "ld_226308719b0a", + "nominal_voltage": "120.09", + "parent": "sx3027670b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2735", + "y": "-5712" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3102793b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "9707", + "y": "11190" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1555.69", + "base_power_2": "8475.24", + "name": "ld_227734175b0a", + "nominal_voltage": "120.09", + "parent": "sx3102793b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9512", + "y": "11311" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2748157a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13215", + "y": "1679" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7757.36", + "base_power_2": "5953.98", + "name": "ld_338973a0a", + "nominal_voltage": "120.09", + "parent": "sx2748157a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12999", + "y": "1757" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2860481c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "1996", + "y": "1938" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3744.62", + "base_power_2": "3544.04", + "name": "ld_338908c0a", + "nominal_voltage": "120.09", + "parent": "sx2860481c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2216", + "y": "2022" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897765b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8601", + "y": "-11570" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3705.18", + "base_power_2": "5408.23", + "name": "ld_323243b0b", + "nominal_voltage": "120.09", + "parent": "sx2897765b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8831", + "y": "-11613" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935550c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-14883", + "y": "1280" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4507.74", + "base_power_2": "5976.80", + "name": "ld_274999c0a", + "nominal_voltage": "120.09", + "parent": "sx2935550c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-14994", + "y": "1077" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935556b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "13293", + "y": "3709" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3582.63", + "base_power_2": "9541.08", + "name": "ld_356064b0a", + "nominal_voltage": "120.09", + "parent": "sx2935556b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "13518", + "y": "3768" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2911069", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "2811", + "y": "-9445" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3141399c", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7637", + "y": "-6002" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3217053", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "311", + "y": "6814" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2804253a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5528", + "y": "-13747" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3356.22", + "base_power_2": "2128.31", + "name": "ld_21396254a0a", + "nominal_voltage": "120.09", + "parent": "sx2804253a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5729", + "y": "-13868" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3217052", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "867", + "y": "6819" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3065696a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13442", + "y": "-7604" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5742811-3_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16745", + "y": "-815" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3029507b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-11363", + "y": "10419" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3397.02", + "base_power_2": "6633.91", + "name": "ld_302368b0a", + "nominal_voltage": "120.09", + "parent": "sx3029507b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-11542", + "y": "10571" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729434b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "12781", + "y": "6469" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3859.35", + "base_power_2": "5254.05", + "name": "ld_321851b0b", + "nominal_voltage": "120.09", + "parent": "sx2729434b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12999", + "y": "6560" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2989564b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "12611", + "y": "10768" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3216336a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "959", + "y": "-17720" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2689691a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8280", + "y": "-4353" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5816.10", + "base_power_2": "3328.23", + "name": "ld_355375a0b", + "nominal_voltage": "120.09", + "parent": "sx2689691a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8215", + "y": "-4128" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "r20703", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "1498", + "y": "-3309" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048221a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "15107", + "y": "-7508" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3602.55", + "base_power_2": "8634.57", + "name": "ld_21399305a0b", + "nominal_voltage": "120.09", + "parent": "sx3048221a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "15134", + "y": "-7737" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2766741a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-4558", + "y": "2491" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2991927b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "2797", + "y": "-12157" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2804254a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-4220", + "y": "4820" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6839.27", + "base_power_2": "2305.06", + "name": "ld_323418a0a", + "nominal_voltage": "120.09", + "parent": "sx2804254a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4393", + "y": "4978" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2951995", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3378", + "y": "-7845" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2860486c", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7196", + "y": "-6116" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1723.59", + "base_power_2": "4565.07", + "name": "ld_2127390c0b", + "nominal_voltage": "120.09", + "parent": "sx2860486c", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-7234", + "y": "-6345" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841639a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "2382", + "y": "-14556" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8738.16", + "base_power_2": "3498.95", + "name": "ld_355937a0b", + "nominal_voltage": "120.09", + "parent": "sx2841639a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2173", + "y": "-14660" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197629b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4354", + "y": "-6401" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841638c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-856", + "y": "-12797" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841638c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2841638c", + "phases": "CS", + "x": "-779", + "y": "-13041" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4026.42", + "base_power_2": "5355.02", + "name": "ld_138641c0a", + "nominal_voltage": "120.09", + "parent": "sx2841638c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-950", + "y": "-13011" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935557a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "2694", + "y": "-3718" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10262.60", + "base_power_2": "3448.74", + "name": "ld_21397005a0a", + "nominal_voltage": "120.09", + "parent": "sx2935557a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2581", + "y": "-3518" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2785534b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "5903", + "y": "2091" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8615.48", + "base_power_2": "1415.45", + "name": "ld_338982b0b", + "nominal_voltage": "120.09", + "parent": "sx2785534b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5669", + "y": "2132" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3728037", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "15233", + "y": "3495" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216370b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "9765", + "y": "-7911" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3633.99", + "base_power_2": "3469.10", + "name": "ld_293521b0a", + "nominal_voltage": "120.09", + "parent": "sx3216370b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9976", + "y": "-8014" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3728038", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "15265", + "y": "4222" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216370a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9784", + "y": "-8177" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3326.26", + "base_power_2": "3426.31", + "name": "ld_293521a0a", + "nominal_voltage": "120.09", + "parent": "sx3216370a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "10004", + "y": "-8284" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "228-961799-3_int", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "11261", + "y": "1905" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2989565a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-11373", + "y": "6615" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2783231b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "6531", + "y": "4629" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2989432b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4210", + "y": "11963" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3216337a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "1299", + "y": "-17699" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3123452", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-917", + "y": "-4251" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048222c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "4784", + "y": "-5231" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "12995.87", + "base_power_2": "2736.09", + "name": "ld_355431c0b", + "nominal_voltage": "120.09", + "parent": "sx3048222c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4580", + "y": "-5128" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3029506b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "9823", + "y": "-5630" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3735.90", + "base_power_2": "3367.19", + "name": "ld_338930b0b", + "nominal_voltage": "120.09", + "parent": "sx3029506b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9757", + "y": "-5853" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2804255b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "2692", + "y": "5413" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8404.30", + "base_power_2": "1626.63", + "name": "ld_338913b0b", + "nominal_voltage": "120.09", + "parent": "sx2804255b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2641", + "y": "5645" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2860487c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-6855", + "y": "-6327" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6102.03", + "base_power_2": "3279.42", + "name": "ld_138586c0b", + "nominal_voltage": "120.09", + "parent": "sx2860487c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6916", + "y": "-6551" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3103822", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "9507", + "y": "-5849" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3197628c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-3885", + "y": "-11799" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841637c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "7339", + "y": "-5720" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3379.97", + "base_power_2": "10197.35", + "name": "ld_293492c0a", + "nominal_voltage": "120.09", + "parent": "sx2841637c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7556", + "y": "-5852" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935554a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5582", + "y": "5636" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3390.76", + "base_power_2": "3361.82", + "name": "ld_338921a0a", + "nominal_voltage": "120.09", + "parent": "sx2935554a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5520", + "y": "5862" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3728040", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "15282", + "y": "4836" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785535b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "14351", + "y": "10120" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9798.78", + "base_power_2": "14943.25", + "name": "ld_339005b0b", + "nominal_voltage": "120.09", + "parent": "sx2785535b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "14550", + "y": "10244" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2804251a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-2204", + "y": "-12440" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2201.25", + "base_power_2": "1458.55", + "name": "ld_138646a0b", + "nominal_voltage": "120.09", + "parent": "sx2804251a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2240", + "y": "-12671" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3728041", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "15374", + "y": "5082" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160109b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "15857", + "y": "-1051" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4327.73", + "base_power_2": "5703.20", + "name": "ld_338947b0a", + "nominal_voltage": "120.09", + "parent": "sx3160109b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "15966", + "y": "-1259" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3728042", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "15508", + "y": "4119" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3253570c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-6266", + "y": "13574" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3767.22", + "base_power_2": "9810.10", + "name": "ld_228314460c0a", + "nominal_voltage": "120.09", + "parent": "sx3253570c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6419", + "y": "13749" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3728043", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "15715", + "y": "4303" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2898522a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6788", + "y": "3378" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4585.91", + "base_power_2": "4558.42", + "name": "ld_260648a0a", + "nominal_voltage": "120.09", + "parent": "sx2898522a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7018", + "y": "3330" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973160b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "10068", + "y": "-6239" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1392.66", + "base_power_2": "4627.96", + "name": "ld_338935b0a", + "nominal_voltage": "120.09", + "parent": "sx2973160b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "10032", + "y": "-6469" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2989566b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2541", + "y": "-6554" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2970258", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-5081", + "y": "-6308" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3728039", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "15250", + "y": "4542" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216370c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "9592", + "y": "-8388" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2949.57", + "base_power_2": "1246.30", + "name": "ld_293521c0a", + "nominal_voltage": "120.09", + "parent": "sx3216370c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9747", + "y": "-8564" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3216338b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "2724", + "y": "-9890" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3197627c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-13346", + "y": "653" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2860484b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3680", + "y": "-1536" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5362.85", + "base_power_2": "3750.55", + "name": "ld_323255b0b", + "nominal_voltage": "120.09", + "parent": "sx2860484b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3741", + "y": "-1758" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841636b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-10443", + "y": "10709" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841636b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2841636b", + "phases": "BS", + "x": "-10415", + "y": "10951" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "2354.51", + "base_power_2": "3666.11", + "name": "ld_391758b0b", + "nominal_voltage": "120.09", + "parent": "sx2841636b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-10238", + "y": "10817" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935555a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5583", + "y": "5070" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4209.80", + "base_power_2": "1274.74", + "name": "ld_338917a0a", + "nominal_voltage": "120.09", + "parent": "sx2935555a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5500", + "y": "4865" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "hvmv69sub1_hsb", + "nominal_voltage": "39837.17", + "phases": "ABCN", + "x": "3457", + "y": "2194" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2821010", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-4812", + "y": "-15992" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3011298c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-14897", + "y": "6877" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3160108b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "2599", + "y": "-11995" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5183.63", + "base_power_2": "9857.61", + "name": "ld_355603b0b", + "nominal_voltage": "120.09", + "parent": "sx3160108b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2426", + "y": "-12152" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2785536b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "6984", + "y": "4523" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2961.75", + "base_power_2": "3058.87", + "name": "ld_339002b0b", + "nominal_voltage": "120.09", + "parent": "sx2785536b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6735", + "y": "4468" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2804252a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3058", + "y": "10724" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2804252a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2804252a", + "phases": "AS", + "x": "-2863", + "y": "10873" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3736.23", + "base_power_2": "8500.89", + "name": "ld_302473a0a", + "nominal_voltage": "120.09", + "parent": "sx2804252a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2832", + "y": "10663" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973161a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "18941", + "y": "366" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4434.07", + "base_power_2": "9277.27", + "name": "ld_293592a0b", + "nominal_voltage": "120.09", + "parent": "sx2973161a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "18956", + "y": "602" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3216339b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-13770", + "y": "15937" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3214069c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-1215", + "y": "-2677" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2766742b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "5422", + "y": "-7996" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3197626c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-13926", + "y": "1559" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2860485b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "11289", + "y": "7050" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3132.21", + "base_power_2": "2888.41", + "name": "ld_321855b0a", + "nominal_voltage": "120.09", + "parent": "sx2860485b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11420", + "y": "6867" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841635a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "19891", + "y": "-1470" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1950.03", + "base_power_2": "3534.50", + "name": "ld_21399099a0a", + "nominal_voltage": "120.09", + "parent": "sx2841635a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "20060", + "y": "-1632" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104859b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14495", + "y": "9016" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3141395c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "1787", + "y": "3705" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2822868a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "18894", + "y": "-9518" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3872.86", + "base_power_2": "4704.46", + "name": "ld_21397544a0a", + "nominal_voltage": "120.09", + "parent": "sx2822868a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "19106", + "y": "-9624" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3231255c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11256", + "y": "10519" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3367.49", + "base_power_2": "7117.05", + "name": "ld_339051c0b", + "nominal_voltage": "120.09", + "parent": "sx3231255c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11443", + "y": "10655" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160107a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-13343", + "y": "1882" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5593.64", + "base_power_2": "3550.69", + "name": "ld_138265a0b", + "nominal_voltage": "120.09", + "parent": "sx3160107a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-13568", + "y": "1935" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197653b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "14451", + "y": "9598" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5518.92", + "base_power_2": "4512.01", + "name": "ld_339004b0a", + "nominal_voltage": "120.09", + "parent": "sx3197653b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "14685", + "y": "9605" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973162b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-7150", + "y": "5710" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2720.01", + "base_power_2": "3300.61", + "name": "ld_302375b0a", + "nominal_voltage": "120.09", + "parent": "sx2973162b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-7187", + "y": "5481" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3029503c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-10064", + "y": "-5917" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3202.34", + "base_power_2": "3086.32", + "name": "ld_138373c0b", + "nominal_voltage": "120.09", + "parent": "sx3029503c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-10182", + "y": "-6118" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3068944", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9477", + "y": "2753" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2972930a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "10671", + "y": "-14" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8105.24", + "base_power_2": "1039.09", + "name": "ld_338927a0b", + "nominal_voltage": "120.09", + "parent": "sx2972930a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "10852", + "y": "124" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2785537a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13378", + "y": "2187" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2673.09", + "base_power_2": "2811.44", + "name": "ld_338975a0a", + "nominal_voltage": "120.09", + "parent": "sx2785537a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "13150", + "y": "2211" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2804258b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-1071", + "y": "7159" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9889.57", + "base_power_2": "3234.14", + "name": "ld_337697b0b", + "nominal_voltage": "120.09", + "parent": "sx2804258b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1184", + "y": "7371" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3729298a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "14972", + "y": "1889" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3251799", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-1275", + "y": "-666" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3141396c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "9836", + "y": "-2395" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841634b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "395", + "y": "15881" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9548.24", + "base_power_2": "5492.99", + "name": "ld_392038b0b", + "nominal_voltage": "120.09", + "parent": "sx2841634b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "309", + "y": "16102" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2822869a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "20310", + "y": "-1274" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8641.52", + "base_power_2": "3595.59", + "name": "ld_338942a0a", + "nominal_voltage": "120.09", + "parent": "sx2822869a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "20524", + "y": "-1371" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160106a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "10309", + "y": "-7653" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3160106a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3160106a", + "phases": "AS", + "x": "10121", + "y": "-7515" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "6693.02", + "base_power_2": "2451.31", + "name": "ld_310570a0a", + "nominal_voltage": "120.09", + "parent": "sx3160106a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "10109", + "y": "-7765" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973163b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-13466", + "y": "12545" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1863.87", + "base_power_2": "2146.43", + "name": "ld_391753b0b", + "nominal_voltage": "120.09", + "parent": "sx2973163b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-13660", + "y": "12419" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197652a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3427", + "y": "727" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1348.57", + "base_power_2": "7795.76", + "name": "ld_339021a0b", + "nominal_voltage": "120.09", + "parent": "sx3197652a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3210", + "y": "641" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "221-311609", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-9093", + "y": "-9168" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3214112b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "255", + "y": "13277" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3029502a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-11358", + "y": "247" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "11707.07", + "base_power_2": "6581.59", + "name": "ld_138262a0a", + "nominal_voltage": "120.09", + "parent": "sx3029502a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-11416", + "y": "23" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2728247", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-9557", + "y": "-8801" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879767b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8958", + "y": "3573" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2948.90", + "base_power_2": "1061.41", + "name": "ld_260496b0a", + "nominal_voltage": "120.09", + "parent": "sx2879767b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8730", + "y": "3604" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2785538a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "12290", + "y": "-2878" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2785538a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2785538a", + "phases": "AS", + "x": "12062", + "y": "-2927" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "8935.75", + "base_power_2": "3301.36", + "name": "ld_338986a0a", + "nominal_voltage": "120.09", + "parent": "sx2785538a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12154", + "y": "-2697" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254203b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9928", + "y": "-14424" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3427.38", + "base_power_2": "2593.24", + "name": "ld_323233b0b", + "nominal_voltage": "120.09", + "parent": "sx3254203b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-10011", + "y": "-14645" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2804259a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-9109", + "y": "6882" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3252.79", + "base_power_2": "5891.54", + "name": "ld_2127372a0a", + "nominal_voltage": "120.09", + "parent": "sx2804259a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9156", + "y": "7113" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841633a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "18275", + "y": "-2651" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1821.77", + "base_power_2": "7322.56", + "name": "ld_293645a0a", + "nominal_voltage": "120.09", + "parent": "sx2841633a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "18452", + "y": "-2796" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3141397b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5665", + "y": "-8804" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3729297a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "14820", + "y": "1414" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3011293a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "694", + "y": "-1824" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3011293b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "965", + "y": "-1940" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2973164a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5210", + "y": "10149" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4057.21", + "base_power_2": "2695.36", + "name": "ld_302514a0b", + "nominal_voltage": "120.09", + "parent": "sx2973164a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5387", + "y": "10307" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160105c", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-9890", + "y": "-3983" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2046.77", + "base_power_2": "4241.89", + "name": "ld_302811c0a", + "nominal_voltage": "120.09", + "parent": "sx3160105c", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-10076", + "y": "-3838" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3011293c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "793", + "y": "-1946" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3048227a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6374", + "y": "-2128" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1065.51", + "base_power_2": "8078.82", + "name": "ld_337647a0a", + "nominal_voltage": "120.09", + "parent": "sx3048227a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6598", + "y": "-2185" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3029505c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "17379", + "y": "1851" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1445.00", + "base_power_2": "9039.54", + "name": "ld_338966c0b", + "nominal_voltage": "120.09", + "parent": "sx3029505c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "17548", + "y": "2015" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2804256b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "10763", + "y": "3501" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2850.66", + "base_power_2": "1159.65", + "name": "ld_321840b0b", + "nominal_voltage": "120.09", + "parent": "sx2804256b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "10691", + "y": "3719" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991929b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "9576", + "y": "10557" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2711226b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4888", + "y": "5693" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5544.91", + "base_power_2": "4486.01", + "name": "ld_260527b0b", + "nominal_voltage": "120.09", + "parent": "sx2711226b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5106", + "y": "5626" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2860488b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-13932", + "y": "12978" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9106.80", + "base_power_2": "4016.91", + "name": "ld_391751b0b", + "nominal_voltage": "120.09", + "parent": "sx2860488b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-14078", + "y": "12798" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104856a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6168", + "y": "3033" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841632b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "15196", + "y": "1310" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9192.82", + "base_power_2": "3930.89", + "name": "ld_338972b0a", + "nominal_voltage": "120.09", + "parent": "sx2841632b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "15370", + "y": "1466" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3141398a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6439", + "y": "-9809" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2973165a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "2999", + "y": "-12877" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2404.41", + "base_power_2": "6739.92", + "name": "ld_355942a0a", + "nominal_voltage": "120.09", + "parent": "sx2973165a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2790", + "y": "-12971" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160104b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "97", + "y": "13762" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2121.01", + "base_power_2": "7909.92", + "name": "ld_337707b0b", + "nominal_voltage": "120.09", + "parent": "sx3160104b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-121", + "y": "13841" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935559a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3747", + "y": "11235" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6272.94", + "base_power_2": "2871.39", + "name": "ld_21400185a0a", + "nominal_voltage": "120.09", + "parent": "sx2935559a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3714", + "y": "11468" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3048228c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-15867", + "y": "2301" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3148.55", + "base_power_2": "7335.99", + "name": "ld_274997c0b", + "nominal_voltage": "120.09", + "parent": "sx3048228c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-16091", + "y": "2230" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2711225c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-199", + "y": "5071" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3284.27", + "base_power_2": "3004.39", + "name": "ld_260553c0b", + "nominal_voltage": "120.09", + "parent": "sx2711225c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-150", + "y": "5299" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3029504b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-275", + "y": "10173" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3785.29", + "base_power_2": "6245.64", + "name": "ld_337702b0a", + "nominal_voltage": "120.09", + "parent": "sx3029504b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-449", + "y": "10327" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2674027b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "7147", + "y": "9897" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3630.73", + "base_power_2": "9492.98", + "name": "ld_21380325b0b", + "nominal_voltage": "120.09", + "parent": "sx2674027b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7060", + "y": "10115" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2804257b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "10600", + "y": "6942" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1395.28", + "base_power_2": "4625.34", + "name": "ld_321854b0a", + "nominal_voltage": "120.09", + "parent": "sx2804257b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "10547", + "y": "6717" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d5653457-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6239", + "y": "-3184" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2860489a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-6401", + "y": "8515" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5338.14", + "base_power_2": "3239.18", + "name": "ld_302405a0b", + "nominal_voltage": "120.09", + "parent": "sx2860489a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6526", + "y": "8714" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3251806", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "3001", + "y": "-11461" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3251808", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9435", + "y": "14399" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3251807", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9427", + "y": "17964" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160115b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "7579", + "y": "5149" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "16856.61", + "base_power_2": "3194.94", + "name": "ld_338994b0a", + "nominal_voltage": "120.09", + "parent": "sx3160115b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7407", + "y": "5003" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026492", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4330", + "y": "-4128" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104136b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "14945", + "y": "-657" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4473.44", + "base_power_2": "1547.18", + "name": "ld_338949b0a", + "nominal_voltage": "120.09", + "parent": "sx3104136b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "14997", + "y": "-884" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026487", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4688", + "y": "-3331" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879078a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "16707", + "y": "-7451" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026486", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4538", + "y": "-3653" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026485", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4363", + "y": "-4376" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "228-1353934-4_int", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "9820", + "y": "-10027" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026488", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4481", + "y": "-3408" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx0247160b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3417", + "y": "-4067" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4014.48", + "base_power_2": "5098.92", + "name": "ld_247160b0a", + "nominal_voltage": "120.09", + "parent": "sx0247160b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3334", + "y": "-3850" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2822877b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4759", + "y": "1783" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7881.57", + "base_power_2": "6012.74", + "name": "ld_337672b0b", + "nominal_voltage": "120.09", + "parent": "sx2822877b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4980", + "y": "1879" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx0247162b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3603", + "y": "-3552" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2894.18", + "base_power_2": "3126.44", + "name": "ld_247162b0b", + "nominal_voltage": "120.09", + "parent": "sx0247162b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3429", + "y": "-3396" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2954361b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "12589", + "y": "9446" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3160114a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3844", + "y": "1714" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1275.64", + "base_power_2": "4208.89", + "name": "ld_339019a0a", + "nominal_voltage": "120.09", + "parent": "sx3160114a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3600", + "y": "1684" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2879079b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-11499", + "y": "11778" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104134c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "2730", + "y": "-13071" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104134c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3104134c", + "phases": "CS", + "x": "2702", + "y": "-13305" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "8727.98", + "base_power_2": "1756.55", + "name": "ld_138718c0b", + "nominal_voltage": "120.09", + "parent": "sx3104134c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2934", + "y": "-13188" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3216367b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "6574", + "y": "-840" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8538.56", + "base_power_2": "1492.36", + "name": "ld_337648b0b", + "nominal_voltage": "120.09", + "parent": "sx3216367b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6793", + "y": "-905" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3085389b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-15444", + "y": "15173" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9725.77", + "base_power_2": "3397.94", + "name": "ld_391765b0a", + "nominal_voltage": "120.09", + "parent": "sx3085389b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-15675", + "y": "15219" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3178988b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "8034", + "y": "4207" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3160113b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "12715", + "y": "10434" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3160113b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3160113b", + "phases": "BS", + "x": "12952", + "y": "10496" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "1497.01", + "base_power_2": "8533.92", + "name": "ld_323284b0a", + "nominal_voltage": "120.09", + "parent": "sx3160113b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12841", + "y": "10628" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001208c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-18295", + "y": "-3233" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2000600", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-11840", + "y": "486" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001209c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-18574", + "y": "-3520" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3216342b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "5056", + "y": "-1523" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3157167a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8338", + "y": "14849" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3311.30", + "base_power_2": "2173.24", + "name": "ld_226115278a0b", + "nominal_voltage": "120.09", + "parent": "sx3157167a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8220", + "y": "15052" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2804248b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-7998", + "y": "-11836" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3787.11", + "base_power_2": "3315.98", + "name": "ld_323244b0a", + "nominal_voltage": "120.09", + "parent": "sx2804248b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8080", + "y": "-12053" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3176661c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-9105", + "y": "20838" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4001.58", + "base_power_2": "3287.08", + "name": "ld_356788c0a", + "nominal_voltage": "120.09", + "parent": "sx3176661c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9121", + "y": "21071" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3216368c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "16631", + "y": "-8605" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3216368c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3216368c", + "phases": "CS", + "x": "16702", + "y": "-8831" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4430.98", + "base_power_2": "1857.68", + "name": "ld_293663c0b", + "nominal_voltage": "120.09", + "parent": "sx3216368c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "16856", + "y": "-8663" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3085388b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-16046", + "y": "14284" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3445.95", + "base_power_2": "3657.14", + "name": "ld_391746b0a", + "nominal_voltage": "120.09", + "parent": "sx3085388b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-16278", + "y": "14318" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m1069-mt1", + "nominal_voltage": "277.13", + "phases": "ABCN", + "x": "-9792", + "y": "-4368" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069-mt1_dgmtr", + "nominal_voltage": "277.13", + "parent": "m1069-mt1", + "phases": "ABCN", + "x": "-10002", + "y": "-4249" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "x2001207c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-17981", + "y": "-2934" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104135a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-9575", + "y": "8365" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2040.11", + "base_power_2": "3444.42", + "name": "ld_21399508a0a", + "nominal_voltage": "120.09", + "parent": "sx3104135a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9742", + "y": "8530" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026496", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4797", + "y": "-2777" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "regxfmr_hvmv11sub1_lsb", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "3204", + "y": "2570" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3216343c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-13180", + "y": "1198" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2766738c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "10555", + "y": "1372" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2804249c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-15136", + "y": "5337" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4094.65", + "base_power_2": "2194.01", + "name": "ld_21389962c0b", + "nominal_voltage": "120.09", + "parent": "sx2804249c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-15354", + "y": "5261" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3176660b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "8577", + "y": "6664" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3660.85", + "base_power_2": "2359.77", + "name": "ld_226193892b0a", + "nominal_voltage": "120.09", + "parent": "sx3176660b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8797", + "y": "6738" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3215340a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9602", + "y": "12026" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6365.23", + "base_power_2": "2779.10", + "name": "ld_228057846a0a", + "nominal_voltage": "120.09", + "parent": "sx3215340a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9822", + "y": "11960" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2692600c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "10486", + "y": "13416" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104132a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-4227", + "y": "10383" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104132a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3104132a", + "phases": "AS", + "x": "-4079", + "y": "10567" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "2886.93", + "base_power_2": "2597.61", + "name": "ld_302469a0b", + "nominal_voltage": "120.09", + "parent": "sx3104132a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4353", + "y": "10578" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2821770a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-2785", + "y": "-5953" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3233353a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-6035", + "y": "-16439" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1676.30", + "base_power_2": "3808.23", + "name": "ld_21399630a0a", + "nominal_voltage": "120.09", + "parent": "sx3233353a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6244", + "y": "-16545" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2673312a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "12562", + "y": "4393" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1632.98", + "base_power_2": "7511.35", + "name": "ld_321837a0b", + "nominal_voltage": "120.09", + "parent": "sx2673312a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12776", + "y": "4495" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2822872b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "15064", + "y": "351" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3525.13", + "base_power_2": "6505.79", + "name": "ld_338950b0b", + "nominal_voltage": "120.09", + "parent": "sx2822872b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "15247", + "y": "493" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3066811b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5275", + "y": "-5735" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3216361b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "12394", + "y": "6660" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4774.23", + "base_power_2": "5256.70", + "name": "ld_21452406b0b", + "nominal_voltage": "120.09", + "parent": "sx3216361b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12577", + "y": "6809" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001206c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-17653", + "y": "-2657" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047386", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3370", + "y": "-8297" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3066810c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "1386", + "y": "2833" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047388", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3607", + "y": "-7746" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879074a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6370", + "y": "-9233" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2951995c", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3156", + "y": "-7962" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3120376", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "2233", + "y": "-15594" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3047289", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-14304", + "y": "3257" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3027671", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-1523", + "y": "-4189" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3027670", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-2946", + "y": "-6376" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2917255", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-2526", + "y": "-4043" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785530a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "18114", + "y": "-9518" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1243.62", + "base_power_2": "2416.18", + "name": "ld_391985a0a", + "nominal_voltage": "120.09", + "parent": "sx2785530a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "18058", + "y": "-9744" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991933c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "5440", + "y": "-5506" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2801902b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "9775", + "y": "9394" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2764411c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8680", + "y": "19730" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1312.25", + "base_power_2": "4976.41", + "name": "ld_226010605c0b", + "nominal_voltage": "120.09", + "parent": "sx2764411c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8582", + "y": "19941" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2673313b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "11486", + "y": "7652" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1149.93", + "base_power_2": "8881.00", + "name": "ld_321853b0b", + "nominal_voltage": "120.09", + "parent": "sx2673313b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11705", + "y": "7736" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104133a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "12178", + "y": "-6687" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6528.70", + "base_power_2": "2615.63", + "name": "ld_293483a0b", + "nominal_voltage": "120.09", + "parent": "sx3104133a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12417", + "y": "-6757" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3066812a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3904", + "y": "3940" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2822873b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "6802", + "y": "4323" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3172.33", + "base_power_2": "3930.76", + "name": "ld_338999b0a", + "nominal_voltage": "120.09", + "parent": "sx2822873b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6566", + "y": "4347" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001205c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-17299", + "y": "-2366" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2878848c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "10948", + "y": "1486" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2879075a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5873", + "y": "-8384" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2766732b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4419", + "y": "-4581" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001400c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-15280", + "y": "-1588" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001400c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001400c", + "phases": "CS", + "x": "-15479", + "y": "-1706" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "21621.99", + "base_power_2": "24952.75", + "name": "ld_2001400c0a", + "nominal_voltage": "120.09", + "parent": "sx2001400c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-15494", + "y": "-1495" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2990098a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-1411", + "y": "-4571" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2990098a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2990098a", + "phases": "AS", + "x": "-1185", + "y": "-4530" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "11245.96", + "base_power_2": "7042.70", + "name": "ld_226308721a0b", + "nominal_voltage": "120.09", + "parent": "sx2990098a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1389", + "y": "-4343" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3251830", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5688", + "y": "-8388" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104130b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-11935", + "y": "12076" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4449.31", + "base_power_2": "5581.62", + "name": "ld_391755b0b", + "nominal_voltage": "120.09", + "parent": "sx3104130b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-11974", + "y": "12306" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2785531a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "187", + "y": "-11465" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1700.09", + "base_power_2": "3784.45", + "name": "ld_21399809a0b", + "nominal_voltage": "120.09", + "parent": "sx2785531a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "50", + "y": "-11278" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2936271a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-6205", + "y": "3233" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3346.74", + "base_power_2": "2137.80", + "name": "ld_260476a0a", + "nominal_voltage": "120.09", + "parent": "sx2936271a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6093", + "y": "3029" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2726983a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9663", + "y": "12456" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001204c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-16921", + "y": "-2063" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673310a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3488", + "y": "-16244" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7037.60", + "base_power_2": "2106.73", + "name": "ld_138562a0b", + "nominal_voltage": "120.09", + "parent": "sx2673310a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3340", + "y": "-16428" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2764412a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9473", + "y": "13076" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3147.51", + "base_power_2": "5996.82", + "name": "ld_321874a0a", + "nominal_voltage": "120.09", + "parent": "sx2764412a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9581", + "y": "12874" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026472", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3981", + "y": "-4693" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047371", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3784", + "y": "-8966" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2859403a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "2165", + "y": "-3225" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3606.80", + "base_power_2": "5537.53", + "name": "ld_228001810a0a", + "nominal_voltage": "120.09", + "parent": "sx2859403a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2078", + "y": "-3439" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026463", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4054", + "y": "-5636" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879076c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8783", + "y": "-5541" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026468", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4156", + "y": "-5184" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047368", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-2391", + "y": "-9681" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048962a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-565", + "y": "4199" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1960.74", + "base_power_2": "11750.60", + "name": "ld_260555a0b", + "nominal_voltage": "120.09", + "parent": "sx3048962a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-577", + "y": "4427" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026466", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3801", + "y": "-5192" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3315860b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "4626", + "y": "-11933" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3047289a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-14703", + "y": "3563" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3952.33", + "base_power_2": "14336.34", + "name": "ld_228091193a0b", + "nominal_voltage": "120.09", + "parent": "sx3047289a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-14877", + "y": "3728" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3251854", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "3590", + "y": "433" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2936270a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-2025", + "y": "7099" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5018.66", + "base_power_2": "4125.67", + "name": "ld_218472a0a", + "nominal_voltage": "120.09", + "parent": "sx2936270a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2255", + "y": "7155" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104131a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-6116", + "y": "8622" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1688.72", + "base_power_2": "7455.61", + "name": "ld_302410a0a", + "nominal_voltage": "120.09", + "parent": "sx3104131a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6249", + "y": "8813" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3159037b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2331", + "y": "16427" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2929261", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6592", + "y": "6495" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3217064", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9940", + "y": "1920" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3047289c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-14554", + "y": "3698" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4425.77", + "base_power_2": "16543.30", + "name": "ld_228091193c0b", + "nominal_voltage": "120.09", + "parent": "sx3047289c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-14689", + "y": "3895" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3047289b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14342", + "y": "3745" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "11400.83", + "base_power_2": "8650.72", + "name": "ld_228091193b0b", + "nominal_voltage": "120.09", + "parent": "sx3047289b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-14433", + "y": "3963" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d2001001_int", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-12707", + "y": "1366" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001203c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-16483", + "y": "-1721" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673311a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "2974", + "y": "-3118" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7181.20", + "base_power_2": "1963.13", + "name": "ld_21397029a0b", + "nominal_voltage": "120.09", + "parent": "sx2673311a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2837", + "y": "-2934" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d6108141-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "15564", + "y": "-654" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047374", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3939", + "y": "-6646" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879077b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "439", + "y": "14429" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3139086b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "854", + "y": "11677" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2692633c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "7881", + "y": "10239" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9837.99", + "base_power_2": "3739.33", + "name": "ld_328364c0a", + "nominal_voltage": "120.09", + "parent": "sx2692633c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7997", + "y": "10439" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047379", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3515", + "y": "-8527" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048963b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5667", + "y": "6727" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4808.69", + "base_power_2": "1211.92", + "name": "ld_260521b0b", + "nominal_voltage": "120.09", + "parent": "sx3048963b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5676", + "y": "6958" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1209der480-1", + "nominal_voltage": "277.13", + "phases": "ABCN", + "x": "311", + "y": "-1797" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3217057", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-1935", + "y": "8072" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3217056", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-2155", + "y": "7968" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2728247c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-9830", + "y": "-9236" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3750.74", + "base_power_2": "3537.92", + "name": "ld_337729c0a", + "nominal_voltage": "120.09", + "parent": "sx2728247c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9986", + "y": "-9420" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2728247a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-9981", + "y": "-9093" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1760.95", + "base_power_2": "1898.84", + "name": "ld_337729a0b", + "nominal_voltage": "120.09", + "parent": "sx2728247a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-10173", + "y": "-9239" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2728247b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9602", + "y": "-9288" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4084.38", + "base_power_2": "9039.33", + "name": "ld_337729b0a", + "nominal_voltage": "120.09", + "parent": "sx2728247b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9720", + "y": "-9494" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1142860", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-15", + "y": "4334" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827532", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "7876", + "y": "-10916" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827531", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-6985", + "y": "5527" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3011298", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-14717", + "y": "6709" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827530", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "19115", + "y": "-6827" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2948732b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "2989", + "y": "-8826" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10205.89", + "base_power_2": "6010.41", + "name": "ld_225571845b0b", + "nominal_voltage": "120.09", + "parent": "sx2948732b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3161", + "y": "-8655" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p827536", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "2228", + "y": "-10378" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142863", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-161", + "y": "3850" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827534", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-122", + "y": "-13321" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001202c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-16007", + "y": "-1801" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2970811a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9137", + "y": "16651" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p827533", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-552", + "y": "-11628" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142868", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-457", + "y": "2225" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3011293", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "908", + "y": "-1703" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142865", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-278", + "y": "3323" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827537", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "12819", + "y": "-7169" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3066815c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11001", + "y": "-3024" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047340", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4414", + "y": "-12791" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2673316a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-13566", + "y": "3547" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3461.66", + "base_power_2": "3290.91", + "name": "ld_2120855a0a", + "nominal_voltage": "120.09", + "parent": "sx2673316a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-13568", + "y": "3780" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047342", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4576", + "y": "-13002" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142869", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-533", + "y": "1677" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047344", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "14039", + "y": "-5957" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047345", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "4303", + "y": "-12511" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047346", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "3558", + "y": "-12582" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879070b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "7714", + "y": "-8991" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "e206217", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-786", + "y": "-5282" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3232301c", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-4194", + "y": "-6913" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1142871", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-620", + "y": "1129" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827521", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-7497", + "y": "-1551" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827520", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-7078", + "y": "-3926" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2689726", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4180", + "y": "-6560" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2689727", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8945", + "y": "12643" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2936276b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "2148", + "y": "-1908" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3609.94", + "base_power_2": "3493.16", + "name": "ld_260458b0b", + "nominal_voltage": "120.09", + "parent": "sx2936276b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2322", + "y": "-2068" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2729410c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "20914", + "y": "-876" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1142875", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-769", + "y": "26" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827525", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "5035", + "y": "-4278" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142874", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-708", + "y": "582" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p859135", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6322", + "y": "5591" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142873", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-1325", + "y": "1001" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827523", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-8505", + "y": "-5061" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3066816a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "18653", + "y": "-7233" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p827522", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-14690", + "y": "2733" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827529", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "10197", + "y": "-4645" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827528", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "12697", + "y": "-3619" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827527", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16569", + "y": "2254" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3217057a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-1893", + "y": "8316" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673317a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "7494", + "y": "-9268" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673317a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2673317a", + "phases": "AS", + "x": "7543", + "y": "-9500" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4937.29", + "base_power_2": "3640.03", + "name": "ld_21397771a0a", + "nominal_voltage": "120.09", + "parent": "sx2673317a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7669", + "y": "-9440" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3048965b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "1364", + "y": "7827" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3048965b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3048965b", + "phases": "BS", + "x": "1468", + "y": "8060" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7187.41", + "base_power_2": "7853.83", + "name": "ld_260641b0b", + "nominal_voltage": "120.09", + "parent": "sx3048965b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1579", + "y": "7931" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047358", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6891", + "y": "-12939" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879071b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-226", + "y": "9501" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2729411a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "7402", + "y": "-13055" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3178980c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-5593", + "y": "162" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p827554", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3901", + "y": "5180" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827553", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3296", + "y": "14875" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142880", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-8734", + "y": "19024" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2936275b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "1576", + "y": "-2311" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2104.12", + "base_power_2": "1906.19", + "name": "ld_157715b0a", + "nominal_voltage": "120.09", + "parent": "sx2936275b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1573", + "y": "-2551" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069597", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "13725", + "y": "9717" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827555", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4623", + "y": "8695" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2822870c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "19994", + "y": "712" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5457.18", + "base_power_2": "3924.26", + "name": "ld_21399171c0a", + "nominal_voltage": "120.09", + "parent": "sx2822870c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "20059", + "y": "939" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2673314c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "5045", + "y": "-2795" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2798.25", + "base_power_2": "1397.63", + "name": "ld_355778c0b", + "nominal_voltage": "120.09", + "parent": "sx2673314c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4940", + "y": "-2578" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "e206209", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "15905", + "y": "-724" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3066813b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-887", + "y": "4563" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069595", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "10499", + "y": "9339" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710508b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-10771", + "y": "-13595" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3734.26", + "base_power_2": "2286.36", + "name": "ld_323241b0a", + "nominal_voltage": "120.09", + "parent": "sx2710508b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-11004", + "y": "-13624" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047322", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8200", + "y": "-11385" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048966c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "5261", + "y": "1644" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5940.41", + "base_power_2": "3441.03", + "name": "ld_260625c0a", + "nominal_voltage": "120.09", + "parent": "sx3048966c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5439", + "y": "1477" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047323", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "12168", + "y": "-6427" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047324", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8086", + "y": "-10191" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047325", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "7688", + "y": "-10667" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879072b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-931", + "y": "5927" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047326", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8065", + "y": "-11156" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e206211", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8490", + "y": "3005" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e206210", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-7368", + "y": "-4357" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2875754c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-16527", + "y": "6102" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "16957.93", + "base_power_2": "4011.15", + "name": "ld_225897943c0b", + "nominal_voltage": "120.09", + "parent": "sx2875754c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-16690", + "y": "6275" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2729412a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7604", + "y": "4156" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p827542", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4459", + "y": "-4018" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069588", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "9751", + "y": "8733" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3178981b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2001", + "y": "-10316" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069582", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "8526", + "y": "7199" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2822871b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "2591", + "y": "-8503" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3588.04", + "base_power_2": "6442.89", + "name": "ld_355840b0b", + "nominal_voltage": "120.09", + "parent": "sx2822871b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2371", + "y": "-8438" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p827549", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "14261", + "y": "938" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5621886-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "7650", + "y": "-5381" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827548", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "12413", + "y": "-1330" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3066814b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "10320", + "y": "5178" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069590", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "10112", + "y": "9056" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710509c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-15714", + "y": "1596" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6116.40", + "base_power_2": "3265.04", + "name": "ld_275000c0b", + "nominal_voltage": "120.09", + "parent": "sx2710509c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-15946", + "y": "1546" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2673315a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-16599", + "y": "3052" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1571.88", + "base_power_2": "2087.91", + "name": "ld_247058a0a", + "nominal_voltage": "120.09", + "parent": "sx2673315a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-16814", + "y": "3139" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2952013a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-639", + "y": "-12186" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3010570a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7143", + "y": "7120" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047335", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "13178", + "y": "-6099" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879073c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-10128", + "y": "-5211" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047338", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8262", + "y": "-11330" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047339", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "5679", + "y": "-12114" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3207907c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "17247", + "y": "-5905" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3349.62", + "base_power_2": "17619.45", + "name": "ld_293664c0b", + "nominal_voltage": "120.09", + "parent": "sx3207907c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "17384", + "y": "-5711" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3207907b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "17024", + "y": "-5811" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5054.44", + "base_power_2": "25028.03", + "name": "ld_293664b0a", + "nominal_voltage": "120.09", + "parent": "sx3207907b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "17089", + "y": "-5585" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3207907a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "16738", + "y": "-5889" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "12369.50", + "base_power_2": "5919.16", + "name": "ld_293664a0b", + "nominal_voltage": "120.09", + "parent": "sx3207907a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "16724", + "y": "-5654" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p827576", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-1045", + "y": "3071" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108405b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-7213", + "y": "-8752" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "13801.49", + "base_power_2": "16467.49", + "name": "ld_2221108405b0a", + "nominal_voltage": "120.09", + "parent": "sx1108405b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-7267", + "y": "-8984" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p827575", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "680", + "y": "1998" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108405c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-7484", + "y": "-8505" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "16667.68", + "base_power_2": "20603.52", + "name": "ld_2221108405c0a", + "nominal_voltage": "120.09", + "parent": "sx1108405c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-7657", + "y": "-8669" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3066819a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "14534", + "y": "-5793" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p827574", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "3869", + "y": "-708" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827573", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "5966", + "y": "-6782" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108405a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-6993", + "y": "-8781" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "11168.03", + "base_power_2": "12306.80", + "name": "ld_2221108405a0b", + "nominal_voltage": "120.09", + "parent": "sx1108405a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6994", + "y": "-9017" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3048968c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-18601", + "y": "4378" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4624.56", + "base_power_2": "11107.40", + "name": "ld_350994c0b", + "nominal_voltage": "120.09", + "parent": "sx3048968c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-18836", + "y": "4361" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3048890c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8341", + "y": "16853" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2823592_cap", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-135", + "y": "6252" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069572", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "7613", + "y": "4362" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "196-36167", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-14633", + "y": "6998" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069574", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "7397", + "y": "4228" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3178982a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "10202", + "y": "-4765" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1142821", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-4225", + "y": "5476" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142828", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-2545", + "y": "6176" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2972930", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "10230", + "y": "81" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2748780", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5387", + "y": "11924" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142826", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-5481", + "y": "5780" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2748781", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4635", + "y": "13783" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047300", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "4651", + "y": "-2802" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2820528", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "2772", + "y": "-6071" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047303", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6058", + "y": "-4051" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d6231996-1_int", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "8841", + "y": "7577" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729413a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3026", + "y": "-15024" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047309", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8525", + "y": "-6431" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827561", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "17210", + "y": "-8357" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827560", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "17623", + "y": "-8344" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3081380a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "236", + "y": "7717" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4433.48", + "base_power_2": "1051.05", + "name": "ld_225700953a0b", + "nominal_voltage": "120.09", + "parent": "sx3081380a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "278", + "y": "7945" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2729414c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "15725", + "y": "-4827" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1010013", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9242", + "y": "18612" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136030", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3283", + "y": "2413" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136031", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "8049", + "y": "14411" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827564", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-5701", + "y": "-4273" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2842329c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2065", + "y": "-2742" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1010011", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8914", + "y": "18709" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136032", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8940", + "y": "14022" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827563", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-3240", + "y": "859" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108406a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7998", + "y": "-8072" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "13386.32", + "base_power_2": "10872.71", + "name": "ld_2221108406a0b", + "nominal_voltage": "120.09", + "parent": "sx1108406a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8225", + "y": "-8146" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx1108406b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8006", + "y": "-7816" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "14925.70", + "base_power_2": "12163.25", + "name": "ld_2221108406b0a", + "nominal_voltage": "120.09", + "parent": "sx1108406b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8244", + "y": "-7799" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1010017", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9207", + "y": "17530" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069565", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "7732", + "y": "4599" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1010016", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9210", + "y": "17850" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069564", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "4844", + "y": "1801" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1010015", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9136", + "y": "18151" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069567", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "8217", + "y": "6801" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2851933b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "16999", + "y": "-6670" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1010014", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9058", + "y": "18448" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2851933a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "16587", + "y": "-6438" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3214071c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-1153", + "y": "-1572" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5712477-3_int", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-6659", + "y": "-3466" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142835", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-688", + "y": "6795" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069560", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "7918", + "y": "6384" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2851933c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "17006", + "y": "-6502" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069563", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4299", + "y": "1317" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142833", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-349", + "y": "6802" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142832", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-1441", + "y": "6606" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142839", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-1029", + "y": "6805" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691973a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "2877", + "y": "-15489" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3217053c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "536", + "y": "6703" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047311", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "10739", + "y": "-6971" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047312", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "9414", + "y": "-7378" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047314", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "10524", + "y": "-7024" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2820533", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "13019", + "y": "-4037" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047316", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "9155", + "y": "-8634" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2820535", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "7661", + "y": "2075" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3120484c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "4057", + "y": "-5048" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3132.35", + "base_power_2": "3156.31", + "name": "ld_226191772c0a", + "nominal_voltage": "120.09", + "parent": "sx3120484c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4014", + "y": "-4819" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047318", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "6923", + "y": "-5062" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3235268c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "4234", + "y": "4918" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4241.68", + "base_power_2": "6242.86", + "name": "ld_2099529c0a", + "nominal_voltage": "120.09", + "parent": "sx3235268c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4155", + "y": "4713" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047319", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "6765", + "y": "-4793" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136027", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3215", + "y": "2105" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729414b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "15554", + "y": "-4884" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1136028", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-1469", + "y": "2035" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729414a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "15872", + "y": "-4895" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2820531", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "17078", + "y": "-893" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197661", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "7321", + "y": "-8241" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001100", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-13951", + "y": "-210" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136029", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3643", + "y": "19" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197660", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4598", + "y": "12130" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3172805a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "12985", + "y": "-4242" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069558", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "7868", + "y": "5170" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069557", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "7846", + "y": "5457" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108403a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7441", + "y": "-7468" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "15447.28", + "base_power_2": "15708.68", + "name": "ld_2221108403a0a", + "nominal_voltage": "120.09", + "parent": "sx1108403a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-7588", + "y": "-7285" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069554", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "7620", + "y": "5501" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069556", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "5221", + "y": "2019" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108403b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-7632", + "y": "-8187" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "12709.11", + "base_power_2": "14365.83", + "name": "ld_2221108403b0b", + "nominal_voltage": "120.09", + "parent": "sx1108403b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-7862", + "y": "-8246" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069555", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "7816", + "y": "5744" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108403c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-7098", + "y": "-7465" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "11700.78", + "base_power_2": "10489.54", + "name": "ld_2221108403c0a", + "nominal_voltage": "120.09", + "parent": "sx1108403c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-7125", + "y": "-7236" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3066817a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "19828", + "y": "-6602" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069550", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "7146", + "y": "5613" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710504b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3190", + "y": "16536" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "14362.61", + "base_power_2": "3771.41", + "name": "ld_323394b0a", + "nominal_voltage": "120.09", + "parent": "sx2710504b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3301", + "y": "16743" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3120502a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-4340", + "y": "-15811" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069551", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "7591", + "y": "5951" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142843", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "614", + "y": "7285" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3217056a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-2344", + "y": "8124" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673318c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "17809", + "y": "1799" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673318c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2673318c", + "phases": "CS", + "x": "17979", + "y": "1979" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "6960.77", + "base_power_2": "3523.77", + "name": "ld_338967c0b", + "nominal_voltage": "120.09", + "parent": "sx2673318c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "18045", + "y": "1788" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2839305a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5397", + "y": "3896" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2839305a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2839305a", + "phases": "AS", + "x": "5589", + "y": "4022" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3427.81", + "base_power_2": "2056.72", + "name": "ld_2150292a0b", + "nominal_voltage": "120.09", + "parent": "sx2839305a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5288", + "y": "4093" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2745799c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "2115", + "y": "-6375" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6728.70", + "base_power_2": "3755.83", + "name": "ld_226191779c0a", + "nominal_voltage": "120.09", + "parent": "sx2745799c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1903", + "y": "-6473" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3189190a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "18228", + "y": "-5354" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6711.56", + "base_power_2": "2432.77", + "name": "ld_227100753a0a", + "nominal_voltage": "120.09", + "parent": "sx3189190a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "18367", + "y": "-5164" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3235267c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "4362", + "y": "5514" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2869.56", + "base_power_2": "7614.97", + "name": "ld_321892c0b", + "nominal_voltage": "120.09", + "parent": "sx3235267c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4171", + "y": "5394" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "e192860", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "2283", + "y": "3955" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827580", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6369", + "y": "-4657" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108404a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-6622", + "y": "-8486" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "15438.03", + "base_power_2": "13268.97", + "name": "ld_2221108404a0a", + "nominal_voltage": "120.09", + "parent": "sx1108404a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6692", + "y": "-8716" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "190-7361", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-9410", + "y": "-731" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108404b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-6439", + "y": "-8544" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "18839.82", + "base_power_2": "21097.20", + "name": "ld_2221108404b0a", + "nominal_voltage": "120.09", + "parent": "sx1108404b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6487", + "y": "-8780" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069549", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "5609", + "y": "2275" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069548", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "5402", + "y": "1684" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069543", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "6719", + "y": "6163" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3251799a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-1632", + "y": "-889" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5021.70", + "base_power_2": "8689.64", + "name": "ld_260562a0a", + "nominal_voltage": "120.09", + "parent": "sx3251799a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1678", + "y": "-666" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2798067b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-1503", + "y": "-7166" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2993.28", + "base_power_2": "4109.81", + "name": "ld_225533237b0b", + "nominal_voltage": "120.09", + "parent": "sx2798067b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1538", + "y": "-7400" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1142851", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "470", + "y": "6486" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108404c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-6781", + "y": "-8280" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "16138.82", + "base_power_2": "18233.47", + "name": "ld_2221108404c0a", + "nominal_voltage": "120.09", + "parent": "sx1108404c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6822", + "y": "-8507" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069544", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "6864", + "y": "5885" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3066818b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-1325", + "y": "-11076" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3200222", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-10158", + "y": "2000" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3120503a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9594", + "y": "18946" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710505b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4495", + "y": "15185" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5942.25", + "base_power_2": "3171.15", + "name": "ld_323398b0a", + "nominal_voltage": "120.09", + "parent": "sx2710505b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4683", + "y": "15321" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2673319c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "13086", + "y": "-5034" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673319c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2673319c", + "phases": "CS", + "x": "13123", + "y": "-5259" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "2234.64", + "base_power_2": "4054.02", + "name": "ld_391973c0b", + "nominal_voltage": "120.09", + "parent": "sx2673319c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "13277", + "y": "-5156" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2803194", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-3234", + "y": "-6671" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2898457a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "235", + "y": "-7702" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2936279c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-15209", + "y": "6368" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2936279c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2936279c", + "phases": "CS", + "x": "-15419", + "y": "6491" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "1972.84", + "base_power_2": "8511.69", + "name": "ld_247184c0a", + "nominal_voltage": "120.09", + "parent": "sx2936279c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-15256", + "y": "6597" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3235266c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8235", + "y": "-5269" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9909.78", + "base_power_2": "3667.54", + "name": "ld_302807c0b", + "nominal_voltage": "120.09", + "parent": "sx3235266c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8384", + "y": "-5447" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d6019477-1_int", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "8571", + "y": "8714" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2803199", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-7619", + "y": "-9091" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2933135", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "4586", + "y": "-46" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254218a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "1165", + "y": "-12800" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2984.40", + "base_power_2": "6159.93", + "name": "ld_138720a0a", + "nominal_voltage": "120.09", + "parent": "sx3254218a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1118", + "y": "-13029" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069535", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "6532", + "y": "6414" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069532", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "6435", + "y": "2443" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973154a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3445", + "y": "4570" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4472.56", + "base_power_2": "4104.76", + "name": "ld_338897a0b", + "nominal_voltage": "120.09", + "parent": "sx2973154a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3470", + "y": "4795" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2691939b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "5275", + "y": "-10160" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3110.19", + "base_power_2": "6920.74", + "name": "ld_355589b0b", + "nominal_voltage": "120.09", + "parent": "sx2691939b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5482", + "y": "-10265" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069533", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6400", + "y": "2973" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069530", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "6290", + "y": "6590" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv115_hsb2", + "nominal_voltage": "66395.28", + "phases": "ABCN", + "x": "3616", + "y": "2276" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2925506", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "771", + "y": "1248" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv115_hsb1", + "nominal_voltage": "66395.28", + "phases": "ABCN", + "x": "3475", + "y": "2466" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2860490a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "1864", + "y": "-12920" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3281.71", + "base_power_2": "8955.40", + "name": "ld_138719a0a", + "nominal_voltage": "120.09", + "parent": "sx2860490a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1794", + "y": "-13144" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2786204", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-3343", + "y": "9860" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3125349", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-4636", + "y": "-1141" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785529c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "2621", + "y": "-10965" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2250.42", + "base_power_2": "8234.12", + "name": "ld_355943c0b", + "nominal_voltage": "120.09", + "parent": "sx2785529c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2384", + "y": "-10949" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3235253a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5467", + "y": "-12620" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6626.57", + "base_power_2": "2517.76", + "name": "ld_138573a0b", + "nominal_voltage": "120.09", + "parent": "sx3235253a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5638", + "y": "-12779" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2748131b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5574", + "y": "-5982" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2785516b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4364", + "y": "1563" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069524", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "12862", + "y": "-3848" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254219c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "3851", + "y": "-13297" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1349.78", + "base_power_2": "9134.76", + "name": "ld_138716c0a", + "nominal_voltage": "120.09", + "parent": "sx3254219c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3936", + "y": "-13518" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069526", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "6100", + "y": "6823" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069521", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "12864", + "y": "-3455" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m4118755", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-1830", + "y": "7564" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973155a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-150", + "y": "1792" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2458.73", + "base_power_2": "3025.81", + "name": "ld_338898a0b", + "nominal_voltage": "120.09", + "parent": "sx2973155a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-53", + "y": "1577" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3195310a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3071", + "y": "11178" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7212.30", + "base_power_2": "1932.03", + "name": "ld_226192185a0a", + "nominal_voltage": "120.09", + "parent": "sx3195310a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2923", + "y": "11363" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m4118754", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-12470", + "y": "12204" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691938b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "3598", + "y": "-10122" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3016.81", + "base_power_2": "7014.12", + "name": "ld_355600b0b", + "nominal_voltage": "120.09", + "parent": "sx2691938b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3806", + "y": "-10025" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3029510b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "2169", + "y": "-11559" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1956.19", + "base_power_2": "4064.43", + "name": "ld_355606b0b", + "nominal_voltage": "120.09", + "parent": "sx3029510b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1941", + "y": "-11501" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3181545c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-4597", + "y": "-451" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3867.75", + "base_power_2": "5513.69", + "name": "ld_226193702c0b", + "nominal_voltage": "120.09", + "parent": "sx3181545c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4791", + "y": "-571" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2952007c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8063", + "y": "18140" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2860491a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6685", + "y": "-11774" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3580.34", + "base_power_2": "3172.23", + "name": "ld_302733a0a", + "nominal_voltage": "120.09", + "parent": "sx2860491a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6913", + "y": "-11841" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2860491b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "6646", + "y": "-11975" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2986.97", + "base_power_2": "12054.27", + "name": "ld_302733b0a", + "nominal_voltage": "120.09", + "parent": "sx2860491b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6863", + "y": "-12072" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3235252b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-128", + "y": "-210" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9593.18", + "base_power_2": "3530.53", + "name": "ld_21388572b0a", + "nominal_voltage": "120.09", + "parent": "sx3235252b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-278", + "y": "-40" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935560c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "17215", + "y": "-7003" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4253.36", + "base_power_2": "2035.30", + "name": "ld_293659c0b", + "nominal_voltage": "120.09", + "parent": "sx2935560c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "17448", + "y": "-6964" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2748130b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2441", + "y": "-10162" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2785517c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "10982", + "y": "-5170" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069518", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "11792", + "y": "285" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069517", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "11591", + "y": "163" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069519", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "7653", + "y": "2835" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069514", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "12325", + "y": "-877" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069513", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10870", + "y": "1221" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069516", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "11102", + "y": "856" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785519a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-4671", + "y": "-14702" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069515", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "12076", + "y": "-530" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254216a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4247", + "y": "-5974" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8649.91", + "base_power_2": "3587.21", + "name": "ld_21398563a0a", + "nominal_voltage": "120.09", + "parent": "sx3254216a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4458", + "y": "-6076" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973156b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-1751", + "y": "668" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3174.15", + "base_power_2": "2846.47", + "name": "ld_337687b0a", + "nominal_voltage": "120.09", + "parent": "sx2973156b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1979", + "y": "648" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2727019", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5665", + "y": "2852" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1010004", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8414", + "y": "19394" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673309", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-3636", + "y": "-1183" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1010003", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8508", + "y": "19622" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1010008", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8736", + "y": "18933" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1010007", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8572", + "y": "19162" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673303", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "11317", + "y": "-7044" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2708744", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3780", + "y": "-6910" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2711234b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-15406", + "y": "8265" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1094.77", + "base_power_2": "8936.16", + "name": "ld_207287b0a", + "nominal_voltage": "120.09", + "parent": "sx2711234b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-15547", + "y": "8454" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2673308", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "7858", + "y": "-1715" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673307", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-10036", + "y": "-708" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3235251c", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-9837", + "y": "-3586" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3972.15", + "base_power_2": "6248.94", + "name": "ld_21387206c0b", + "nominal_voltage": "120.09", + "parent": "sx3235251c", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9966", + "y": "-3391" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2673306", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-11031", + "y": "-3893" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673305", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-5672", + "y": "520" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785518c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-3352", + "y": "-700" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3027116a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5719", + "y": "-3747" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3702.77", + "base_power_2": "4874.55", + "name": "ld_226192684a0b", + "nominal_voltage": "120.09", + "parent": "sx3027116a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5934", + "y": "-3834" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2673300", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-14777", + "y": "14244" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2933165", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "8664", + "y": "7386" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2933164", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-14096", + "y": "3561" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3101782a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5102", + "y": "13756" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4303.86", + "base_power_2": "9407.48", + "name": "ld_356808a0a", + "nominal_voltage": "120.09", + "parent": "sx3101782a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5144", + "y": "13986" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069509", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10408", + "y": "2023" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069503", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "9700", + "y": "3258" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254217c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "20976", + "y": "-5" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10374.89", + "base_power_2": "3202.43", + "name": "ld_21399112c0b", + "nominal_voltage": "120.09", + "parent": "sx3254217c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "21166", + "y": "132" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069505", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10173", + "y": "2437" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973157a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3109", + "y": "-7017" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3715.87", + "base_power_2": "8521.25", + "name": "ld_337722a0b", + "nominal_voltage": "120.09", + "parent": "sx2973157a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2971", + "y": "-7207" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069504", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "14052", + "y": "513" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3141400a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-14490", + "y": "2369" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3405.01", + "base_power_2": "4378.50", + "name": "ld_138313a0a", + "nominal_voltage": "120.09", + "parent": "sx3141400a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-14718", + "y": "2339" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2821010a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-4916", + "y": "-16220" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2727008", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "11382", + "y": "9666" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069500", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "14316", + "y": "699" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3235250b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-820", + "y": "7863" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3271.06", + "base_power_2": "3832.04", + "name": "ld_337698b0b", + "nominal_voltage": "120.09", + "parent": "sx3235250b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-862", + "y": "8095" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3728039a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "14947", + "y": "4935" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "13681.77", + "base_power_2": "2957.42", + "name": "ld_2224387053a0b", + "nominal_voltage": "120.09", + "parent": "sx3728039a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "14802", + "y": "5122" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3234185b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-1864", + "y": "17145" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9277.95", + "base_power_2": "3845.76", + "name": "ld_323388b0a", + "nominal_voltage": "120.09", + "parent": "sx3234185b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1680", + "y": "17289" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2973144c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-3173", + "y": "-1799" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2983432", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6188", + "y": "7205" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2748135a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7092", + "y": "6440" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3236011b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-15058", + "y": "8545" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3276.94", + "base_power_2": "2743.68", + "name": "ld_138796b0b", + "nominal_voltage": "120.09", + "parent": "sx3236011b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-15230", + "y": "8706" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3140238a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9913", + "y": "15095" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2973158c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-7392", + "y": "-1991" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2696.97", + "base_power_2": "5653.54", + "name": "ld_138259c0b", + "nominal_voltage": "120.09", + "parent": "sx2973158c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-7289", + "y": "-1784" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2673326", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "3321", + "y": "-10607" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "221-308718", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-7468", + "y": "-8809" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673323", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "6791", + "y": "-5987" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2861197", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-2066", + "y": "-3597" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3728038a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "14891", + "y": "4533" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3343.74", + "base_power_2": "5800.59", + "name": "ld_2224387019a0b", + "nominal_voltage": "120.09", + "parent": "sx3728038a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "14704", + "y": "4678" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3086098", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "3950", + "y": "2969" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673322", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "8567", + "y": "-4285" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2898495", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-5817", + "y": "-7677" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2936213", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "7681", + "y": "13032" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673321", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "13617", + "y": "-5647" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2936214", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "7644", + "y": "2600" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673320", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "816", + "y": "15782" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2936211", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-1814", + "y": "-2360" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2936212", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6039", + "y": "25" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916608", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "11541", + "y": "6893" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916609", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-9725", + "y": "-5854" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916606", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-17092", + "y": "4191" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916607", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "6723", + "y": "8124" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5655682-1_int", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "10960", + "y": "2701" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973159a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8467", + "y": "-9252" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5086.36", + "base_power_2": "3490.96", + "name": "ld_21398536a0b", + "nominal_voltage": "120.09", + "parent": "sx2973159a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8416", + "y": "-9478" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2916605", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-16676", + "y": "4061" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916602", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "11266", + "y": "13015" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916603", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-8422", + "y": "-12137" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3159645a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6357", + "y": "7192" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2925506c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "1009", + "y": "1173" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2673315", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-16217", + "y": "2760" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673314", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "5469", + "y": "-3064" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673313", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "11048", + "y": "7439" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2952003b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-6309", + "y": "-8146" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2673312", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "12085", + "y": "4256" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673319", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "12965", + "y": "-4780" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673318", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "17336", + "y": "1557" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673317", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "7460", + "y": "-8744" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673316", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-13545", + "y": "3073" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2973146b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "3414", + "y": "-9742" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2916610", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "16348", + "y": "-9048" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3270814", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "111", + "y": "-18297" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673311", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "3149", + "y": "-3550" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673310", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3830", + "y": "-15880" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3728037a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "15092", + "y": "3944" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4046.00", + "base_power_2": "8191.11", + "name": "ld_2224386946a0b", + "nominal_voltage": "120.09", + "parent": "sx3728037a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "14976", + "y": "4145" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2916619", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "10936", + "y": "9513" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916617", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "10429", + "y": "9851" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916618", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "12615", + "y": "10027" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209748", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "922", + "y": "-2931" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209749", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "821", + "y": "-3785" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3729298", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "14806", + "y": "1715" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827514", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6185", + "y": "-4059" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827512", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "8596", + "y": "-7362" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3729297", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "14672", + "y": "1229" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827511", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "7928", + "y": "-8361" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827515", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5750", + "y": "-2973" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136999", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8004", + "y": "4317" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d6504019-6_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "2079", + "y": "1346" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673346", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "7130", + "y": "-4966" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3016088", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "7785", + "y": "19839" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3086075", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "1115", + "y": "-3850" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3086074", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "826", + "y": "6989" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2860492c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-478", + "y": "-12974" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5305.29", + "base_power_2": "4076.16", + "name": "ld_21395720c0a", + "nominal_voltage": "120.09", + "parent": "sx2860492c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-437", + "y": "-13205" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3086079", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "1626", + "y": "-1370" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3086078", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-1716", + "y": "7296" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209750", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "1011", + "y": "-3611" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916620", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "12225", + "y": "481" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136993", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "10025", + "y": "194" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136994", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "8628", + "y": "-7589" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209753", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "1113", + "y": "-2771" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136995", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "9967", + "y": "1035" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673343", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-6968", + "y": "-10276" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136996", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "9176", + "y": "1837" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209751", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "1051", + "y": "-3336" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136997", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "9139", + "y": "2453" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2748133c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-7734", + "y": "-5350" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1209752", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "1096", + "y": "-3058" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136998", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8339", + "y": "3260" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209758", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "1196", + "y": "-2472" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2936216", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-4150", + "y": "10784" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916627", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3921", + "y": "-15554" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916625", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4268", + "y": "-9518" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827503", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "10256", + "y": "-3102" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691936a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "250", + "y": "-17658" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1112.67", + "base_power_2": "4371.87", + "name": "ld_356009a0b", + "nominal_voltage": "120.09", + "parent": "sx2691936a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "17", + "y": "-17653" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p827502", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "12995", + "y": "-1151" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827501", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-7607", + "y": "-482" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827500", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-1536", + "y": "3624" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827507", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "9407", + "y": "-2010" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827506", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5735", + "y": "-1133" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827505", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "11463", + "y": "-1896" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827504", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "10800", + "y": "-2060" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2898515c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "5084", + "y": "2499" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3572.09", + "base_power_2": "6912.45", + "name": "ld_260621c0a", + "nominal_voltage": "120.09", + "parent": "sx2898515c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5199", + "y": "2692" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p827509", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3392", + "y": "883" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827508", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-5041", + "y": "-10508" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3123452c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-756", + "y": "-4432" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2860493a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "19206", + "y": "-8864" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4295.19", + "base_power_2": "4849.14", + "name": "ld_21397645a0b", + "nominal_voltage": "120.09", + "parent": "sx2860493a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "19429", + "y": "-8941" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2973148a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "11726", + "y": "12906" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879773a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-14287", + "y": "7553" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5255.82", + "base_power_2": "3888.51", + "name": "ld_207290a0a", + "nominal_voltage": "120.09", + "parent": "sx2879773a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-14275", + "y": "7787" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2992556a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5601", + "y": "11937" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2992556a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2992556a", + "phases": "AS", + "x": "-5840", + "y": "11957" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "2333.79", + "base_power_2": "3954.87", + "name": "ld_346639c0a", + "nominal_voltage": "120.09", + "parent": "sx2992556a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5708", + "y": "12145" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2673331", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "5921", + "y": "7050" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209763", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "1495", + "y": "-1471" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2748132a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3988", + "y": "-6643" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2785521c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "9159", + "y": "-7406" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "11810.42", + "base_power_2": "3921.54", + "name": "ld_338931c0b", + "nominal_voltage": "120.09", + "parent": "sx2785521c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9249", + "y": "-7195" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2915542c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-9315", + "y": "-9686" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2915542b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9384", + "y": "-9625" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2915542a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-9124", + "y": "-9698" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2935568b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4161", + "y": "13229" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5781.02", + "base_power_2": "3332.38", + "name": "ld_2119958b0b", + "nominal_voltage": "120.09", + "parent": "sx2935568b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4343", + "y": "13372" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3108449a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6695", + "y": "11063" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5374.86", + "base_power_2": "3202.46", + "name": "ld_228622562a0b", + "nominal_voltage": "120.09", + "parent": "sx3108449a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6799", + "y": "11269" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2823545a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4247", + "y": "13423" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3197661c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "7000", + "y": "-8402" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3825.10", + "base_power_2": "5556.34", + "name": "ld_338932c0b", + "nominal_voltage": "120.09", + "parent": "sx3197661c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6794", + "y": "-8304" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3236004", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-1536", + "y": "-1919" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3123509c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "459", + "y": "-1432" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1223.56", + "base_power_2": "5065.10", + "name": "ld_2129923c0b", + "nominal_voltage": "120.09", + "parent": "sx3123509c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "260", + "y": "-1559" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2973149b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8685", + "y": "-13215" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2896685a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-10339", + "y": "-8191" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3732.87", + "base_power_2": "4844.45", + "name": "ld_227187012a0a", + "nominal_voltage": "120.09", + "parent": "sx2896685a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-10579", + "y": "-8202" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3103822c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "9412", + "y": "-6063" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2896685b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-10187", + "y": "-8604" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2327.65", + "base_power_2": "3692.97", + "name": "ld_227187012b0b", + "nominal_voltage": "120.09", + "parent": "sx2896685b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-10393", + "y": "-8727" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3235248c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "7458", + "y": "8463" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2896685c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-10317", + "y": "-8421" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3206.85", + "base_power_2": "3081.81", + "name": "ld_227187012c0a", + "nominal_voltage": "120.09", + "parent": "sx2896685c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-10544", + "y": "-8503" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841627a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3654", + "y": "-6140" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841627a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2841627a", + "phases": "AS", + "x": "3698", + "y": "-6372" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "2863.52", + "base_power_2": "2621.01", + "name": "ld_337716a0a", + "nominal_voltage": "120.09", + "parent": "sx2841627a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3561", + "y": "-6350" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254210c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2939", + "y": "-12270" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6264.62", + "base_power_2": "2404.18", + "name": "ld_138647c0a", + "nominal_voltage": "120.09", + "parent": "sx3254210c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3011", + "y": "-12494" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991915b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "561", + "y": "15682" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3029495", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-15211", + "y": "16160" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2841626c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8537", + "y": "-4508" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2733.36", + "base_power_2": "1462.51", + "name": "ld_302808c0b", + "nominal_voltage": "120.09", + "parent": "sx2841626c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8473", + "y": "-4288" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3029497", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-11614", + "y": "475" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1141480", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-225", + "y": "4104" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785522b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "11516", + "y": "6175" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3434.52", + "base_power_2": "9689.19", + "name": "ld_2127681b0a", + "nominal_voltage": "120.09", + "parent": "sx2785522b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11543", + "y": "5948" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2913406b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "22", + "y": "11420" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3326.91", + "base_power_2": "11714.32", + "name": "ld_225940756b0a", + "nominal_voltage": "120.09", + "parent": "sx2913406b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-56", + "y": "11641" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3029498", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-13987", + "y": "3170" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3029499", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "14236", + "y": "-5748" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3141388c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-5520", + "y": "-3181" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3029518b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-1883", + "y": "2857" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2642.71", + "base_power_2": "7388.22", + "name": "ld_337666b0a", + "nominal_voltage": "120.09", + "parent": "sx3029518b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2089", + "y": "2758" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m3729981", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "11073", + "y": "3745" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2729423c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "4749", + "y": "851" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1499.11", + "base_power_2": "4789.55", + "name": "ld_339017c0b", + "nominal_voltage": "120.09", + "parent": "sx2729423c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4539", + "y": "725" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2748780a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5582", + "y": "12358" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2728.63", + "base_power_2": "6415.70", + "name": "ld_356803a0a", + "nominal_voltage": "120.09", + "parent": "sx2748780a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5696", + "y": "12560" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2823544a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5002", + "y": "12256" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3197660b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4874", + "y": "12528" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4742.78", + "base_power_2": "5288.15", + "name": "ld_323275b0a", + "nominal_voltage": "120.09", + "parent": "sx3197660b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4982", + "y": "12735" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3252336b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-1932", + "y": "-5709" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2748781a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4512", + "y": "14251" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1882.57", + "base_power_2": "11828.77", + "name": "ld_21382813a0a", + "nominal_voltage": "120.09", + "parent": "sx2748781a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4457", + "y": "14478" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3254869b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-1116", + "y": "-6790" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3235247a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "12418", + "y": "4655" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3236011", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-14684", + "y": "8238" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048210a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-6163", + "y": "9106" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9593.60", + "base_power_2": "4117.74", + "name": "ld_302412a0b", + "nominal_voltage": "120.09", + "parent": "sx3048210a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6333", + "y": "9268" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254211b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4080", + "y": "-8386" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8644.80", + "base_power_2": "1386.13", + "name": "ld_247084b0b", + "nominal_voltage": "120.09", + "parent": "sx3254211b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4312", + "y": "-8391" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991914c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "19034", + "y": "-1303" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2786274", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-13613", + "y": "7128" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2763407c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-6289", + "y": "14632" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4110.21", + "base_power_2": "6374.32", + "name": "ld_225906836c0a", + "nominal_voltage": "120.09", + "parent": "sx2763407c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6474", + "y": "14775" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2860499b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "8785", + "y": "5675" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10153.71", + "base_power_2": "9897.83", + "name": "ld_338997b0b", + "nominal_voltage": "120.09", + "parent": "sx2860499b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9017", + "y": "5670" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2786273", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3745", + "y": "1978" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2801909c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "1799", + "y": "4889" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2785523c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-5859", + "y": "-3517" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2785523c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2785523c", + "phases": "CS", + "x": "-5985", + "y": "-3718" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "2614.21", + "base_power_2": "3674.45", + "name": "ld_138412c0b", + "nominal_voltage": "120.09", + "parent": "sx2785523c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5726", + "y": "-3708" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841625c", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9028", + "y": "-3376" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1916.15", + "base_power_2": "2279.73", + "name": "ld_302834c0a", + "nominal_voltage": "120.09", + "parent": "sx2841625c", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9040", + "y": "-3142" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1141475", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "12219", + "y": "-3946" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1141474", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "12240", + "y": "-4098" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1141473", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "13385", + "y": "-5387" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2935566c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "4845", + "y": "515" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9309.44", + "base_power_2": "1175.10", + "name": "ld_441854c0b", + "nominal_voltage": "120.09", + "parent": "sx2935566c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4711", + "y": "316" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "196-35813", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "17782", + "y": "-961" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3141389a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-69", + "y": "-18348" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1141479", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "123", + "y": "4861" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1141478", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-5445", + "y": "5512" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2690868c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2213", + "y": "-7546" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "12117.95", + "base_power_2": "8851.12", + "name": "ld_227917127c0b", + "nominal_voltage": "120.09", + "parent": "sx2690868c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1976", + "y": "-7533" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1141477", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-6801", + "y": "3011" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1141476", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-9368", + "y": "3852" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2860500b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5498", + "y": "9352" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2955078a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "616", + "y": "8085" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2729424a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3296", + "y": "1142" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3715.27", + "base_power_2": "1769.27", + "name": "ld_339018a0a", + "nominal_voltage": "120.09", + "parent": "sx2729424a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3072", + "y": "1093" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2936271", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-6517", + "y": "3599" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048211a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8846", + "y": "-11791" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5130.03", + "base_power_2": "4014.30", + "name": "ld_21396015a0b", + "nominal_voltage": "120.09", + "parent": "sx3048211a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9021", + "y": "-11951" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3235246b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3899", + "y": "13529" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2936270", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-1536", + "y": "7032" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3046854", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "37", + "y": "10238" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2936275", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "1429", + "y": "-1844" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2936276", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "1752", + "y": "-1596" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2786266", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "4327", + "y": "4246" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2936279", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-14778", + "y": "6074" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3032977", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "2863", + "y": "2609" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2823592a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "119", + "y": "6350" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1253.99", + "base_power_2": "2632.61", + "name": "ld_223658a0a", + "nominal_voltage": "120.09", + "parent": "sx2823592a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-15", + "y": "6166" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991913a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5535", + "y": "-12205" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2935567b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "6739", + "y": "5315" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4005.98", + "base_power_2": "2014.64", + "name": "ld_338992b0a", + "nominal_voltage": "120.09", + "parent": "sx2935567b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6537", + "y": "5208" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991911c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-7672", + "y": "-2952" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841624b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "1656", + "y": "-11927" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2325.17", + "base_power_2": "3695.44", + "name": "ld_355604b0a", + "nominal_voltage": "120.09", + "parent": "sx2841624b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1431", + "y": "-11984" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m3032980", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "2347", + "y": "2483" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3032981", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "2222", + "y": "1904" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785524c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-10481", + "y": "-6021" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1185.05", + "base_power_2": "5103.61", + "name": "ld_2044328c0b", + "nominal_voltage": "120.09", + "parent": "sx2785524c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-10548", + "y": "-6245" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3176656a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "2628", + "y": "3136" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3701.20", + "base_power_2": "8535.91", + "name": "ld_226193170a0b", + "nominal_voltage": "120.09", + "parent": "sx3176656a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2638", + "y": "2910" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2860501b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4150", + "y": "3291" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5472350-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-8893", + "y": "-1133" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048212a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "1745", + "y": "-15400" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2583.52", + "base_power_2": "1076.27", + "name": "ld_355934a0a", + "nominal_voltage": "120.09", + "parent": "sx3048212a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1532", + "y": "-15495" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2766730b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "8939", + "y": "-4250" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3235245c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "12777", + "y": "-1967" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2936268", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-815", + "y": "5657" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2991912a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-15695", + "y": "2653" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2876796a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3792", + "y": "2586" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4120.28", + "base_power_2": "1364.25", + "name": "ld_226193338a0b", + "nominal_voltage": "120.09", + "parent": "sx2876796a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3939", + "y": "2404" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841623a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "10560", + "y": "-4301" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3578.85", + "base_power_2": "1905.69", + "name": "ld_294844a0a", + "nominal_voltage": "120.09", + "parent": "sx2841623a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "10575", + "y": "-4069" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2785525c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-9291", + "y": "-7403" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2405.00", + "base_power_2": "8079.54", + "name": "ld_21396606c0a", + "nominal_voltage": "120.09", + "parent": "sx2785525c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9067", + "y": "-7450" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3029497c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-11533", + "y": "697" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3119793b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4148", + "y": "-8856" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3090.11", + "base_power_2": "2930.51", + "name": "ld_226024307b0b", + "nominal_voltage": "120.09", + "parent": "sx3119793b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4380", + "y": "-8887" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2820528c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "2307", + "y": "-5901" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5360.84", + "base_power_2": "5123.70", + "name": "ld_226191778c0b", + "nominal_voltage": "120.09", + "parent": "sx2820528c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2077", + "y": "-5853" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3141401a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "17239", + "y": "3637" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4956.27", + "base_power_2": "4188.06", + "name": "ld_338970a0a", + "nominal_voltage": "120.09", + "parent": "sx3141401a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "17366", + "y": "3834" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973150a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13631", + "y": "-6644" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1602.55", + "base_power_2": "3881.98", + "name": "ld_21380528a0a", + "nominal_voltage": "120.09", + "parent": "sx2973150a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "13738", + "y": "-6852" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1009828", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "4496", + "y": "-10390" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1009827", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "4141", + "y": "-11044" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "regxfmr_190-7361", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-9700", + "y": "-502" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2991919a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-6599", + "y": "7199" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2955076a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "896", + "y": "8073" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1009820", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "5123", + "y": "-8545" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p904451", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3305", + "y": "-6323" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3235244a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7156", + "y": "4739" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "q14734", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8404", + "y": "12179" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254214b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "294", + "y": "12865" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3254214b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3254214b", + "phases": "BS", + "x": "538", + "y": "12897" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4703.29", + "base_power_2": "5327.63", + "name": "ld_337706b0b", + "nominal_voltage": "120.09", + "parent": "sx3254214b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "61", + "y": "12863" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1009824", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "4750", + "y": "-9670" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "q14733", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16278", + "y": "1842" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p904452", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4685", + "y": "-7267" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2876797a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-1775", + "y": "1601" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3510.52", + "base_power_2": "1974.01", + "name": "ld_226193345a0b", + "nominal_voltage": "120.09", + "parent": "sx2876797a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1865", + "y": "1383" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841622a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-4242", + "y": "4204" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1239.14", + "base_power_2": "4245.40", + "name": "ld_21384215a0a", + "nominal_voltage": "120.09", + "parent": "sx2841622a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4478", + "y": "4250" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1009840", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "3038", + "y": "-10131" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785526b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8794", + "y": "8152" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3478.30", + "base_power_2": "2542.31", + "name": "ld_302374b0a", + "nominal_voltage": "120.09", + "parent": "sx2785526b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8836", + "y": "8386" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3141402c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "14268", + "y": "-4540" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9173.93", + "base_power_2": "1310.61", + "name": "ld_391978c0b", + "nominal_voltage": "120.09", + "parent": "sx3141402c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "14498", + "y": "-4533" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729427b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5574", + "y": "-7068" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5409.08", + "base_power_2": "3704.32", + "name": "ld_323249b0a", + "nominal_voltage": "120.09", + "parent": "sx2729427b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5466", + "y": "-7275" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973151a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5195", + "y": "-14055" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4002.62", + "base_power_2": "1481.91", + "name": "ld_138569a0a", + "nominal_voltage": "120.09", + "parent": "sx2973151a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5393", + "y": "-14180" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1009839", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "3404", + "y": "-10875" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1009838", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "3537", + "y": "-11384" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048214a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3372", + "y": "11412" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3716.26", + "base_power_2": "8520.85", + "name": "ld_302474a0b", + "nominal_voltage": "120.09", + "parent": "sx3048214a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3275", + "y": "11627" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2955077c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "460", + "y": "7163" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3086002", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "10481", + "y": "14277" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2804247b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-15817", + "y": "16149" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8109.52", + "base_power_2": "1921.41", + "name": "ld_391737b0b", + "nominal_voltage": "120.09", + "parent": "sx2804247b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-16026", + "y": "16254" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254215c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8100", + "y": "-3027" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6030.33", + "base_power_2": "3351.12", + "name": "ld_302859c0a", + "nominal_voltage": "120.09", + "parent": "sx3254215c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8268", + "y": "-2864" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991918b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14259", + "y": "13265" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3235243c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-6303", + "y": "-5826" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1009832", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "3886", + "y": "-11302" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1009834", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "3917", + "y": "-11571" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3029499a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "14465", + "y": "-5602" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2917359a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7249", + "y": "3318" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5563942-4_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "2659", + "y": "7424" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2841621c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "2389", + "y": "3678" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2981.95", + "base_power_2": "7502.58", + "name": "ld_338910c0a", + "nominal_voltage": "120.09", + "parent": "sx2841621c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2382", + "y": "3446" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729428a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9212", + "y": "-8991" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2729428a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2729428a", + "phases": "AS", + "x": "9019", + "y": "-9148" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3119.88", + "base_power_2": "2364.65", + "name": "ld_21398402a0a", + "nominal_voltage": "120.09", + "parent": "sx2729428a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9255", + "y": "-9224" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973152b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5301", + "y": "-4446" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2650.21", + "base_power_2": "7380.72", + "name": "ld_323253b0b", + "nominal_voltage": "120.09", + "parent": "sx2973152b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5458", + "y": "-4626" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2860504a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "18655", + "y": "-8938" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3141403a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-1479", + "y": "-13563" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7601.55", + "base_power_2": "1542.78", + "name": "ld_21399707a0a", + "nominal_voltage": "120.09", + "parent": "sx3141403a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1711", + "y": "-13544" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2955074a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-6550", + "y": "4330" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3236004c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-1662", + "y": "-1727" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2785527a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9789", + "y": "-9181" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2454.82", + "base_power_2": "3029.71", + "name": "ld_293522a0b", + "nominal_voltage": "120.09", + "parent": "sx2785527a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9966", + "y": "-9342" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254212b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2982", + "y": "-10446" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3101.07", + "base_power_2": "11940.17", + "name": "ld_138754b0b", + "nominal_voltage": "120.09", + "parent": "sx3254212b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3149", + "y": "-10606" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991917b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-11075", + "y": "11426" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1009843", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "3227", + "y": "-11551" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3235242c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11477", + "y": "11521" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3029498c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-13927", + "y": "3404" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2729429a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "17984", + "y": "-394" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1038.60", + "base_power_2": "8105.73", + "name": "ld_293644a0b", + "nominal_voltage": "120.09", + "parent": "sx2729429a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "17958", + "y": "-161" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841620b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3072", + "y": "-9562" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5405.24", + "base_power_2": "3708.16", + "name": "ld_2147018b0a", + "nominal_voltage": "120.09", + "parent": "sx2841620b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3264", + "y": "-9696" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3048946c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "5927", + "y": "1810" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3046854b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-67", + "y": "10450" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2973153a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8851", + "y": "3244" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3734.26", + "base_power_2": "4843.06", + "name": "ld_338925a0a", + "nominal_voltage": "120.09", + "parent": "sx2973153a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9025", + "y": "3401" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3784018", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-909", + "y": "2136" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2916598a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "2494", + "y": "-15697" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2860506b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "10915", + "y": "6708" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2785528b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3038", + "y": "-9992" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4305.36", + "base_power_2": "1715.25", + "name": "ld_138752b0a", + "nominal_voltage": "120.09", + "parent": "sx2785528b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3239", + "y": "-10115" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2804245b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "3885", + "y": "-10923" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4914.50", + "base_power_2": "5116.42", + "name": "ld_355598b0a", + "nominal_voltage": "120.09", + "parent": "sx2804245b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3998", + "y": "-10725" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991916b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "336", + "y": "14964" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1009855", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "3142", + "y": "-11802" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx0247171b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4527", + "y": "-2120" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2961.53", + "base_power_2": "3059.09", + "name": "ld_247171b0b", + "nominal_voltage": "120.09", + "parent": "sx0247171b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4469", + "y": "-1882" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254213b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "9624", + "y": "7917" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8605.73", + "base_power_2": "1425.19", + "name": "ld_321859b0a", + "nominal_voltage": "120.09", + "parent": "sx3254213b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9547", + "y": "7700" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3235241c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "4747", + "y": "5841" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3197618a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "629", + "y": "-18464" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p827495", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3934", + "y": "-5404" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991939", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "7101", + "y": "-1458" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3141399", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-7425", + "y": "-5875" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3141397", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-5660", + "y": "-8542" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827499", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-2293", + "y": "3417" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2954350c", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8742", + "y": "-4148" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3141398", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6497", + "y": "-9569" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827498", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9046", + "y": "13752" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3141395", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "1624", + "y": "3522" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3141396", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "9648", + "y": "-2263" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827496", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-2156", + "y": "2304" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3141393", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "11541", + "y": "11879" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2673320b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "1105", + "y": "16173" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6023.22", + "base_power_2": "4007.71", + "name": "ld_392037b0a", + "nominal_voltage": "120.09", + "parent": "sx2673320b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1209", + "y": "16383" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3141394", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "7198", + "y": "13093" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2689678", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4004", + "y": "-6132" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1230123", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4081", + "y": "-7084" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160103c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "9954", + "y": "2032" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5447.77", + "base_power_2": "3933.68", + "name": "ld_356063c0b", + "nominal_voltage": "120.09", + "parent": "sx3160103c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "10036", + "y": "2251" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3141390", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-15245", + "y": "14000" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710514b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4316", + "y": "7008" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8355.94", + "base_power_2": "1674.99", + "name": "ld_323267b0b", + "nominal_voltage": "120.09", + "parent": "sx2710514b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4450", + "y": "7202" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1230121", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-13848", + "y": "6201" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1230122", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3023", + "y": "-5732" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026366", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-6188", + "y": "7831" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000500", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-11173", + "y": "477" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2916599a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "2146", + "y": "-16435" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026364", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-6854", + "y": "6723" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879066b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5308", + "y": "-8028" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026363", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-4691", + "y": "637" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048205c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-15912", + "y": "3171" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7380.79", + "base_power_2": "3103.74", + "name": "ld_274994c0b", + "nominal_voltage": "120.09", + "parent": "sx3048205c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-16106", + "y": "3302" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2861219b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5281", + "y": "4753" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991933", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "5529", + "y": "-5726" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2766725c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "20300", + "y": "548" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3139086", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "611", + "y": "11690" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3101194c", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3111", + "y": "-8352" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991929", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "9768", + "y": "10414" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3141388", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-5513", + "y": "-2966" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3141389", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "179", + "y": "-18396" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991927", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "2971", + "y": "-11983" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048205c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-15702", + "y": "3056" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2989600", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5713", + "y": "3463" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2673321a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13870", + "y": "-5200" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5085.32", + "base_power_2": "4059.01", + "name": "ld_302674a0a", + "nominal_voltage": "120.09", + "parent": "sx2673321a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "14045", + "y": "-5048" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160102b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "6611", + "y": "-3481" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6588.14", + "base_power_2": "3442.79", + "name": "ld_355780b0b", + "nominal_voltage": "120.09", + "parent": "sx3160102b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6803", + "y": "-3344" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026361", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-6400", + "y": "7426" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710515c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "5672", + "y": "7802" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8013.73", + "base_power_2": "7718.23", + "name": "ld_321884c0a", + "nominal_voltage": "120.09", + "parent": "sx2710515c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5544", + "y": "7996" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3632979a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "11046", + "y": "4463" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3387.66", + "base_power_2": "2096.88", + "name": "ld_2224192013a0a", + "nominal_voltage": "120.09", + "parent": "sx3632979a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11077", + "y": "4693" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3048206a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-4055", + "y": "-11368" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7907.30", + "base_power_2": "1237.03", + "name": "ld_138649a0a", + "nominal_voltage": "120.09", + "parent": "sx3048206a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4224", + "y": "-11528" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m2001-mt2", + "nominal_voltage": "277.13", + "phases": "ABCN", + "x": "-15290", + "y": "-2053" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001-mt2_dgmtr", + "nominal_voltage": "277.13", + "parent": "m2001-mt2", + "phases": "ABCN", + "x": "-15524", + "y": "-2085" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "x2879067a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3928", + "y": "6072" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2689691", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8436", + "y": "-4803" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026354", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-6327", + "y": "2193" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m2001-mt3", + "nominal_voltage": "277.13", + "phases": "ABCN", + "x": "-14643", + "y": "-2639" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001-mt3_dgmtr", + "nominal_voltage": "277.13", + "parent": "m2001-mt3", + "phases": "ABCN", + "x": "-14433", + "y": "-2761" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m2001-mt1", + "nominal_voltage": "277.13", + "phases": "ABCN", + "x": "-14535", + "y": "-2556" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001-mt1_dgmtr", + "nominal_voltage": "277.13", + "parent": "m2001-mt1", + "phases": "ABCN", + "x": "-14592", + "y": "-2795" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "m1026357", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-4249", + "y": "1045" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026356", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-5290", + "y": "1620" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991921", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "6985", + "y": "-4901" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991920", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-6680", + "y": "7867" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991923", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4406", + "y": "-13051" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2766724c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "19816", + "y": "-634" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991922", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "5002", + "y": "-12329" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3177665a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13184", + "y": "-928" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991918", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-14098", + "y": "13445" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3626914c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-5048", + "y": "-3142" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2748839", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-8926", + "y": "1633" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991917", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-11142", + "y": "11194" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048206a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3896", + "y": "-11194" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2821087", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-2140", + "y": "-4812" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991919", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-6559", + "y": "6971" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991914", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "18874", + "y": "-1112" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991913", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-5317", + "y": "-12092" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991916", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "506", + "y": "14792" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2954352c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-6381", + "y": "-3971" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991915", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "741", + "y": "15517" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2726975b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3281", + "y": "15961" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710512b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3990", + "y": "14125" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5068.88", + "base_power_2": "4962.05", + "name": "ld_323280b0b", + "nominal_voltage": "120.09", + "parent": "sx2710512b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4203", + "y": "14214" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3157718", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "7763", + "y": "13766" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047292", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-865", + "y": "-386" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160101a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7864", + "y": "5298" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2198.52", + "base_power_2": "6945.81", + "name": "ld_337678a0b", + "nominal_voltage": "120.09", + "parent": "sx3160101a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8071", + "y": "5414" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026394", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-4056", + "y": "10208" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047293", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "263", + "y": "-847" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026393", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3821", + "y": "10468" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048207b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5934", + "y": "-8506" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3182.27", + "base_power_2": "2838.35", + "name": "ld_323248b0b", + "nominal_voltage": "120.09", + "parent": "sx3048207b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5945", + "y": "-8742" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3141393c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11719", + "y": "12048" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2842330c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "10231", + "y": "14325" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2879068b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4167", + "y": "-2608" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1009805", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "7284", + "y": "-5568" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026387", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-4590", + "y": "9727" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1009807", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6902", + "y": "-5739" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3157710", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4285", + "y": "7879" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1009809", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "6800", + "y": "-6238" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2748840", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "731", + "y": "-4017" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991910", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-762", + "y": "5070" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991912", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-15474", + "y": "2733" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691973", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "2646", + "y": "-15408" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991911", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-7554", + "y": "-3159" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "regxfmr_190-8593", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "15648", + "y": "1367" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2766727b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-11292", + "y": "9941" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991907", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-5088", + "y": "-11510" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3141394b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "6979", + "y": "13193" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991906", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-16842", + "y": "2744" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048207b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5970", + "y": "-8265" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991909", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5589", + "y": "-2788" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991908", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "820", + "y": "2054" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991902", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-14233", + "y": "13968" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2954351c", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7587", + "y": "-5630" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991905", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-4347", + "y": "2792" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2726974b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "12652", + "y": "9848" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710513b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3417", + "y": "15013" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1928.23", + "base_power_2": "2082.08", + "name": "ld_325245b0a", + "nominal_voltage": "120.09", + "parent": "sx2710513b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3379", + "y": "15241" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3048208a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-8157", + "y": "-2106" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1502.23", + "base_power_2": "3982.31", + "name": "ld_138260a0b", + "nominal_voltage": "120.09", + "parent": "sx3048208a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8328", + "y": "-1950" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3157708", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "17564", + "y": "-1395" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160100b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-7793", + "y": "-12428" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4067.53", + "base_power_2": "1953.09", + "name": "ld_321847b0b", + "nominal_voltage": "120.09", + "parent": "sx3160100b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-7834", + "y": "-12660" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2879069a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3011", + "y": "4510" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026377", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-5695", + "y": "8536" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047299", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "3569", + "y": "-2312" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026378", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-5423", + "y": "8852" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2861218c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-11082", + "y": "4723" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2766726b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8469", + "y": "7893" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991901", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "2884", + "y": "-9899" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139250", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3298", + "y": "-5832" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139252", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3913", + "y": "3532" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139251", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-3690", + "y": "-6181" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897807b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-1871", + "y": "3715" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5576.19", + "base_power_2": "3537.21", + "name": "ld_21386771b0a", + "nominal_voltage": "120.09", + "parent": "sx2897807b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1999", + "y": "3911" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3048208a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7985", + "y": "-2270" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1139254", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-2403", + "y": "3646" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3029500", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "12057", + "y": "-5604" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3029501", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-309", + "y": "757" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139256", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-1082", + "y": "3311" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710510c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-3639", + "y": "-12027" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710510c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2710510c", + "phases": "CS", + "x": "-3683", + "y": "-12268" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3254.61", + "base_power_2": "4034.05", + "name": "ld_138650c0a", + "nominal_voltage": "120.09", + "parent": "sx2710510c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3834", + "y": "-12157" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2726973a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "14193", + "y": "-168" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3029502", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-11278", + "y": "714" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139255", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-1453", + "y": "3342" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d6409775-4_int", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3329", + "y": "2486" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3029503", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-9768", + "y": "-5539" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3029504", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-72", + "y": "9759" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3029505", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "17075", + "y": "1469" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3029506", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "10114", + "y": "-5233" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3029507", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-10996", + "y": "10097" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048209b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "725", + "y": "16520" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9800.41", + "base_power_2": "3323.30", + "name": "ld_2120195b0b", + "nominal_voltage": "120.09", + "parent": "sx3048209b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "703", + "y": "16754" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104144a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4173", + "y": "1406" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104144a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3104144a", + "phases": "AS", + "x": "4163", + "y": "1159" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3597.05", + "base_power_2": "3155.53", + "name": "ld_339020a0b", + "nominal_voltage": "120.09", + "parent": "sx3104144a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3923", + "y": "1421" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026320", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-11517", + "y": "11293" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2766721a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-17007", + "y": "2423" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026324", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-10876", + "y": "10590" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026323", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-11192", + "y": "10955" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879062c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-10579", + "y": "-166" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026329", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-8990", + "y": "7911" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026328", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-9309", + "y": "8387" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026327", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-10290", + "y": "9766" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2991923a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4417", + "y": "-13304" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1139260", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "1007", + "y": "799" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2820531b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "17082", + "y": "-1377" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1381.02", + "base_power_2": "8649.91", + "name": "ld_226192936b0b", + "nominal_voltage": "120.09", + "parent": "sx2820531b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "17122", + "y": "-1606" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991921c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "7177", + "y": "-5057" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1139263", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5995", + "y": "-1530" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2745799", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "2548", + "y": "-6175" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048209b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "749", + "y": "16281" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1139264", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6693", + "y": "-1605" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3083019", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9056", + "y": "11190" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3251854a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3304", + "y": "49" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8492.23", + "base_power_2": "3744.89", + "name": "ld_226881700a0b", + "nominal_voltage": "120.09", + "parent": "sx3251854a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3238", + "y": "-174" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3226771", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "17650", + "y": "-5804" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710511a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9059", + "y": "4405" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6247.49", + "base_power_2": "2896.84", + "name": "ld_21357515a0b", + "nominal_voltage": "120.09", + "parent": "sx2710511a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9292", + "y": "4433" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104145b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "8914", + "y": "9293" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2031.16", + "base_power_2": "3989.46", + "name": "ld_339011b0b", + "nominal_voltage": "120.09", + "parent": "sx3104145b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8763", + "y": "9484" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729430b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "6106", + "y": "-7535" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4390.19", + "base_power_2": "5640.73", + "name": "ld_21248901b0a", + "nominal_voltage": "120.09", + "parent": "sx2729430b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6327", + "y": "-7600" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2766720a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8849", + "y": "-221" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2879063b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "5606", + "y": "-1569" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026312", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-12770", + "y": "12501" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139258", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "1019", + "y": "2560" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139257", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-1273", + "y": "2948" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139259", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "857", + "y": "2539" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2991922a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5125", + "y": "-12543" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "221-311583", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3581", + "y": "-5745" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3123509", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "910", + "y": "-1302" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5502543-2_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "3489", + "y": "-7407" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897805a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4442", + "y": "-1459" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1318.32", + "base_power_2": "7826.01", + "name": "ld_21471907a0b", + "nominal_voltage": "120.09", + "parent": "sx2897805a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4532", + "y": "-1670" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991920a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-6830", + "y": "8068" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3029520", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "783", + "y": "11872" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3086002c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "10974", + "y": "14316" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6517.24", + "base_power_2": "3967.29", + "name": "ld_356794c0a", + "nominal_voltage": "120.09", + "parent": "sx3086002c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11209", + "y": "14342" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2673322b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "8734", + "y": "-3836" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1653.26", + "base_power_2": "2357.05", + "name": "ld_355358b0a", + "nominal_voltage": "120.09", + "parent": "sx2673322b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8767", + "y": "-3606" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026344", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-6718", + "y": "6512" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026343", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-6854", + "y": "6025" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026341", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-7134", + "y": "5027" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879064a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5341", + "y": "-10357" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254915b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5983", + "y": "6258" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026347", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-6894", + "y": "4078" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3270814a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-52", + "y": "-18493" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2766723a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "18480", + "y": "-9826" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841629c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-6693", + "y": "-2602" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8952.88", + "base_power_2": "6779.08", + "name": "ld_138405c0b", + "nominal_voltage": "120.09", + "parent": "sx2841629c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6736", + "y": "-2376" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2785520b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3332", + "y": "-9177" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1272.80", + "base_power_2": "2737.51", + "name": "ld_138755b0a", + "nominal_voltage": "120.09", + "parent": "sx2785520b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3478", + "y": "-9359" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d6140776-1_int", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "18148", + "y": "-1689" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897806c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-1060", + "y": "301" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3014.52", + "base_power_2": "3274.14", + "name": "ld_337643c0a", + "nominal_voltage": "120.09", + "parent": "sx2897806c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-834", + "y": "347" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "221-311595", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-3929", + "y": "-5956" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3029510", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "2635", + "y": "-11705" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001215c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-19386", + "y": "-5423" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673323c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "6522", + "y": "-6393" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3414.97", + "base_power_2": "10162.34", + "name": "ld_355438c0b", + "nominal_voltage": "120.09", + "parent": "sx2673323c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6470", + "y": "-6629" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3029518", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-1494", + "y": "3088" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3141390b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-15457", + "y": "13874" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026333", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-7955", + "y": "6242" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026331", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-8317", + "y": "6836" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3235249a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "1835", + "y": "-16536" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026330", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-8643", + "y": "7415" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879065b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4209", + "y": "-6255" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2766722b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-338", + "y": "8996" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026335", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-8474", + "y": "6432" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991943", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "6562", + "y": "-4528" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3120484", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "4295", + "y": "-5455" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026339", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-10801", + "y": "9935" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2841628a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-13834", + "y": "2392" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8406.61", + "base_power_2": "3830.50", + "name": "ld_2120786a0b", + "nominal_voltage": "120.09", + "parent": "sx2841628a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-13987", + "y": "2221" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2991940", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-15605", + "y": "2184" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2748127a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6710", + "y": "5989" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2730187a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6074", + "y": "2754" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069499", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10239", + "y": "6059" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069498", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10311", + "y": "6521" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001214c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-19511", + "y": "-5066" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "226-23745", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-4520", + "y": "11237" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069495", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10388", + "y": "6983" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1126016", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5144", + "y": "12516" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691967b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "13653", + "y": "510" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069494", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "11929", + "y": "-7915" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1126017", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4707", + "y": "13543" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069497", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10478", + "y": "7446" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069496", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10661", + "y": "8374" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "226-23751", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-12570", + "y": "5842" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2861158", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-7916", + "y": "17938" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2861157", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-6176", + "y": "13297" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1126020", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4885", + "y": "13055" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2730108b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2712", + "y": "9812" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4147.41", + "base_power_2": "2141.25", + "name": "ld_223661b0b", + "nominal_voltage": "120.09", + "parent": "sx2730108b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2586", + "y": "10009" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3010585a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-4473", + "y": "-15455" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2767408c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "341", + "y": "6483" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3199.80", + "base_power_2": "6256.66", + "name": "ld_260517c0a", + "nominal_voltage": "120.09", + "parent": "sx2767408c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "536", + "y": "6343" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3214549a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-743", + "y": "-3512" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2748126c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "4319", + "y": "6566" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2898457", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "251", + "y": "-7459" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069488", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "11356", + "y": "-6522" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2896685b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9995", + "y": "-8443" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069487", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "11288", + "y": "-6074" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2896685c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-10077", + "y": "-8338" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3066804a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13620", + "y": "-7101" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001213c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-19422", + "y": "-4690" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069489", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "11467", + "y": "-6924" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2896685a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-10086", + "y": "-8207" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069484", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "10712", + "y": "-4315" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1126005", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5632", + "y": "11286" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069483", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10044", + "y": "-2499" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691966b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "8025", + "y": "7231" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3626914", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-5196", + "y": "-2966" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2767409b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9109", + "y": "2026" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2767409b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2767409b", + "phases": "BS", + "x": "-9343", + "y": "1934" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7189.22", + "base_power_2": "2841.71", + "name": "ld_21391242b0a", + "nominal_voltage": "120.09", + "parent": "sx2767409b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9224", + "y": "1822" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2954357a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3007", + "y": "-16083" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3270853", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "5482", + "y": "7327" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3270854", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-11750", + "y": "913" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729423c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "4904", + "y": "1048" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3728043a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "16030", + "y": "4721" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3728043a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3728043a", + "phases": "AS", + "x": "16208", + "y": "4891" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5086.30", + "base_power_2": "8625.04", + "name": "ld_2224387138a0a", + "nominal_voltage": "120.09", + "parent": "sx3728043a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "16027", + "y": "4959" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104796c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2358", + "y": "-4262" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001212c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-18865", + "y": "-4640" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3066801c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-3420", + "y": "-2437" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "hvmv11sub3_lsb", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "9539", + "y": "-3279" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2673326b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "3764", + "y": "-10463" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2119.27", + "base_power_2": "3901.35", + "name": "ld_355601b0b", + "nominal_voltage": "120.09", + "parent": "sx2673326b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3973", + "y": "-10369" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069481", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "9318", + "y": "-2228" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2730106c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "5875", + "y": "854" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3825.95", + "base_power_2": "9751.37", + "name": "ld_356814c0a", + "nominal_voltage": "120.09", + "parent": "sx2730106c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6083", + "y": "744" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026308", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-13973", + "y": "13652" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026307", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-15310", + "y": "14190" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3231255", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10882", + "y": "10227" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2690941b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2566", + "y": "17188" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2748125c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11549", + "y": "-7019" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m4350438", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3960", + "y": "12393" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897801a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-6113", + "y": "4507" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7507.49", + "base_power_2": "6203.85", + "name": "ld_21470405a0b", + "nominal_voltage": "120.09", + "parent": "sx2897801a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6093", + "y": "4746" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026309", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-13363", + "y": "13092" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3728042a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "15623", + "y": "4593" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4960.97", + "base_power_2": "8750.37", + "name": "ld_2224387113a0b", + "nominal_voltage": "120.09", + "parent": "sx3728042a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "15687", + "y": "4819" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001211c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-19028", + "y": "-4171" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069469", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5962", + "y": "-1295" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069466", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6459", + "y": "-1485" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069465", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6933", + "y": "-1715" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069468", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "5500", + "y": "-986" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069467", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6218", + "y": "-1373" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069462", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "5202", + "y": "-1132" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069461", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "3799", + "y": "-476" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2878848", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "10796", + "y": "1307" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069464", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "4651", + "y": "-731" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069463", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "5008", + "y": "-1015" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2730107c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11371", + "y": "14820" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2690.14", + "base_power_2": "7794.39", + "name": "ld_251855c0a", + "nominal_voltage": "120.09", + "parent": "sx2730107c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11578", + "y": "14933" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2879061b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-957", + "y": "4033" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3231269", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "2501", + "y": "-9588" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2767407b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8822", + "y": "3091" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3489.80", + "base_power_2": "3613.29", + "name": "ld_260495b0b", + "nominal_voltage": "120.09", + "parent": "sx2767407b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8596", + "y": "3121" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3235258c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "16480", + "y": "-3000" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4679.02", + "base_power_2": "1609.64", + "name": "ld_293652c0a", + "nominal_voltage": "120.09", + "parent": "sx3235258c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "16368", + "y": "-2795" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3235258a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "16859", + "y": "-2835" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3983.69", + "base_power_2": "4593.63", + "name": "ld_293652a0a", + "nominal_voltage": "120.09", + "parent": "sx3235258a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "16896", + "y": "-2602" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2729424a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3531", + "y": "1183" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3235258b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "17189", + "y": "-3011" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3842.32", + "base_power_2": "14291.70", + "name": "ld_293652b0a", + "nominal_voltage": "120.09", + "parent": "sx3235258b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "17324", + "y": "-2821" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2748124b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2849", + "y": "16644" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2785511a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8574", + "y": "15011" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3728041a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "15479", + "y": "5567" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4915.73", + "base_power_2": "4228.60", + "name": "ld_2224387074a0a", + "nominal_voltage": "120.09", + "parent": "sx3728041a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "15506", + "y": "5802" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "190-8581", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8084", + "y": "11398" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691959", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4873", + "y": "-2522" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001210c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-18826", + "y": "-3841" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2691954", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-1989", + "y": "70" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "q16483", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "2331", + "y": "7465" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069457", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "1245", + "y": "353" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048200b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14240", + "y": "15638" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3066807c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-14593", + "y": "565" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069456", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-1670", + "y": "37" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069451", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-4646", + "y": "-234" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710518a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "12907", + "y": "-3775" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2678.55", + "base_power_2": "6465.78", + "name": "ld_21209868a0b", + "nominal_voltage": "120.09", + "parent": "sx2710518a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "13146", + "y": "-3753" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2691952", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "14258", + "y": "-6215" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691953", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8318", + "y": "-11588" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691950", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-9505", + "y": "-5791" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2954354a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13473", + "y": "-5605" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2691951", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-7904", + "y": "-4575" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748839b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8481", + "y": "1436" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2053.86", + "base_power_2": "1956.45", + "name": "ld_260502b0a", + "nominal_voltage": "120.09", + "parent": "sx2748839b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8303", + "y": "1283" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2766729a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9937", + "y": "-8994" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2785512b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9044", + "y": "-12378" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "e203026", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10171", + "y": "-3485" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2875754", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-16170", + "y": "5755" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3068944b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9224", + "y": "2636" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6351.85", + "base_power_2": "8689.39", + "name": "ld_260494b0b", + "nominal_voltage": "120.09", + "parent": "sx3068944b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8997", + "y": "2635" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2691967", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "13789", + "y": "321" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "190-8593", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "15841", + "y": "1515" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2745806c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "12176", + "y": "-8382" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2691965", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "6539", + "y": "2219" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3728040a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "15120", + "y": "5311" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3969.05", + "base_power_2": "9742.29", + "name": "ld_2224387062a0a", + "nominal_voltage": "120.09", + "parent": "sx3728040a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "15046", + "y": "5536" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2691966", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "8123", + "y": "7018" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048201b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14077", + "y": "16699" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3066808c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "9351", + "y": "-2617" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710519a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13927", + "y": "-5658" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2522.03", + "base_power_2": "1137.77", + "name": "ld_302676a0b", + "nominal_voltage": "120.09", + "parent": "sx2710519a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "14135", + "y": "-5562" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2805031", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-9864", + "y": "4047" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3119793b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3917", + "y": "-8797" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2805035", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6433", + "y": "3269" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2805034", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "3439", + "y": "7571" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2954353a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "15577", + "y": "-270" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3235256a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-1523", + "y": "-12322" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3805.24", + "base_power_2": "1679.30", + "name": "ld_138642a0b", + "nominal_voltage": "120.09", + "parent": "sx3235256a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1645", + "y": "-12520" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897800b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4391", + "y": "11371" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3016.75", + "base_power_2": "4086.34", + "name": "ld_323277b0a", + "nominal_voltage": "120.09", + "parent": "sx2897800b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4544", + "y": "11548" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2785513a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7751", + "y": "4950" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2805037", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-15586", + "y": "8102" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2805036", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3488", + "y": "2456" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691938", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "3198", + "y": "-10358" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691939", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "4937", + "y": "-9829" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx_293471a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6917", + "y": "-6021" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5295.70", + "base_power_2": "3848.63", + "name": "ld_293471a0a", + "nominal_voltage": "120.09", + "parent": "sx_293471a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7013", + "y": "-6253" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2691936", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "726", + "y": "-17713" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx_293471b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "7103", + "y": "-5969" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3735.39", + "base_power_2": "9388.32", + "name": "ld_293471b0b", + "nominal_voltage": "120.09", + "parent": "sx_293471b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7217", + "y": "-6178" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx_293471c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "7225", + "y": "-5846" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5593.51", + "base_power_2": "4891.03", + "name": "ld_293471c0a", + "nominal_voltage": "120.09", + "parent": "sx_293471c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7384", + "y": "-6029" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069437", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "860", + "y": "2287" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2896685", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-9825", + "y": "-8248" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069438", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "520", + "y": "1702" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2748129a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5051", + "y": "-14491" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3066805a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-6770", + "y": "4550" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710516a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "12097", + "y": "3897" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2941.40", + "base_power_2": "6202.93", + "name": "ld_321839a0a", + "nominal_voltage": "120.09", + "parent": "sx2710516a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12320", + "y": "3965" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2691965b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "6627", + "y": "1997" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3235255b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "9209", + "y": "-9512" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3576.78", + "base_power_2": "1526.31", + "name": "ld_293519b0a", + "nominal_voltage": "120.09", + "parent": "sx3235255b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9435", + "y": "-9575" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2785514a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-6586", + "y": "4816" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2729427b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5628", + "y": "-6835" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3143999", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-4961", + "y": "-2133" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691949", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "1318", + "y": "-1798" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2748128c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-12110", + "y": "547" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2691947", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "2957", + "y": "-5310" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691948", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-33", + "y": "10879" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691945", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-9685", + "y": "-4863" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691946", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-6185", + "y": "89" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048203b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5828", + "y": "9337" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d6049825-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8073", + "y": "-5954" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691943", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4240", + "y": "15540" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069428", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-1028", + "y": "2826" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691944", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "11844", + "y": "4091" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3160793c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "1014", + "y": "-8309" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1126023", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4790", + "y": "13300" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3178997c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-4803", + "y": "807" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3066806c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-15621", + "y": "1384" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069424", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-1397", + "y": "3048" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1126025", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4649", + "y": "13145" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069420", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-2164", + "y": "3194" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710517a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "7036", + "y": "-9116" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1239.78", + "base_power_2": "4244.76", + "name": "ld_310568a0a", + "nominal_voltage": "120.09", + "parent": "sx2710517a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7022", + "y": "-9346" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1126031", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "10685", + "y": "14493" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3235254c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "6010", + "y": "-10884" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3694.50", + "base_power_2": "6790.03", + "name": "ld_441331c0b", + "nominal_voltage": "120.09", + "parent": "sx3235254c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5808", + "y": "-10773" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2691941", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "4866", + "y": "5800" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729428a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9341", + "y": "-8774" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2691942", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3810", + "y": "-7182" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2954355a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "11543", + "y": "-7729" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2785515c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-11388", + "y": "-4650" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2913406", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "145", + "y": "10952" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069419", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-2882", + "y": "3181" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069418", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-3235", + "y": "3134" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209800", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-1449", + "y": "7407" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209805", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "448", + "y": "5801" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "221-703009", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-729", + "y": "-8143" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069417", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-3589", + "y": "3073" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069411", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-4128", + "y": "2668" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3195321a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5467", + "y": "13164" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2274.26", + "base_power_2": "3210.28", + "name": "ld_356805a0a", + "nominal_voltage": "120.09", + "parent": "sx3195321a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5564", + "y": "13376" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3139366a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "1537", + "y": "-27" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1209807", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "785", + "y": "5527" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069412", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-747", + "y": "3614" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2859391b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "8407", + "y": "-3822" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3235241c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "4737", + "y": "5632" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1492.44", + "base_power_2": "8992.10", + "name": "ld_321888c0a", + "nominal_voltage": "120.09", + "parent": "sx3235241c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4650", + "y": "5414" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2729429a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "18062", + "y": "-625" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2936213b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "7550", + "y": "13232" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3197645a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4806", + "y": "-13458" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3235252b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "98", + "y": "-188" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000902c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-12951", + "y": "2836" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2748143a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3767", + "y": "343" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973153a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8745", + "y": "3026" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069408", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-711", + "y": "2122" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3179673c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "3605", + "y": "8861" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4043.87", + "base_power_2": "5337.58", + "name": "ld_260640c0b", + "nominal_voltage": "120.09", + "parent": "sx3179673c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3704", + "y": "9075" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3085403a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "19426", + "y": "-8479" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3832.26", + "base_power_2": "8404.85", + "name": "ld_293668a0b", + "nominal_voltage": "120.09", + "parent": "sx3085403a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "19661", + "y": "-8458" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1209811", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "1107", + "y": "5246" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3195327", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9664", + "y": "15982" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3197643b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-10338", + "y": "10050" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1209817", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "2007", + "y": "4315" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209814", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "1417", + "y": "4955" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209819", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-3745", + "y": "10320" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3122827a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "11854", + "y": "-7537" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4352.27", + "base_power_2": "4792.06", + "name": "ld_293673a0a", + "nominal_voltage": "120.09", + "parent": "sx3122827a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11621", + "y": "-7496" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2916605c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-16855", + "y": "3893" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3645811", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "9594", + "y": "-10405" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137956", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "9636", + "y": "-2033" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3645812", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "9817", + "y": "-9776" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137957", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "11003", + "y": "-2166" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137958", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "11744", + "y": "-1896" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2936212a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6267", + "y": "-63" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3195321", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5254", + "y": "12734" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3197644a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "7296", + "y": "-13288" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973154a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3395", + "y": "4342" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3645810", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "9184", + "y": "-10051" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3235251c", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-9711", + "y": "-3791" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1209823", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-5202", + "y": "12129" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209824", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-5520", + "y": "12568" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3086074c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "1284", + "y": "7140" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3611.03", + "base_power_2": "2677.63", + "name": "ld_260532c0a", + "nominal_voltage": "120.09", + "parent": "sx3086074c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1513", + "y": "7174" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3179674b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "1380", + "y": "-2656" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8431.58", + "base_power_2": "1599.35", + "name": "ld_157716b0a", + "nominal_voltage": "120.09", + "parent": "sx3179674b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1431", + "y": "-2885" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1209822", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-4883", + "y": "11686" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209828", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-5834", + "y": "13003" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3197642c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "14417", + "y": "-6182" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3254228b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "13425", + "y": "9187" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5626.21", + "base_power_2": "4404.72", + "name": "ld_325474b0a", + "nominal_voltage": "120.09", + "parent": "sx3254228b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "13625", + "y": "9067" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3645809", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "9020", + "y": "-9775" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3728039a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "15098", + "y": "4742" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2764399b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "13429", + "y": "2649" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5480.74", + "base_power_2": "3632.66", + "name": "ld_226192493b0a", + "nominal_voltage": "120.09", + "parent": "sx2764399b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "13660", + "y": "2613" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973144c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2938", + "y": "-1758" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8351.51", + "base_power_2": "2133.02", + "name": "ld_138466c0a", + "nominal_voltage": "120.09", + "parent": "sx2973144c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2715", + "y": "-1701" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2916606c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-17327", + "y": "4088" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3234185b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2067", + "y": "17015" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3195356", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-7000", + "y": "-4893" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2973155a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-266", + "y": "2006" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2690187b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3416", + "y": "-6983" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2936211c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2000", + "y": "-2228" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2786273b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3315", + "y": "2138" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2060.86", + "base_power_2": "7970.07", + "name": "ld_275247b0b", + "nominal_voltage": "120.09", + "parent": "sx2786273b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3067", + "y": "2113" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3235250b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-744", + "y": "7626" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3254229b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "8324", + "y": "4885" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8516.29", + "base_power_2": "1514.64", + "name": "ld_338998b0a", + "nominal_voltage": "120.09", + "parent": "sx3254229b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8532", + "y": "4970" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197641a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "19143", + "y": "-154" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3728038a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "15086", + "y": "4390" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2916607c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "6588", + "y": "8331" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3236011b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14875", + "y": "8389" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2748140a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "10401", + "y": "-5330" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973156b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-1676", + "y": "886" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3217064b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-10278", + "y": "1559" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3217064b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3217064b", + "phases": "BS", + "x": "-10499", + "y": "1475" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3724.74", + "base_power_2": "9398.97", + "name": "ld_21391390b0b", + "nominal_voltage": "120.09", + "parent": "sx3217064b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-10300", + "y": "1326" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "q16642", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "13070", + "y": "-248" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3085400c", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7937", + "y": "-6697" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1729.10", + "base_power_2": "8755.43", + "name": "ld_302803c0b", + "nominal_voltage": "120.09", + "parent": "sx3085400c", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8126", + "y": "-6833" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1136660", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "16812", + "y": "1132" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137991", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "17739", + "y": "-1592" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973146b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "3579", + "y": "-9578" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8780.88", + "base_power_2": "1250.05", + "name": "ld_2118903b0b", + "nominal_voltage": "120.09", + "parent": "sx2973146b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3662", + "y": "-9364" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3727708a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "14631", + "y": "2752" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4281.49", + "base_power_2": "1203.04", + "name": "ld_2224386815a0a", + "nominal_voltage": "120.09", + "parent": "sx3727708a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "14502", + "y": "2564" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2691947a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3084", + "y": "-5755" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1543.00", + "base_power_2": "2116.79", + "name": "ld_337718a0a", + "nominal_voltage": "120.09", + "parent": "sx2691947a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3139", + "y": "-5982" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2916608c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11764", + "y": "7013" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3728037a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "15194", + "y": "3729" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1136658", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16651", + "y": "2513" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137989", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "966", + "y": "2452" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136659", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "16909", + "y": "1931" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3030204a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "829", + "y": "3978" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2077.83", + "base_power_2": "7066.50", + "name": "ld_20107636a0a", + "nominal_voltage": "120.09", + "parent": "sx3030204a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "785", + "y": "3753" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000715b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-19890", + "y": "370" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000715b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000715b", + "phases": "BS", + "x": "-20133", + "y": "367" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "5402.72", + "name": "ld_2000715b0a", + "nominal_voltage": "120.09", + "parent": "sx2000715b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-20026", + "y": "562" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2898515c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "5158", + "y": "2283" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973157a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3223", + "y": "-6802" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1137985", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "2846", + "y": "3780" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137986", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "1727", + "y": "3224" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137987", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "1402", + "y": "2673" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3027122a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6131", + "y": "9475" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7879.81", + "base_power_2": "1264.52", + "name": "ld_226194865a0b", + "nominal_voltage": "120.09", + "parent": "sx3027122a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5937", + "y": "9608" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1136657", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "12570", + "y": "-663" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137988", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "731", + "y": "2320" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2748146a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-4519", + "y": "-13614" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1136670", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10488", + "y": "-3026" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691946b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-6404", + "y": "507" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2691946b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2691946b", + "phases": "BS", + "x": "-6561", + "y": "679" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "2221.69", + "base_power_2": "3798.93", + "name": "ld_2147974b0a", + "nominal_voltage": "120.09", + "parent": "sx2691946b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6296", + "y": "711" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1136671", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "9930", + "y": "-250" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2936216c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-4390", + "y": "10874" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2916609c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-9640", + "y": "-5641" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2879794a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7028", + "y": "2602" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1136669", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "9862", + "y": "-5108" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3030205c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "3812", + "y": "3256" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6705.77", + "base_power_2": "3778.77", + "name": "ld_21390038c0b", + "nominal_voltage": "120.09", + "parent": "sx3030205c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3650", + "y": "3417" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1136661", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "16816", + "y": "1319" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137992", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16405", + "y": "-747" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3727709a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "15874", + "y": "3289" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4138.58", + "base_power_2": "9572.76", + "name": "ld_2224386842a0b", + "nominal_voltage": "120.09", + "parent": "sx3727709a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "16094", + "y": "3373" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2973158c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-7479", + "y": "-2207" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1137993", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "13264", + "y": "-1263" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136663", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16299", + "y": "848" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137994", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "10480", + "y": "-3709" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2914324a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-3710", + "y": "-14692" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1180.37", + "base_power_2": "3737.16", + "name": "ld_226196642a0b", + "nominal_voltage": "120.09", + "parent": "sx2914324a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3879", + "y": "-14533" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1136664", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "15999", + "y": "347" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137995", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "16862", + "y": "2996" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136665", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "15480", + "y": "-507" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137996", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "16780", + "y": "2031" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136666", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "14227", + "y": "-1190" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136667", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "12153", + "y": "-2512" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137998", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "3355", + "y": "-6059" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136668", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "10156", + "y": "-4934" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137999", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "1781", + "y": "-10737" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2786274c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-13609", + "y": "7647" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2786274c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2786274c", + "phases": "CS", + "x": "-13550", + "y": "7884" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5013.77", + "base_power_2": "5470.77", + "name": "ld_207291c0b", + "nominal_voltage": "120.09", + "parent": "sx2786274c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-13745", + "y": "7838" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2954349b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-625", + "y": "8679" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3085402a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3842", + "y": "9870" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9163.16", + "base_power_2": "4548.18", + "name": "ld_302471a0b", + "nominal_voltage": "120.09", + "parent": "sx3085402a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3630", + "y": "9959" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "193-103041", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "9790", + "y": "-10268" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3195318", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-424", + "y": "3285" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254219", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "3609", + "y": "-12866" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973148a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "11949", + "y": "13028" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2973148a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2973148a", + "phases": "AS", + "x": "12125", + "y": "13196" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5422.37", + "base_power_2": "3721.96", + "name": "ld_339047a0a", + "nominal_voltage": "120.09", + "parent": "sx2973148a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12181", + "y": "12995" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3179678b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14856", + "y": "6188" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4207.86", + "base_power_2": "1812.76", + "name": "ld_247185b0a", + "nominal_voltage": "120.09", + "parent": "sx3179678b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-14946", + "y": "6405" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3195315", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-4978", + "y": "-12912" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691949b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "1825", + "y": "-1581" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8671.94", + "base_power_2": "1358.99", + "name": "ld_337689b0b", + "nominal_voltage": "120.09", + "parent": "sx2691949b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2067", + "y": "-1538" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000713b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-19221", + "y": "-315" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000713b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000713b", + "phases": "BS", + "x": "-19431", + "y": "-439" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "6817.80", + "base_power_2": "7870.80", + "name": "ld_2000713b0b", + "nominal_voltage": "120.09", + "parent": "sx2000713b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-19259", + "y": "-546" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3254210", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-2827", + "y": "-11796" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2973159a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8547", + "y": "-9027" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3254213", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "9747", + "y": "8365" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254214", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "444", + "y": "12773" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137960", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8971", + "y": "-6905" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3197647a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "18407", + "y": "-401" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3195310", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3390", + "y": "10796" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254211", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3612", + "y": "-8328" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137961", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "11080", + "y": "-6825" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254212", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-2649", + "y": "-10100" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254217", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "20571", + "y": "-283" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2914323b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "7910", + "y": "-4178" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2935.62", + "base_power_2": "1074.69", + "name": "ld_355376b0b", + "nominal_voltage": "120.09", + "parent": "sx2914323b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7869", + "y": "-3943" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3214112", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "467", + "y": "13166" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254218", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "1296", + "y": "-12337" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254215", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-7831", + "y": "-3427" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3027124c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8924", + "y": "15466" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8402.69", + "base_power_2": "2081.84", + "name": "ld_226195194c0b", + "nominal_voltage": "120.09", + "parent": "sx3027124c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9154", + "y": "15510" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3254216", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "3788", + "y": "-5869" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3085401a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "16679", + "y": "631" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9460.62", + "base_power_2": "4250.72", + "name": "ld_2127253a0b", + "nominal_voltage": "120.09", + "parent": "sx3085401a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "16909", + "y": "672" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3254208", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "11817", + "y": "-6912" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254209", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "12218", + "y": "-2074" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973149b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8628", + "y": "-13449" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4974.63", + "base_power_2": "1045.98", + "name": "ld_325472b0b", + "nominal_voltage": "120.09", + "parent": "sx2973149b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8573", + "y": "-13677" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3727707a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "15297", + "y": "2494" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4845.75", + "base_power_2": "4298.58", + "name": "ld_2224386750a0a", + "nominal_voltage": "120.09", + "parent": "sx3727707a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "15480", + "y": "2638" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2936214a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "7824", + "y": "2403" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2691948b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-346", + "y": "11251" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2742.28", + "base_power_2": "3278.33", + "name": "ld_337703b0b", + "nominal_voltage": "120.09", + "parent": "sx2691948b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-487", + "y": "11438" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3139103a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9864", + "y": "16446" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2684420b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9454", + "y": "-12675" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5035.31", + "base_power_2": "4078.09", + "name": "ld_225498968b0b", + "nominal_voltage": "120.09", + "parent": "sx2684420b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9687", + "y": "-12702" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000714b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-19658", + "y": "-83" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000714b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000714b", + "phases": "BS", + "x": "-19865", + "y": "-214" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4997.72", + "base_power_2": "5402.72", + "name": "ld_2000714b0b", + "nominal_voltage": "120.09", + "parent": "sx2000714b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-19884", + "y": "-18" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3030203c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "3170", + "y": "8731" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5600.16", + "base_power_2": "4884.38", + "name": "ld_260639c0b", + "nominal_voltage": "120.09", + "parent": "sx3030203c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3166", + "y": "8968" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3235946", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5795", + "y": "10968" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254203", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9716", + "y": "-13975" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235945", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "9997", + "y": "13833" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3197646b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "2764", + "y": "-10443" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3254206", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "4336", + "y": "-10727" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2748144a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6944", + "y": "2660" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3254207", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-5540", + "y": "3414" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254204", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "13673", + "y": "-1601" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254205", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "7141", + "y": "-5214" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3029520b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "1170", + "y": "12167" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1922.40", + "base_power_2": "4098.22", + "name": "ld_21486213b0a", + "nominal_voltage": "120.09", + "parent": "sx3029520b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1359", + "y": "12305" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3122820a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6759", + "y": "-9796" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8757.57", + "base_power_2": "3479.55", + "name": "ld_310561a0b", + "nominal_voltage": "120.09", + "parent": "sx3122820a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6819", + "y": "-10026" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2691943b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4543", + "y": "15924" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1145.13", + "base_power_2": "4875.49", + "name": "ld_323400b0b", + "nominal_voltage": "120.09", + "parent": "sx2691943b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4671", + "y": "16121" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2933135a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4933", + "y": "-360" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2260.45", + "base_power_2": "6883.88", + "name": "ld_226197070a0b", + "nominal_voltage": "120.09", + "parent": "sx2933135a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5122", + "y": "-495" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3082992a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3255", + "y": "-4645" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3082992a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3082992a", + "phases": "AS", + "x": "3478", + "y": "-4701" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "1458.99", + "base_power_2": "4025.55", + "name": "ld_337728a0b", + "nominal_voltage": "120.09", + "parent": "sx3082992a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3230", + "y": "-4870" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3030200c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-432", + "y": "5308" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3051.80", + "base_power_2": "3236.86", + "name": "ld_260554c0a", + "nominal_voltage": "120.09", + "parent": "sx3030200c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-289", + "y": "5492" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108269", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3927", + "y": "1545" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2730107c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11152", + "y": "14710" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108276", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3954", + "y": "1774" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108278", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3570", + "y": "2205" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108274", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4147", + "y": "1553" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3232301c", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-4216", + "y": "-7199" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7127.39", + "base_power_2": "24336.53", + "name": "ld_21458756c0b", + "nominal_voltage": "120.09", + "parent": "sx3232301c", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4285", + "y": "-7443" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3066815c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "10900", + "y": "-2816" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4619.05", + "base_power_2": "5865.49", + "name": "ld_338936c0a", + "nominal_voltage": "120.09", + "parent": "sx3066815c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "10782", + "y": "-2618" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1009742", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "9018", + "y": "-5082" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108270", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4593", + "y": "1137" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879081a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "18340", + "y": "-7530" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2118.78", + "base_power_2": "3365.76", + "name": "ld_391981a0a", + "nominal_voltage": "120.09", + "parent": "sx2879081a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "18563", + "y": "-7596" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2691942b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4300", + "y": "-6930" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1904.72", + "base_power_2": "4115.89", + "name": "ld_247105b0b", + "nominal_voltage": "120.09", + "parent": "sx2691942b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4535", + "y": "-6965" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2839305a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5269", + "y": "3702" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1009763", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8563", + "y": "-4554" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3086079b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "1663", + "y": "-1818" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2990.02", + "base_power_2": "4113.08", + "name": "ld_260457b0b", + "nominal_voltage": "120.09", + "parent": "sx3086079b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1810", + "y": "-2000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3263051c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-10058", + "y": "-7075" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8377.85", + "base_power_2": "2106.68", + "name": "ld_2212371533c0a", + "nominal_voltage": "120.09", + "parent": "sx3263051c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-10240", + "y": "-7222" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3082993a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "7481", + "y": "19574" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6775.71", + "base_power_2": "2368.62", + "name": "ld_226159329a0a", + "nominal_voltage": "120.09", + "parent": "sx3082993a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7248", + "y": "19579" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2859403", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "2032", + "y": "-2785" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2730108b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2835", + "y": "9609" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2820535b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "7835", + "y": "1626" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4512.94", + "base_power_2": "5517.99", + "name": "ld_338981b0b", + "nominal_voltage": "120.09", + "parent": "sx2820535b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7927", + "y": "1413" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729411a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "7633", + "y": "-13142" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3303.82", + "base_power_2": "3448.76", + "name": "ld_138769a0a", + "nominal_voltage": "120.09", + "parent": "sx2729411a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7848", + "y": "-13244" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729410c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "21151", + "y": "-835" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "24129.40", + "base_power_2": "27592.25", + "name": "ld_338943c0b", + "nominal_voltage": "120.09", + "parent": "sx2729410c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "21380", + "y": "-785" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108286", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-14209", + "y": "3945" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3066816a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "18891", + "y": "-7255" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5318.79", + "base_power_2": "3258.53", + "name": "ld_21398676a0b", + "nominal_voltage": "120.09", + "parent": "sx3066816a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "19123", + "y": "-7283" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3122822a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "18976", + "y": "-10167" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2386.50", + "base_power_2": "6757.83", + "name": "ld_391987a0a", + "nominal_voltage": "120.09", + "parent": "sx3122822a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "19110", + "y": "-10359" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1009770", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8339", + "y": "-5071" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691945c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-10186", + "y": "-4820" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2691945c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2691945c", + "phases": "CS", + "x": "-10426", + "y": "-4827" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5181.58", + "base_power_2": "5302.95", + "name": "ld_302812c0b", + "nominal_voltage": "120.09", + "parent": "sx2691945c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-10358", + "y": "-4662" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1009771", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "8186", + "y": "-4871" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2729412a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7778", + "y": "4337" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3803.21", + "base_power_2": "5341.12", + "name": "ld_2150189a0b", + "nominal_voltage": "120.09", + "parent": "sx2729412a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-7983", + "y": "4476" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2861222a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7420", + "y": "1668" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "13547.29", + "base_power_2": "3256.84", + "name": "ld_260473a0a", + "nominal_voltage": "120.09", + "parent": "sx2861222a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-7481", + "y": "1442" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2937757c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-6286", + "y": "13934" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8160.37", + "base_power_2": "2324.17", + "name": "ld_227411650c0a", + "nominal_voltage": "120.09", + "parent": "sx2937757c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6499", + "y": "14027" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108257", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-425", + "y": "3423" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3235258a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "16840", + "y": "-3074" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3235258c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "16632", + "y": "-3183" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2897800b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4302", + "y": "11147" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3235258b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "17035", + "y": "-3191" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3066813b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-1039", + "y": "4747" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3200.13", + "base_power_2": "2820.49", + "name": "ld_337693b0b", + "nominal_voltage": "120.09", + "parent": "sx3066813b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1214", + "y": "4899" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254220c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "3590", + "y": "-13626" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2317.73", + "base_power_2": "8166.81", + "name": "ld_138717c0b", + "nominal_voltage": "120.09", + "parent": "sx3254220c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3621", + "y": "-13860" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3122821b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "13619", + "y": "-635" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3937.90", + "base_power_2": "9185.81", + "name": "ld_338953b0b", + "nominal_voltage": "120.09", + "parent": "sx3122821b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "13852", + "y": "-633" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1009784", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8006", + "y": "-5242" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691944a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "12000", + "y": "4537" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8307.80", + "base_power_2": "3929.31", + "name": "ld_321838a0b", + "nominal_voltage": "120.09", + "parent": "sx2691944a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11804", + "y": "4655" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108259", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-946", + "y": "3053" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2820533a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13195", + "y": "-4486" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4998.78", + "base_power_2": "4145.55", + "name": "ld_226193298a0a", + "nominal_voltage": "120.09", + "parent": "sx2820533a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "13002", + "y": "-4608" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2861223b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "2136", + "y": "-202" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4599.29", + "base_power_2": "5431.64", + "name": "ld_260461b0b", + "nominal_voltage": "120.09", + "parent": "sx2861223b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2277", + "y": "-386" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108258", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-673", + "y": "3244" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2729413a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3230", + "y": "-15145" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2711.06", + "base_power_2": "2773.48", + "name": "ld_21397067a0b", + "nominal_voltage": "120.09", + "parent": "sx2729413a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3425", + "y": "-15273" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2730106c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "5675", + "y": "992" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3312692", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "7617", + "y": "20019" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2842383a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4417", + "y": "4862" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108266", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3777", + "y": "1410" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108265", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3430", + "y": "1570" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108268", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4466", + "y": "1088" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108267", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4122", + "y": "1250" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108262", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-1854", + "y": "2492" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108261", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-1546", + "y": "2674" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897801a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-6162", + "y": "4264" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108264", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3075", + "y": "1746" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108263", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-2766", + "y": "1930" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3066814b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "10543", + "y": "5244" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3194.13", + "base_power_2": "3978.37", + "name": "ld_338979b0a", + "nominal_voltage": "120.09", + "parent": "sx3066814b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "10752", + "y": "5338" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108260", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-1237", + "y": "2848" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2674047c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-3012", + "y": "6431" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5181.51", + "base_power_2": "1107.15", + "name": "ld_260514c0b", + "nominal_voltage": "120.09", + "parent": "sx2674047c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3026", + "y": "6666" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2730187a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6258", + "y": "2559" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1795.78", + "base_power_2": "11915.56", + "name": "ld_260464a0b", + "nominal_voltage": "120.09", + "parent": "sx2730187a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6510", + "y": "2513" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3122824a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-6666", + "y": "8396" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3720.63", + "base_power_2": "1763.90", + "name": "ld_302402a0a", + "nominal_voltage": "120.09", + "parent": "sx3122824a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6807", + "y": "8586" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2891575", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-8549", + "y": "19191" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2729414a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "16017", + "y": "-4701" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4844.32", + "base_power_2": "4300.01", + "name": "ld_293655a0b", + "nominal_voltage": "120.09", + "parent": "sx2729414a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "16099", + "y": "-4478" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729414c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "15761", + "y": "-4589" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8065.79", + "base_power_2": "2418.75", + "name": "ld_293655c0b", + "nominal_voltage": "120.09", + "parent": "sx2729414c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "15786", + "y": "-4352" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729414b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "15469", + "y": "-4664" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7573.90", + "base_power_2": "2457.03", + "name": "ld_293655b0b", + "nominal_voltage": "120.09", + "parent": "sx2729414b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "15427", + "y": "-4434" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2842384c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "3509", + "y": "6994" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3066819a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "14790", + "y": "-5790" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7409.78", + "base_power_2": "1734.55", + "name": "ld_302677a0b", + "nominal_voltage": "120.09", + "parent": "sx3066819a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "15023", + "y": "-5846" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3235256a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-1395", + "y": "-12124" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2814529", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16097", + "y": "-9143" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3649302", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6261", + "y": "-13823" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3649301", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6297", + "y": "-13506" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3649304", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6319", + "y": "-14112" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2690187", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3490", + "y": "-6757" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3649306", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6447", + "y": "-13024" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3649305", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6455", + "y": "-14337" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1009705", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "11218", + "y": "-5430" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv69s1s2_5", + "nominal_voltage": "39837.17", + "phases": "ABCN", + "x": "5170", + "y": "-68" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3122823b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-10781", + "y": "10272" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1108.29", + "base_power_2": "8922.64", + "name": "ld_302370b0a", + "nominal_voltage": "120.09", + "parent": "sx3122823b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-10953", + "y": "10427" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "hvmv69s1s2_4", + "nominal_voltage": "39837.17", + "phases": "ABCN", + "x": "4901", + "y": "300" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv69s1s2_7", + "nominal_voltage": "39837.17", + "phases": "ABCN", + "x": "5690", + "y": "-805" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv69s1s2_6", + "nominal_voltage": "39837.17", + "phases": "ABCN", + "x": "5431", + "y": "-439" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3086075b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "1217", + "y": "-4331" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1314.42", + "base_power_2": "4706.20", + "name": "ld_260463b0a", + "nominal_voltage": "120.09", + "parent": "sx3086075b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1285", + "y": "-4554" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "hvmv69s1s2_1", + "nominal_voltage": "39837.17", + "phases": "ABCN", + "x": "4036", + "y": "1458" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254227b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "6490", + "y": "4974" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1166.42", + "base_power_2": "2843.89", + "name": "ld_338995b0b", + "nominal_voltage": "120.09", + "parent": "sx3254227b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6264", + "y": "4968" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "228-979371-2_int", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-2379", + "y": "-7271" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv69s1s2_3", + "nominal_voltage": "39837.17", + "phases": "ABCN", + "x": "4625", + "y": "675" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3649300", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6327", + "y": "-13159" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv69s1s2_2", + "nominal_voltage": "39837.17", + "phases": "ABCN", + "x": "4337", + "y": "1069" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3036169", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "7934", + "y": "-8772" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3036167", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-2242", + "y": "1015" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3036164", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-6319", + "y": "-8651" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3036165", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "96", + "y": "133" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3036162", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9178", + "y": "1084" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3036172", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "1580", + "y": "-1099" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3036170", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "13985", + "y": "-5875" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "193-46661", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "11478", + "y": "1801" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3235255b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "9019", + "y": "-9363" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "hvmv69s1s2_9", + "nominal_voltage": "39837.17", + "phases": "ABCN", + "x": "6205", + "y": "-1549" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv69s1s2_8", + "nominal_voltage": "39837.17", + "phases": "ABCN", + "x": "5955", + "y": "-1168" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3225319b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-13930", + "y": "16336" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1009715", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10841", + "y": "-5253" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691941c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "4893", + "y": "5332" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10369.67", + "base_power_2": "3207.65", + "name": "ld_321887c0b", + "nominal_voltage": "120.09", + "parent": "sx2691941c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4984", + "y": "5113" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3122826a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "7124", + "y": "-12709" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6998.34", + "base_power_2": "2145.99", + "name": "ld_302731a0a", + "nominal_voltage": "120.09", + "parent": "sx3122826a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7360", + "y": "-12706" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3086078a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-2162", + "y": "7505" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1564.26", + "base_power_2": "7580.07", + "name": "ld_218473a0a", + "nominal_voltage": "120.09", + "parent": "sx3086078a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2373", + "y": "7607" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2898457a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "251", + "y": "-7941" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4041.13", + "base_power_2": "2711.45", + "name": "ld_260594a0a", + "nominal_voltage": "120.09", + "parent": "sx2898457a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "293", + "y": "-8171" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108299", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-14772", + "y": "7460" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108298", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-14540", + "y": "7282" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2983432a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6046", + "y": "7704" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3608.66", + "base_power_2": "8628.45", + "name": "ld_225534325a0b", + "nominal_voltage": "120.09", + "parent": "sx2983432a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5924", + "y": "7913" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108295", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-14740", + "y": "6395" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3066817a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "20058", + "y": "-6539" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "12664.62", + "base_power_2": "5624.04", + "name": "ld_21373784a0b", + "nominal_voltage": "120.09", + "parent": "sx3066817a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "20282", + "y": "-6479" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2000800", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-12832", + "y": "702" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1009720", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10464", + "y": "-5162" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3235254c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "6029", + "y": "-10650" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1009724", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10086", + "y": "-5126" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000413a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-14104", + "y": "-5258" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1009726", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "9716", + "y": "-5082" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000415a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-14693", + "y": "-5641" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3122825a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7000", + "y": "7859" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6946.48", + "base_power_2": "6764.86", + "name": "ld_2118808a0b", + "nominal_voltage": "120.09", + "parent": "sx3122825a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-7195", + "y": "7990" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3156034a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "11426", + "y": "-5381" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "221-240988", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "12961", + "y": "-3500" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001309a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-16583", + "y": "-6368" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "221-240991", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "19357", + "y": "-6746" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3102793", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "9916", + "y": "10774" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3066818b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-1461", + "y": "-11256" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9888.98", + "base_power_2": "3234.73", + "name": "ld_138751b0a", + "nominal_voltage": "120.09", + "parent": "sx3066818b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1679", + "y": "-11314" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3181545", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-4222", + "y": "-182" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3159645", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6283", + "y": "6950" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916598", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "2449", + "y": "-15456" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916599", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "2056", + "y": "-16206" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3235253a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5315", + "y": "-12434" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000414a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-14360", + "y": "-5531" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879078a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "16955", + "y": "-7412" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879078a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2879078a", + "phases": "AS", + "x": "17171", + "y": "-7293" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "1866.94", + "base_power_2": "3617.60", + "name": "ld_21399229a0b", + "nominal_voltage": "120.09", + "parent": "sx2879078a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "17175", + "y": "-7463" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2973150", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "13286", + "y": "-6270" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2929261a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6731", + "y": "6713" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2973152", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4919", + "y": "-4191" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2804249c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-14904", + "y": "5372" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "hvmv69s1s2_10", + "nominal_voltage": "39837.17", + "phases": "ABCN", + "x": "6438", + "y": "-1934" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973151", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-4811", + "y": "-13766" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p901946", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6861", + "y": "8467" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p901945", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "92", + "y": "-6976" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5956499-2_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-223", + "y": "2293" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160793c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "1079", + "y": "-8539" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4095.32", + "base_power_2": "5286.13", + "name": "ld_2147899c0a", + "nominal_voltage": "120.09", + "parent": "sx3160793c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1128", + "y": "-8767" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108302", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-14639", + "y": "7925" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "196-31070", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "398", + "y": "6057" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879054a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-17356", + "y": "2674" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108311", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-13739", + "y": "6569" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2822863c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-10768", + "y": "-2882" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p901941", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-1065", + "y": "-567" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104123c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "9467", + "y": "2804" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3649299a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6304", + "y": "-12608" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2674052", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-19178", + "y": "5676" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973144", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-3416", + "y": "-1840" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2955005b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "163", + "y": "-8736" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2955005b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2955005b", + "phases": "BS", + "x": "234", + "y": "-8972" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3489.40", + "base_power_2": "5624.01", + "name": "ld_260589b0b", + "nominal_voltage": "120.09", + "parent": "sx2955005b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "377", + "y": "-8834" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "e192258", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "518", + "y": "-1646" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973146", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "3207", + "y": "-9852" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3160103c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "9900", + "y": "1806" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2973149", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-8738", + "y": "-12974" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973148", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "11494", + "y": "12788" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879077b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "251", + "y": "14573" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3408.17", + "base_power_2": "2612.45", + "name": "ld_337709b0a", + "nominal_voltage": "120.09", + "parent": "sx2879077b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "58", + "y": "14702" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2674051", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-11225", + "y": "6179" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973161", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "18958", + "y": "-128" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973160", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "10115", + "y": "-5753" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973163", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-13071", + "y": "12793" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973162", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-7527", + "y": "5652" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3649298a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6594", + "y": "-12175" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108317", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-15279", + "y": "5807" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p901934", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8194", + "y": "13526" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216342b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "5034", + "y": "-1751" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3276.26", + "base_power_2": "6754.67", + "name": "ld_337645b0b", + "nominal_voltage": "120.09", + "parent": "sx3216342b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5237", + "y": "-1855" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3215385c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-14662", + "y": "2953" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3215385b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14690", + "y": "3109" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p901936", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-1189", + "y": "-2135" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3215385a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-14625", + "y": "3233" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108316", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-14205", + "y": "6104" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108315", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-13489", + "y": "6298" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895075", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "8318", + "y": "13916" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e184626", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "3891", + "y": "5747" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2822864c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-17608", + "y": "4220" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2879055c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-3374", + "y": "-2079" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p901931", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "5535", + "y": "1969" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104124b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "12886", + "y": "3956" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p901933", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4579", + "y": "1543" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p901932", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "5046", + "y": "1807" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2802481", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-1153", + "y": "-3787" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973154", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3316", + "y": "4117" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3010557a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8943", + "y": "15001" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2116.87", + "base_power_2": "3367.67", + "name": "ld_21380453a0b", + "nominal_voltage": "120.09", + "parent": "sx3010557a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8918", + "y": "15232" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2802480", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-2367", + "y": "-6055" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973153", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8642", + "y": "2805" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973156", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-1733", + "y": "1114" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973155", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-348", + "y": "2256" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2857591a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2266", + "y": "-13879" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4643.21", + "base_power_2": "3934.11", + "name": "ld_226101460a0b", + "nominal_voltage": "120.09", + "parent": "sx2857591a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2493", + "y": "-13919" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2955006c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "10478", + "y": "13689" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1311.54", + "base_power_2": "9172.99", + "name": "ld_356797c0b", + "nominal_voltage": "120.09", + "parent": "sx2955006c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "10707", + "y": "13739" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2973158", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-7563", + "y": "-2429" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2674047", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-3096", + "y": "5959" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973157", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "3312", + "y": "-6566" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3160102b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "6403", + "y": "-3603" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2973159", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8720", + "y": "-8855" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879076c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8767", + "y": "-5783" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879076c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2879076c", + "phases": "CS", + "x": "-8696", + "y": "-6010" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "2693.63", + "base_power_2": "1502.25", + "name": "ld_138380c0b", + "nominal_voltage": "120.09", + "parent": "sx2879076c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8904", + "y": "-5969" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p895080", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4529", + "y": "4530" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895082", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "8173", + "y": "12887" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3160100b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-7737", + "y": "-12193" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3649297a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6745", + "y": "-11560" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2804247b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-15596", + "y": "16053" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3226771a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "17706", + "y": "-5565" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p895089", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "11036", + "y": "11291" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216343c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-13385", + "y": "1302" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3454.22", + "base_power_2": "10123.10", + "name": "ld_337626c0b", + "nominal_voltage": "120.09", + "parent": "sx3216343c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-13537", + "y": "1476" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3189189b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "15811", + "y": "-7638" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p895087", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "10762", + "y": "12411" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2822865c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-17002", + "y": "4040" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2688692", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-14330", + "y": "4318" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3177665a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13421", + "y": "-945" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3912.86", + "base_power_2": "12891.26", + "name": "ld_227731863a0a", + "nominal_voltage": "120.09", + "parent": "sx3177665a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "13651", + "y": "-978" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104121a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3902", + "y": "-16434" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2711224", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9248", + "y": "2042" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3067507c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-817", + "y": "7286" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160101a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7653", + "y": "5176" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2711225", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-328", + "y": "4612" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879075a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5885", + "y": "-8620" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1898.39", + "base_power_2": "3586.14", + "name": "ld_337724a0b", + "nominal_voltage": "120.09", + "parent": "sx2879075a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5891", + "y": "-8851" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2711226", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-4800", + "y": "5231" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3010556a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-4797", + "y": "-10769" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3110.44", + "base_power_2": "2374.10", + "name": "ld_138655a0b", + "nominal_voltage": "120.09", + "parent": "sx3010556a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5012", + "y": "-10849" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2917328b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-10543", + "y": "4324" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2764403a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "14224", + "y": "1592" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2804248b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-7897", + "y": "-11623" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673331b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "5559", + "y": "7475" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673331b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2673331b", + "phases": "BS", + "x": "5403", + "y": "7676" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "2307.02", + "base_power_2": "17744.53", + "name": "ld_338990b0b", + "nominal_voltage": "120.09", + "parent": "sx2673331b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5326", + "y": "7525" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2688693", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-14455", + "y": "4677" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216344b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4348", + "y": "3584" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2318.41", + "base_power_2": "17733.14", + "name": "ld_323264b0a", + "nominal_voltage": "120.09", + "parent": "sx3216344b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4586", + "y": "3567" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2801902b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "9643", + "y": "9591" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9416.05", + "base_power_2": "5625.19", + "name": "ld_226194002b0b", + "nominal_voltage": "120.09", + "parent": "sx2801902b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9513", + "y": "9786" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2822866b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "7485", + "y": "4725" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p901951", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-6481", + "y": "13621" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108300", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-14995", + "y": "7639" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841619c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-11166", + "y": "-4925" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3626914c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-4958", + "y": "-3351" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4714.67", + "base_power_2": "1573.99", + "name": "ld_2224179616c0b", + "nominal_voltage": "120.09", + "parent": "sx3626914c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4799", + "y": "-3501" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104122a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-4241", + "y": "-15123" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2711234", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-15215", + "y": "7814" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2859391", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "8479", + "y": "-4052" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3067506c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "4569", + "y": "2498" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879074a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6236", + "y": "-9430" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4476.12", + "base_power_2": "4101.20", + "name": "ld_310560a0a", + "nominal_voltage": "120.09", + "parent": "sx2879074a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6148", + "y": "-9647" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p901909", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4082", + "y": "-4926" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710546b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "547", + "y": "12169" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108347", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-18325", + "y": "5050" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p901905", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "10556", + "y": "7623" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001315a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-16260", + "y": "-8570" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2897807b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-1746", + "y": "3511" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108354", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-17254", + "y": "4345" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897806c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-1243", + "y": "159" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108353", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-15896", + "y": "3345" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108356", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-19043", + "y": "5467" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108355", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-18567", + "y": "5197" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108350", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-17587", + "y": "4503" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108352", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-18806", + "y": "5334" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254230a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "12571", + "y": "-4621" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1259.43", + "base_power_2": "3658.09", + "name": "ld_338989a0a", + "nominal_voltage": "120.09", + "parent": "sx3254230a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12523", + "y": "-4848" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3189188c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "16100", + "y": "-7845" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "e192201", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-1149", + "y": "7106" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3037538", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-1590", + "y": "-13671" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3037537", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "2734", + "y": "-9681" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729430b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "5876", + "y": "-7497" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104157c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "3719", + "y": "-2900" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6295.02", + "base_power_2": "4189.52", + "name": "ld_293427c0b", + "nominal_voltage": "120.09", + "parent": "sx3104157c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3893", + "y": "-3051" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2841618a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5714", + "y": "4223" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001314a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-16519", + "y": "-8289" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3104120b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2506", + "y": "-12176" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108364", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-15282", + "y": "1448" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108361", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-15138", + "y": "2409" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2692655c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-3437", + "y": "6148" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4908.68", + "base_power_2": "5575.86", + "name": "ld_21389307c0b", + "nominal_voltage": "120.09", + "parent": "sx2692655c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3389", + "y": "6381" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108360", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-17851", + "y": "4477" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3214055c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8645", + "y": "7225" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2822860b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-10673", + "y": "-13935" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3198356c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-18106", + "y": "4723" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3198358", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-14687", + "y": "8540" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3198356", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-17857", + "y": "4691" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3198355", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-15461", + "y": "7904" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254231a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13587", + "y": "-3724" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3254231a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3254231a", + "phases": "AS", + "x": "13841", + "y": "-3698" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3608.45", + "base_power_2": "5134.09", + "name": "ld_338988a0a", + "nominal_voltage": "120.09", + "parent": "sx3254231a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "13748", + "y": "-3897" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2878848c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11134", + "y": "1622" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8795.70", + "base_power_2": "6936.26", + "name": "ld_2212168887c0a", + "nominal_voltage": "120.09", + "parent": "sx2878848c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11357", + "y": "1669" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m3949154", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "15317", + "y": "3887" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104154c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2754", + "y": "-295" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9814.51", + "base_power_2": "5917.45", + "name": "ld_337642c0a", + "nominal_voltage": "120.09", + "parent": "sx3104154c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2737", + "y": "-67" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m3949157", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "15156", + "y": "3087" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3178969b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "3859", + "y": "-12294" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5224.41", + "base_power_2": "3888.99", + "name": "ld_355596b0b", + "nominal_voltage": "120.09", + "parent": "sx3178969b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3861", + "y": "-12526" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2973171", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "8405", + "y": "7404" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108329", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-16783", + "y": "5490" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710544a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "2064", + "y": "-4296" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108328", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-15970", + "y": "5601" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3037540", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-14970", + "y": "1810" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p901927", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "7564", + "y": "2578" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069398", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-7213", + "y": "4914" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001313a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-16176", + "y": "-7911" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108331", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-16445", + "y": "5022" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108334", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-16699", + "y": "5057" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841616a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-1715", + "y": "4426" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2822861a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-1800", + "y": "4080" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3198355b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-15702", + "y": "7973" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2973165", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "3288", + "y": "-12487" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973164", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-4955", + "y": "9723" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973167", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "15661", + "y": "-6622" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973166", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "17459", + "y": "-9331" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973169", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "11896", + "y": "-4649" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3066821a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "10740", + "y": "-5983" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7935.10", + "base_power_2": "1209.23", + "name": "ld_391994a0a", + "nominal_voltage": "120.09", + "parent": "sx3066821a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "10606", + "y": "-6171" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104155c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2023", + "y": "226" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104155c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3104155c", + "phases": "CS", + "x": "-1793", + "y": "270" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "2591.78", + "base_power_2": "7892.76", + "name": "ld_21474587c0a", + "nominal_voltage": "120.09", + "parent": "sx3104155c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2154", + "y": "411" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2973180", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "801", + "y": "13993" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879079b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-11473", + "y": "12015" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3601.52", + "base_power_2": "2419.10", + "name": "ld_391756b0a", + "nominal_voltage": "120.09", + "parent": "sx2879079b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-11453", + "y": "12248" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p901913", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "17366", + "y": "-1208" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001312a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-16578", + "y": "-7641" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p901912", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "15347", + "y": "-668" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3157718a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "7549", + "y": "13880" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001009b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-10151", + "y": "4870" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2710543c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "828", + "y": "3026" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069384", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-6348", + "y": "4305" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108335", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-16455", + "y": "4609" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "regxfmr_hvmv11sub2_lsb", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "5548", + "y": "-2589" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841615a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "1432", + "y": "-17166" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2897805a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4319", + "y": "-1263" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108345", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-18086", + "y": "4885" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748840b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "657", + "y": "-4485" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1442.16", + "base_power_2": "4578.46", + "name": "ld_157717b0b", + "nominal_voltage": "120.09", + "parent": "sx2748840b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "686", + "y": "-4720" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3047058a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "14042", + "y": "-7142" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069393", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-717", + "y": "1381" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108344", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-16271", + "y": "3787" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2822862c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-15369", + "y": "1791" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069390", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-5798", + "y": "3735" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108340", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-16473", + "y": "4191" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p901910", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3760", + "y": "3296" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973178", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-1143", + "y": "3545" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3010559a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7645", + "y": "5515" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3221.11", + "base_power_2": "5356.21", + "name": "ld_337679a0b", + "nominal_voltage": "120.09", + "parent": "sx3010559a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-7805", + "y": "5689" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3216349b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-50", + "y": "14277" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5366.77", + "base_power_2": "3746.63", + "name": "ld_337708b0a", + "nominal_voltage": "120.09", + "parent": "sx3216349b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-258", + "y": "14383" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2748139b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "3044", + "y": "-12262" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2804248", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-7771", + "y": "-11420" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804249", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-14666", + "y": "5375" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2767342a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5666", + "y": "11802" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001311a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-16639", + "y": "-7243" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001008b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-10609", + "y": "4736" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2710542b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "5610", + "y": "-7023" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069376", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-3740", + "y": "790" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785519", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-4500", + "y": "-14536" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001315", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-16319", + "y": "-8314" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000711b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-18502", + "y": "-292" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000711b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000711b", + "phases": "BS", + "x": "-18605", + "y": "-510" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3382.28", + "base_power_2": "4710.87", + "name": "ld_2000711b0a", + "nominal_voltage": "120.09", + "parent": "sx2000711b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-18730", + "y": "-339" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2785518", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-3453", + "y": "-911" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3215549", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4349", + "y": "10330" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001314", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-16395", + "y": "-8055" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785517", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "10928", + "y": "-4927" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001313", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-16372", + "y": "-7749" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785516", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4355", + "y": "1336" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069382", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-4451", + "y": "2116" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001312", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-16436", + "y": "-7425" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785515", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-11156", + "y": "-4727" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254231", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "13108", + "y": "-3562" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785514", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-6617", + "y": "4566" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804250", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-16601", + "y": "3955" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000408a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-13138", + "y": "-3745" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000408a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000408a", + "phases": "AS", + "x": "-13010", + "y": "-3947" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "6774.98", + "name": "ld_2000408a0a", + "nominal_voltage": "120.09", + "parent": "sx2000408a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-13218", + "y": "-3959" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "e193509", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-612", + "y": "6947" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785513", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-7486", + "y": "4931" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3157710b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4180", + "y": "8092" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2785512", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-8816", + "y": "-12471" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254230", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "12853", + "y": "-4225" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785511", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8639", + "y": "14769" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804253", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-5115", + "y": "-13491" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2690941", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-2519", + "y": "16944" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804254", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3868", + "y": "4487" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209772", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "721", + "y": "-1483" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3101789a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9524", + "y": "-4404" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4059.65", + "base_power_2": "5084.68", + "name": "ld_294842a0b", + "nominal_voltage": "120.09", + "parent": "sx3101789a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9538", + "y": "-4170" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2804251", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-2231", + "y": "-11960" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804252", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3556", + "y": "10597" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254234", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "4970", + "y": "-8906" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804257", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "10699", + "y": "7393" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209775", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "1319", + "y": "-847" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001311", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-16453", + "y": "-7067" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2954346b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4001", + "y": "14559" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2804258", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-898", + "y": "6667" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209776", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "1501", + "y": "-551" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001310", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-16423", + "y": "-6684" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3030126c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-794", + "y": "-7492" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2804255", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "2840", + "y": "4943" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254237", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-7759", + "y": "-8369" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3235249a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "1920", + "y": "-16758" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1490.49", + "base_power_2": "2169.31", + "name": "ld_356014a0a", + "nominal_voltage": "120.09", + "parent": "sx3235249a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2026", + "y": "-16966" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2804256", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10867", + "y": "3047" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254238", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6621", + "y": "-4486" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209774", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "1136", + "y": "-1143" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3120504", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8996", + "y": "18938" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3120503", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9422", + "y": "18778" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3195318b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "70", + "y": "3367" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1915.06", + "base_power_2": "4105.56", + "name": "ld_226194280b0a", + "nominal_voltage": "120.09", + "parent": "sx3195318b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "295", + "y": "3434" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2804259", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-8689", + "y": "6616" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729434b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "12550", + "y": "6391" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5712587-2_int", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9030", + "y": "10741" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2767343c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-9262", + "y": "19497" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3139103", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9750", + "y": "16224" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001007b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-10918", + "y": "4331" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2989565", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-11469", + "y": "6390" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001310a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-16637", + "y": "-6823" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2989566", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-2715", + "y": "-6367" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001309", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-16345", + "y": "-6285" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d6141147-1_int", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-14927", + "y": "5902" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069363", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-6145", + "y": "-4870" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069365", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-6296", + "y": "-5338" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069364", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-6261", + "y": "-5091" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001304", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-15689", + "y": "-4050" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2989571", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8587", + "y": "19854" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001303", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-15501", + "y": "-3561" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001302", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-15297", + "y": "-3058" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001301", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-14865", + "y": "-2010" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000712b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-18908", + "y": "444" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000712b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000712b", + "phases": "BS", + "x": "-19124", + "y": "556" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7826.98", + "base_power_2": "5045.74", + "name": "ld_2000712b0b", + "nominal_voltage": "120.09", + "parent": "sx2000712b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-18957", + "y": "673" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2804260", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-13249", + "y": "13302" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254220", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "3578", + "y": "-13126" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001308", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-16218", + "y": "-5880" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2786266a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4743", + "y": "4061" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3718.08", + "base_power_2": "4859.24", + "name": "ld_260631a0b", + "nominal_voltage": "120.09", + "parent": "sx2786266a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4913", + "y": "3909" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2804261", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-5119", + "y": "310" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001307", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-16123", + "y": "-5445" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001306", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-16003", + "y": "-4993" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000909c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-12338", + "y": "6291" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2001305", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-15857", + "y": "-4528" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209782", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-1954", + "y": "7816" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2990826c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-11346", + "y": "-6432" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9275.26", + "base_power_2": "1209.28", + "name": "ld_337619c0b", + "nominal_voltage": "120.09", + "parent": "sx2990826c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-11567", + "y": "-6522" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2804262", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "2932", + "y": "-13798" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000409a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-13358", + "y": "-4136" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000409a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000409a", + "phases": "AS", + "x": "-13217", + "y": "-4332" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5165.33", + "base_power_2": "9755.56", + "name": "ld_2000409a0a", + "nominal_voltage": "120.09", + "parent": "sx2000409a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-13417", + "y": "-4358" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2990826a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-11234", + "y": "-6654" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9022.45", + "base_power_2": "3214.66", + "name": "ld_337619a0b", + "nominal_voltage": "120.09", + "parent": "sx2990826a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-11418", + "y": "-6808" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3101788a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9179", + "y": "15620" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2137.75", + "base_power_2": "7006.58", + "name": "ld_321878a0a", + "nominal_voltage": "120.09", + "parent": "sx3101788a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8963", + "y": "15708" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2954345c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "4403", + "y": "5532" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2990826b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-11021", + "y": "-6785" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2387.00", + "base_power_2": "7643.93", + "name": "ld_337619b0b", + "nominal_voltage": "120.09", + "parent": "sx2990826b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-11144", + "y": "-6990" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3254228", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "13030", + "y": "9471" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001300", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-14686", + "y": "-1475" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804269", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "12189", + "y": "10414" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254229", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "7845", + "y": "4875" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209787", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "92", + "y": "5266" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3235248c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "7248", + "y": "8371" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1376.83", + "base_power_2": "4911.83", + "name": "ld_321861c0a", + "nominal_voltage": "120.09", + "parent": "sx3235248c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7021", + "y": "8337" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3120502", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-4245", + "y": "-15579" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254227", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "6940", + "y": "5079" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3011229a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5157", + "y": "11363" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3141412", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "10285", + "y": "-5551" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv69sub2_lnb", + "nominal_voltage": "39837.17", + "phases": "ABCN", + "x": "6650", + "y": "-2341" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2876797", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-2028", + "y": "1940" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209788", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-302", + "y": "5703" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2876798", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "2947", + "y": "-200" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3141411", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "13222", + "y": "-3413" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3207907", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16963", + "y": "-6298" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2876796", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3404", + "y": "2859" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3085410b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "8515", + "y": "6063" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3085410b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3085410b", + "phases": "BS", + "x": "8703", + "y": "6209" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7513.53", + "base_power_2": "5945.48", + "name": "ld_339097b0a", + "nominal_voltage": "120.09", + "parent": "sx3085410b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8742", + "y": "6006" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3195751a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-5556", + "y": "-16712" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5234.47", + "base_power_2": "3909.86", + "name": "ld_293681a0a", + "nominal_voltage": "120.09", + "parent": "sx3195751a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5702", + "y": "-16896" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069356", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-6007", + "y": "-4665" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001006b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-10995", + "y": "3565" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "293471", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6820", + "y": "-5531" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3195315a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5381", + "y": "-13171" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5911.74", + "base_power_2": "3232.59", + "name": "ld_226193662a0a", + "nominal_voltage": "120.09", + "parent": "sx3195315a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5588", + "y": "-13279" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2745811c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8121", + "y": "15601" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2916610b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "16490", + "y": "-9248" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2801909c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "1857", + "y": "5120" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3772.93", + "base_power_2": "3515.73", + "name": "ld_226195333c0b", + "nominal_voltage": "120.09", + "parent": "sx2801909c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1920", + "y": "5344" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3142098b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9497", + "y": "1316" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2989564", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "12384", + "y": "10673" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209790", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-659", + "y": "6142" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2692654a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-10016", + "y": "3476" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4285.41", + "base_power_2": "1199.12", + "name": "ld_260487a0b", + "nominal_voltage": "120.09", + "parent": "sx2692654a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-10196", + "y": "3325" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000406a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-12687", + "y": "-2927" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000406a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000406a", + "phases": "AS", + "x": "-12643", + "y": "-3158" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "10744.60", + "base_power_2": "3735.48", + "name": "ld_2000406a0b", + "nominal_voltage": "120.09", + "parent": "sx2000406a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-12481", + "y": "-3029" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3081380", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "201", + "y": "7221" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136672", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "10315", + "y": "-1191" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2767340c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "726", + "y": "-7287" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3198348", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "298", + "y": "5047" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000908c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-12355", + "y": "5775" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3198347", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "5614", + "y": "1690" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209791", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-1020", + "y": "6584" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2767340a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "759", + "y": "-7485" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160109b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "15767", + "y": "-825" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m1089-dies1", + "nominal_voltage": "277.13", + "phases": "ABCN", + "x": "11321", + "y": "9819" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089-dies1_dgmtr", + "nominal_voltage": "277.13", + "parent": "m1089-dies1", + "phases": "ABCN", + "x": "11474", + "y": "9997" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "x2767340b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "513", + "y": "-7662" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d6108145-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "15986", + "y": "-7311" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209797", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-1253", + "y": "6992" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p1164481", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "14530", + "y": "733" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3235247a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "12596", + "y": "4826" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3831.67", + "base_power_2": "4745.65", + "name": "ld_321836a0a", + "nominal_voltage": "120.09", + "parent": "sx3235247a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12782", + "y": "4972" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1209795", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-560", + "y": "5696" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104129a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "17294", + "y": "2273" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2954348a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "1636", + "y": "-16859" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3141401", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "16984", + "y": "3220" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3141402", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "13817", + "y": "-4776" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3141400", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-14084", + "y": "2613" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069348", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-5860", + "y": "-4466" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2991640c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-14043", + "y": "1110" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001005b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-11489", + "y": "3445" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000710b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-18145", + "y": "482" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000710b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000710b", + "phases": "BS", + "x": "-18349", + "y": "610" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "6757.41", + "base_power_2": "5256.39", + "name": "ld_2000710b0a", + "nominal_voltage": "120.09", + "parent": "sx2000710b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-18166", + "y": "714" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3176656a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "2726", + "y": "3346" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069350", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-5030", + "y": "-2650" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3142099b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "593", + "y": "-3292" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3198358b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14835", + "y": "8739" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000407a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-12934", + "y": "-3345" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000407a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000407a", + "phases": "AS", + "x": "-12899", + "y": "-3579" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5091.80", + "base_power_2": "8606.83", + "name": "ld_2000407a0a", + "nominal_voltage": "120.09", + "parent": "sx2000407a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-12744", + "y": "-3476" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2898522a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6539", + "y": "3417" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000907c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-12744", + "y": "5369" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3235246b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4070", + "y": "13688" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2926.95", + "base_power_2": "3093.67", + "name": "ld_323279b0a", + "nominal_voltage": "120.09", + "parent": "sx3235246b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4265", + "y": "13814" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2767341c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-485", + "y": "-6410" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160108b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "2774", + "y": "-11834" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2804247", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-15364", + "y": "15969" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2954347b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "12659", + "y": "3037" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3141403", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-1198", + "y": "-13314" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804245", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "3760", + "y": "-11354" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3727712a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "14483", + "y": "3776" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4014.75", + "base_power_2": "5129.58", + "name": "ld_2224386889a0a", + "nominal_voltage": "120.09", + "parent": "sx3727712a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "14417", + "y": "4000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197640c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "18396", + "y": "-1998" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3216345b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "7397", + "y": "-9896" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7328.67", + "base_power_2": "7712.57", + "name": "ld_338933b0b", + "nominal_voltage": "120.09", + "parent": "sx3216345b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7279", + "y": "-9706" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069335", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-5523", + "y": "-4087" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5860423-3_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16059", + "y": "1683" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001004b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-11713", + "y": "2973" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000404a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-12634", + "y": "-1696" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000404a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000404a", + "phases": "AS", + "x": "-12848", + "y": "-1803" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7219.24", + "base_power_2": "3941.14", + "name": "ld_2000404a0a", + "nominal_voltage": "120.09", + "parent": "sx2000404a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-12828", + "y": "-1568" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3065750b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2074", + "y": "17625" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6851.75", + "base_power_2": "3179.18", + "name": "ld_323389b0b", + "nominal_voltage": "120.09", + "parent": "sx3065750b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2000", + "y": "17848" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3235245c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "13016", + "y": "-2030" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5233.85", + "base_power_2": "1054.81", + "name": "ld_337712c0b", + "nominal_voltage": "120.09", + "parent": "sx3235245c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "13249", + "y": "-2074" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2724120c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-3098", + "y": "-1471" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2804245b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "3891", + "y": "-11154" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3048196b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5042", + "y": "1078" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2374.63", + "base_power_2": "3645.99", + "name": "ld_138237b0a", + "nominal_voltage": "120.09", + "parent": "sx3048196b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5084", + "y": "1311" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2000906c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-12854", + "y": "4876" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3104127b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "1067", + "y": "-720" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160107a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-13106", + "y": "1925" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3120534", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5008", + "y": "12785" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2822867b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-495", + "y": "2950" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973150a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13471", + "y": "-6456" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3216346a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "11931", + "y": "-6098" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4595.48", + "base_power_2": "3981.84", + "name": "ld_391991a0a", + "nominal_voltage": "120.09", + "parent": "sx3216346a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11706", + "y": "-6071" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069328", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3999", + "y": "-6931" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2842379a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-10197", + "y": "2882" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2604.47", + "base_power_2": "11106.87", + "name": "ld_260488a0b", + "nominal_voltage": "120.09", + "parent": "sx2842379a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-10368", + "y": "2721" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001003b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-11964", + "y": "2498" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2917310b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8625", + "y": "1179" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5162.48", + "base_power_2": "3950.92", + "name": "ld_260503b0b", + "nominal_voltage": "120.09", + "parent": "sx2917310b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8475", + "y": "997" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3122835b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "10024", + "y": "9522" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p901972", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "9365", + "y": "-5081" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2972704", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-9589", + "y": "-6514" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3253570c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-6060", + "y": "13465" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000405a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-12317", + "y": "-2511" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000405a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000405a", + "phases": "AS", + "x": "-12192", + "y": "-2707" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "9632.76", + "name": "ld_2000405a0a", + "nominal_voltage": "120.09", + "parent": "sx2000405a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-12471", + "y": "-2678" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d5774457-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "7286", + "y": "-1551" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3160106a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "10475", + "y": "-7821" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3104128a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-16091", + "y": "2681" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000905c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-12922", + "y": "4373" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3235244a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-7393", + "y": "4705" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6169.24", + "base_power_2": "2975.09", + "name": "ld_337676a0a", + "nominal_voltage": "120.09", + "parent": "sx3235244a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-7625", + "y": "4688" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2822868a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "18674", + "y": "-9412" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3118855c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11217", + "y": "10982" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3380.62", + "base_power_2": "12351.33", + "name": "ld_339052c0b", + "nominal_voltage": "120.09", + "parent": "sx3118855c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11417", + "y": "11098" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3216347c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-6269", + "y": "-3041" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3216347c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3216347c", + "phases": "CS", + "x": "-6089", + "y": "-3194" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4804.44", + "base_power_2": "1484.22", + "name": "ld_138413c0a", + "nominal_voltage": "120.09", + "parent": "sx3216347c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6280", + "y": "-3268" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069312", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-4974", + "y": "-5563" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069311", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-5168", + "y": "-5168" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001002b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-12106", + "y": "1842" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069310", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-5646", + "y": "-5160" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3179682c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-13890", + "y": "7258" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4876.13", + "base_power_2": "1412.53", + "name": "ld_207292c0b", + "nominal_voltage": "120.09", + "parent": "sx3179682c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-13952", + "y": "7483" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3727710a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "15923", + "y": "3740" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "11732.01", + "base_power_2": "1979.33", + "name": "ld_2224386863a0b", + "nominal_voltage": "120.09", + "parent": "sx3727710a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "16103", + "y": "3894" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3233353", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-5587", + "y": "-16245" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000402a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-11989", + "y": "-893" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000402a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000402a", + "phases": "AS", + "x": "-12204", + "y": "-994" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "5402.72", + "name": "ld_2000402a0a", + "nominal_voltage": "120.09", + "parent": "sx2000402a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-12179", + "y": "-762" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2804271", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "6583", + "y": "6655" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804272", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "6566", + "y": "6011" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104125b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-12280", + "y": "1316" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3235243c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-6281", + "y": "-6065" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3235243c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3235243c", + "phases": "CS", + "x": "-6274", + "y": "-6304" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "9227.85", + "base_power_2": "1256.69", + "name": "ld_275008c0b", + "nominal_voltage": "120.09", + "parent": "sx3235243c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6091", + "y": "-6190" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2804270", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "9563", + "y": "8919" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2954344c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11738", + "y": "-6310" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3179637c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8388", + "y": "16193" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3101787a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "10296", + "y": "15841" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4834.76", + "base_power_2": "4309.57", + "name": "ld_321877a0a", + "nominal_voltage": "120.09", + "parent": "sx3101787a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "10509", + "y": "15940" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2822869a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "20092", + "y": "-1166" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2933120", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "11600", + "y": "-7331" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3120376a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "2278", + "y": "-16062" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3667.85", + "base_power_2": "8569.26", + "name": "ld_226163467a0b", + "nominal_voltage": "120.09", + "parent": "sx3120376a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2369", + "y": "-16276" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2000904c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-12626", + "y": "3865" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973151a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5000", + "y": "-13919" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2804277", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "7615", + "y": "14396" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2767414c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-16532", + "y": "5677" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2340.59", + "base_power_2": "3948.07", + "name": "ld_351019c0b", + "nominal_voltage": "120.09", + "parent": "sx2767414c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-16681", + "y": "5857" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3160105c", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-9694", + "y": "-4125" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3216348a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3792", + "y": "-5423" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3216348a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3216348a", + "phases": "AS", + "x": "4021", + "y": "-5483" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "2008.17", + "base_power_2": "3476.37", + "name": "ld_337717a0b", + "nominal_voltage": "120.09", + "parent": "sx3216348a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3878", + "y": "-5633" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "r20185", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-481", + "y": "6531" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3139121", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "2483", + "y": "-1815" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069300", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-6118", + "y": "-5151" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3236004c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-1764", + "y": "-1519" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2323.12", + "base_power_2": "3965.54", + "name": "ld_260572c0b", + "nominal_voltage": "120.09", + "parent": "sx3236004c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1868", + "y": "-1313" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3727711a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "14860", + "y": "3726" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3255.18", + "base_power_2": "5322.14", + "name": "ld_2224386874a0a", + "nominal_voltage": "120.09", + "parent": "sx3727711a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "14756", + "y": "3937" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000403a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-11889", + "y": "-1693" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000403a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000403a", + "phases": "AS", + "x": "-11991", + "y": "-1904" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5906.56", + "base_power_2": "8533.21", + "name": "ld_2000403a0b", + "nominal_voltage": "120.09", + "parent": "sx2000403a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-11749", + "y": "-1876" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2674027", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "7397", + "y": "9482" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122837c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "5109", + "y": "-5873" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2804282", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-3899", + "y": "-168" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2989596", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "7529", + "y": "4446" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804283", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-4102", + "y": "-15234" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104126c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-10534", + "y": "-5754" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3048199b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9408", + "y": "-14503" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2822.73", + "base_power_2": "3197.89", + "name": "ld_323237b0a", + "nominal_voltage": "120.09", + "parent": "sx3048199b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9408", + "y": "-14739" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3235242c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11701", + "y": "11605" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6752.14", + "base_power_2": "3732.39", + "name": "ld_21380500c0a", + "nominal_voltage": "120.09", + "parent": "sx3235242c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11912", + "y": "11704" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2000903c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-12886", + "y": "3400" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973152b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5077", + "y": "-4362" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3231255c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11068", + "y": "10377" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160104b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "313", + "y": "13669" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2935557", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "3094", + "y": "-3958" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2935555", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5714", + "y": "5507" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2935556", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "12829", + "y": "3559" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3649305a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6681", + "y": "-14780" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2147.35", + "base_power_2": "3337.19", + "name": "ld_2224237718a0a", + "nominal_voltage": "120.09", + "parent": "sx3649305a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6776", + "y": "-14995" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001012b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9663", + "y": "6019" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3122816b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "9583", + "y": "1494" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2795.79", + "base_power_2": "7235.14", + "name": "ld_356062b0b", + "nominal_voltage": "120.09", + "parent": "sx3122816b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9542", + "y": "1722" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197632b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4361", + "y": "6252" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2935559", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3731", + "y": "10741" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2729406c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-11054", + "y": "-2345" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1714.36", + "base_power_2": "4574.30", + "name": "ld_337633c0b", + "nominal_voltage": "120.09", + "parent": "sx2729406c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-11285", + "y": "-2339" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3143999a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5435", + "y": "-1914" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3143999a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3143999a", + "phases": "AS", + "x": "-5670", + "y": "-1903" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "2620.55", + "base_power_2": "6523.78", + "name": "ld_226193696a0b", + "nominal_voltage": "120.09", + "parent": "sx3143999a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5593", + "y": "-1735" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2729423", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "5053", + "y": "1266" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729424", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "3776", + "y": "1213" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897769c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "1245", + "y": "3340" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2935560", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "16770", + "y": "-7181" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000707b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-16955", + "y": "-141" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000707b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000707b", + "phases": "BS", + "x": "-17174", + "y": "-236" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7524.49", + "base_power_2": "3849.14", + "name": "ld_2000707b0b", + "nominal_voltage": "120.09", + "parent": "sx2000707b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-17021", + "y": "-365" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197633a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3152", + "y": "4845" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3214055", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-8478", + "y": "7047" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3215385", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-14443", + "y": "3057" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000914c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-12226", + "y": "8226" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973165a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3141", + "y": "-12686" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3252336", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-2077", + "y": "-5920" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2935547", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "12978", + "y": "11227" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3649304a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6242", + "y": "-14606" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "11646.74", + "base_power_2": "2064.60", + "name": "ld_2224237713a0b", + "nominal_voltage": "120.09", + "parent": "sx3649304a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6228", + "y": "-14842" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001011b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9983", + "y": "5741" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3197631a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6414", + "y": "6026" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3122815b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "9931", + "y": "7417" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2099.42", + "base_power_2": "3921.20", + "name": "ld_321858b0a", + "nominal_voltage": "120.09", + "parent": "sx3122815b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9861", + "y": "7198" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2935549", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-1786", + "y": "3131" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729408", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "7921", + "y": "-876" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729409", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "2382", + "y": "-11823" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2729407b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4253", + "y": "-8033" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6015.39", + "base_power_2": "5226.03", + "name": "ld_247100b0a", + "nominal_voltage": "120.09", + "parent": "sx2729407b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4488", + "y": "-7991" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2916617b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "10420", + "y": "10094" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3784018a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-841", + "y": "1908" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2729405", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3724", + "y": "1631" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729406", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-10589", + "y": "-2335" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729407", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3794", + "y": "-7899" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729411", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "7155", + "y": "-12980" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973833", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "4050", + "y": "3283" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729412", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-7393", + "y": "4030" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729413", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "2820", + "y": "-14899" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729414", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "15703", + "y": "-5071" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729410", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "20667", + "y": "-907" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3157167", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "8686", + "y": "14518" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000708b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-17300", + "y": "501" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000708b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000708b", + "phases": "BS", + "x": "-17507", + "y": "622" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "9005.45", + "base_power_2": "5041.35", + "name": "ld_2000708b0b", + "nominal_voltage": "120.09", + "parent": "sx2000708b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-17304", + "y": "733" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2935550", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-14730", + "y": "1724" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2935553", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-6619", + "y": "-9215" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2935554", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "5769", + "y": "5188" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2935551", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-9957", + "y": "-1117" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2935552", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-16930", + "y": "5710" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000913c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-12103", + "y": "7866" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973166c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "17471", + "y": "-9575" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000911c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-12518", + "y": "7161" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001010b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9925", + "y": "5288" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2991909a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5339", + "y": "-2385" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5121.67", + "base_power_2": "4022.66", + "name": "ld_355773a0b", + "nominal_voltage": "120.09", + "parent": "sx2991909a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5171", + "y": "-2247" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx1108407b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-7880", + "y": "-7527" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "21492.05", + "base_power_2": "18801.51", + "name": "ld_2221108407b0b", + "nominal_voltage": "120.09", + "parent": "sx1108407b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8104", + "y": "-7442" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729408b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "7982", + "y": "-472" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1288.57", + "base_power_2": "10018.04", + "name": "ld_355768b0b", + "nominal_voltage": "120.09", + "parent": "sx2729408b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7939", + "y": "-246" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841641b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "5806", + "y": "6155" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2540.20", + "base_power_2": "3480.42", + "name": "ld_21380156b0a", + "nominal_voltage": "120.09", + "parent": "sx2841641b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5602", + "y": "6285" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197630a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-1935", + "y": "-11664" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2916618b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "12837", + "y": "10134" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3122818c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "5266", + "y": "-4652" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2080.65", + "base_power_2": "8403.88", + "name": "ld_2120183c0a", + "nominal_voltage": "120.09", + "parent": "sx3122818c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5042", + "y": "-4606" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000705b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-15918", + "y": "-253" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000705b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000705b", + "phases": "BS", + "x": "-16005", + "y": "-475" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "6084.88", + "base_power_2": "5032.91", + "name": "ld_2000705b0b", + "nominal_voltage": "120.09", + "parent": "sx2000705b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-16143", + "y": "-303" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2674052c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-19491", + "y": "6045" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1405.03", + "base_power_2": "4883.63", + "name": "ld_21393570c0a", + "nominal_voltage": "120.09", + "parent": "sx2674052c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-19654", + "y": "6213" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2897767c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11918", + "y": "-6820" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973167b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "15679", + "y": "-6846" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879752b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "355", + "y": "4182" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5250.97", + "base_power_2": "3862.43", + "name": "ld_330122b0a", + "nominal_voltage": "120.09", + "parent": "sx2879752b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "527", + "y": "4351" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2000912c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-12096", + "y": "7474" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2935568", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3877", + "y": "12861" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000910c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-12305", + "y": "6747" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2821770", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3028", + "y": "-5947" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2935566", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "5132", + "y": "926" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2935567", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "7209", + "y": "5310" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3122817c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "5214", + "y": "-3199" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2720.96", + "base_power_2": "3567.70", + "name": "ld_355779c0a", + "nominal_voltage": "120.09", + "parent": "sx3122817c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4995", + "y": "-3132" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2991908a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "662", + "y": "1588" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4746.24", + "base_power_2": "3831.08", + "name": "ld_338900a0a", + "nominal_voltage": "120.09", + "parent": "sx2991908a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "509", + "y": "1411" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729409b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "2024", + "y": "-12158" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2117.79", + "base_power_2": "7913.14", + "name": "ld_355605b0a", + "nominal_voltage": "120.09", + "parent": "sx2729409b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1833", + "y": "-12295" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2916619b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "10774", + "y": "9683" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3141411c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "13476", + "y": "-3349" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104830c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "7415", + "y": "6273" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3055.34", + "base_power_2": "1140.54", + "name": "ld_328367c0b", + "nominal_voltage": "120.09", + "parent": "sx3104830c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7647", + "y": "6342" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3215549b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4562", + "y": "10485" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3649302a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5967", + "y": "-14217" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "13546.68", + "base_power_2": "3257.45", + "name": "ld_2224237653a0b", + "nominal_voltage": "120.09", + "parent": "sx3649302a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5861", + "y": "-14427" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2729427", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-5608", + "y": "-6592" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729428", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9360", + "y": "-8522" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729429", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "18179", + "y": "-848" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2989571a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8650", + "y": "20086" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2674051a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-10895", + "y": "6544" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2674051a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2674051a", + "phases": "AS", + "x": "-10718", + "y": "6705" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "1155.53", + "base_power_2": "4329.00", + "name": "ld_21389831a0a", + "nominal_voltage": "120.09", + "parent": "sx2674051a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-10911", + "y": "6776" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2729434", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "12304", + "y": "6332" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3179650b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "3300", + "y": "-1750" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2729430", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "5640", + "y": "-7483" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000706b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-16437", + "y": "-219" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000706b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000706b", + "phases": "BS", + "x": "-16544", + "y": "-433" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "6205.46", + "base_power_2": "7341.95", + "name": "ld_2000706b0a", + "nominal_voltage": "120.09", + "parent": "sx2000706b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-16664", + "y": "-258" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2897768c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-10819", + "y": "-1935" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3141412a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "10039", + "y": "-5487" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2748152b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "12019", + "y": "5327" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3045895c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-16896", + "y": "5379" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879753b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9278", + "y": "356" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2607.19", + "base_power_2": "7423.74", + "name": "ld_21249674b0a", + "nominal_voltage": "120.09", + "parent": "sx2879753b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9241", + "y": "125" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2763153a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "1633", + "y": "-1239" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3067447a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6386", + "y": "330" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2766499c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11515", + "y": "1114" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "17273.48", + "base_power_2": "3695.60", + "name": "ld_2212168880c0a", + "nominal_voltage": "120.09", + "parent": "sx2766499c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11748", + "y": "1103" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3160793", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "927", + "y": "-8080" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691959b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4976", + "y": "-2045" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "15599.89", + "base_power_2": "24503.20", + "name": "ld_21400253b0a", + "nominal_voltage": "120.09", + "parent": "sx2691959b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5019", + "y": "-1837" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2861158c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-7686", + "y": "18004" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000703b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14761", + "y": "-304" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000703b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000703b", + "phases": "BS", + "x": "-14786", + "y": "-537" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5906.56", + "base_power_2": "5056.04", + "name": "ld_2000703b0a", + "nominal_voltage": "120.09", + "parent": "sx2000703b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-14978", + "y": "-382" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2897765b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8365", + "y": "-11536" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3197637c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-6389", + "y": "-7349" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3215340", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9146", + "y": "12087" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2973169a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "11775", + "y": "-4444" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2954338b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "4777", + "y": "-10210" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2748158a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "11013", + "y": "-6623" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3122819c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-7221", + "y": "-3433" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4974.64", + "base_power_2": "10757.32", + "name": "ld_302860c0b", + "nominal_voltage": "120.09", + "parent": "sx3122819c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-7166", + "y": "-3207" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2804250c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-16682", + "y": "3732" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000704b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-15370", + "y": "-281" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000704b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000704b", + "phases": "BS", + "x": "-15439", + "y": "-507" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "7856.24", + "base_power_2": "3895.83", + "name": "ld_2000704b0b", + "nominal_voltage": "120.09", + "parent": "sx2000704b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-15593", + "y": "-335" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2785547", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "280", + "y": "11136" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785546", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-2744", + "y": "-14582" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "r42246", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "13530", + "y": "118" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897766c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-15582", + "y": "1053" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3197636b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "529", + "y": "-259" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2785543", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "11117", + "y": "8802" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "r42247", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "1726", + "y": "7487" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048230c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "6681", + "y": "-3934" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7091.85", + "base_power_2": "3392.69", + "name": "ld_293490c0b", + "nominal_voltage": "120.09", + "parent": "sx3048230c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6861", + "y": "-3786" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1009691", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "10781", + "y": "-5567" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2748157a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13440", + "y": "1621" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2858175a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8593", + "y": "17918" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3936.97", + "base_power_2": "1547.56", + "name": "ld_225668688a0a", + "nominal_voltage": "120.09", + "parent": "sx2858175a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8403", + "y": "18052" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m1089-lng1", + "nominal_voltage": "277.13", + "phases": "ABCN", + "x": "-11387", + "y": "-3300" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089-lng1_dgmtr", + "nominal_voltage": "277.13", + "parent": "m1089-lng1", + "phases": "ABCN", + "x": "-11551", + "y": "-3137" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "l2729401", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "4082", + "y": "-12047" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2763811c", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3586", + "y": "-7392" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3125349c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-4869", + "y": "-1099" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2785538", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "12698", + "y": "-2657" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785537", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "13782", + "y": "1990" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785536", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "7486", + "y": "4600" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2842390c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-19535", + "y": "5495" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2785535", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "13938", + "y": "9857" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785534", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "6335", + "y": "2234" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048231b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4060", + "y": "-3449" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "17978.10", + "base_power_2": "2073.45", + "name": "ld_21400215b0a", + "nominal_voltage": "120.09", + "parent": "sx3048231b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4108", + "y": "-3224" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2785531", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "481", + "y": "-11826" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785530", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "18286", + "y": "-9071" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3197635b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-798", + "y": "6962" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2731712", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "10833", + "y": "8477" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3649306a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6735", + "y": "-13421" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "11291.37", + "base_power_2": "2419.97", + "name": "ld_2224238167a0a", + "nominal_voltage": "120.09", + "parent": "sx3649306a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6870", + "y": "-13615" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2917255c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2919", + "y": "-4316" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3984.68", + "base_power_2": "6499.86", + "name": "ld_21386065c0a", + "nominal_voltage": "120.09", + "parent": "sx2917255c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3065", + "y": "-4498" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3097861", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "7390", + "y": "14968" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2763812c", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3370", + "y": "-7688" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2954339b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14872", + "y": "15522" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2785529", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "3102", + "y": "-10836" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785528", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-2618", + "y": "-9758" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000702b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14119", + "y": "-300" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000702b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000702b", + "phases": "BS", + "x": "-14021", + "y": "-517" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "6693.57", + "base_power_2": "5402.72", + "name": "ld_2000702b0a", + "nominal_voltage": "120.09", + "parent": "sx2000702b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-14266", + "y": "-479" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2861157c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-6404", + "y": "13212" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2785527", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9435", + "y": "-8811" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785526", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-8719", + "y": "7664" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785525", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-9687", + "y": "-7218" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785524", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-10392", + "y": "-5546" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785523", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-5821", + "y": "-3042" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785522", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "11234", + "y": "6545" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785521", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "8833", + "y": "-7691" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1009698", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "11578", + "y": "-5641" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897764b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14439", + "y": "13529" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2785520", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3059", + "y": "-8783" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2898526c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-13419", + "y": "6933" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3197634b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "7042", + "y": "-1345" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3254915", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-5805", + "y": "6109" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3010562b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5449", + "y": "9687" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2077.32", + "base_power_2": "3943.30", + "name": "ld_325473b0a", + "nominal_voltage": "120.09", + "parent": "sx3010562b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5579", + "y": "9889" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2992624a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-8797", + "y": "4363" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1219.92", + "base_power_2": "4264.62", + "name": "ld_260484a0b", + "nominal_voltage": "120.09", + "parent": "sx2992624a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8741", + "y": "4140" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3448661b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4207", + "y": "16362" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1572.10", + "base_power_2": "4448.52", + "name": "ld_2223878647b0b", + "nominal_voltage": "120.09", + "parent": "sx3448661b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4263", + "y": "16590" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3159448a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5004", + "y": "-4843" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108398", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-8897", + "y": "-8575" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108393", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-686", + "y": "-3729" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108395", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-9414", + "y": "-8515" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860504", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "18463", + "y": "-8785" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254234b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "4584", + "y": "-8626" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7517.57", + "base_power_2": "2513.36", + "name": "ld_355586b0b", + "nominal_voltage": "120.09", + "parent": "sx3254234b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4533", + "y": "-8400" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991939b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "7344", + "y": "-1380" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2860506", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "10960", + "y": "6943" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3029183b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "1789", + "y": "15963" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3386.31", + "base_power_2": "5727.09", + "name": "ld_228580047b0b", + "nominal_voltage": "120.09", + "parent": "sx3029183b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1913", + "y": "16160" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2860500", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-5325", + "y": "9165" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860501", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3970", + "y": "3432" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3010561a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "7578", + "y": "-2076" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4998.93", + "base_power_2": "3578.39", + "name": "ld_337650a0b", + "nominal_voltage": "120.09", + "parent": "sx3010561a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7730", + "y": "-2257" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3142079", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9162", + "y": "1372" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691954b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2054", + "y": "-397" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5510.00", + "base_power_2": "4520.93", + "name": "ld_21399361b0b", + "nominal_voltage": "120.09", + "parent": "sx2691954b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2143", + "y": "-609" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673303c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11219", + "y": "-7266" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2970811a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8925", + "y": "16758" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1945.46", + "base_power_2": "7198.87", + "name": "ld_321881a0b", + "nominal_voltage": "120.09", + "parent": "sx2970811a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8705", + "y": "16836" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3142078", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-187", + "y": "3611" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785546a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2650", + "y": "-15055" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8152.17", + "base_power_2": "4084.94", + "name": "ld_21399752a0a", + "nominal_voltage": "120.09", + "parent": "sx2785546a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2602", + "y": "-15285" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2895461a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-4705", + "y": "-16552" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5991.50", + "base_power_2": "3152.83", + "name": "ld_294789a0a", + "nominal_voltage": "120.09", + "parent": "sx2895461a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4747", + "y": "-16785" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2897800", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4265", + "y": "10905" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897801", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-6071", + "y": "4031" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3142050c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8495", + "y": "14488" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5569.11", + "base_power_2": "3812.34", + "name": "ld_251865c0a", + "nominal_voltage": "120.09", + "parent": "sx3142050c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8727", + "y": "14478" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2897806", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-1437", + "y": "33" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897807", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-1626", + "y": "3298" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3082981c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-13211", + "y": "1760" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1174.36", + "base_power_2": "5114.30", + "name": "ld_226193737c0b", + "nominal_voltage": "120.09", + "parent": "sx3082981c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-13263", + "y": "1993" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2897805", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4149", + "y": "-1100" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2858200", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6408", + "y": "3391" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2917330a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-6955", + "y": "1978" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879092c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11877", + "y": "-3397" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "29602.88", + "base_power_2": "32428.05", + "name": "ld_21399326c0a", + "nominal_voltage": "120.09", + "parent": "sx2879092c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12064", + "y": "-3264" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3122810b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9118", + "y": "-13624" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9418.32", + "base_power_2": "3705.40", + "name": "ld_323242b0b", + "nominal_voltage": "120.09", + "parent": "sx3122810b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9065", + "y": "-13852" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1009651", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "11404", + "y": "-3908" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1009650", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10795", + "y": "-3695" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785547b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "753", + "y": "11175" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4645.18", + "base_power_2": "5385.75", + "name": "ld_337705b0a", + "nominal_voltage": "120.09", + "parent": "sx2785547b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "985", + "y": "11181" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3010560b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "11555", + "y": "-1161" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3529.56", + "base_power_2": "6501.37", + "name": "ld_338955b0a", + "nominal_voltage": "120.09", + "parent": "sx3010560b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11712", + "y": "-993" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108368", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-12746", + "y": "1625" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2763072b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-12645", + "y": "11900" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1656.01", + "base_power_2": "8374.92", + "name": "ld_226924200b0b", + "nominal_voltage": "120.09", + "parent": "sx2763072b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-12877", + "y": "11906" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2692660", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "771", + "y": "7553" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108375", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "811", + "y": "-7856" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108378", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-3446", + "y": "-6624" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108372", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-180", + "y": "-8597" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897554c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11978", + "y": "1738" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10173.51", + "base_power_2": "10795.56", + "name": "ld_2212168870c0a", + "nominal_voltage": "120.09", + "parent": "sx2897554c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12182", + "y": "1852" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197639a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8037", + "y": "-9532" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2692664", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-16947", + "y": "5115" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2692661", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5608", + "y": "3637" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3067448c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-6115", + "y": "14136" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3253995c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "10677", + "y": "-909" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3082983b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "8997", + "y": "8448" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8934.21", + "base_power_2": "1096.71", + "name": "ld_226193899b0a", + "nominal_voltage": "120.09", + "parent": "sx3082983b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8808", + "y": "8576" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3142050", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-8019", + "y": "14542" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108379", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-4213", + "y": "-7002" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2729401b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "4135", + "y": "-12520" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4282.44", + "base_power_2": "1738.18", + "name": "ld_355597b0b", + "nominal_voltage": "120.09", + "parent": "sx2729401b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4141", + "y": "-12754" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "hvmv69s2s3_1", + "nominal_voltage": "39837.17", + "phases": "ABCN", + "x": "7292", + "y": "-2540" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108387", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-8353", + "y": "-8468" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2955055b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8961", + "y": "624" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "hvmv69s2s3_2", + "nominal_voltage": "39837.17", + "phases": "ABCN", + "x": "7930", + "y": "-2747" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1009655", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "12453", + "y": "-3772" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2821087a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-2054", + "y": "-4371" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "21064.64", + "base_power_2": "6358.05", + "name": "ld_226308720a0b", + "nominal_voltage": "120.09", + "parent": "sx2821087a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1931", + "y": "-4177" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3066826b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "7201", + "y": "3808" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9312.75", + "base_power_2": "5728.48", + "name": "ld_339003b0a", + "nominal_voltage": "120.09", + "parent": "sx3066826b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7009", + "y": "3669" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108381", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-7143", + "y": "-8224" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108380", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-4979", + "y": "-7339" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2823544", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5240", + "y": "12216" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2823545", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "4437", + "y": "13273" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2841648a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "2558", + "y": "-4228" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4079.88", + "base_power_2": "4497.44", + "name": "ld_337720a0a", + "nominal_voltage": "120.09", + "parent": "sx2841648a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2772", + "y": "-4304" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197638a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "3707", + "y": "-4007" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3122812b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4332", + "y": "4238" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5003.94", + "base_power_2": "10037.30", + "name": "ld_21031694b0b", + "nominal_voltage": "120.09", + "parent": "sx3122812b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4437", + "y": "4454" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2691951c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8082", + "y": "-4137" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2691951c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2691951c", + "phases": "CS", + "x": "-8231", + "y": "-3957" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "5705.50", + "base_power_2": "4779.04", + "name": "ld_138379c0a", + "nominal_voltage": "120.09", + "parent": "sx2691951c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-7988", + "y": "-3928" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254238b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "6960", + "y": "-4141" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1581.70", + "base_power_2": "8449.23", + "name": "ld_293487b0b", + "nominal_voltage": "120.09", + "parent": "sx3254238b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7121", + "y": "-3971" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2000707", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-16527", + "y": "106" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000706", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-16062", + "y": "91" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000705", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-15578", + "y": "89" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000704", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-15080", + "y": "101" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000709", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-17393", + "y": "109" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000708", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-16969", + "y": "131" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3649301a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6528", + "y": "-13946" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "11296.81", + "base_power_2": "2414.53", + "name": "ld_2224237643a0a", + "nominal_voltage": "120.09", + "parent": "sx3649301a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6682", + "y": "-14127" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2000703", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-14570", + "y": "132" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766718c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-4423", + "y": "-11094" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4308.06", + "base_power_2": "11423.90", + "name": "ld_138652c0a", + "nominal_voltage": "120.09", + "parent": "sx2766718c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4566", + "y": "-11277" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2000702", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-14055", + "y": "185" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000701", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-13020", + "y": "378" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000700", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-12504", + "y": "499" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3235268c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "4179", + "y": "5164" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3178971a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3696", + "y": "6049" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3344.94", + "base_power_2": "5232.38", + "name": "ld_338896a0a", + "nominal_voltage": "120.09", + "parent": "sx3178971a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3656", + "y": "6280" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3010566c", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9413", + "y": "-3228" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1625.28", + "base_power_2": "4663.38", + "name": "ld_138776c0a", + "nominal_voltage": "120.09", + "parent": "sx3010566c", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9500", + "y": "-3011" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2917333a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4982", + "y": "4448" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2860478b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "5169", + "y": "-9395" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3302.83", + "base_power_2": "5810.57", + "name": "ld_355590b0b", + "nominal_voltage": "120.09", + "parent": "sx2860478b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5103", + "y": "-9178" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673309c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-3867", + "y": "-1260" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3122811a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-2513", + "y": "4371" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7783.49", + "base_power_2": "1360.84", + "name": "ld_337669a0b", + "nominal_voltage": "120.09", + "parent": "sx3122811a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2496", + "y": "4607" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673307c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-10037", + "y": "-479" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3010565c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-11528", + "y": "-5555" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3010565c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3010565c", + "phases": "CS", + "x": "-11764", + "y": "-5623" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "1966.31", + "base_power_2": "2229.57", + "name": "ld_138343c0b", + "nominal_voltage": "120.09", + "parent": "sx3010565c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-11727", + "y": "-5431" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3065665a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6054", + "y": "10852" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2708744b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3715", + "y": "-6473" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2203.78", + "base_power_2": "27878.69", + "name": "ld_226308710b0b", + "nominal_voltage": "120.09", + "parent": "sx2708744b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3815", + "y": "-6274" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2766717c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-4103", + "y": "-768" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2689.64", + "base_power_2": "1506.23", + "name": "ld_138470c0b", + "nominal_voltage": "120.09", + "parent": "sx2766717c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4280", + "y": "-918" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935549b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2068", + "y": "3510" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "10422.84", + "base_power_2": "4618.40", + "name": "ld_337668b0b", + "nominal_voltage": "120.09", + "parent": "sx2935549b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2183", + "y": "3713" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3649300a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6549", + "y": "-13590" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3539.94", + "base_power_2": "10171.40", + "name": "ld_2224237546a0a", + "nominal_voltage": "120.09", + "parent": "sx3649300a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6689", + "y": "-13781" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3235267c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "4481", + "y": "5746" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3178972c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "7368", + "y": "5798" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "16824.16", + "base_power_2": "4144.91", + "name": "ld_338923c0b", + "nominal_voltage": "120.09", + "parent": "sx3178972c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7442", + "y": "6014" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2860479b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "4543", + "y": "-11596" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2322.49", + "base_power_2": "1687.82", + "name": "ld_355595b0b", + "nominal_voltage": "120.09", + "parent": "sx2860479b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4767", + "y": "-11672" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2691950c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-9760", + "y": "-6190" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1424.65", + "base_power_2": "9059.89", + "name": "ld_138374c0a", + "nominal_voltage": "120.09", + "parent": "sx2691950c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9945", + "y": "-6331" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673308b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "8098", + "y": "-1670" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3010564c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "6289", + "y": "8164" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2599.65", + "base_power_2": "3689.01", + "name": "ld_321883c0b", + "nominal_voltage": "120.09", + "parent": "sx3010564c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6237", + "y": "8390" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673306c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-11270", + "y": "-3905" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2691953a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8519", + "y": "-12046" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3477.97", + "base_power_2": "5099.35", + "name": "ld_302732a0a", + "nominal_voltage": "120.09", + "parent": "sx2691953a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8639", + "y": "-12251" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841645c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "3434", + "y": "5064" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8616.62", + "base_power_2": "1867.92", + "name": "ld_321893c0a", + "nominal_voltage": "120.09", + "parent": "sx2841645c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3274", + "y": "4895" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3122814c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "1687", + "y": "2333" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "35099.19", + "base_power_2": "33045.14", + "name": "ld_338899c0a", + "nominal_voltage": "120.09", + "parent": "sx3122814c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1918", + "y": "2297" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3172805a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13244", + "y": "-4146" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3950.16", + "base_power_2": "8286.95", + "name": "ld_226964880a0a", + "nominal_voltage": "120.09", + "parent": "sx3172805a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "13457", + "y": "-4260" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3066829c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "3725", + "y": "4517" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4436.97", + "base_power_2": "6047.57", + "name": "ld_321894c0b", + "nominal_voltage": "120.09", + "parent": "sx3066829c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3615", + "y": "4299" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3178973a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "927", + "y": "1397" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3794.98", + "base_power_2": "5349.35", + "name": "ld_21149420a0b", + "nominal_voltage": "120.09", + "parent": "sx3178973a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "889", + "y": "1162" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000709b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-17750", + "y": "-239" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000709b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000709b", + "phases": "BS", + "x": "-17951", + "y": "-369" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4613.78", + "base_power_2": "5402.72", + "name": "ld_2000709b0a", + "nominal_voltage": "120.09", + "parent": "sx2000709b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.87000", + "power_pf_2": "0.87000", + "x": "-17767", + "y": "-471" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3235266c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8069", + "y": "-5101" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m3327098", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4054", + "y": "15368" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691952a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "14420", + "y": "-6700" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2801.55", + "base_power_2": "2682.99", + "name": "ld_391980a0a", + "nominal_voltage": "120.09", + "parent": "sx2691952a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "14548", + "y": "-6913" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935547b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "13399", + "y": "11484" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5127.10", + "base_power_2": "3986.30", + "name": "ld_21383553b0b", + "nominal_voltage": "120.09", + "parent": "sx2935547b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "13597", + "y": "11611" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673305b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5644", + "y": "778" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m3327097", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4071", + "y": "15629" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3010563a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "11065", + "y": "-4584" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3555.15", + "base_power_2": "1929.39", + "name": "ld_294845a0b", + "nominal_voltage": "120.09", + "parent": "sx3010563a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11149", + "y": "-4371" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254237a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-8105", + "y": "-8732" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1151.57", + "base_power_2": "9132.81", + "name": "ld_21482181a0b", + "nominal_voltage": "120.09", + "parent": "sx3254237a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8263", + "y": "-8906" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2823592", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "103", + "y": "6070" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3214071", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-923", + "y": "-1598" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3142099", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "745", + "y": "-3104" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3122813a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-47", + "y": "-14629" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2368.40", + "base_power_2": "3116.14", + "name": "ld_138685a0a", + "nominal_voltage": "120.09", + "parent": "sx3122813a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-32", + "y": "-14863" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3142098", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9353", + "y": "1510" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2729405b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3299", + "y": "1718" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8668.13", + "base_power_2": "1362.79", + "name": "ld_21393412b0a", + "nominal_voltage": "120.09", + "parent": "sx2729405b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3136", + "y": "1552" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2766750c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-506", + "y": "-501" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2766719a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9173", + "y": "4902" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5949.95", + "base_power_2": "3194.38", + "name": "ld_21357865a0a", + "nominal_voltage": "120.09", + "parent": "sx2766719a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "9363", + "y": "5042" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3214064", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "2681", + "y": "4158" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3178974b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3735", + "y": "15533" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2126.72", + "base_power_2": "3893.90", + "name": "ld_323399b0b", + "nominal_voltage": "120.09", + "parent": "sx3178974b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-3690", + "y": "15761" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3214069", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-984", + "y": "-2648" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2917336c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-16075", + "y": "6382" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2860477a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-19", + "y": "-19112" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2231.72", + "base_power_2": "3252.82", + "name": "ld_2121587a0a", + "nominal_voltage": "120.09", + "parent": "sx2860477a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-110", + "y": "-19328" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3082988b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8003", + "y": "2027" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4588.83", + "base_power_2": "1431.79", + "name": "ld_226195153b0b", + "nominal_voltage": "120.09", + "parent": "sx3082988b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8003", + "y": "1794" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3178975b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-5717", + "y": "-5484" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9778.82", + "base_power_2": "3344.89", + "name": "ld_321845b0a", + "nominal_voltage": "120.09", + "parent": "sx3178975b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5858", + "y": "-5662" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2746587c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "5541", + "y": "-6151" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6658.52", + "base_power_2": "3826.02", + "name": "ld_227653310c0a", + "nominal_voltage": "120.09", + "parent": "sx2746587c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5334", + "y": "-6263" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2876814", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6164", + "y": "-5375" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108423", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-1348", + "y": "-3977" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2876812", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9396", + "y": "16137" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2876813", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "910", + "y": "-11463" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3085398b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "6154", + "y": "-2767" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2879092", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "11530", + "y": "-3707" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108433", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-1074", + "y": "-5685" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3027116", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "5360", + "y": "-3430" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138598", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-3977", + "y": "1236" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138597", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-3858", + "y": "2871" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2692600", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "10244", + "y": "13451" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138599", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-3988", + "y": "302" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2766749b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "305", + "y": "2197" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160115b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "7656", + "y": "5358" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879089c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "5187", + "y": "6024" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "15390.86", + "base_power_2": "3433.88", + "name": "ld_21455388c0a", + "nominal_voltage": "120.09", + "parent": "sx2879089c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5062", + "y": "5829" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2897765", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-8124", + "y": "-11508" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3178976a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "11796", + "y": "-5395" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1544.70", + "base_power_2": "3939.84", + "name": "ld_21397721a0b", + "nominal_voltage": "120.09", + "parent": "sx3178976a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11822", + "y": "-5621" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2897766", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-15416", + "y": "1234" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710537b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14841", + "y": "14711" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2897764", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-14213", + "y": "13618" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897769", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "1278", + "y": "3105" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3176661c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-9082", + "y": "20599" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2897767", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "11703", + "y": "-6656" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897768", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-10672", + "y": "-2116" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3085397b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-6274", + "y": "-9170" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3157708c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "17800", + "y": "-1395" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "196-35541", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-14562", + "y": "6003" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879081", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "17868", + "y": "-7422" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2858163", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "12733", + "y": "-6351" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5686080-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6516", + "y": "-4954" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2858166", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "13203", + "y": "-1831" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3010569a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "12702", + "y": "-5857" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7588.56", + "base_power_2": "6122.78", + "name": "ld_302673a0a", + "nominal_voltage": "120.09", + "parent": "sx3010569a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12866", + "y": "-5701" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2879089", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "4979", + "y": "6421" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3027124", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-8443", + "y": "15413" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860478", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "5172", + "y": "-9817" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879087", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-1301", + "y": "-13063" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3027122", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6536", + "y": "9212" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860477", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "135", + "y": "-18648" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2766748a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4126", + "y": "-4054" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2860479", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "4089", + "y": "-11446" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3160114a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4079", + "y": "1795" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2916234a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4271", + "y": "-7388" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1949.84", + "base_power_2": "1709.95", + "name": "ld_228549643a0b", + "nominal_voltage": "120.09", + "parent": "sx2916234a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4269", + "y": "-7620" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2786204a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3237", + "y": "9662" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2710536a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4826", + "y": "-3372" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2804259a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-8864", + "y": "6796" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2991940c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-15835", + "y": "2080" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2688692b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14145", + "y": "4748" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2790.49", + "base_power_2": "3230.13", + "name": "ld_225918926b0a", + "nominal_voltage": "120.09", + "parent": "sx2688692b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-14059", + "y": "4962" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3178977c", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-9339", + "y": "-3969" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2617.10", + "base_power_2": "3671.56", + "name": "ld_302810c0a", + "nominal_voltage": "120.09", + "parent": "sx3178977c", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9441", + "y": "-3760" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108406", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-7520", + "y": "-7922" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108405", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-7036", + "y": "-8281" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3176660b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "8359", + "y": "6576" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2860490", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "2041", + "y": "-12467" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766716c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "12697", + "y": "-1678" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5428.14", + "base_power_2": "3953.31", + "name": "ld_337713c0b", + "nominal_voltage": "120.09", + "parent": "sx2766716c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12923", + "y": "-1740" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d6047588-1_int", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4506", + "y": "-3144" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108407", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-7450", + "y": "-7772" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108402", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-6919", + "y": "-8000" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108401", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-6574", + "y": "-7899" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108404", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-6385", + "y": "-8054" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108403", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-7235", + "y": "-7909" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2858175", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9007", + "y": "17676" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860485", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "10856", + "y": "7181" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860484", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3821", + "y": "-1077" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860487", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-6763", + "y": "-5866" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860486", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-7268", + "y": "-5650" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108410", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9643", + "y": "-8641" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860481", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "1621", + "y": "2216" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860480", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-10116", + "y": "-13747" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860483", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-5570", + "y": "-8286" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860482", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "13525", + "y": "-1382" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3010568a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "17550", + "y": "1171" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3361.17", + "base_power_2": "8875.94", + "name": "ld_338965a0a", + "nominal_voltage": "120.09", + "parent": "sx3010568a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "17780", + "y": "1214" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2860489", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-6199", + "y": "8075" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3027133", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-1969", + "y": "-14004" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860488", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-13672", + "y": "13368" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3027132", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9665", + "y": "15817" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3160113b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "12486", + "y": "10330" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2766499", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "11076", + "y": "1312" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879087a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-1764", + "y": "-13189" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1299.39", + "base_power_2": "4185.15", + "name": "ld_21399762a0a", + "nominal_voltage": "120.09", + "parent": "sx2879087a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1987", + "y": "-13257" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3178978a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6237", + "y": "-8657" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3648.65", + "base_power_2": "4928.67", + "name": "ld_337723a0b", + "nominal_voltage": "120.09", + "parent": "sx3178978a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6226", + "y": "-8887" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1138594", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "14474", + "y": "-6439" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138593", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "3103", + "y": "-13302" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138596", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-5281", + "y": "3088" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138595", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-2746", + "y": "937" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2688693c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-14386", + "y": "5143" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3538.12", + "base_power_2": "5843.32", + "name": "ld_225918936c0b", + "nominal_voltage": "120.09", + "parent": "sx2688693c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-14330", + "y": "5368" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3091052a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "4816", + "y": "-7017" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2109.40", + "base_power_2": "11601.94", + "name": "ld_228532641a0a", + "nominal_voltage": "120.09", + "parent": "sx3091052a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4950", + "y": "-7208" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2766715b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "5075", + "y": "-10833" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3746.13", + "base_power_2": "2274.49", + "name": "ld_355593b0b", + "nominal_voltage": "120.09", + "parent": "sx2766715b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5227", + "y": "-11012" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2000715", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-19404", + "y": "196" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2673343b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-6966", + "y": "-10768" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5874.83", + "base_power_2": "3238.58", + "name": "ld_21470122b0b", + "nominal_voltage": "120.09", + "parent": "sx2673343b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-6998", + "y": "-11000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108413", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-2633", + "y": "-5224" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108412", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3212", + "y": "-6559" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3085399c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-7761", + "y": "-4812" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2000710", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-17794", + "y": "122" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860492", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-664", + "y": "-12524" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000714", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-19162", + "y": "80" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860491", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6207", + "y": "-11761" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000713", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-18859", + "y": "50" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000712", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-18530", + "y": "102" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860493", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "18732", + "y": "-8727" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000711", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-18172", + "y": "87" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3179607b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-478", + "y": "-9288" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3280.01", + "base_power_2": "6750.92", + "name": "ld_260591b0b", + "nominal_voltage": "120.09", + "parent": "sx3179607b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-540", + "y": "-9514" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2860499", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "8312", + "y": "5747" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3010567c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-10088", + "y": "-4520" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3053.05", + "base_power_2": "3235.61", + "name": "ld_302813c0b", + "nominal_voltage": "120.09", + "parent": "sx3010567c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-10295", + "y": "-4408" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3066830b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4451", + "y": "12447" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3297.36", + "base_power_2": "9826.35", + "name": "ld_21469960b0a", + "nominal_voltage": "120.09", + "parent": "sx3066830b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4477", + "y": "12679" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p850072", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-8994", + "y": "-8875" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3142049", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "6694", + "y": "3865" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2689678b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4160", + "y": "-5946" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2970804c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8581", + "y": "20919" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8627.76", + "base_power_2": "1856.77", + "name": "ld_356787c0a", + "nominal_voltage": "120.09", + "parent": "sx2970804c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-8459", + "y": "21117" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3178979c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "17165", + "y": "2679" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "27991.27", + "base_power_2": "28977.80", + "name": "ld_338968c0a", + "nominal_voltage": "120.09", + "parent": "sx3178979c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "17305", + "y": "2870" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673300b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14985", + "y": "14365" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2001der480-2", + "nominal_voltage": "277.13", + "phases": "ABCN", + "x": "-15142", + "y": "-2184" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3085394c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-16772", + "y": "4572" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2001der480-1", + "nominal_voltage": "277.13", + "phases": "ABCN", + "x": "-14836", + "y": "-2199" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2820556a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "2875", + "y": "-5981" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1998.02", + "base_power_2": "7146.31", + "name": "ld_226196648a0a", + "nominal_voltage": "120.09", + "parent": "sx2820556a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "2830", + "y": "-6225" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2879055", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-3611", + "y": "-2037" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879054", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-17101", + "y": "2695" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3179608c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11068", + "y": "15140" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "12655.25", + "base_power_2": "3076.71", + "name": "ld_356793c0b", + "nominal_voltage": "120.09", + "parent": "sx3179608c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11216", + "y": "15323" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p850083", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-10282", + "y": "-7489" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048887b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-306", + "y": "-7876" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3085393c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-12672", + "y": "2099" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2862616c", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-2546", + "y": "-8484" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "14603.11", + "base_power_2": "16860.81", + "name": "ld_227447984c0a", + "nominal_voltage": "120.09", + "parent": "sx2862616c", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2346", + "y": "-8616" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2970804", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-8863", + "y": "20530" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069285", + "nominal_voltage": "7200.00", + "phases": "ACN", + "x": "-4815", + "y": "-5360" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108410b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-10093", + "y": "-8883" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "30235.84", + "base_power_2": "26905.60", + "name": "ld_2226061820b0a", + "nominal_voltage": "120.09", + "parent": "sx1108410b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-10302", + "y": "-9000" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p850080", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-8620", + "y": "-8440" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216350a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13523", + "y": "-6096" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9044.56", + "base_power_2": "9976.50", + "name": "ld_391977a0b", + "nominal_voltage": "120.09", + "parent": "sx3216350a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "13626", + "y": "-6291" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108486", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5882", + "y": "328" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3233353a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-5817", + "y": "-16337" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2766744b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "10398", + "y": "8821" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108484", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "5084", + "y": "520" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108483", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5631", + "y": "310" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3030199c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-6782", + "y": "4298" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2692654", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-9577", + "y": "3671" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2692655", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-3650", + "y": "5721" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048888c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8412", + "y": "18595" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2785543b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "11571", + "y": "8967" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "9094.32", + "base_power_2": "4029.39", + "name": "ld_321860b0a", + "nominal_voltage": "120.09", + "parent": "sx2785543b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "11796", + "y": "9024" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3216351a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "17975", + "y": "-7774" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4261.91", + "base_power_2": "4882.42", + "name": "ld_21398815a0a", + "nominal_voltage": "120.09", + "parent": "sx3216351a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "18187", + "y": "-7867" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2710532c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "17807", + "y": "-8465" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673346c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "7608", + "y": "-4932" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8381.79", + "base_power_2": "2102.75", + "name": "ld_293486c0a", + "nominal_voltage": "120.09", + "parent": "sx2673346c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7768", + "y": "-5103" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3085396a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "130", + "y": "-14053" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2879072", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-747", + "y": "5776" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879071", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-185", + "y": "9267" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879070", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "7532", + "y": "-9127" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069284", + "nominal_voltage": "7200.00", + "phases": "ACN", + "x": "-4182", + "y": "-5618" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p1123251", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6539", + "y": "-10641" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879079", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-11519", + "y": "11536" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2766747a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "13061", + "y": "-6825" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2879078", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16454", + "y": "-7450" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879077", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "607", + "y": "14262" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2685805a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5365", + "y": "-4149" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6234.27", + "base_power_2": "2910.06", + "name": "ld_225533531a0b", + "nominal_voltage": "120.09", + "parent": "sx2685805a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5180", + "y": "-4013" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2879076", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-8804", + "y": "-5297" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879075", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5763", + "y": "-8169" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879074", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6537", + "y": "-9060" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879073", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-9890", + "y": "-5250" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2991943c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "6825", + "y": "-4510" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3048889c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8539", + "y": "17488" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2955047a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "7303", + "y": "8747" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3085395a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3135", + "y": "-11914" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2823611a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "404", + "y": "4605" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d2000401_int", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-11182", + "y": "-383" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108459", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-2662", + "y": "-6210" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879061", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-867", + "y": "3817" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108464", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-1537", + "y": "-5766" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108460", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-2395", + "y": "-5007" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108462", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-1707", + "y": "-4408" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3315860b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "4742", + "y": "-12139" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2580.72", + "base_power_2": "3439.90", + "name": "ld_2223664050b0b", + "nominal_voltage": "120.09", + "parent": "sx3315860b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "4786", + "y": "-12368" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2879069", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3196", + "y": "4354" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2692635", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "7822", + "y": "10729" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879068", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4381", + "y": "-2540" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879067", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3908", + "y": "5823" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2766746c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "5117", + "y": "7003" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2692633", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "7542", + "y": "9908" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879066", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-5466", + "y": "-7840" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879065", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4051", + "y": "-6433" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879064", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-5180", + "y": "-10175" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879063", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "5445", + "y": "-1409" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879062", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-10449", + "y": "-354" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3778577c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "1489", + "y": "3586" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160861c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-1076", + "y": "1607" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "e182729", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "9804", + "y": "3726" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3085390b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-7470", + "y": "-12423" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p893163", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9974", + "y": "-7204" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e182727", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "8146", + "y": "8516" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e182726", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "10027", + "y": "8605" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2692664c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-17422", + "y": "5255" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1324.07", + "base_power_2": "4964.59", + "name": "ld_351021c0b", + "nominal_voltage": "120.09", + "parent": "sx2692664c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-17639", + "y": "5348" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "e182725", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "11294", + "y": "2809" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2728247a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-9780", + "y": "-8938" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "e182724", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-5279", + "y": "-9285" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710530b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "6920", + "y": "4130" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "e182723", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-10250", + "y": "-2027" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e182722", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-5015", + "y": "2762" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2916620a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "12261", + "y": "713" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2916620c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "12458", + "y": "510" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2916620b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "12286", + "y": "257" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5806920-1_int", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "9723", + "y": "8610" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2728247b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9533", + "y": "-9052" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2728247c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-9682", + "y": "-9031" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2858166a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "12999", + "y": "-1453" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2178.55", + "base_power_2": "1481.24", + "name": "ld_226192994a0a", + "nominal_voltage": "120.09", + "parent": "sx2858166a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "12775", + "y": "-1392" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2897773a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6110", + "y": "5499" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160862c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-1994", + "y": "1198" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d6048634-1_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "1619", + "y": "3420" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2804253a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5322", + "y": "-13625" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "hvmv69sub1_lsb2", + "nominal_voltage": "39837.17", + "phases": "ABCN", + "x": "3735", + "y": "1833" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2822859b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14087", + "y": "14555" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3104119a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "11385", + "y": "-2408" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m4113345", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "17953", + "y": "-1741" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069249", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-3464", + "y": "-6427" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m4113347", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-5169", + "y": "-3693" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m4113348", + "nominal_voltage": "7200.00", + "phases": "ACN", + "x": "-4473", + "y": "-5565" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140830", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "17228", + "y": "-7593" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3064514c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-8728", + "y": "18142" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069248", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-2571", + "y": "-6280" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991902b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14683", + "y": "13840" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1770.22", + "base_power_2": "8260.71", + "name": "ld_391748b0b", + "nominal_voltage": "120.09", + "parent": "sx2991902b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-14895", + "y": "13744" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069247", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-2794", + "y": "-6110" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e182733", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8761", + "y": "-4673" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140832", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "13681", + "y": "-5129" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e182732", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "17388", + "y": "-3093" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140831", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "13590", + "y": "-4932" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e182731", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-9964", + "y": "9309" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e182730", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "18174", + "y": "-1407" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2970841", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5507", + "y": "-8856" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2970842", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-6369", + "y": "-427" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026997", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "11780", + "y": "6206" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069250", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-2819", + "y": "-7073" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026990", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-7220", + "y": "-10210" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2970845", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-14706", + "y": "9070" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2804254a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-4052", + "y": "4650" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2897774b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-261", + "y": "2112" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3231269b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "2268", + "y": "-9525" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3263051", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-9694", + "y": "-6751" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3085392c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-12046", + "y": "-83" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "221-282818", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4394", + "y": "-7169" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e182748", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "7608", + "y": "-5469" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e182746", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "4242", + "y": "2172" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140823", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16531", + "y": "-6844" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e182745", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "515", + "y": "278" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069230", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-6596", + "y": "-5132" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140822", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "16576", + "y": "-7335" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991901b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "3166", + "y": "-9522" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "7331.43", + "base_power_2": "2699.50", + "name": "ld_354851b0a", + "nominal_voltage": "120.09", + "parent": "sx2991901b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "3316", + "y": "-9347" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3198348a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "466", + "y": "5230" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "e182744", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-15482", + "y": "16600" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140821", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "16236", + "y": "-7358" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3195327a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "10093", + "y": "16226" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "1448.43", + "base_power_2": "4036.10", + "name": "ld_225901711a0b", + "nominal_voltage": "120.09", + "parent": "sx3195327a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "10290", + "y": "16356" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1140820", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "16076", + "y": "-7220" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140827", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16259", + "y": "-8535" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3198347c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "5840", + "y": "1518" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3027132a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "9222", + "y": "15994" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2574.02", + "base_power_2": "2910.51", + "name": "ld_321876a0a", + "nominal_voltage": "120.09", + "parent": "sx3027132a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8998", + "y": "16056" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2992657a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-6636", + "y": "2000" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1140825", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16373", + "y": "-7871" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140824", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "17451", + "y": "-5996" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2970811", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9327", + "y": "16505" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "221-282819", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-3169", + "y": "-6025" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140829", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "17390", + "y": "-8837" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140828", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16613", + "y": "-7745" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2685809a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "16198", + "y": "-327" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2129.58", + "base_power_2": "3354.96", + "name": "ld_225533162a0b", + "nominal_voltage": "120.09", + "parent": "sx2685809a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "16414", + "y": "-236" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104117c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "11789", + "y": "-7958" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2804251a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-2200", + "y": "-12202" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2897771b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14825", + "y": "9555" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973160b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "10091", + "y": "-6000" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3085391b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-2436", + "y": "595" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069227", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-7342", + "y": "-5066" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069224", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-7070", + "y": "-5106" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069226", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-7199", + "y": "-4873" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069225", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-7473", + "y": "-4102" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2798067", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-1272", + "y": "-6732" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3215203b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9070", + "y": "-7903" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3972.21", + "base_power_2": "19172.12", + "name": "ld_227760024b0a", + "nominal_voltage": "120.09", + "parent": "sx3215203b", + "phases": "BS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9248", + "y": "-7761" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3215203a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-9487", + "y": "-7992" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3215203a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3215203a", + "phases": "AS", + "x": "-9639", + "y": "-7812" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "6634.30", + "base_power_2": "11654.36", + "name": "ld_227760024a0a", + "nominal_voltage": "120.09", + "parent": "sx3215203a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9716", + "y": "-7975" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2992656a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5317", + "y": "2987" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3215203c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-9640", + "y": "-8273" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3215203c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3215203c", + "phases": "CS", + "x": "-9852", + "y": "-8139" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "4761.00", + "base_power_2": "16208.07", + "name": "ld_227760024c0a", + "nominal_voltage": "120.09", + "parent": "sx3215203c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-9746", + "y": "-8485" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2989432", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4271", + "y": "11726" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140819", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "15983", + "y": "-6855" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140818", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "15344", + "y": "-6401" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140817", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16831", + "y": "-3558" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104118c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "4623", + "y": "6860" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3179646b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "7414", + "y": "9225" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2897772a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "14659", + "y": "-5960" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2804252a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3299", + "y": "10640" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3027133a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-1917", + "y": "-14487" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4353.38", + "base_power_2": "4790.95", + "name": "ld_226101449a0a", + "nominal_voltage": "120.09", + "parent": "sx3027133a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1900", + "y": "-14721" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2897792", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "12614", + "y": "-2238" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2973161a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "18940", + "y": "122" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2897793", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "12787", + "y": "-3059" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069217", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-8734", + "y": "-4663" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991907a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5521", + "y": "-11703" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6004.85", + "base_power_2": "3139.48", + "name": "ld_138574a0a", + "nominal_voltage": "120.09", + "parent": "sx2991907a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-5738", + "y": "-11786" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2690868", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-2607", + "y": "-7238" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2876813a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "595", + "y": "-11332" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2951.45", + "base_power_2": "6192.88", + "name": "ld_355842a0b", + "nominal_voltage": "120.09", + "parent": "sx2876813a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "533", + "y": "-11113" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069218", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-7178", + "y": "-5380" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3645812c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "10020", + "y": "-9933" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069213", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-9120", + "y": "-4672" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2692660a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "1089", + "y": "7945" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2775.62", + "base_power_2": "15513.04", + "name": "ld_260643a0a", + "nominal_voltage": "120.09", + "parent": "sx2692660a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "1198", + "y": "8159" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069215", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-9354", + "y": "-4596" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069210", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-7505", + "y": "-6117" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026961", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "11371", + "y": "3689" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122848c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "7113", + "y": "-7862" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026960", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "11111", + "y": "3503" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026969", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-5655", + "y": "-7676" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2804257b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "10622", + "y": "7173" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3104115b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-14808", + "y": "16123" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3142049c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "7169", + "y": "3667" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "2441.79", + "base_power_2": "1754.08", + "name": "ld_356810c0a", + "nominal_voltage": "120.09", + "parent": "sx3142049c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "7407", + "y": "3577" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3048890", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-8113", + "y": "16786" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2972930a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "10440", + "y": "-19" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973162b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-7353", + "y": "5823" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069206", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-8933", + "y": "-4127" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069205", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-9656", + "y": "-5048" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069208", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-9429", + "y": "-4834" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2876814a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "5722", + "y": "-5247" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3721.19", + "base_power_2": "3031.39", + "name": "ld_225806974a0a", + "nominal_voltage": "120.09", + "parent": "sx2876814a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "5541", + "y": "-5105" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2991906a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-17296", + "y": "2945" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3635.68", + "base_power_2": "3116.90", + "name": "ld_247060a0a", + "nominal_voltage": "120.09", + "parent": "sx2991906a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-17524", + "y": "3009" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3216358a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-63", + "y": "-11785" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "6404.29", + "base_power_2": "2740.04", + "name": "ld_21399826a0a", + "nominal_voltage": "120.09", + "parent": "sx3216358a", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-217", + "y": "-11612" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2804258b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-1004", + "y": "6915" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069202", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-10076", + "y": "-5484" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069201", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-10702", + "y": "-5566" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2876847", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "15963", + "y": "-8868" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p841985", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-3924", + "y": "-9176" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2916625b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4493", + "y": "-9460" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001015b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8626", + "y": "6520" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2876846", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-5400", + "y": "9049" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048889", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-8303", + "y": "17454" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026950", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10237", + "y": "2078" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026951", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "12195", + "y": "2883" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108400", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-6206", + "y": "-7835" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122847a", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-3054", + "y": "-14343" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026953", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "12744", + "y": "2841" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048887", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-232", + "y": "-7643" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048888", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-8565", + "y": "18415" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3195365", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "15366", + "y": "-903" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026954", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "10630", + "y": "2575" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897770c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-12427", + "y": "1959" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2897772", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "14368", + "y": "-5978" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897773", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "5964", + "y": "5674" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897770", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-12548", + "y": "1753" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2861197c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-2451", + "y": "-3313" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2861197c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2861197c", + "phases": "CS", + "x": "-2645", + "y": "-3177" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "3407.94", + "base_power_2": "2880.72", + "name": "ld_21474711c0b", + "nominal_voltage": "120.09", + "parent": "sx2861197c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-2669", + "y": "-3389" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2897771", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-14766", + "y": "9316" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897776", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-7761", + "y": "-3665" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897777", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "16242", + "y": "-781" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897774", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-489", + "y": "2039" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991905a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-4727", + "y": "3095" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "5381.12", + "base_power_2": "8330.22", + "name": "ld_2148633a0b", + "nominal_voltage": "120.09", + "parent": "sx2991905a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-4931", + "y": "3209" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2897775", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-11234", + "y": "-5731" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3102286b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-1149", + "y": "-5449" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3645810c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "9219", + "y": "-10310" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2897778", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "-5154", + "y": "9178" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897779", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-4892", + "y": "451" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001014b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-8757", + "y": "6251" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026984", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "11661", + "y": "5454" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001215", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-19332", + "y": "-5171" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001214", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-19302", + "y": "-4909" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026986", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "11730", + "y": "5829" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001213", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-19167", + "y": "-4645" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104113a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3675", + "y": "-16694" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2936268c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-1286", + "y": "5783" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "3268.61", + "base_power_2": "3020.05", + "name": "ld_223655c0b", + "nominal_voltage": "120.09", + "parent": "sx2936268c", + "phases": "CS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "-1518", + "y": "5825" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3160117b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-4561", + "y": "9863" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2804255b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "2761", + "y": "5178" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026987", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-6918", + "y": "-9742" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001212", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-18950", + "y": "-4405" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897780", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "8474", + "y": "-9700" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001211", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-18783", + "y": "-4109" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2973163b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-13270", + "y": "12671" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026989", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-6947", + "y": "-10012" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001210", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-18575", + "y": "-3815" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2822857b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "4291", + "y": "-9636" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2897784", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-4805", + "y": "-3044" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897781", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "6978", + "y": "-13194" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2876812a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "8976", + "y": "16368" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "4971.03", + "base_power_2": "3606.29", + "name": "ld_321880a0b", + "nominal_voltage": "120.09", + "parent": "sx2876812a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "8752", + "y": "16436" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3645811c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "9733", + "y": "-10621" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3342743c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "8044", + "y": "-7769" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2692661a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "6042", + "y": "3818" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "8934.94", + "base_power_2": "3302.18", + "name": "ld_260650a0b", + "nominal_voltage": "120.09", + "parent": "sx2692661a", + "phases": "AS", + "power_fraction_1": "1.00", + "power_fraction_2": "1.00", + "power_pf_1": "0.97", + "power_pf_2": "0.97", + "x": "6267", + "y": "3781" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2897789", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "12541", + "y": "10934" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2916627a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-3690", + "y": "-15653" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001013b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-9239", + "y": "6217" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026972", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "-5609", + "y": "-7986" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001205", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-17057", + "y": "-2394" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001204", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-16681", + "y": "-2118" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001203", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-16276", + "y": "-1851" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001202", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-15841", + "y": "-1616" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001209", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-18326", + "y": "-3525" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001208", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-18047", + "y": "-3239" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104114b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "4644", + "y": "-9191" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3122849b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "-3231", + "y": "358" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026970", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "11242", + "y": "3901" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001207", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-17738", + "y": "-2956" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5534969-2_int", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "9904", + "y": "4193" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001206", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-17409", + "y": "-2674" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2804256b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "10838", + "y": "3281" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2897790", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "5275", + "y": "1143" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3140238", + "nominal_voltage": "7200.00", + "phases": "AN", + "x": "9703", + "y": "14976" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001201", + "nominal_voltage": "7200.00", + "phases": "CN", + "x": "-14931", + "y": "-1132" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897791", + "nominal_voltage": "7200.00", + "phases": "BN", + "x": "13156", + "y": "9684" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026977", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "11362", + "y": "4295" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001200", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "-14476", + "y": "-894" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000915c", + "nominal_voltage": "120.09", + "phases": "CS", + "x": "-12502", + "y": "8465" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2822858b", + "nominal_voltage": "120.09", + "phases": "BS", + "x": "5613", + "y": "-9734" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026978", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "11478", + "y": "4687" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026979", + "nominal_voltage": "7200.00", + "phases": "ABCN", + "x": "11591", + "y": "5076" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2973164a", + "nominal_voltage": "120.09", + "phases": "AS", + "x": "-5062", + "y": "9952" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "cap_nominal_voltage": "7200.00", + "capacitor_A": "300000.00", + "capacitor_B": "300000.00", + "capacitor_C": "300000.00", + "name": "cap_capbank4", + "nominal_voltage": "7200.00", + "parent": "r18242", + "phases": "ABCN", + "phases_connected": "ABCN", + "switchA": "CLOSED", + "switchB": "CLOSED", + "switchC": "CLOSED", + "x": "607", + "y": "-12408" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "200000.00", + "VAr_set_low": "-300000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_A": "400000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "100.00", + "name": "cap_capbank3a", + "nominal_voltage": "7200.00", + "parent": "r42246", + "phases": "AN", + "phases_connected": "AN", + "pt_phase": "A", + "remote_sense": "line_cap_3a", + "switchA": "CLOSED", + "x": "13426", + "y": "323" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "150000.00", + "VAr_set_low": "-225000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_A": "300000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "100.00", + "name": "cap_capbank2a", + "nominal_voltage": "7200.00", + "parent": "r42247", + "phases": "AN", + "phases_connected": "AN", + "pt_phase": "A", + "remote_sense": "line_cap_2a", + "switchA": "CLOSED", + "x": "1794", + "y": "7714" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "200000.00", + "VAr_set_low": "-300000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_B": "400000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "101.00", + "name": "cap_capbank3b", + "nominal_voltage": "7200.00", + "parent": "r42246", + "phases": "BN", + "phases_connected": "BN", + "pt_phase": "B", + "remote_sense": "line_cap_3b", + "switchB": "CLOSED", + "x": "13715", + "y": "-17" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "150000.00", + "VAr_set_low": "-225000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_A": "300000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "100.00", + "name": "cap_capbank1a", + "nominal_voltage": "7200.00", + "parent": "r20185", + "phases": "AN", + "phases_connected": "AN", + "pt_phase": "A", + "remote_sense": "line_cap_1a", + "switchA": "OPEN", + "x": "-389", + "y": "6319" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "150000.00", + "VAr_set_low": "-225000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_B": "300000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "101.00", + "name": "cap_capbank2b", + "nominal_voltage": "7200.00", + "parent": "r42247", + "phases": "BN", + "phases_connected": "BN", + "pt_phase": "B", + "remote_sense": "line_cap_2b", + "switchB": "CLOSED", + "x": "1907", + "y": "7344" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "200000.00", + "VAr_set_low": "-300000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_C": "400000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "102.00", + "name": "cap_capbank3c", + "nominal_voltage": "7200.00", + "parent": "r42246", + "phases": "CN", + "phases_connected": "CN", + "pt_phase": "C", + "remote_sense": "line_cap_3c", + "switchC": "CLOSED", + "x": "13303", + "y": "152" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "150000.00", + "VAr_set_low": "-225000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_B": "300000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "101.00", + "name": "cap_capbank1b", + "nominal_voltage": "7200.00", + "parent": "r20185", + "phases": "BN", + "phases_connected": "BN", + "pt_phase": "B", + "remote_sense": "line_cap_1b", + "switchB": "OPEN", + "x": "-269", + "y": "6593" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "150000.00", + "VAr_set_low": "-225000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_C": "300000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "102.00", + "name": "cap_capbank2c", + "nominal_voltage": "7200.00", + "parent": "r42247", + "phases": "CN", + "phases_connected": "CN", + "pt_phase": "C", + "remote_sense": "line_cap_2c", + "switchC": "CLOSED", + "x": "1924", + "y": "7616" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "150000.00", + "VAr_set_low": "-225000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_C": "300000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "102.00", + "name": "cap_capbank1c", + "nominal_voltage": "7200.00", + "parent": "r20185", + "phases": "CN", + "phases_connected": "CN", + "pt_phase": "C", + "remote_sense": "line_cap_1c", + "switchC": "OPEN", + "x": "-603", + "y": "6334" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_A": "0.00", + "compensator_x_setting_A": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_feeder_reg3a", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_A": "-1" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg3a", + "continuous_rating_A": "4201.39", + "emergency_rating_A": "5729.17", + "from": "regxfmr_hvmv11sub3_lsb", + "name": "reg_feeder_reg3a", + "phases": "A", + "to": "hvmv11sub3_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_A": "0.00", + "compensator_x_setting_A": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_feeder_reg2a", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_A": "-2" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg2a", + "continuous_rating_A": "4201.39", + "emergency_rating_A": "5729.17", + "from": "regxfmr_hvmv11sub2_lsb", + "name": "reg_feeder_reg2a", + "phases": "A", + "to": "hvmv11sub2_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_B": "0.00", + "compensator_x_setting_B": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_feeder_reg3b", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_B": "0" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg3b", + "continuous_rating_B": "4201.39", + "emergency_rating_B": "5729.17", + "from": "regxfmr_hvmv11sub3_lsb", + "name": "reg_feeder_reg3b", + "phases": "B", + "to": "hvmv11sub3_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_A": "0.00", + "compensator_x_setting_A": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_vreg2_a", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_A": "-5" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg2_a", + "continuous_rating_A": "1527.78", + "emergency_rating_A": "2083.33", + "from": "regxfmr_190-8593", + "name": "reg_vreg2_a", + "phases": "A", + "to": "190-8593" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_B": "0.00", + "compensator_x_setting_B": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_vreg2_b", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_B": "-5" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg2_b", + "continuous_rating_B": "1527.78", + "emergency_rating_B": "2083.33", + "from": "regxfmr_190-8593", + "name": "reg_vreg2_b", + "phases": "B", + "to": "190-8593" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_A": "0.00", + "compensator_x_setting_A": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_vreg3_a", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_A": "5" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg3_a", + "continuous_rating_A": "1527.78", + "emergency_rating_A": "2083.33", + "from": "regxfmr_190-8581", + "name": "reg_vreg3_a", + "phases": "A", + "to": "190-8581" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_C": "0.00", + "compensator_x_setting_C": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_feeder_reg1c", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_C": "-3" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg1c", + "continuous_rating_C": "4201.39", + "emergency_rating_C": "5729.17", + "from": "regxfmr_hvmv11sub1_lsb", + "name": "reg_feeder_reg1c", + "phases": "C", + "to": "hvmv11sub1_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_A": "0.00", + "compensator_x_setting_A": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_feeder_reg1a", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_A": "-3" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg1a", + "continuous_rating_A": "4201.39", + "emergency_rating_A": "5729.17", + "from": "regxfmr_hvmv11sub1_lsb", + "name": "reg_feeder_reg1a", + "phases": "A", + "to": "hvmv11sub1_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_B": "0.00", + "compensator_x_setting_B": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_feeder_reg2b", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_B": "-2" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg2b", + "continuous_rating_B": "4201.39", + "emergency_rating_B": "5729.17", + "from": "regxfmr_hvmv11sub2_lsb", + "name": "reg_feeder_reg2b", + "phases": "B", + "to": "hvmv11sub2_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_C": "0.00", + "compensator_x_setting_C": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_feeder_reg3c", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_C": "-1" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg3c", + "continuous_rating_C": "4201.39", + "emergency_rating_C": "5729.17", + "from": "regxfmr_hvmv11sub3_lsb", + "name": "reg_feeder_reg3c", + "phases": "C", + "to": "hvmv11sub3_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_B": "0.00", + "compensator_x_setting_B": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_feeder_reg1b", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_B": "-3" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg1b", + "continuous_rating_B": "4201.39", + "emergency_rating_B": "5729.17", + "from": "regxfmr_hvmv11sub1_lsb", + "name": "reg_feeder_reg1b", + "phases": "B", + "to": "hvmv11sub1_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_C": "0.00", + "compensator_x_setting_C": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_feeder_reg2c", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_C": "-2" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg2c", + "continuous_rating_C": "4201.39", + "emergency_rating_C": "5729.17", + "from": "regxfmr_hvmv11sub2_lsb", + "name": "reg_feeder_reg2c", + "phases": "C", + "to": "hvmv11sub2_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_C": "0.00", + "compensator_x_setting_C": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_vreg4_c", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_C": "-4" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg4_c", + "continuous_rating_C": "1527.78", + "emergency_rating_C": "2083.33", + "from": "regxfmr_190-7361", + "name": "reg_vreg4_c", + "phases": "C", + "to": "190-7361" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_C": "0.00", + "compensator_x_setting_C": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_vreg2_c", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_C": "-2" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg2_c", + "continuous_rating_C": "1527.78", + "emergency_rating_C": "2083.33", + "from": "regxfmr_190-8593", + "name": "reg_vreg2_c", + "phases": "C", + "to": "190-8593" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_B": "0.00", + "compensator_x_setting_B": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_vreg3_b", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_B": "5" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg3_b", + "continuous_rating_B": "1527.78", + "emergency_rating_B": "2083.33", + "from": "regxfmr_190-8581", + "name": "reg_vreg3_b", + "phases": "B", + "to": "190-8581" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_A": "0.00", + "compensator_x_setting_A": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_vreg4_a", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_A": "-3" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg4_a", + "continuous_rating_A": "1527.78", + "emergency_rating_A": "2083.33", + "from": "regxfmr_190-7361", + "name": "reg_vreg4_a", + "phases": "A", + "to": "190-7361" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_C": "0.00", + "compensator_x_setting_C": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_vreg3_c", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_C": "4" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg3_c", + "continuous_rating_C": "1527.78", + "emergency_rating_C": "2083.33", + "from": "regxfmr_190-8581", + "name": "reg_vreg3_c", + "phases": "C", + "to": "190-8581" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_B": "0.00", + "compensator_x_setting_B": "0.00", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.00", + "dwell_time": "15.00", + "lower_taps": "16", + "name": "rcon_vreg4_b", + "power_transducer_ratio": "60.00", + "raise_taps": "16", + "regulation": "0.10000", + "tap_pos_B": "-4" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg4_b", + "continuous_rating_B": "1527.78", + "emergency_rating_B": "2083.33", + "from": "regxfmr_190-7361", + "name": "reg_vreg4_b", + "phases": "B", + "to": "190-7361" + }, + "children": [], + "name": "regulator" + } + ], + "schedules": [] +} \ No newline at end of file diff --git a/local-server/tests/golden/9500_with_coordinates__Inverters.json b/local-server/tests/golden/9500_with_coordinates__Inverters.json new file mode 100644 index 00000000..f694fb84 --- /dev/null +++ b/local-server/tests/golden/9500_with_coordinates__Inverters.json @@ -0,0 +1,5617 @@ +{ + "classes": [], + "clock": {}, + "definitions": [], + "directives": [], + "includes": [], + "modules": [], + "objects": [ + { + "attributes": { + "P_Out": "9710.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_6", + "parent": "sx2000404a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "12140.00", + "x": "-13069", + "y": "-1877" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_6", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9710.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "14930.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_8", + "parent": "sx2000405a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "18660.00", + "x": "-12114", + "y": "-2924" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_8", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14930.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_2", + "parent": "sx2000402a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "14060.00", + "x": "-12432", + "y": "-1044" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_2", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12560.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_4", + "parent": "sx2000403a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "15700.00", + "x": "-12019", + "y": "-2132" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_4", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12560.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5840.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1043", + "parent": "sx2804272b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.00", + "x": "5740", + "y": "6649" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1043", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5840.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_156", + "parent": "sx2001309a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "10310.00", + "x": "-17294", + "y": "-6490" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_156", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1163", + "parent": "sx2879078a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.00", + "x": "17405", + "y": "-7255" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1163", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5320.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "19450.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1041", + "parent": "sx2803199b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "24300.00", + "x": "-8381", + "y": "-9753" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1041", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "19450.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "18150.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_158", + "parent": "sx2001310a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "22680.00", + "x": "-17272", + "y": "-7181" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_158", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "18150.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1161", + "parent": "sx2730149c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7700.00", + "x": "594", + "y": "-5621" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1161", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6100.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11200.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_50", + "parent": "sx2000712b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "14000.00", + "x": "-19311", + "y": "699" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_50", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11200.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12780.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_52", + "parent": "sx2000713b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "15970.00", + "x": "-19614", + "y": "-589" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_52", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12780.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9050.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_54", + "parent": "sx2000714b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "11320.00", + "x": "-20082", + "y": "-308" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_54", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9050.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "20340.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1049", + "parent": "sx2814529c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "25400.00", + "x": "16251", + "y": "-10125" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1049", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "20340.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9470.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_150", + "parent": "sx2001306a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11840.00", + "x": "-16908", + "y": "-5320" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_150", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9470.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1169", + "parent": "sx2673317a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.00", + "x": "7617", + "y": "-9719" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1169", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5320.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_56", + "parent": "sx2000715b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "14060.00", + "x": "-20368", + "y": "384" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_56", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1047", + "parent": "sx3104155c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.00", + "x": "-1575", + "y": "346" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1047", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10170.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "13990.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_152", + "parent": "sx2001307a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "17480.00", + "x": "-16980", + "y": "-5875" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_152", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "13990.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1167", + "parent": "sx2897792a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.00", + "x": "13500", + "y": "-2696" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1167", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5320.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_58", + "parent": "sx2000902c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.00", + "x": "-13203", + "y": "3480" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_58", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1045", + "parent": "sx3216347c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.00", + "x": "-6018", + "y": "-2970" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1045", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6100.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "14650.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_154", + "parent": "sx2001308a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "18300.00", + "x": "-15913", + "y": "-6794" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_154", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14650.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "4070.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1165", + "parent": "sx3197637c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "5100.00", + "x": "-5982", + "y": "-7873" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1165", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "4070.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1153", + "parent": "sx2748143a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.00", + "x": "3519", + "y": "-325" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1153", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8870.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9730.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1031", + "parent": "sx3178981b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12100.00", + "x": "-2116", + "y": "-10985" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1031", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9730.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "21450.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_166", + "parent": "sx2001314a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "26810.00", + "x": "-16902", + "y": "-8917" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_166", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "21450.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "30520.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1151", + "parent": "sx3101194c_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "38100.00", + "x": "-2661", + "y": "-8936" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1151", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "30520.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "19930.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_168", + "parent": "sx2001315a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "24910.00", + "x": "-16232", + "y": "-9301" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_168", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "19930.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9900.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_40", + "parent": "sx2000707b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12370.00", + "x": "-17340", + "y": "-400" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_40", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9900.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12220.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_42", + "parent": "sx2000708b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "15270.00", + "x": "-17678", + "y": "781" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_42", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12220.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8710.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_44", + "parent": "sx2000709b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "10900.00", + "x": "-18104", + "y": "-546" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_44", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8710.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1039", + "parent": "sx2766721a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.00", + "x": "-17710", + "y": "2206" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1039", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8870.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "3550.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1159", + "parent": "sx3104144a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "4400.00", + "x": "4126", + "y": "918" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1159", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "3550.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10450.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_46", + "parent": "sx2000710b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "13070.00", + "x": "-18512", + "y": "779" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_46", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10450.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1037", + "parent": "sx2729428a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.00", + "x": "8795", + "y": "-9269" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1037", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5320.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "16040.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_160", + "parent": "sx2001311a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "20060.00", + "x": "-17191", + "y": "-7725" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_160", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "16040.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1157", + "parent": "sx2710521a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.00", + "x": "-826", + "y": "-14981" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1157", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8870.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "7040.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_48", + "parent": "sx2000711b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "8800.00", + "x": "-18738", + "y": "-703" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_48", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7040.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1035", + "parent": "sx2935551c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.00", + "x": "-10849", + "y": "-1025" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1035", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6100.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "14540.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_162", + "parent": "sx2001312a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "18170.00", + "x": "-16983", + "y": "-8252" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_162", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14540.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "14590.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1155", + "parent": "sx3252336b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "18300.00", + "x": "-1661", + "y": "-5039" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1155", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14590.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "4070.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1033", + "parent": "sx2710510c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "5100.00", + "x": "-3764", + "y": "-12489" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1033", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "4070.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "22370.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_164", + "parent": "sx2001313a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "27960.00", + "x": "-15742", + "y": "-8489" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_164", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "22370.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5840.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1019", + "parent": "sx2841636b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.00", + "x": "-10329", + "y": "11171" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1019", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5840.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5840.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1021", + "parent": "sx2955005b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.00", + "x": "325", + "y": "-9191" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1021", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5840.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "17880.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_134", + "parent": "sx2001212c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "22350.00", + "x": "-18786", + "y": "-5350" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_134", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "17880.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "15260.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1141", + "parent": "sx2766750c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "19100.00", + "x": "-519", + "y": "-1048" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1141", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "15260.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "18080.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_136", + "parent": "sx2001213c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "22600.00", + "x": "-20130", + "y": "-4870" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_136", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "18080.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "16870.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_138", + "parent": "sx2001214c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "21100.00", + "x": "-20032", + "y": "-5579" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_138", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "16870.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10520.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_30", + "parent": "sx2000702b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "13160.00", + "x": "-13942", + "y": "-735" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_30", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10520.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1029", + "parent": "sx2804252a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.00", + "x": "-2666", + "y": "11003" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1029", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8870.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1149", + "parent": "sx2992657a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.00", + "x": "-6765", + "y": "1318" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1149", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8870.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9540.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_32", + "parent": "sx2000703b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "11920.00", + "x": "-14880", + "y": "-748" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_32", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9540.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1027", + "parent": "sx2674051a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6600.00", + "x": "-10601", + "y": "6907" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1027", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5320.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5840.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1147", + "parent": "sx2822867b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.00", + "x": "194", + "y": "3077" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1147", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5840.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10220.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_34", + "parent": "sx2000704b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12780.00", + "x": "-15555", + "y": "-708" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_34", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10220.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "14590.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1025", + "parent": "sx3048965b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "18200.00", + "x": "1582", + "y": "8272" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1025", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14590.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "13440.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_130", + "parent": "sx2001210c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "16800.00", + "x": "-19553", + "y": "-3826" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_130", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "13440.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1145", + "parent": "sx3235243c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.00", + "x": "-6303", + "y": "-6537" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1145", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10170.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9670.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_36", + "parent": "sx2000705b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12090.00", + "x": "-16127", + "y": "-673" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_36", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9670.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9730.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1023", + "parent": "sx3254214b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12200.00", + "x": "750", + "y": "12998" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1023", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9730.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "23420.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_132", + "parent": "sx2001211c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "29270.00", + "x": "-19752", + "y": "-4177" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_132", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "23420.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1143", + "parent": "sx2973148a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.00", + "x": "12314", + "y": "13336" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1143", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8870.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11790.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_38", + "parent": "sx2000706b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "14730.00", + "x": "-16683", + "y": "-621" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_38", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11790.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "14490.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_18", + "parent": "sx2000410a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "18120.00", + "x": "-13427", + "y": "-4971" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_18", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14490.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5850.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1009", + "parent": "sx2691946b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.00", + "x": "-6590", + "y": "908" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1009", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5850.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1129", + "parent": "sx3104134c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.00", + "x": "2674", + "y": "-13532" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1129", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10170.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1131", + "parent": "sx2955077c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.00", + "x": "88", + "y": "7801" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1131", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10170.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "13300.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1097", + "parent": "sx3067478a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "16700.00", + "x": "437", + "y": "-6212" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1097", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "13300.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12910.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_144", + "parent": "sx2001303a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "16150.00", + "x": "-16387", + "y": "-3898" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_144", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12910.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9730.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1095", + "parent": "sx2767409b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12100.00", + "x": "-9544", + "y": "1810" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1095", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9730.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9620.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_146", + "parent": "sx2001304a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "12030.00", + "x": "-16610", + "y": "-4276" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_146", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9620.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1093", + "parent": "sx2936279c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.00", + "x": "-15581", + "y": "6663" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1093", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10170.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10860.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_148", + "parent": "sx2001305a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "13570.00", + "x": "-16745", + "y": "-4898" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_148", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10860.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9980.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_20", + "parent": "sx2000411a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "12480.00", + "x": "-13759", + "y": "-5331" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_20", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9980.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "3550.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1091", + "parent": "sx3254231a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "4500.00", + "x": "14055", + "y": "-3809" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1091", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "3550.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "20340.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1139", + "parent": "sx3011293c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "25400.00", + "x": "484", + "y": "-2616" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1139", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "20340.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "19620.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_22", + "parent": "sx2000412a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "24520.00", + "x": "-14969", + "y": "-4928" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_22", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "19620.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1017", + "parent": "sx2861197c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.00", + "x": "-2866", + "y": "-3104" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1017", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6100.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1137", + "parent": "sx2841616a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.00", + "x": "-1881", + "y": "5139" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1137", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8870.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10630.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_24", + "parent": "sx2000413a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "13290.00", + "x": "-13990", + "y": "-5989" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_24", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10630.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5840.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1015", + "parent": "sx3085410b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.00", + "x": "8924", + "y": "6284" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1015", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5840.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1135", + "parent": "sx2804283a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.00", + "x": "-4087", + "y": "-16235" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1135", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8870.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10590.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_26", + "parent": "sx2000414a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "13240.00", + "x": "-14516", + "y": "-6259" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_26", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10590.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1013", + "parent": "sx2710543c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.00", + "x": "996", + "y": "3690" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1013", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10170.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "21390.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_140", + "parent": "sx2001215c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "26730.00", + "x": "-19694", + "y": "-6077" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_140", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "21390.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1133", + "parent": "sx2954350c_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7600.00", + "x": "-8644", + "y": "-3445" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1133", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6100.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10770.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_28", + "parent": "sx2000415a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "13460.00", + "x": "-15135", + "y": "-6219" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_28", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10770.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "4070.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1011", + "parent": "sx3010565c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "5100.00", + "x": "-11996", + "y": "-5666" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1011", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "4070.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1099", + "parent": "sx2691945c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.00", + "x": "-10645", + "y": "-4749" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1099", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10170.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8820.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_142", + "parent": "sx2001302a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11020.00", + "x": "-16184", + "y": "-3382" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_142", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8820.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1119", + "parent": "sx2786274c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.00", + "x": "-13541", + "y": "8119" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1119", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10170.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "17570.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_108", + "parent": "sx2001013b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "21960.00", + "x": "-9021", + "y": "6879" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_108", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "17570.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1087", + "parent": "sx3160106a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.00", + "x": "9889", + "y": "-7513" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1087", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8870.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "24220.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_112", + "parent": "sx2001015b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "30260.00", + "x": "-8188", + "y": "7121" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_112", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "24220.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9710.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_90", + "parent": "sx2001004b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12140.00", + "x": "-11934", + "y": "3621" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_90", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9710.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1085", + "parent": "sx2897772a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6600.00", + "x": "15413", + "y": "-5899" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1085", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5320.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12430.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_114", + "parent": "sx2001202c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "15530.00", + "x": "-16372", + "y": "-2421" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_114", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12430.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11080.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_92", + "parent": "sx2001005b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "13850.00", + "x": "-11603", + "y": "4135" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_92", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11080.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5840.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1083", + "parent": "sx3179650b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.00", + "x": "3922", + "y": "-2078" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1083", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5840.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "16020.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_116", + "parent": "sx2001203c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "20030.00", + "x": "-17068", + "y": "-1325" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_116", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "16020.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9760.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_94", + "parent": "sx2001006b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12190.00", + "x": "-10456", + "y": "3988" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_94", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9760.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "1000000.00", + "Q_Out": "0.00", + "V_base": "12470.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pvfarm1", + "parent": "m1047pv-3_pvmtr", + "phases": "ABCN", + "power_factor": "1.0", + "rated_power": "1500000.00", + "x": "16673", + "y": "227" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pvfarm1", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "1000000.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1081", + "parent": "sx2897767c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.00", + "x": "12493", + "y": "-7315" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1081", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10170.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12950.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_118", + "parent": "sx2001204c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "16180.00", + "x": "-17578", + "y": "-1789" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_118", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12950.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9360.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_96", + "parent": "sx2001007b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "11710.00", + "x": "-10939", + "y": "5060" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_96", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9360.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "4070.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1007", + "parent": "sx3104126c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "5100.00", + "x": "-11158", + "y": "-6120" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1007", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "4070.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12600.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_10", + "parent": "sx2000406a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "15740.00", + "x": "-12509", + "y": "-3347" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_10", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12600.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1127", + "parent": "sx2936214a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.00", + "x": "8358", + "y": "1900" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1127", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8870.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12720.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_98", + "parent": "sx2001008b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "15900.00", + "x": "-10697", + "y": "5470" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_98", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12720.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1005", + "parent": "sx3045895c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.00", + "x": "-17485", + "y": "5842" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1005", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10170.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1125", + "parent": "sx3160862c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.00", + "x": "-2692", + "y": "1249" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1125", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6100.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11920.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_12", + "parent": "sx2000407a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "14900.00", + "x": "-12772", + "y": "-3774" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_12", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11920.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "19450.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1003", + "parent": "sx2673331b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "24300.00", + "x": "5219", + "y": "7832" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1003", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "19450.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "3890.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1123", + "parent": "sx2805036b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "4800.00", + "x": "-2658", + "y": "3002" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1123", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "3890.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12440.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_14", + "parent": "sx2000408a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "15550.00", + "x": "-12894", + "y": "-4150" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_14", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12440.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1001", + "parent": "sx3216348a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6600.00", + "x": "4222", + "y": "-5603" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1001", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5320.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1089", + "parent": "sx3143999a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.00", + "x": "-5897", + "y": "-1871" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1089", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8870.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "28330.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_110", + "parent": "sx2001014b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "35410.00", + "x": "-8140", + "y": "6643" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_110", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "28330.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9730.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1121", + "parent": "sx3217064b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12200.00", + "x": "-10674", + "y": "1322" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1121", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9730.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12980.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_16", + "parent": "sx2000409a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "16230.00", + "x": "-13097", + "y": "-4534" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_16", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12980.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1109", + "parent": "sx3178997c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7700.00", + "x": "-5596", + "y": "958" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1109", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6100.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1107", + "parent": "sx3082992a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.00", + "x": "3573", + "y": "-4909" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1107", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5320.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_80", + "parent": "sx2000913c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.00", + "x": "-11572", + "y": "8383" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_80", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1075", + "parent": "sx2673319c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.00", + "x": "13090", + "y": "-5481" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1075", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6100.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10530.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_122", + "parent": "sx2001206c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "13170.00", + "x": "-18330", + "y": "-2431" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_122", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10530.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_82", + "parent": "sx2000914c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.00", + "x": "-12068", + "y": "8951" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_82", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1073", + "parent": "sx3197641a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.00", + "x": "19366", + "y": "549" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1073", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5320.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8850.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_124", + "parent": "sx2001207c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "11060.00", + "x": "-18638", + "y": "-2642" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_124", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8850.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_84", + "parent": "sx2000915c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.00", + "x": "-12753", + "y": "9153" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_84", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1071", + "parent": "sx2841627a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.00", + "x": "3739", + "y": "-6598" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1071", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5320.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11890.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_126", + "parent": "sx2001208c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14850.00", + "x": "-18994", + "y": "-3053" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_126", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11890.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_86", + "parent": "sx2001002b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "14060.00", + "x": "-11411", + "y": "1761" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_86", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "13930.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_128", + "parent": "sx2001209c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "17410.00", + "x": "-19268", + "y": "-3311" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_128", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "13930.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1117", + "parent": "sx2897768c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12800.00", + "x": "-11429", + "y": "-1659" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1117", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10170.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12560.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_88", + "parent": "sx2001003b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "15700.00", + "x": "-12206", + "y": "3134" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_88", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12560.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "13300.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1115", + "parent": "sx3728043a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "16700.00", + "x": "16342", + "y": "5087" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1115", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "13300.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "17740.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1113", + "parent": "sx3215203a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "22100.00", + "x": "-9840", + "y": "-7696" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1113", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "17740.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1079", + "parent": "sx2891575c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.00", + "x": "-7781", + "y": "19762" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1079", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6100.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "17740.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1111", + "parent": "sx3233412a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "22200.00", + "x": "-2046", + "y": "-5035" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1111", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "17740.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1077", + "parent": "sx2991943c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12800.00", + "x": "7448", + "y": "-4175" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1077", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10170.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8560.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_120", + "parent": "sx2001205c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "10700.00", + "x": "-17966", + "y": "-2116" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_120", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8560.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1065", + "parent": "sx2785523c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7700.00", + "x": "-6031", + "y": "-3944" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1065", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6100.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "17740.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1063", + "parent": "sx2814529a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "22100.00", + "x": "15474", + "y": "-9877" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1063", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "17740.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "17740.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1183", + "parent": "sx2990098a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "22170.00", + "x": "-955", + "y": "-4500" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1183", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "17740.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_70", + "parent": "sx2000908c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.00", + "x": "-11881", + "y": "6282" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_70", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1061", + "parent": "sx2992556a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "7600.00", + "x": "-6068", + "y": "12014" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1061", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6100.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "4070.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1181", + "parent": "sx2879076c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "5100.00", + "x": "-8690", + "y": "-6242" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1181", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "4070.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_72", + "parent": "sx2000909c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.00", + "x": "-11848", + "y": "6810" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_72", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_74", + "parent": "sx2000910c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.00", + "x": "-11769", + "y": "7232" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_74", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "40520.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_170", + "parent": "sx2001400c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "50650.00", + "x": "-15694", + "y": "-1785" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_170", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "40520.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1105", + "parent": "sx2785513a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11000.00", + "x": "-8488", + "y": "4969" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1105", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8870.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_76", + "parent": "sx2000911c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.00", + "x": "-12750", + "y": "7851" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_76", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1103", + "parent": "sx2785538a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.00", + "x": "11850", + "y": "-3017" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1103", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8870.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_78", + "parent": "sx2000912c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.00", + "x": "-11517", + "y": "7925" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_78", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1069", + "parent": "sx3216368c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7700.00", + "x": "16837", + "y": "-9021" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1069", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6100.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1101", + "parent": "sx3104132a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6600.00", + "x": "-3963", + "y": "10769" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1101", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5320.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1067", + "parent": "sx2841638c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.00", + "x": "-760", + "y": "-13277" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1067", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6100.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1175", + "parent": "sx2691951c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.00", + "x": "-8314", + "y": "-3743" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1175", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10170.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "13970.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_100", + "parent": "sx2001009b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "17460.00", + "x": "-9474", + "y": "5079" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_100", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "13970.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1053", + "parent": "sx2710544a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.00", + "x": "1780", + "y": "-4946" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1053", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5320.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5840.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1173", + "parent": "sx2897789b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.00", + "x": "13001", + "y": "11806" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1173", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5840.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12560.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_60", + "parent": "sx2000903c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "15700.00", + "x": "-13232", + "y": "4025" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_60", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12560.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "16900.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_102", + "parent": "sx2001010b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "21120.00", + "x": "-9248", + "y": "5522" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_102", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "16900.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1051", + "parent": "sx3048937c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.00", + "x": "-9700", + "y": "20900" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1051", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6100.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1171", + "parent": "sx3198347c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.00", + "x": "6504", + "y": "1171" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1171", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6100.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9710.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_62", + "parent": "sx2000904c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12140.00", + "x": "-12310", + "y": "4498" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_62", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9710.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "7480.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_104", + "parent": "sx2001011b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "9350.00", + "x": "-10139", + "y": "6446" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_104", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7480.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_64", + "parent": "sx2000905c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.00", + "x": "-13442", + "y": "4850" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_64", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "13750.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_106", + "parent": "sx2001012b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "17200.00", + "x": "-9774", + "y": "6741" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_106", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "13750.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_66", + "parent": "sx2000906c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.00", + "x": "-13407", + "y": "5327" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_66", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_68", + "parent": "sx2000907c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.00", + "x": "-12855", + "y": "6014" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_68", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11250.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1059", + "parent": "sx2673318c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.00", + "x": "18159", + "y": "2134" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1059", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10170.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "20340.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1179", + "parent": "sx3215203c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "25500.00", + "x": "-10072", + "y": "-8048" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1179", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "20340.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9730.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1057", + "parent": "sx3160113b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12100.00", + "x": "13166", + "y": "10598" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1057", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9730.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "14590.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1177", + "parent": "sx2673308b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "18300.00", + "x": "8792", + "y": "-1536" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1177", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14590.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5330.00", + "Q_Out": "0.00", + "V_base": "208.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1055", + "parent": "sx2839305a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.00", + "x": "5803", + "y": "4101" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "name": "pv_pv_1055", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5330.00" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "0.00", + "Q_Out": "0.00", + "V_base": "480.00", + "charge_lockout_time": "1", + "charge_off_threshold": "0.00", + "charge_on_threshold": "-5000.00", + "discharge_lockout_time": "1", + "discharge_off_threshold": "100000.00", + "discharge_on_threshold": "150000.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "0.975", + "inverter_type": "FOUR_QUADRANT", + "max_charge_rate": "250000.00", + "max_discharge_rate": "150000.00", + "name": "inv_bat_battery1", + "parent": "m2001-ess1_stmtr", + "phases": "ABCN", + "rated_power": "250000.00", + "sense_object": "m2001-ess1_stmtr", + "x": "-15660", + "y": "-2942" + }, + "children": [ + { + "attributes": { + "battery_capacity": "500000.0", + "battery_type": "LI_ION", + "name": "bat_battery1", + "nominal_voltage": "48", + "rated_power": "250000.00", + "round_trip_efficiency": "0.86", + "state_of_charge": "1.0000", + "use_internal_battery_model": "true" + }, + "children": [], + "name": "battery" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "0.00", + "Q_Out": "0.00", + "V_base": "480.00", + "charge_lockout_time": "1", + "charge_off_threshold": "0.00", + "charge_on_threshold": "-5000.00", + "discharge_lockout_time": "1", + "discharge_off_threshold": "100000.00", + "discharge_on_threshold": "150000.00", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "0.975", + "inverter_type": "FOUR_QUADRANT", + "max_charge_rate": "250000.00", + "max_discharge_rate": "150000.00", + "name": "inv_bat_battery2", + "parent": "m2001-ess2_stmtr", + "phases": "ABCN", + "rated_power": "250000.00", + "sense_object": "m2001-ess2_stmtr", + "x": "-15974", + "y": "-2677" + }, + "children": [ + { + "attributes": { + "battery_capacity": "500000.0", + "battery_type": "LI_ION", + "name": "bat_battery2", + "nominal_voltage": "48", + "rated_power": "250000.00", + "round_trip_efficiency": "0.86", + "state_of_charge": "1.0000", + "use_internal_battery_model": "true" + }, + "children": [], + "name": "battery" + } + ], + "name": "inverter" + } + ], + "schedules": [] +} \ No newline at end of file diff --git a/local-server/tests/golden/9500_with_coordinates__Rotating_Machines.json b/local-server/tests/golden/9500_with_coordinates__Rotating_Machines.json new file mode 100644 index 00000000..757c874d --- /dev/null +++ b/local-server/tests/golden/9500_with_coordinates__Rotating_Machines.json @@ -0,0 +1,203 @@ +{ + "classes": [], + "clock": {}, + "definitions": [], + "directives": [], + "includes": [], + "modules": [], + "objects": [ + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "775000.00", + "name": "dg_diesel620", + "parent": "m1209-dies1_dgmtr", + "power_out_A": "0.00+0.00j", + "power_out_B": "0.00+0.00j", + "power_out_C": "0.00+0.00j", + "x": "-217", + "y": "-2283" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "125000.00", + "name": "dg_lngengine100", + "parent": "m1142-lng1_dgmtr", + "power_out_A": "0.00+0.00j", + "power_out_B": "0.00+0.00j", + "power_out_C": "0.00+0.00j", + "x": "-8205", + "y": "3286" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "737000.00", + "name": "dg_diesel590", + "parent": "m1089-dies1_dgmtr", + "power_out_A": "0.00+0.00j", + "power_out_B": "0.00+0.00j", + "power_out_C": "0.00+0.00j", + "x": "11608", + "y": "10186" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "2250000.00", + "name": "m1089-lng1_gen", + "parent": "m1089-lng1", + "power_out_A": "0.00+0.00j", + "power_out_B": "0.00+0.00j", + "power_out_C": "0.00+0.00j", + "x": "-11599", + "y": "-3395" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "75000.00", + "name": "dg_windturb-1", + "parent": "m1186-wt1_dgmtr", + "power_out_A": "6666.67+2191.23j", + "power_out_B": "6666.67+2191.23j", + "power_out_C": "6666.67+2191.23j", + "x": "-5616", + "y": "15745" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "75000.00", + "name": "dg_windturb-2", + "parent": "m1186-wt2_dgmtr", + "power_out_A": "6666.67+2191.23j", + "power_out_B": "6666.67+2191.23j", + "power_out_C": "6666.67+2191.23j", + "x": "-6136", + "y": "15842" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "75000.00", + "name": "dg_windturb-3", + "parent": "m1186-wt3_dgmtr", + "power_out_A": "6666.67+2191.23j", + "power_out_B": "6666.67+2191.23j", + "power_out_C": "6666.67+2191.23j", + "x": "-6616", + "y": "15609" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "250000.00", + "name": "dg_microturb-1", + "parent": "m2001-mt1_dgmtr", + "power_out_A": "16666.67+5478.07j", + "power_out_B": "16666.67+5478.07j", + "power_out_C": "16666.67+5478.07j", + "x": "-14632", + "y": "-3026" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "250000.00", + "name": "dg_microturb-2", + "parent": "m2001-mt2_dgmtr", + "power_out_A": "0.00+0.00j", + "power_out_B": "0.00+0.00j", + "power_out_C": "0.00+0.00j", + "x": "-15745", + "y": "-2155" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "250000.00", + "name": "dg_microturb-3", + "parent": "m2001-mt3_dgmtr", + "power_out_A": "0.00+0.00j", + "power_out_B": "0.00+0.00j", + "power_out_C": "0.00+0.00j", + "x": "-14280", + "y": "-2936" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "250000.00", + "name": "dg_microturb-4", + "parent": "m1069-mt1_dgmtr", + "power_out_A": "33333.33+10956.14j", + "power_out_B": "33333.33+10956.14j", + "power_out_C": "33333.33+10956.14j", + "x": "-10206", + "y": "-4131" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "12470.00", + "Rated_VA": "4000000.00", + "name": "dg_steamgen1", + "parent": "m1026chp-3_dgmtr", + "power_out_A": "333333.33-345864.40j", + "power_out_B": "333333.33-345864.40j", + "power_out_C": "333333.33-345864.40j", + "x": "4237", + "y": "-3431" + }, + "children": [], + "name": "diesel_dg" + } + ], + "schedules": [] +} \ No newline at end of file diff --git a/local-server/tests/golden/model_base__model_base.json b/local-server/tests/golden/model_base__model_base.json new file mode 100644 index 00000000..14d244d0 --- /dev/null +++ b/local-server/tests/golden/model_base__model_base.json @@ -0,0 +1,152254 @@ +{ + "classes": [], + "clock": {}, + "definitions": [], + "directives": [], + "includes": [], + "modules": [], + "objects": [ + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_A": "0.000000", + "compensator_x_setting_A": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_feeder_reg3a", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_A": "-1" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg3a", + "continuous_rating_A": "4201.39", + "emergency_rating_A": "5729.17", + "from": "regxfmr_hvmv11sub3_lsb", + "name": "reg_feeder_reg3a", + "phases": "A", + "to": "hvmv11sub3_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_A": "0.000000", + "compensator_x_setting_A": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_feeder_reg2a", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_A": "-2" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg2a", + "continuous_rating_A": "4201.39", + "emergency_rating_A": "5729.17", + "from": "regxfmr_hvmv11sub2_lsb", + "name": "reg_feeder_reg2a", + "phases": "A", + "to": "hvmv11sub2_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_B": "0.000000", + "compensator_x_setting_B": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_feeder_reg3b", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_B": "-1" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg3b", + "continuous_rating_B": "4201.39", + "emergency_rating_B": "5729.17", + "from": "regxfmr_hvmv11sub3_lsb", + "name": "reg_feeder_reg3b", + "phases": "B", + "to": "hvmv11sub3_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_A": "0.000000", + "compensator_x_setting_A": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_vreg2_a", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_A": "-7" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg2_a", + "continuous_rating_A": "1527.78", + "emergency_rating_A": "2083.33", + "from": "regxfmr_190-8593", + "name": "reg_vreg2_a", + "phases": "A", + "to": "190-8593" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_B": "0.000000", + "compensator_x_setting_B": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_vreg2_b", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_B": "-4" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg2_b", + "continuous_rating_B": "1527.78", + "emergency_rating_B": "2083.33", + "from": "regxfmr_190-8593", + "name": "reg_vreg2_b", + "phases": "B", + "to": "190-8593" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_A": "0.000000", + "compensator_x_setting_A": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_vreg3_a", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_A": "5" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg3_a", + "continuous_rating_A": "1527.78", + "emergency_rating_A": "2083.33", + "from": "regxfmr_190-8581", + "name": "reg_vreg3_a", + "phases": "A", + "to": "190-8581" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_C": "0.000000", + "compensator_x_setting_C": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_feeder_reg1c", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_C": "-3" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg1c", + "continuous_rating_C": "4201.39", + "emergency_rating_C": "5729.17", + "from": "regxfmr_hvmv11sub1_lsb", + "name": "reg_feeder_reg1c", + "phases": "C", + "to": "hvmv11sub1_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_A": "0.000000", + "compensator_x_setting_A": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_feeder_reg1a", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_A": "-3" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg1a", + "continuous_rating_A": "4201.39", + "emergency_rating_A": "5729.17", + "from": "regxfmr_hvmv11sub1_lsb", + "name": "reg_feeder_reg1a", + "phases": "A", + "to": "hvmv11sub1_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_B": "0.000000", + "compensator_x_setting_B": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_feeder_reg2b", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_B": "-2" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg2b", + "continuous_rating_B": "4201.39", + "emergency_rating_B": "5729.17", + "from": "regxfmr_hvmv11sub2_lsb", + "name": "reg_feeder_reg2b", + "phases": "B", + "to": "hvmv11sub2_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_C": "0.000000", + "compensator_x_setting_C": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_feeder_reg3c", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_C": "-2" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg3c", + "continuous_rating_C": "4201.39", + "emergency_rating_C": "5729.17", + "from": "regxfmr_hvmv11sub3_lsb", + "name": "reg_feeder_reg3c", + "phases": "C", + "to": "hvmv11sub3_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_B": "0.000000", + "compensator_x_setting_B": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_feeder_reg1b", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_B": "-3" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg1b", + "continuous_rating_B": "4201.39", + "emergency_rating_B": "5729.17", + "from": "regxfmr_hvmv11sub1_lsb", + "name": "reg_feeder_reg1b", + "phases": "B", + "to": "hvmv11sub1_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_C": "0.000000", + "compensator_x_setting_C": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_feeder_reg2c", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_C": "-3" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_feeder_reg2c", + "continuous_rating_C": "4201.39", + "emergency_rating_C": "5729.17", + "from": "regxfmr_hvmv11sub2_lsb", + "name": "reg_feeder_reg2c", + "phases": "C", + "to": "hvmv11sub2_lsb" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_C": "0.000000", + "compensator_x_setting_C": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_vreg4_c", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_C": "-5" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg4_c", + "continuous_rating_C": "1527.78", + "emergency_rating_C": "2083.33", + "from": "regxfmr_190-7361", + "name": "reg_vreg4_c", + "phases": "C", + "to": "190-7361" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_C": "0.000000", + "compensator_x_setting_C": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_vreg2_c", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_C": "-1" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg2_c", + "continuous_rating_C": "1527.78", + "emergency_rating_C": "2083.33", + "from": "regxfmr_190-8593", + "name": "reg_vreg2_c", + "phases": "C", + "to": "190-8593" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_B": "0.000000", + "compensator_x_setting_B": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_vreg3_b", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_B": "5" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg3_b", + "continuous_rating_B": "1527.78", + "emergency_rating_B": "2083.33", + "from": "regxfmr_190-8581", + "name": "reg_vreg3_b", + "phases": "B", + "to": "190-8581" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_A": "0.000000", + "compensator_x_setting_A": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_vreg4_a", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_A": "-1" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg4_a", + "continuous_rating_A": "1527.78", + "emergency_rating_A": "2083.33", + "from": "regxfmr_190-7361", + "name": "reg_vreg4_a", + "phases": "A", + "to": "190-7361" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_C": "0.000000", + "compensator_x_setting_C": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_vreg3_c", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_C": "4" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg3_c", + "continuous_rating_C": "1527.78", + "emergency_rating_C": "2083.33", + "from": "regxfmr_190-8581", + "name": "reg_vreg3_c", + "phases": "C", + "to": "190-8581" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "Control": "MANUAL", + "Type": "B", + "compensator_r_setting_B": "0.000000", + "compensator_x_setting_B": "0.000000", + "connect_type": "WYE_WYE", + "current_transducer_ratio": "1500.000000", + "dwell_time": "15.000000", + "lower_taps": "16", + "name": "rcon_vreg4_b", + "power_transducer_ratio": "60.000000", + "raise_taps": "16", + "regulation": "0.100000", + "tap_pos_B": "-4" + }, + "children": [], + "name": "regulator_configuration" + }, + { + "attributes": { + "configuration": "rcon_vreg4_b", + "continuous_rating_B": "1527.78", + "emergency_rating_B": "2083.33", + "from": "regxfmr_190-7361", + "name": "reg_vreg4_b", + "phases": "B", + "to": "190-7361" + }, + "children": [], + "name": "regulator" + }, + { + "attributes": { + "diameter": "0.398000", + "geometric_mean_radius": "0.011417", + "name": "wire_1/0_3w_cs", + "rating.summer.continuous": "200.00", + "rating.summer.emergency": "200.00", + "rating.winter.continuous": "200.00", + "rating.winter.emergency": "200.00", + "resistance": "0.971493" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.398000", + "geometric_mean_radius": "0.004458", + "name": "wire_1/0_acsr", + "rating.summer.continuous": "260.00", + "rating.summer.emergency": "260.00", + "rating.winter.continuous": "260.00", + "rating.winter.emergency": "260.00", + "resistance": "1.040971" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.250000", + "geometric_mean_radius": "0.007000", + "name": "wire_4_wpal", + "rating.summer.continuous": "150.00", + "rating.summer.emergency": "150.00", + "rating.winter.continuous": "150.00", + "rating.winter.emergency": "150.00", + "resistance": "2.459352" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.250000", + "geometric_mean_radius": "0.004367", + "name": "wire_4_acsr", + "rating.summer.continuous": "150.00", + "rating.summer.emergency": "150.00", + "rating.winter.continuous": "150.00", + "rating.winter.emergency": "150.00", + "resistance": "2.530619" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.250000", + "geometric_mean_radius": "0.007000", + "name": "wire_4_dpx", + "rating.summer.continuous": "136.00", + "rating.summer.emergency": "136.00", + "rating.winter.continuous": "136.00", + "rating.winter.emergency": "136.00", + "resistance": "2.449833" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.447000", + "geometric_mean_radius": "0.005100", + "name": "wire_2/0_wpal", + "rating.summer.continuous": "300.00", + "rating.summer.emergency": "300.00", + "rating.winter.continuous": "300.00", + "rating.winter.emergency": "300.00", + "resistance": "0.852977" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.743000", + "geometric_mean_radius": "0.024000", + "name": "wire_397_acsr", + "rating.summer.continuous": "630.00", + "rating.summer.emergency": "630.00", + "rating.winter.continuous": "630.00", + "rating.winter.emergency": "630.00", + "resistance": "0.256992" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.743000", + "geometric_mean_radius": "0.024000", + "name": "wire_397_aac_treewire", + "rating.summer.continuous": "526.00", + "rating.summer.emergency": "526.00", + "rating.winter.continuous": "526.00", + "rating.winter.emergency": "526.00", + "resistance": "0.283000" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.316000", + "geometric_mean_radius": "0.004183", + "name": "wire_2_acsr", + "rating.summer.continuous": "200.00", + "rating.summer.emergency": "200.00", + "rating.winter.continuous": "200.00", + "rating.winter.emergency": "200.00", + "resistance": "1.625655" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.316000", + "geometric_mean_radius": "0.004183", + "name": "wire_2_wpal", + "rating.summer.continuous": "155.00", + "rating.summer.emergency": "155.00", + "rating.winter.continuous": "155.00", + "rating.winter.emergency": "155.00", + "resistance": "1.690084" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.198000", + "geometric_mean_radius": "0.003942", + "name": "wire_6_wpal", + "rating.summer.continuous": "115.00", + "rating.summer.emergency": "115.00", + "rating.winter.continuous": "115.00", + "rating.winter.emergency": "115.00", + "resistance": "3.910792" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.250000", + "geometric_mean_radius": "0.007000", + "name": "wire_4_tpx", + "rating.summer.continuous": "115.00", + "rating.summer.emergency": "115.00", + "rating.winter.continuous": "115.00", + "rating.winter.emergency": "115.00", + "resistance": "2.449833" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.398000", + "geometric_mean_radius": "0.011417", + "name": "wire_1/0_tpx", + "rating.summer.continuous": "205.00", + "rating.summer.emergency": "205.00", + "rating.winter.continuous": "205.00", + "rating.winter.emergency": "205.00", + "resistance": "0.183994" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.563000", + "geometric_mean_radius": "0.015767", + "name": "wire_4/0_tpx", + "rating.summer.continuous": "318.00", + "rating.summer.emergency": "318.00", + "rating.winter.continuous": "318.00", + "rating.winter.emergency": "318.00", + "resistance": "0.485746" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "diameter": "0.447000", + "geometric_mean_radius": "0.005100", + "name": "wire_2/0_acsr", + "rating.summer.continuous": "300.00", + "rating.summer.emergency": "300.00", + "rating.winter.continuous": "300.00", + "rating.winter.emergency": "300.00", + "resistance": "0.852977" + }, + "children": [], + "name": "overhead_line_conductor" + }, + { + "attributes": { + "conductor_diameter": "0.368110", + "conductor_gmr": "0.011089", + "conductor_resistance": "0.970408", + "insulation_relative_permitivitty": "2.30", + "name": "cncab_1/0_al_15kv_1/3", + "neutral_diameter": "0.025197", + "neutral_gmr": "0.000819", + "neutral_resistance": "4.103715", + "neutral_strands": "6", + "outer_diameter": "1.078740" + }, + "children": [], + "name": "underground_line_conductor" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0000", + "distance_AE": "32.0000", + "distance_AN": "5.5902", + "distance_BC": "2.5000", + "distance_BE": "34.0000", + "distance_BN": "7.0000", + "distance_CE": "32.0000", + "distance_CN": "5.2202", + "distance_NE": "27.0000", + "name": "spc_3ph_h-4_acsr2_acsr2_acsr4_wpal_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-4_acsrxx1/0_tpx_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x4_wpalx4_wpal_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x4_wpalx1/0_tpx_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0000", + "distance_AE": "32.0000", + "distance_AN": "5.5902", + "distance_BC": "2.5000", + "distance_BE": "34.0000", + "distance_BN": "7.0000", + "distance_CE": "32.0000", + "distance_CN": "5.2202", + "distance_NE": "27.0000", + "name": "spc_3ph_h-4_wpal4_wpal4_wpal1/0_tpx_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0000", + "distance_AE": "32.0000", + "distance_AN": "5.5902", + "distance_BC": "2.5000", + "distance_BE": "34.0000", + "distance_BN": "7.0000", + "distance_CE": "32.0000", + "distance_CN": "5.2202", + "distance_NE": "27.0000", + "name": "spc_3ph_h-4_acsr4_acsr4_acsr4_wpal_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0000", + "distance_AE": "32.0000", + "distance_AN": "5.5902", + "distance_BC": "2.5000", + "distance_BE": "34.0000", + "distance_BN": "7.0000", + "distance_CE": "32.0000", + "distance_CN": "5.2202", + "distance_NE": "27.0000", + "name": "spc_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x4_wpalx2_acsr_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-xx6_wpal6_wpal_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x4_acsrx4_wpal_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-xx4_wpal4_wpal_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-2_acsrxx4_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x4_acsrx1/0_tpx_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x2_acsrx1/0_tpx_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x4_acsrx4_tpx_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0000", + "distance_AE": "32.0000", + "distance_AN": "5.5902", + "distance_BC": "2.5000", + "distance_BE": "34.0000", + "distance_BN": "7.0000", + "distance_CE": "32.0000", + "distance_CN": "5.2202", + "distance_NE": "27.0000", + "name": "spc_3ph_h-2_acsr2_acsr4_acsr4_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0000", + "distance_AE": "32.0000", + "distance_AN": "5.5902", + "distance_BC": "2.5000", + "distance_BE": "34.0000", + "distance_BN": "7.0000", + "distance_CE": "32.0000", + "distance_CN": "5.2202", + "distance_NE": "27.0000", + "name": "spc_3ph_h-397_acsr397_acsr397_acsr2/0_wpal_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x4_acsrx1/0_3w_cs_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "-4.0026", + "name": "spc_1p_1/0_axnj_db_A" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "-4.0026", + "name": "spc_1p_1/0_axnj_db_B" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "-4.0026", + "name": "spc_1p_1/0_axnj_db_C" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-2_acsrxx4_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-xx4_acsr1/0_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-2_acsrxx2_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-xx4_wpal4_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "0.5000", + "distance_AC": "1.0000", + "distance_AE": "-4.0026", + "distance_BC": "0.5000", + "distance_BE": "-4.0026", + "distance_CE": "-4.0026", + "name": "spc_3p_1/0_axnj_db_ABC" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-4_acsrxx4_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-2_acsrxx4/0_tpx_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x4_acsrx4_dpx_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-xx4_acsr4_tpx_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-4_acsrxx6_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x4_acsrx2_wpal_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x4_wpalx4_acsr_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-xx4_acsr4_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-xx4_wpal1/0_tpx_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AC": "4.0000", + "distance_AE": "32.0000", + "distance_AN": "5.5902", + "distance_CE": "32.0000", + "distance_CN": "5.2202", + "distance_NE": "27.0000", + "name": "spc_2ph_h-2_acsrx2_acsr2_acsr_ACN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0000", + "distance_AE": "32.0000", + "distance_AN": "5.5902", + "distance_BC": "2.5000", + "distance_BE": "34.0000", + "distance_BN": "7.0000", + "distance_CE": "32.0000", + "distance_CN": "5.2202", + "distance_NE": "27.0000", + "name": "spc_3ph_h-4_wpal4_wpal4_wpal4_wpal_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-2_acsrxx1/0_tpx_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x2_acsrx1/0_3w_cs_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0000", + "distance_AE": "32.0000", + "distance_AN": "5.5902", + "distance_BC": "2.5000", + "distance_BE": "34.0000", + "distance_BN": "7.0000", + "distance_CE": "32.0000", + "distance_CN": "5.2202", + "distance_NE": "27.0000", + "name": "spc_3ph_h-2/0_acsr2/0_acsr2/0_acsr4_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-4_wpalxx2_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x2_acsrx4_tpx_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "6.4185", + "distance_AC": "10.0066", + "distance_AE": "39.9934", + "distance_AN": "16.0806", + "distance_BC": "6.3929", + "distance_BE": "45.0131", + "distance_BN": "11.2716", + "distance_CE": "50.0000", + "distance_CN": "6.1885", + "distance_NE": "56.0039", + "name": "spc_3ph-69kv_397_treewire_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x2_acsrx4_acsr_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-4_wpalxx4_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-2_wpalxx2_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-4_acsrxx2_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x4_acsrx4_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x4_acsrx4_acsr_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0000", + "distance_AE": "32.0000", + "distance_AN": "5.5902", + "distance_BC": "2.5000", + "distance_BE": "34.0000", + "distance_BN": "7.0000", + "distance_CE": "32.0000", + "distance_CN": "5.2202", + "distance_NE": "27.0000", + "name": "spc_3ph_h-4_acsr4_acsr4_acsr4_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-xx2_acsr4_dpx_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x2_acsrx2_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_BE": "34.5000", + "distance_BN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x2_acsrx2_acsr_BN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-x2_acsrx2_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-4_acsrxx4_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-xx4_acsr2_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-4_wpalxx1/0_tpx_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0000", + "distance_AE": "32.0000", + "distance_AN": "5.5902", + "distance_BC": "2.5000", + "distance_BE": "34.0000", + "distance_BN": "7.0000", + "distance_CE": "32.0000", + "distance_CN": "5.2202", + "distance_NE": "27.0000", + "name": "spc_3ph_h-397_acsr397_acsr397_acsr397_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-xx2_acsr1/0_tpx_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0000", + "distance_AE": "32.0000", + "distance_AN": "5.5902", + "distance_BC": "2.5000", + "distance_BE": "34.0000", + "distance_BN": "7.0000", + "distance_CE": "32.0000", + "distance_CN": "5.2202", + "distance_NE": "27.0000", + "name": "spc_3ph_h-2_acsr2_acsr2_acsr2_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-xx4_acsr4_wpal_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-2/0_acsrxx2_acsr_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-xx2/0_acsr1/0_tpx_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0000", + "distance_AE": "32.0000", + "distance_AN": "5.5902", + "distance_BC": "2.5000", + "distance_BE": "34.0000", + "distance_BN": "7.0000", + "distance_CE": "32.0000", + "distance_CN": "5.2202", + "distance_NE": "27.0000", + "name": "spc_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_CE": "34.5000", + "distance_CN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-xx2_acsr2_acsr_CN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0000", + "distance_AE": "32.0000", + "distance_AN": "5.5902", + "distance_BC": "2.5000", + "distance_BE": "34.0000", + "distance_BN": "7.0000", + "distance_CE": "32.0000", + "distance_CN": "5.2202", + "distance_NE": "27.0000", + "name": "spc_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_wpal_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-4_wpalxx4_wpal_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AB": "3.2016", + "distance_AC": "4.0000", + "distance_AE": "32.0000", + "distance_AN": "5.5902", + "distance_BC": "2.5000", + "distance_BE": "34.0000", + "distance_BN": "7.0000", + "distance_CE": "32.0000", + "distance_CN": "5.2202", + "distance_NE": "27.0000", + "name": "spc_3ph_h-4_acsr4_acsr4_acsr4_tpx_ABCN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "distance_AE": "34.5000", + "distance_AN": "7.5664", + "distance_NE": "27.0000", + "name": "spc_1ph-4_acsrxx1/0_3w_cs_AN" + }, + "children": [], + "name": "line_spacing" + }, + { + "attributes": { + "conductor_A": "wire_397_acsr", + "conductor_B": "wire_397_acsr", + "conductor_C": "wire_397_acsr", + "conductor_N": "wire_397_acsr", + "name": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "spacing": "spc_3ph_h-397_acsr397_acsr397_acsr397_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "spacing": "spc_1ph-4_acsrxx4_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_wpal", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-4_wpalxx1/0_tpx_ln5895784-1", + "spacing": "spc_1ph-4_wpalxx1/0_tpx_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_2_acsr", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "spacing": "spc_1ph-x2_acsrx1/0_tpx_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_2_wpal", + "name": "lcon_1ph-x4_acsrx2_wpal_ln5496577-1", + "spacing": "spc_1ph-x4_acsrx2_wpal_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_2_acsr", + "conductor_N": "wire_1/0_3w_cs", + "name": "lcon_1ph-x2_acsrx1/0_3w_cs_ln6043468-3", + "spacing": "spc_1ph-x2_acsrx1/0_3w_cs_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_6_wpal", + "name": "lcon_1ph-4_acsrxx6_wpal_ln5895785-1", + "spacing": "spc_1ph-4_acsrxx6_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_397_acsr", + "conductor_B": "wire_397_acsr", + "conductor_C": "wire_397_acsr", + "conductor_N": "wire_2/0_wpal", + "name": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_wpal_ln6291244-1", + "spacing": "spc_3ph_h-397_acsr397_acsr397_acsr2/0_wpal_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_4_dpx", + "name": "lcon_1ph-xx2_acsr4_dpx_ln5744331-1", + "spacing": "spc_1ph-xx2_acsr4_dpx_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_1/0_3w_cs", + "name": "lcon_1ph-4_acsrxx1/0_3w_cs_ln5686244-1", + "spacing": "spc_1ph-4_acsrxx1/0_3w_cs_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "cncab_1/0_al_15kv_1/3", + "name": "lcon_1p_1/0_axnj_db_ln8945010-1", + "spacing": "spc_1p_1/0_axnj_db_C" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "spacing": "spc_1ph-2_acsrxx1/0_tpx_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "spacing": "spc_1ph-2_acsrxx2_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_B": "wire_4_acsr", + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_tpx", + "name": "lcon_3ph_h-4_acsr4_acsr4_acsr4_tpx_ln5742835-1", + "spacing": "spc_3ph_h-4_acsr4_acsr4_acsr4_tpx_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_1/0_acsr", + "name": "lcon_1ph-xx4_acsr1/0_acsr_ln5852082-1", + "spacing": "spc_1ph-xx4_acsr1/0_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_2_acsr", + "conductor_N": "wire_4_tpx", + "name": "lcon_1ph-x2_acsrx4_tpx_ln6169266-1", + "spacing": "spc_1ph-x2_acsrx4_tpx_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_B": "wire_2_acsr", + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "spacing": "spc_3ph_h-4_acsr2_acsr2_acsr4_wpal_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_wpal", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-xx4_wpal1/0_tpx_ln5956462-1", + "spacing": "spc_1ph-xx4_wpal1/0_tpx_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2/0_acsr", + "conductor_B": "wire_2/0_acsr", + "conductor_C": "wire_2/0_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr4_acsr_ln5898194-1", + "spacing": "spc_3ph_h-2/0_acsr2/0_acsr2/0_acsr4_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-x4_acsrx1/0_tpx_ln5562952-1", + "spacing": "spc_1ph-x4_acsrx1/0_tpx_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_4/0_tpx", + "name": "lcon_1ph-2_acsrxx4/0_tpx_ln6103927-1", + "spacing": "spc_1ph-2_acsrxx4/0_tpx_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_wpal", + "conductor_N": "wire_2_wpal", + "name": "lcon_1ph-4_wpalxx2_wpal_ln5561444-1", + "spacing": "spc_1ph-4_wpalxx2_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2/0_acsr", + "conductor_B": "wire_2/0_acsr", + "conductor_C": "wire_2/0_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "spacing": "spc_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_wpal", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-x4_wpalx2_acsr_ln5472350-1", + "spacing": "spc_1ph-x4_wpalx2_acsr_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_wpal", + "conductor_N": "wire_2_wpal", + "name": "lcon_1ph-2_wpalxx2_wpal_ln6409800-1", + "spacing": "spc_1ph-2_wpalxx2_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_B": "wire_2_acsr", + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_3ph_h-2_acsr2_acsr4_acsr4_acsr_ln5655838-1", + "spacing": "spc_3ph_h-2_acsr2_acsr4_acsr4_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "spacing": "spc_1ph-xx4_acsr4_wpal_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "cncab_1/0_al_15kv_1/3", + "conductor_B": "cncab_1/0_al_15kv_1/3", + "conductor_C": "cncab_1/0_al_15kv_1/3", + "name": "lcon_3p_1/0_axnj_db_ln8979254-2", + "spacing": "spc_3p_1/0_axnj_db_ABC" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-2_acsrxx4_acsr_ln5589097-1", + "spacing": "spc_1ph-2_acsrxx4_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "spacing": "spc_1ph-xx2_acsr2_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_B": "wire_2_acsr", + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "spacing": "spc_3ph_h-2_acsr2_acsr2_acsr2_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_6_wpal", + "conductor_N": "wire_6_wpal", + "name": "lcon_1ph-xx6_wpal6_wpal_ln6108128-2", + "spacing": "spc_1ph-xx6_wpal6_wpal_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_tpx", + "name": "lcon_1ph-xx4_acsr4_tpx_ln5531226-1", + "spacing": "spc_1ph-xx4_acsr4_tpx_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_wpal", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "spacing": "spc_1ph-xx4_wpal4_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "spacing": "spc_1ph-x4_acsrx4_acsr_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_wpal", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "spacing": "spc_1ph-4_wpalxx4_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-2_acsrxx4_wpal_ln5686245-2", + "spacing": "spc_1ph-2_acsrxx4_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_wpal", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-x4_wpalx1/0_tpx_ln6077771-1", + "spacing": "spc_1ph-x4_wpalx1/0_tpx_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "spacing": "spc_1ph-4_acsrxx4_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_397_aac_treewire", + "conductor_B": "wire_397_aac_treewire", + "conductor_C": "wire_397_aac_treewire", + "conductor_N": "wire_2/0_acsr", + "name": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "spacing": "spc_3ph-69kv_397_treewire_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_wpal", + "conductor_B": "wire_4_wpal", + "conductor_C": "wire_4_wpal", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_3ph_h-4_wpal4_wpal4_wpal1/0_tpx_ln6411371-1", + "spacing": "spc_3ph_h-4_wpal4_wpal4_wpal1/0_tpx_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_1/0_3w_cs", + "name": "lcon_1ph-x4_acsrx1/0_3w_cs_ln5775368-1", + "spacing": "spc_1ph-x4_acsrx1/0_3w_cs_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_B": "wire_4_acsr", + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "spacing": "spc_3ph_h-4_acsr4_acsr4_acsr4_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-xx2_acsr1/0_tpx_ln6229827-1", + "spacing": "spc_1ph-xx2_acsr1/0_tpx_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "cncab_1/0_al_15kv_1/3", + "name": "lcon_1p_1/0_axnj_db_ln81048087-1", + "spacing": "spc_1p_1/0_axnj_db_B" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-x4_acsrx4_acsr_ln5683000-1", + "spacing": "spc_1ph-x4_acsrx4_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_wpal", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "spacing": "spc_1ph-4_wpalxx4_wpal_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_4_dpx", + "name": "lcon_1ph-x4_acsrx4_dpx_ln6506308-1", + "spacing": "spc_1ph-x4_acsrx4_dpx_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_wpal", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "spacing": "spc_1ph-x4_wpalx4_wpal_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_2_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-x2_acsrx4_acsr_ln6201698-2", + "spacing": "spc_1ph-x2_acsrx4_acsr_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-4_acsrxx2_acsr_ln5775367-1", + "spacing": "spc_1ph-4_acsrxx2_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "spacing": "spc_1ph-x2_acsrx2_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2/0_acsr", + "conductor_B": "wire_2/0_acsr", + "conductor_C": "wire_2/0_acsr", + "conductor_N": "wire_2_wpal", + "name": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_wpal_ln6259996-1", + "spacing": "spc_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_wpal_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2/0_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-2/0_acsrxx2_acsr_ln6129680-2", + "spacing": "spc_1ph-2/0_acsrxx2_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_wpal", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "spacing": "spc_1ph-xx4_wpal4_wpal_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-4_acsrxx1/0_tpx_ln6138596-1", + "spacing": "spc_1ph-4_acsrxx1/0_tpx_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "cncab_1/0_al_15kv_1/3", + "name": "lcon_1p_1/0_axnj_db_ln8979370-1", + "spacing": "spc_1p_1/0_axnj_db_A" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_acsr", + "conductor_B": "wire_4_acsr", + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "spacing": "spc_3ph_h-4_acsr4_acsr4_acsr4_wpal_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_2/0_acsr", + "conductor_N": "wire_1/0_tpx", + "name": "lcon_1ph-xx2/0_acsr1/0_tpx_ln5866260-1", + "spacing": "spc_1ph-xx2/0_acsr1/0_tpx_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_4_tpx", + "name": "lcon_1ph-x4_acsrx4_tpx_ln5804795-1", + "spacing": "spc_1ph-x4_acsrx4_tpx_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "spacing": "spc_1ph-x2_acsrx2_acsr_AN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_acsr", + "conductor_N": "wire_4_wpal", + "name": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "spacing": "spc_1ph-x4_acsrx4_wpal_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "spacing": "spc_1ph-x2_acsrx2_acsr_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_4_wpal", + "conductor_B": "wire_4_wpal", + "conductor_C": "wire_4_wpal", + "conductor_N": "wire_4_wpal", + "name": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "spacing": "spc_3ph_h-4_wpal4_wpal4_wpal4_wpal_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_397_acsr", + "conductor_B": "wire_397_acsr", + "conductor_C": "wire_397_acsr", + "conductor_N": "wire_2/0_acsr", + "name": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "spacing": "spc_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ABCN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_1ph-xx4_acsr2_acsr_ln5741170-3", + "spacing": "spc_1ph-xx4_acsr2_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_B": "wire_4_wpal", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "spacing": "spc_1ph-x4_wpalx4_acsr_BN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_C": "wire_4_acsr", + "conductor_N": "wire_4_acsr", + "name": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "spacing": "spc_1ph-xx4_acsr4_acsr_CN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "conductor_A": "wire_2_acsr", + "conductor_C": "wire_2_acsr", + "conductor_N": "wire_2_acsr", + "name": "lcon_2ph_h-2_acsrx2_acsr2_acsr_ln5637597-1", + "spacing": "spc_2ph_h-2_acsrx2_acsr2_acsr_ACN" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c33": "0.0000", + "name": "lcon_cap_1c_PUZ_C", + "z33": "0.999975+0.999975j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c22": "0.0000", + "name": "lcon_cap_3b_PUZ_B", + "z22": "0.999975+0.999975j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c22": "0.0000", + "name": "lcon_cap_1b_PUZ_B", + "z22": "0.999975+0.999975j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c11": "0.0000", + "name": "lcon_cap_3a_PUZ_A", + "z11": "0.999975+0.999975j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c11": "0.0000", + "name": "lcon_cap_1a_PUZ_A", + "z11": "0.999975+0.999975j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c11": "0.0000", + "name": "lcon_cap_2a_PUZ_A", + "z11": "0.999975+0.999975j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "c33": "0.0000", + "name": "lcon_cap_3c_PUZ_C", + "z33": "0.999975+0.999975j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "name": "tcon_4/0triplex_12", + "z11": "2.16448+0.880776j", + "z12": "0.623525+0.673670j", + "z21": "0.623525+0.673670j", + "z22": "2.16448+0.880776j" + }, + "children": [], + "name": "triplex_line_configuration" + }, + { + "attributes": { + "c33": "0.0000", + "name": "lcon_cap_2c_PUZ_C", + "z33": "0.999975+0.999975j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "name": "tcon_750_triplex_12", + "z11": "0.262659+0.146909j", + "z12": "0.123663+0.0353472j", + "z21": "0.123663+0.0353472j", + "z22": "0.262659+0.146909j" + }, + "children": [], + "name": "triplex_line_configuration" + }, + { + "attributes": { + "c22": "0.0000", + "name": "lcon_cap_2b_PUZ_B", + "z22": "0.999975+0.999975j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0163200j", + "impedance1": "0.0120000+0.00816000j", + "impedance2": "0.0120000+0.00816000j", + "name": "xcon_ct100", + "power_rating": "100.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0163200j", + "impedance1": "0.0120000+0.00816000j", + "impedance2": "0.0120000+0.00816000j", + "name": "xcon_ct250", + "power_rating": "250.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0163200j", + "impedance1": "0.0120000+0.00816000j", + "impedance2": "0.0120000+0.00816000j", + "name": "xcon_ct25", + "power_rating": "25.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0163200j", + "impedance1": "0.0120000+0.00816000j", + "impedance2": "0.0120000+0.00816000j", + "name": "xcon_ct75", + "power_rating": "75.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0163200j", + "impedance1": "0.0120000+0.00816000j", + "impedance2": "0.0120000+0.00816000j", + "name": "xcon_ct50", + "power_rating": "50.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0163200j", + "impedance1": "0.0120000+0.00816000j", + "impedance2": "0.0120000+0.00816000j", + "name": "xcon_ct5", + "power_rating": "5.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0163200j", + "impedance1": "0.0120000+0.00816000j", + "impedance2": "0.0120000+0.00816000j", + "name": "xcon_ct15", + "power_rating": "15.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0163200j", + "impedance1": "0.0120000+0.00816000j", + "impedance2": "0.0120000+0.00816000j", + "name": "xcon_ct37", + "power_rating": "37.500", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "connect_type": "SINGLE_PHASE_CENTER_TAPPED", + "impedance": "0.00600000+0.0163200j", + "impedance1": "0.0120000+0.00816000j", + "impedance2": "0.0120000+0.00816000j", + "name": "xcon_ct10", + "power_rating": "10.000", + "primary_voltage": "7200.000", + "secondary_voltage": "120.000", + "shunt_reactance": "200.000000", + "shunt_resistance": "500.000000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "VAr_set_high": "200000.00", + "VAr_set_low": "-300000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_A": "400000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "100.00", + "name": "cap_capbank3a", + "nominal_voltage": "7200.00", + "parent": "r42246", + "phases": "AN", + "phases_connected": "AN", + "pt_phase": "A", + "remote_sense": "line_cap_3a", + "switchA": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "cap_nominal_voltage": "7199.56", + "capacitor_A": "300000.00", + "capacitor_B": "300000.00", + "capacitor_C": "300000.00", + "name": "cap_capbank4", + "nominal_voltage": "7199.56", + "parent": "r18242", + "phases": "ABCN", + "phases_connected": "ABCN", + "switchA": "CLOSED", + "switchB": "CLOSED", + "switchC": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "200000.00", + "VAr_set_low": "-300000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_B": "400000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "101.00", + "name": "cap_capbank3b", + "nominal_voltage": "7200.00", + "parent": "r42246", + "phases": "BN", + "phases_connected": "BN", + "pt_phase": "B", + "remote_sense": "line_cap_3b", + "switchB": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "150000.00", + "VAr_set_low": "-225000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_A": "300000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "100.00", + "name": "cap_capbank2a", + "nominal_voltage": "7200.00", + "parent": "r42247", + "phases": "AN", + "phases_connected": "AN", + "pt_phase": "A", + "remote_sense": "line_cap_2a", + "switchA": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "150000.00", + "VAr_set_low": "-225000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_B": "300000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "101.00", + "name": "cap_capbank2b", + "nominal_voltage": "7200.00", + "parent": "r42247", + "phases": "BN", + "phases_connected": "BN", + "pt_phase": "B", + "remote_sense": "line_cap_2b", + "switchB": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "200000.00", + "VAr_set_low": "-300000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_C": "400000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "102.00", + "name": "cap_capbank3c", + "nominal_voltage": "7200.00", + "parent": "r42246", + "phases": "CN", + "phases_connected": "CN", + "pt_phase": "C", + "remote_sense": "line_cap_3c", + "switchC": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "150000.00", + "VAr_set_low": "-225000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_A": "300000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "100.00", + "name": "cap_capbank1a", + "nominal_voltage": "7200.00", + "parent": "r20185", + "phases": "AN", + "phases_connected": "AN", + "pt_phase": "A", + "remote_sense": "line_cap_1a", + "switchA": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "150000.00", + "VAr_set_low": "-225000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_B": "300000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "101.00", + "name": "cap_capbank1b", + "nominal_voltage": "7200.00", + "parent": "r20185", + "phases": "BN", + "phases_connected": "BN", + "pt_phase": "B", + "remote_sense": "line_cap_1b", + "switchB": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "150000.00", + "VAr_set_low": "-225000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_C": "300000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "102.00", + "name": "cap_capbank2c", + "nominal_voltage": "7200.00", + "parent": "r42247", + "phases": "CN", + "phases_connected": "CN", + "pt_phase": "C", + "remote_sense": "line_cap_2c", + "switchC": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "VAr_set_high": "150000.00", + "VAr_set_low": "-225000.00", + "cap_nominal_voltage": "7200.00", + "capacitor_C": "300000.00", + "control": "MANUAL", + "control_level": "BANK", + "dwell_time": "102.00", + "name": "cap_capbank1c", + "nominal_voltage": "7200.00", + "parent": "r20185", + "phases": "CN", + "phases_connected": "CN", + "pt_phase": "C", + "remote_sense": "line_cap_1c", + "switchC": "CLOSED" + }, + "children": [], + "name": "capacitor" + }, + { + "attributes": { + "P_Out": "9710.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_6", + "parent": "sx2000404a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "12140.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_6", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12140.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "14930.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_8", + "parent": "sx2000405a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "18660.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_8", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "18660.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_2", + "parent": "sx2000402a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "14060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_2", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12560.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_4", + "parent": "sx2000403a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "15700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_4", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "15700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5840.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1043", + "parent": "sx2804272b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1043", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7300.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_156", + "parent": "sx2001309a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "10310.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_156", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10310.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1163", + "parent": "sx2879078a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1163", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "19450.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1041", + "parent": "sx2803199b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "24300.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1041", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "24300.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "18150.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_158", + "parent": "sx2001310a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "22680.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_158", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "22680.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1161", + "parent": "sx2730149c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1161", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11200.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_50", + "parent": "sx2000712b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "14000.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_50", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14000.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12780.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_52", + "parent": "sx2000713b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "15970.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_52", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "15970.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9050.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_54", + "parent": "sx2000714b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "11320.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_54", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11320.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "20340.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1049", + "parent": "sx2814529c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "25400.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1049", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "25400.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9470.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_150", + "parent": "sx2001306a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11840.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_150", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11840.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1169", + "parent": "sx2673317a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1169", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_56", + "parent": "sx2000715b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "14060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_56", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1047", + "parent": "sx3104155c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1047", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "13990.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_152", + "parent": "sx2001307a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "17480.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_152", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "17480.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1167", + "parent": "sx2897792a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1167", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_58", + "parent": "sx2000902c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_58", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1045", + "parent": "sx3216347c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1045", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "14650.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_154", + "parent": "sx2001308a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "18300.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_154", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "18300.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "4070.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1165", + "parent": "sx3197637c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "5100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1165", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1153", + "parent": "sx2748143a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1153", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9730.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1031", + "parent": "sx3178981b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1031", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "21450.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_166", + "parent": "sx2001314a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "26810.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_166", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "26810.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "30520.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1151", + "parent": "sx3101194c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "38100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1151", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "38100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "19930.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_168", + "parent": "sx2001315a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "24910.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_168", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "24910.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9900.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_40", + "parent": "sx2000707b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12370.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_40", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12370.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12220.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_42", + "parent": "sx2000708b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "15270.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_42", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "15270.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8710.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_44", + "parent": "sx2000709b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "10900.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_44", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10900.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1039", + "parent": "sx2766721a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1039", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "3550.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1159", + "parent": "sx3104144a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "4400.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1159", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "4400.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10450.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_46", + "parent": "sx2000710b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "13070.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_46", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "13070.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1037", + "parent": "sx2729428a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1037", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "16040.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_160", + "parent": "sx2001311a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "20060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_160", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "20060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1157", + "parent": "sx2710521a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1157", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "7040.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_48", + "parent": "sx2000711b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "8800.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_48", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "8800.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1035", + "parent": "sx2935551c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1035", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "14540.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_162", + "parent": "sx2001312a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "18170.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_162", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "18170.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "14590.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1155", + "parent": "sx3252336b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "18300.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1155", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "18300.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "4070.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1033", + "parent": "sx2710510c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "5100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1033", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "22370.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_164", + "parent": "sx2001313a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "27960.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_164", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "27960.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5840.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1019", + "parent": "sx2841636b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1019", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7300.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5840.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1021", + "parent": "sx2955005b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1021", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7300.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "17880.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_134", + "parent": "sx2001212c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "22350.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_134", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "22350.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "15260.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1141", + "parent": "sx2766750c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "19100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1141", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "19100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "18080.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_136", + "parent": "sx2001213c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "22600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_136", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "22600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "16870.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_138", + "parent": "sx2001214c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "21100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_138", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "21100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10520.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_30", + "parent": "sx2000702b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "13160.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_30", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "13160.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1029", + "parent": "sx2804252a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1029", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1149", + "parent": "sx2992657a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1149", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9540.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_32", + "parent": "sx2000703b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "11920.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_32", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11920.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1027", + "parent": "sx2674051a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1027", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5840.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1147", + "parent": "sx2822867b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1147", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7300.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10220.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_34", + "parent": "sx2000704b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12780.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_34", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12780.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "14590.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1025", + "parent": "sx3048965b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "18200.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1025", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "18200.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "13440.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_130", + "parent": "sx2001210c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "16800.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_130", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "16800.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1145", + "parent": "sx3235243c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1145", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9670.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_36", + "parent": "sx2000705b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12090.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_36", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12090.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9730.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1023", + "parent": "sx3254214b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12200.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1023", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12200.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "23420.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_132", + "parent": "sx2001211c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "29270.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_132", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "29270.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1143", + "parent": "sx2973148a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1143", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11790.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_38", + "parent": "sx2000706b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "14730.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_38", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14730.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "14490.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_18", + "parent": "sx2000410a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "18120.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_18", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "18120.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5850.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1009", + "parent": "sx2691946b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1009", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7300.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1129", + "parent": "sx3104134c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1129", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1131", + "parent": "sx2955077c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1131", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "13300.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1097", + "parent": "sx3067478a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "16700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1097", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "16700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12910.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_144", + "parent": "sx2001303a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "16150.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_144", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "16150.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9730.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1095", + "parent": "sx2767409b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1095", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9620.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_146", + "parent": "sx2001304a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "12030.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_146", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12030.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1093", + "parent": "sx2936279c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1093", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10860.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_148", + "parent": "sx2001305a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "13570.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_148", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "13570.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9980.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_20", + "parent": "sx2000411a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "12480.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_20", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12480.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "3550.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1091", + "parent": "sx3254231a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "4500.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1091", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "4500.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "20340.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1139", + "parent": "sx3011293c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "25400.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1139", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "25400.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "19620.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_22", + "parent": "sx2000412a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "24520.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_22", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "24520.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1017", + "parent": "sx2861197c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1017", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1137", + "parent": "sx2841616a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1137", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10630.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_24", + "parent": "sx2000413a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "13290.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_24", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "13290.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5840.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1015", + "parent": "sx3085410b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1015", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7300.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1135", + "parent": "sx2804283a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1135", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10590.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_26", + "parent": "sx2000414a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "13240.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_26", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "13240.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1013", + "parent": "sx2710543c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1013", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "21390.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_140", + "parent": "sx2001215c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "26730.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_140", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "26730.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1133", + "parent": "sx2954350c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1133", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10770.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_28", + "parent": "sx2000415a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "13460.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_28", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "13460.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "4070.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1011", + "parent": "sx3010565c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "5100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1011", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1099", + "parent": "sx2691945c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1099", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8820.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_142", + "parent": "sx2001302a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11020.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_142", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11020.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1119", + "parent": "sx2786274c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1119", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "17570.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_108", + "parent": "sx2001013b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "21960.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_108", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "21960.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1087", + "parent": "sx3160106a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1087", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "24220.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_112", + "parent": "sx2001015b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "30260.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_112", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "30260.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9710.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_90", + "parent": "sx2001004b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12140.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_90", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12140.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1085", + "parent": "sx2897772a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1085", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12430.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_114", + "parent": "sx2001202c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "15530.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_114", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "15530.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11080.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_92", + "parent": "sx2001005b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "13850.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_92", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "13850.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5840.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1083", + "parent": "sx3179650b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1083", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7300.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "16020.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_116", + "parent": "sx2001203c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "20030.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_116", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "20030.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9760.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_94", + "parent": "sx2001006b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12190.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_94", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12190.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "500000.000", + "Q_Out": "0.000", + "V_base": "12470.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pvfarm1", + "parent": "m1047pv-3_pvmtr", + "phases": "ABCN", + "power_factor": "1.0", + "rated_power": "750000.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pvfarm1", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "750000.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1081", + "parent": "sx2897767c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1081", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12950.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_118", + "parent": "sx2001204c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "16180.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_118", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "16180.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9360.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_96", + "parent": "sx2001007b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "11710.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_96", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11710.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "4070.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1007", + "parent": "sx3104126c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "5100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1007", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12600.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_10", + "parent": "sx2000406a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "15740.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_10", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "15740.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1127", + "parent": "sx2936214a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1127", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12720.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_98", + "parent": "sx2001008b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "15900.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_98", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "15900.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1005", + "parent": "sx3045895c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1005", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1125", + "parent": "sx3160862c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1125", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11920.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_12", + "parent": "sx2000407a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "14900.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_12", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14900.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "19450.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1003", + "parent": "sx2673331b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "24300.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1003", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "24300.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "3890.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1123", + "parent": "sx2805036b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "4800.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1123", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "4800.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12440.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_14", + "parent": "sx2000408a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "15550.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_14", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "15550.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1001", + "parent": "sx3216348a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1001", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1089", + "parent": "sx3143999a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1089", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "28330.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_110", + "parent": "sx2001014b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "35410.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_110", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "35410.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9730.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1121", + "parent": "sx3217064b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12200.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1121", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12200.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12980.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_16", + "parent": "sx2000409a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "16230.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_16", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "16230.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1109", + "parent": "sx3178997c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1109", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1107", + "parent": "sx3082992a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1107", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_80", + "parent": "sx2000913c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_80", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1075", + "parent": "sx2673319c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1075", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10530.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_122", + "parent": "sx2001206c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "13170.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_122", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "13170.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_82", + "parent": "sx2000914c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_82", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1073", + "parent": "sx3197641a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1073", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8850.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_124", + "parent": "sx2001207c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "11060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_124", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_84", + "parent": "sx2000915c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_84", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1071", + "parent": "sx2841627a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1071", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11890.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_126", + "parent": "sx2001208c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14850.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_126", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14850.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_86", + "parent": "sx2001002b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "14060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_86", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "13930.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_128", + "parent": "sx2001209c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "17410.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_128", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "17410.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1117", + "parent": "sx2897768c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12800.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1117", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12800.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12560.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_88", + "parent": "sx2001003b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "15700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_88", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "15700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "13300.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1115", + "parent": "sx3728043a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "16700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1115", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "16700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "17740.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1113", + "parent": "sx3215203a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "22100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1113", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "22100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1079", + "parent": "sx2891575c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1079", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "17740.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1111", + "parent": "sx3233412a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "22200.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1111", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "22200.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1077", + "parent": "sx2991943c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12800.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1077", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12800.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8560.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_120", + "parent": "sx2001205c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "10700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_120", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "10700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1065", + "parent": "sx2785523c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1065", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "17740.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1063", + "parent": "sx2814529a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "22100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1063", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "22100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "17740.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1183", + "parent": "sx2990098a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "22170.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1183", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "22170.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_70", + "parent": "sx2000908c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_70", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1061", + "parent": "sx2992556c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1061", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "4070.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1181", + "parent": "sx2879076c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "5100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1181", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "5100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_72", + "parent": "sx2000909c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_72", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_74", + "parent": "sx2000910c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_74", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "40520.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_170", + "parent": "sx2001400c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "50650.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_170", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "50650.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1105", + "parent": "sx2785513a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11000.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1105", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11000.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_76", + "parent": "sx2000911c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_76", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "8870.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1103", + "parent": "sx2785538a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "11100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1103", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "11100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_78", + "parent": "sx2000912c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_78", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1069", + "parent": "sx3216368c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1069", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1101", + "parent": "sx3104132a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1101", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1067", + "parent": "sx2841638c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1067", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1175", + "parent": "sx2691951c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1175", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "13970.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_100", + "parent": "sx2001009b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "17460.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_100", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "17460.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5320.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1053", + "parent": "sx2710544a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1053", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5840.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1173", + "parent": "sx2897789b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "7300.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1173", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7300.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "12560.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_60", + "parent": "sx2000903c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "15700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_60", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "15700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "16900.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_102", + "parent": "sx2001010b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "21120.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_102", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "21120.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1051", + "parent": "sx3048937c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1051", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "6100.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1171", + "parent": "sx3198347c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "7600.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1171", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "7600.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9710.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_62", + "parent": "sx2000904c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12140.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_62", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12140.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "7480.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_104", + "parent": "sx2001011b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "9350.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_104", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "9350.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_64", + "parent": "sx2000905c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_64", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "13750.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_106", + "parent": "sx2001012b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "17200.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_106", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "17200.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_66", + "parent": "sx2000906c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_66", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "11250.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_68", + "parent": "sx2000907c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "14060.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_68", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "14060.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "10170.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1059", + "parent": "sx2673318c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "12700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1059", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "20340.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1179", + "parent": "sx3215203c_pvmtr", + "phases": "CS", + "power_factor": "1.0", + "rated_power": "25500.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1179", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "25500.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "9730.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1057", + "parent": "sx3160113b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "12100.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1057", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "12100.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "14590.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1177", + "parent": "sx2673308b_pvmtr", + "phases": "BS", + "power_factor": "1.0", + "rated_power": "18300.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1177", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "18300.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "5330.000", + "Q_Out": "0.000", + "V_base": "208.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "1.0", + "inverter_type": "FOUR_QUADRANT", + "name": "inv_pv_pv_1055", + "parent": "sx2839305a_pvmtr", + "phases": "AS", + "power_factor": "1.0", + "rated_power": "6700.000" + }, + "children": [ + { + "attributes": { + "efficiency": "0.2", + "generator_mode": "SUPPLY_DRIVEN", + "generator_status": "ONLINE", + "name": "pv_pv_1055", + "panel_type": "SINGLE_CRYSTAL_SILICON", + "rated_power": "6700.000" + }, + "children": [], + "name": "solar" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "150000.000", + "Q_Out": "0.000", + "V_base": "12470.000", + "charge_lockout_time": "1", + "charge_off_threshold": "0.000", + "charge_on_threshold": "-5000.000", + "discharge_lockout_time": "1", + "discharge_off_threshold": "100000.000", + "discharge_on_threshold": "150000.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "0.975", + "inverter_type": "FOUR_QUADRANT", + "max_charge_rate": "250000.000", + "max_discharge_rate": "250000.000", + "name": "inv_bat_battery1", + "parent": "m2001-ess1_stmtr", + "phases": "ABCN", + "rated_power": "250000.000", + "sense_object": "m2001-ess1_stmtr" + }, + "children": [ + { + "attributes": { + "battery_capacity": "500000.0", + "battery_type": "LI_ION", + "generator_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "name": "bat_battery1", + "nominal_voltage": "48", + "rated_power": "250000.000", + "round_trip_efficiency": "0.86", + "state_of_charge": "1.0000", + "use_internal_battery_model": "true" + }, + "children": [], + "name": "battery" + } + ], + "name": "inverter" + }, + { + "attributes": { + "P_Out": "150000.000", + "Q_Out": "0.000", + "V_base": "12470.000", + "charge_lockout_time": "1", + "charge_off_threshold": "0.000", + "charge_on_threshold": "-5000.000", + "discharge_lockout_time": "1", + "discharge_off_threshold": "100000.000", + "discharge_on_threshold": "150000.000", + "four_quadrant_control_mode": "CONSTANT_PQ", + "generator_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "inverter_efficiency": "0.975", + "inverter_type": "FOUR_QUADRANT", + "max_charge_rate": "250000.000", + "max_discharge_rate": "250000.000", + "name": "inv_bat_battery2", + "parent": "m2001-ess2_stmtr", + "phases": "ABCN", + "rated_power": "250000.000", + "sense_object": "m2001-ess2_stmtr" + }, + "children": [ + { + "attributes": { + "battery_capacity": "500000.0", + "battery_type": "LI_ION", + "generator_mode": "CONSTANT_PQ", + "generator_status": "ONLINE", + "name": "bat_battery2", + "nominal_voltage": "48", + "rated_power": "250000.000", + "round_trip_efficiency": "0.86", + "state_of_charge": "1.0000", + "use_internal_battery_model": "true" + }, + "children": [], + "name": "battery" + } + ], + "name": "inverter" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "775000.00", + "name": "dg_diesel620", + "parent": "m1209-dies1_dgmtr", + "phases": "ABCN", + "power_out_A": "0.00+0.00j", + "power_out_B": "0.00+0.00j", + "power_out_C": "0.00+0.00j" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "250000.00", + "name": "dg_microturb-1", + "parent": "m2001-mt1_dgmtr", + "phases": "ABCN", + "power_out_A": "16666.67+8072.03j", + "power_out_B": "16666.67+8072.03j", + "power_out_C": "16666.67+8072.03j" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "250000.00", + "name": "dg_microturb-2", + "parent": "m2001-mt2_dgmtr", + "phases": "ABCN", + "power_out_A": "0.00+0.00j", + "power_out_B": "0.00+0.00j", + "power_out_C": "0.00+0.00j" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "250000.00", + "name": "dg_microturb-3", + "parent": "m2001-mt3_dgmtr", + "phases": "ABCN", + "power_out_A": "0.00+0.00j", + "power_out_B": "0.00+0.00j", + "power_out_C": "0.00+0.00j" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "12470.00", + "Rated_VA": "4000000.00", + "name": "dg_steamgen1", + "parent": "m1026chp-3_dgmtr", + "phases": "ABCN", + "power_out_A": "333333.33-359828.53j", + "power_out_B": "333333.33-359828.53j", + "power_out_C": "333333.33-359828.53j" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "250000.00", + "name": "dg_microturb-4", + "parent": "m1069-mt1_dgmtr", + "phases": "ABCN", + "power_out_A": "33333.33+16144.07j", + "power_out_B": "33333.33+16144.07j", + "power_out_C": "33333.33+16144.07j" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "125000.00", + "name": "dg_lngengine100", + "parent": "m1142-lng1_dgmtr", + "phases": "ABCN", + "power_out_A": "0.00+0.00j", + "power_out_B": "0.00+0.00j", + "power_out_C": "0.00+0.00j" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "737000.00", + "name": "dg_diesel590", + "parent": "m1089-dies1_dgmtr", + "phases": "ABCN", + "power_out_A": "0.00+0.00j", + "power_out_B": "0.00+0.00j", + "power_out_C": "0.00+0.00j" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "Gen_type": "CONSTANT_PQ", + "Rated_V": "480.00", + "Rated_VA": "2250000.00", + "name": "dg_lngengine1800", + "parent": "m1089-lng1_dgmtr", + "phases": "ABCN", + "power_out_A": "0.00+0.00j", + "power_out_B": "0.00+0.00j", + "power_out_C": "0.00+0.00j" + }, + "children": [], + "name": "diesel_dg" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047671", + "length": "199.6940", + "name": "line_ln6320335-1", + "phases": "A", + "to": "l2710511" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027080", + "length": "217.0226", + "name": "line_ln6392977-2", + "phases": "A", + "to": "l3215340" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069574", + "length": "164.8425", + "name": "line_ln5835159-1", + "phases": "B", + "to": "l2710530" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3215340", + "length": "113.9520", + "name": "line_ln6392977-1", + "phases": "A", + "to": "m1027087" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047755", + "length": "51.9306", + "name": "line_ln5653456-1", + "phases": "A", + "to": "l3066812" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026848", + "length": "196.8740", + "name": "line_ln5683825-1", + "phases": "A", + "to": "l2935557" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p901927", + "length": "53.6051", + "name": "line_ln5621848-2", + "phases": "B", + "to": "n1136353" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047pv-3", + "length": "347.4188", + "name": "line_ln1047pvfrm-2", + "phases": "ABC", + "to": "m1047pv-2" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108400", + "length": "274.7637", + "name": "line_ln6422014-1", + "phases": "ABC", + "to": "m1108404" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047pv-1", + "length": "395.6069", + "name": "line_ln1047pvfrm-1", + "phases": "ABC", + "to": "m1047520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069582", + "length": "206.9402", + "name": "line_ln5833720-1", + "phases": "B", + "to": "l2933165" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2726973", + "length": "277.6810", + "name": "line_ln5739188-1", + "phases": "ABC", + "to": "m1047485" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209797", + "length": "218.5031", + "name": "line_ln6291242-1", + "phases": "ABC", + "to": "m1209791" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027019", + "length": "198.1320", + "name": "line_ln5593228-1", + "phases": "B", + "to": "l2785522" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001312", + "length": "158.2381", + "name": "line_ln2001313-1", + "phases": "A", + "to": "m2001313" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209817", + "length": "82.8487", + "name": "line_ln5742828-1", + "phases": "ABC", + "to": "l2801909" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047812", + "length": "71.6005", + "name": "line_ln6137086-2", + "phases": "B", + "to": "m4350438" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001214", + "length": "158.2381", + "name": "line_ln2001215-1", + "phases": "C", + "to": "m2001215" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069174", + "length": "241.7164", + "name": "line_ln5833622-1", + "phases": "C", + "to": "l3216347" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2801909", + "length": "227.2727", + "name": "line_ln5742828-2", + "phases": "ABC", + "to": "m1209814" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010017", + "length": "280.2416", + "name": "line_ln6106583-2", + "phases": "A", + "to": "l2858175" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2858175", + "length": "15.1668", + "name": "line_ln6106583-3", + "phases": "A", + "to": "m1027110" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027121", + "length": "28.6949", + "name": "line_ln6106583-4", + "phases": "A", + "to": "n1134469" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026658", + "length": "350.0012", + "name": "line_ln6439600-1", + "phases": "A", + "to": "l3172805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1134469", + "length": "1051.9214", + "name": "line_ln6106583-5", + "phases": "A", + "to": "m1010017" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3037537", + "length": "560.0000", + "name": "line_ln5951197-2", + "phases": "B", + "to": "l3231269" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3048965", + "length": "168.4396", + "name": "line_ln5805761-1", + "phases": "ABC", + "to": "m1142843" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089177", + "length": "439.2533", + "name": "line_ln5865230-1", + "phases": "ABC", + "to": "l2822863" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108529", + "length": "20.0056", + "name": "line_ln5563852-1", + "phases": "C", + "to": "p829796" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1069248", + "length": "823.2027", + "name": "line_ln8979370-1", + "phases": "A", + "to": "l2915534" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l2915534", + "length": "555.2803", + "name": "line_ln8979370-2", + "phases": "A", + "to": "193-48013" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026681", + "length": "211.5975", + "name": "line_ln6047580-2", + "phases": "ABC", + "to": "l3048221" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1142843", + "length": "32.4347", + "name": "line_ln5746705-1", + "phases": "A", + "to": "p829976" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2879794", + "length": "110.7480", + "name": "line_ln6109190-1", + "phases": "A", + "to": "m1142811" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089165", + "length": "141.1667", + "name": "line_ln5804789-1", + "phases": "C", + "to": "l2748128" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2936275", + "length": "297.8728", + "name": "line_ln6048632-1", + "phases": "B", + "to": "l3179674" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1140528", + "length": "161.6146", + "name": "line_ln6900591-29", + "phases": "A", + "to": "l3649297" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2691952", + "length": "7.1516", + "name": "line_ln6505949-1", + "phases": "ABC", + "to": "m3036170" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3197638", + "length": "200.8744", + "name": "line_ln6290213-1", + "phases": "A", + "to": "m1026849" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p1123251", + "length": "20.7333", + "name": "line_ln6900591-28", + "phases": "A", + "to": "n1140528" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3772794", + "length": "200.0169", + "name": "line_ln6900591-27", + "phases": "A", + "to": "l3649300" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649299", + "length": "12.7263", + "name": "line_ln6900591-26", + "phases": "A", + "to": "m3772794" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069481", + "length": "32.1703", + "name": "line_ln5565091-1", + "phases": "C", + "to": "p827507" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649304", + "length": "220.1037", + "name": "line_ln6900591-22", + "phases": "A", + "to": "l3649305" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000403", + "length": "158.2381", + "name": "line_ln2000404-1", + "phases": "A", + "to": "m2000404" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2936211", + "length": "265.2143", + "name": "line_ln6018241-1", + "phases": "C", + "to": "l2842329" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649302", + "length": "205.9075", + "name": "line_ln6900591-20", + "phases": "A", + "to": "l3649304" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1089143", + "length": "84.3570", + "name": "line_ln6411382-1", + "phases": "A", + "to": "m1089144" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069731", + "length": "182.6228", + "name": "line_ln5835124-1", + "phases": "B", + "to": "l2710504" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3160100", + "length": "219.3886", + "name": "line_ln5472346-1", + "phases": "B", + "to": "l3085390" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3254207", + "length": "232.5779", + "name": "line_ln5532739-1", + "phases": "A", + "to": "m1069390" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2711234", + "length": "389.8882", + "name": "line_ln5654485-1", + "phases": "B", + "to": "l3198355" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026942", + "length": "100.0009", + "name": "line_ln5621826-1", + "phases": "A", + "to": "l3270814" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089155", + "length": "334.0872", + "name": "line_ln5562921-1", + "phases": "C", + "to": "m1089158" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2860485", + "length": "683.6319", + "name": "line_ln5744361-1", + "phases": "B", + "to": "l2860506" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1126005", + "length": "264.1840", + "name": "line_ln6351417-1", + "phases": "A", + "to": "l3011229" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649301", + "length": "206.8914", + "name": "line_ln6900591-14", + "phases": "A", + "to": "l3649302" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000500", + "length": "487.0451", + "name": "line_ln2000600-1", + "phases": "ABC", + "to": "m2000600" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649300", + "length": "200.7040", + "name": "line_ln6900591-12", + "phases": "A", + "to": "l3649301" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1108278", + "length": "377.7532", + "name": "line_ln5987964-1", + "phases": "B", + "to": "l3179699" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827521", + "length": "29.9894", + "name": "line_ln5955074-3", + "phases": "B", + "to": "n1139546" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "d5955074-2_int", + "length": "280.7366", + "name": "line_ln5955074-2", + "phases": "B", + "to": "l2970842" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m3037449", + "length": "60.2699", + "name": "line_ln6170199-2", + "phases": "C", + "to": "m1108375" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3104131", + "length": "200.5200", + "name": "line_ln5835146-1", + "phases": "A", + "to": "m1026377" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2879055", + "length": "298.3053", + "name": "line_ln6320322-1", + "phases": "C", + "to": "l2973144" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142798", + "length": "260.6238", + "name": "line_ln6078773-1", + "phases": "B", + "to": "m1142801" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047732", + "length": "284.4418", + "name": "line_ln6380810-1", + "phases": "ABC", + "to": "m1047737" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047613", + "length": "1.2596", + "name": "line_ln6268990-2", + "phases": "C", + "to": "m1047612" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026907", + "length": "242.8592", + "name": "line_ln5774458-1", + "phases": "ABC", + "to": "m1026915" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2954355", + "length": "78.1149", + "name": "line_ln5502544-1", + "phases": "A", + "to": "m1026665" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1136995", + "length": "41.4644", + "name": "line_ln6268990-4", + "phases": "C", + "to": "m1047613" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1137998", + "length": "78.1837", + "name": "line_ln6318740-3", + "phases": "C", + "to": "m1026895" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p895409", + "length": "39.6171", + "name": "line_ln6318740-2", + "phases": "C", + "to": "n1137998" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047615", + "length": "44.2254", + "name": "line_ln6268990-3", + "phases": "C", + "to": "n1136995" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047623", + "length": "194.1592", + "name": "line_ln6167816-1", + "phases": "A", + "to": "l3008279" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2730163", + "length": "277.3370", + "name": "line_ln6200527-1", + "phases": "ABC", + "to": "l2992624" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1139552", + "length": "287.6527", + "name": "line_ln5895789-2", + "phases": "ABC", + "to": "m1026702" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047780", + "length": "403.1257", + "name": "line_ln5714046-1", + "phases": "B", + "to": "l3066811" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108381", + "length": "249.1960", + "name": "line_ln6350574-1", + "phases": "ABC", + "to": "l3254237" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "r18243", + "length": "101.5793", + "name": "line_ln5895789-3", + "phases": "ABC", + "to": "n1139552" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1209800", + "length": "33.1031", + "name": "line_ln5958865-1", + "phases": "C", + "to": "p829957" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026978", + "length": "14.9607", + "name": "line_ln6169251-1", + "phases": "ABC", + "to": "m1026979" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166402", + "length": "307.1436", + "name": "line_ln5866187-1", + "phases": "C", + "to": "l3048889" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108316", + "length": "27.5072", + "name": "line_ln5686489-1", + "phases": "C", + "to": "196-35541" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026693", + "length": "279.6714", + "name": "line_ln6327237-1", + "phases": "B", + "to": "m1026699" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026699", + "length": "172.3687", + "name": "line_ln6327237-2", + "phases": "B", + "to": "m1026704" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047513", + "length": "20.5212", + "name": "line_ln5773033-1", + "phases": "C", + "to": "p901913" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047358", + "length": "317.3828", + "name": "line_ln5472368-1", + "phases": "A", + "to": "l2729411" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026485", + "length": "24.1743", + "name": "line_ln5504714-1", + "phases": "B", + "to": "p827542" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1089204", + "length": "144.0990", + "name": "line_ln5774449-1", + "phases": "A", + "to": "l3010557" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069560", + "length": "267.1529", + "name": "line_ln5773046-1", + "phases": "B", + "to": "m1069567" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069551", + "length": "399.6649", + "name": "line_ln5773046-2", + "phases": "B", + "to": "m1069560" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2710542", + "length": "116.0424", + "name": "line_ln6229831-1", + "phases": "B", + "to": "l2729430" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "d2001201_int", + "length": "158.2381", + "name": "line_ln2001202-1", + "phases": "C", + "to": "m2001202" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "q14411", + "length": "148.8129", + "name": "line_ln5956499-3", + "phases": "ABC", + "to": "m1069428" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "d5804798-3_int", + "length": "101.0477", + "name": "line_ln5804798-3", + "phases": "B", + "to": "m1047766" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010013", + "length": "179.8845", + "name": "line_ln6379375-1", + "phases": "A", + "to": "l3120503" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3036165", + "length": "214.2790", + "name": "line_ln5986931-2", + "phases": "B", + "to": "l3235252" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2766749", + "length": "133.6583", + "name": "line_ln5956499-2", + "phases": "ABC", + "to": "d5956499-2_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047763", + "length": "57.4980", + "name": "line_ln5804798-2", + "phases": "B", + "to": "n1136030" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827553", + "length": "17.5673", + "name": "line_ln6110366-1", + "phases": "B", + "to": "m1047826" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047793", + "length": "21.4713", + "name": "line_ln6108170-1", + "phases": "B", + "to": "m1047795" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026800", + "length": "191.5363", + "name": "line_ln5562934-1", + "phases": "ABC", + "to": "m1026797" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx1/0_tpx_ln6138596-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069390", + "length": "151.3047", + "name": "line_ln6138596-1", + "phases": "A", + "to": "l2841618" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047388", + "length": "161.6154", + "name": "line_ln5623394-1", + "phases": "B", + "to": "l2729407" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027039", + "length": "15.0026", + "name": "line_ln5806920-1", + "phases": "B", + "to": "d5806920-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069418", + "length": "287.9597", + "name": "line_ln5926291-1", + "phases": "ABC", + "to": "m1069417" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1147864", + "length": "225.2904", + "name": "line_ln6411373-3", + "phases": "A", + "to": "l2710536" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026902", + "length": "34.6914", + "name": "line_ln6411373-2", + "phases": "A", + "to": "n1147864" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001005", + "length": "158.2381", + "name": "line_ln2001006-1", + "phases": "B", + "to": "m2001006" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047406", + "length": "95.9172", + "name": "line_ln5472359-1", + "phases": "A", + "to": "l3216348" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069610", + "length": "199.9990", + "name": "line_ln5650048-1", + "phases": "B", + "to": "m1069600" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3263051", + "length": "234.3533", + "name": "line_ln5623404-1", + "phases": "C", + "to": "m1069199" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008733", + "length": "45.0140", + "name": "line_ln5644817-1", + "phases": "B", + "to": "l3225319" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108375", + "length": "176.6469", + "name": "line_ln6048521-1", + "phases": "C", + "to": "l3160793" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209791", + "length": "181.2432", + "name": "line_ln5654472-1", + "phases": "ABC", + "to": "m1209790" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3048937", + "length": "354.9205", + "name": "line_ln5651998-1", + "phases": "C", + "to": "l3176661" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2841638", + "length": "299.2758", + "name": "line_ln6199531-1", + "phases": "C", + "to": "l2860492" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026961", + "length": "281.3834", + "name": "line_ln6262263-1", + "phases": "A", + "to": "l2710516" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026366", + "length": "205.1962", + "name": "line_ln5653465-1", + "phases": "A", + "to": "l3122824" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p901905", + "length": "84.6481", + "name": "line_ln5682333-1", + "phases": "B", + "to": "l2804257" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2954350", + "length": "376.7449", + "name": "line_ln6138606-1", + "phases": "C", + "to": "m1069206" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047669", + "length": "11.1371", + "name": "line_ln5956464-1", + "phases": "ABC", + "to": "m1047672" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e183493", + "length": "292.8446", + "name": "line_ln6201850-1", + "phases": "ABC", + "to": "m1125902" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026926", + "length": "46.1475", + "name": "line_ln5926301-1", + "phases": "ABC", + "to": "m1026927" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089189", + "length": "260.3491", + "name": "line_ln5593219-1", + "phases": "ABC", + "to": "l2841619" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1139549", + "length": "144.2126", + "name": "line_ln6259994-2", + "phases": "A", + "to": "l2879074" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009843", + "length": "187.1711", + "name": "line_ln6350552-1", + "phases": "B", + "to": "l3160108" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026646", + "length": "170.0540", + "name": "line_ln6259994-3", + "phases": "A", + "to": "n1139549" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p827514", + "length": "19.9923", + "name": "line_ln6352699-1", + "phases": "ABC", + "to": "m1026876" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026947", + "length": "454.8803", + "name": "line_ln6077775-1", + "phases": "B", + "to": "m1026946" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1009650", + "length": "890.6524", + "name": "line_ln6044631-1", + "phases": "ABC", + "to": "e203026" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1089143", + "length": "243.0012", + "name": "line_ln5604685-1", + "phases": "ABC", + "to": "m1089145" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1089145", + "length": "242.9986", + "name": "line_ln5604685-2", + "phases": "ABC", + "to": "l3047289" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3104125", + "length": "125.4820", + "name": "line_ln5502531-1", + "phases": "ABC", + "to": "m1089131" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108276", + "length": "135.7889", + "name": "line_ln6048641-1", + "phases": "B", + "to": "l2786273" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069554", + "length": "109.3238", + "name": "line_ln5653478-1", + "phases": "B", + "to": "l3160115" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1136357", + "length": "131.1798", + "name": "line_ln5651985-3", + "phases": "C", + "to": "l2897790" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069548", + "length": "61.2269", + "name": "line_ln5651985-2", + "phases": "C", + "to": "n1136357" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p830058", + "length": "29.0941", + "name": "line_ln5776833-1", + "phases": "C", + "to": "m1166370" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4_wpal_ln5686245-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "p829961", + "length": "32.4484", + "name": "line_ln5686245-2", + "phases": "A", + "to": "n1141476" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4_wpal_ln5686245-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "n1141476", + "length": "250.6023", + "name": "line_ln5686245-3", + "phases": "A", + "to": "l2692654" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3027133", + "length": "197.8748", + "name": "line_ln5528079-3", + "phases": "A", + "to": "m3037453" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166396", + "length": "220.5660", + "name": "line_ln6324073-1", + "phases": "C", + "to": "m1166399" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2767342", + "length": "160.3960", + "name": "line_ln5503479-1", + "phases": "A", + "to": "l2748780" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047471", + "length": "60.3665", + "name": "line_ln6108139-1", + "phases": "B", + "to": "l3216349" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2804257", + "length": "194.9624", + "name": "line_ln5895776-1", + "phases": "B", + "to": "l2860485" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047503", + "length": "77.9737", + "name": "line_ln5863706-1", + "phases": "ABC", + "to": "l2841635" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1134479", + "length": "207.8554", + "name": "line_ln5682346-3", + "phases": "ABC", + "to": "d5682346-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009834", + "length": "1.0000", + "name": "line_ln6259981-1", + "phases": "B", + "to": "l3178969" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3178969", + "length": "251.3492", + "name": "line_ln6259981-2", + "phases": "B", + "to": "l2729401" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089207", + "length": "77.7636", + "name": "line_ln6290200-1", + "phases": "ABC", + "to": "l3160098" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069503", + "length": "92.9115", + "name": "line_ln5682346-2", + "phases": "ABC", + "to": "n1134479" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108364", + "length": "315.4201", + "name": "line_ln5683812-1", + "phases": "C", + "to": "l2897766" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3029500", + "length": "299.3577", + "name": "line_ln5835137-1", + "phases": "A", + "to": "m1026764" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p901932", + "length": "16.3308", + "name": "line_ln6439986-2", + "phases": "C", + "to": "n1136359" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1136359", + "length": "94.4867", + "name": "line_ln6439986-3", + "phases": "C", + "to": "l3008237" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3010585", + "length": "190.3332", + "name": "line_ln6320366-1", + "phases": "A", + "to": "m1026798" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000710", + "length": "158.2381", + "name": "line_ln2000711-1", + "phases": "B", + "to": "m2000711" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069590", + "length": "32.0210", + "name": "line_ln5744352-1", + "phases": "B", + "to": "l2801902" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3949157", + "length": "345.7758", + "name": "line_ln6991377-17", + "phases": "A", + "to": "l3728037" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3727708", + "length": "16.6515", + "name": "line_ln6991377-16", + "phases": "A", + "to": "m3949157" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3728037", + "length": "340.1826", + "name": "line_ln6991377-18", + "phases": "A", + "to": "m3949154" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln5775367-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "m1126025", + "length": "182.4373", + "name": "line_ln5775367-1", + "phases": "A", + "to": "l2823545" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069551", + "length": "185.1575", + "name": "line_ln5562947-1", + "phases": "B", + "to": "m1069555" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3729298", + "length": "195.4934", + "name": "line_ln6991377-13", + "phases": "A", + "to": "l3727707" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3727707", + "length": "180.7032", + "name": "line_ln6991377-15", + "phases": "A", + "to": "l3727708" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "n1136353", + "length": "34.7951", + "name": "line_ln5621848-3", + "phases": "B", + "to": "l2820535" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047819", + "length": "222.4577", + "name": "line_ln6350530-1", + "phases": "B", + "to": "m1047821" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069627", + "length": "454.5724", + "name": "line_ln6077797-1", + "phases": "B", + "to": "l2897791" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3729297", + "length": "205.3445", + "name": "line_ln6991377-11", + "phases": "A", + "to": "l3729298" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1009655", + "length": "23.2483", + "name": "line_ln8945010-1", + "phases": "C", + "to": "p827528" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2674027", + "length": "222.7092", + "name": "line_ln5684836-1", + "phases": "ABC", + "to": "l2692633" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2001200", + "length": "475.1801", + "name": "line_ln2001300-1", + "phases": "ABC", + "to": "m2001300" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1126023", + "length": "251.9183", + "name": "line_ln6291153-1", + "phases": "A", + "to": "m1126017" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047750", + "length": "276.6073", + "name": "line_ln5865234-1", + "phases": "A", + "to": "m1047744" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3085396", + "length": "765.8110", + "name": "line_ln6320331-1", + "phases": "A", + "to": "l3122813" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000407", + "length": "158.2381", + "name": "line_ln2000408-1", + "phases": "A", + "to": "m2000408" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009820", + "length": "261.9346", + "name": "line_ln5774489-1", + "phases": "B", + "to": "l3254234" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "221-311905", + "length": "45.8719", + "name": "line_ln8979254-2", + "phases": "ABC", + "to": "l3215203" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "p850080", + "length": "16.6850", + "name": "line_ln8979254-1", + "phases": "ABC", + "to": "221-311905" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1089103", + "length": "358.9835", + "name": "line_ln6047558-1", + "phases": "B", + "to": "l2673305" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx4_acsr_ln6201698-2", + "continuous_rating_B": "200.00", + "emergency_rating_B": "200.00", + "from": "p827529", + "length": "14.9005", + "name": "line_ln6201698-2", + "phases": "B", + "to": "n1136668" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx4_acsr_ln6201698-2", + "continuous_rating_B": "200.00", + "emergency_rating_B": "200.00", + "from": "n1136668", + "length": "142.0386", + "name": "line_ln6201698-3", + "phases": "B", + "to": "l3029506" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3235249", + "length": "307.3018", + "name": "line_ln6350539-1", + "phases": "A", + "to": "l2954348" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2954347", + "length": "99.9999", + "name": "line_ln5500962-1", + "phases": "B", + "to": "m1026953" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2992624", + "length": "167.4908", + "name": "line_ln6170293-1", + "phases": "ABC", + "to": "m1125919" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026953", + "length": "99.9983", + "name": "line_ln5500962-2", + "phases": "B", + "to": "l3008232" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2917328", + "length": "211.9463", + "name": "line_ln6351511-1", + "phases": "ABC", + "to": "l2861218" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047592", + "length": "131.5331", + "name": "line_ln5532748-5", + "phases": "ABC", + "to": "m3763619" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m3763619", + "length": "138.0636", + "name": "line_ln5532748-6", + "phases": "ABC", + "to": "m1026830" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069169", + "length": "275.2756", + "name": "line_ln6108126-1", + "phases": "A", + "to": "l2879064" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m3036164", + "length": "553.8933", + "name": "line_ln5593224-2", + "phases": "B", + "to": "l3085397" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln5775367-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "m1026851", + "length": "22.0635", + "name": "line_ln6019479-1", + "phases": "A", + "to": "p827536" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2860482", + "length": "2024.8548", + "name": "line_ln5744330-1", + "phases": "A", + "to": "l3254204" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3104154", + "length": "132.6220", + "name": "line_ln5859993-1", + "phases": "ABC", + "to": "l3104155" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2933120", + "length": "821.7893", + "name": "line_ln5804785-1", + "phases": "C", + "to": "l3104117" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026940", + "length": "376.8252", + "name": "line_ln6017291-1", + "phases": "B", + "to": "m1026935" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "l3207907", + "length": "7.9535", + "name": "line_ln6506307-4", + "phases": "ABC", + "to": "m3037441" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010011", + "length": "268.9972", + "name": "line_ln6198052-1", + "phases": "A", + "to": "l3120504" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m3036167", + "length": "10.2360", + "name": "line_ln6505945-1", + "phases": "ABC", + "to": "l2973156" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166386", + "length": "207.0463", + "name": "line_ln6381856-1", + "phases": "C", + "to": "l3048966" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026826", + "length": "198.3684", + "name": "line_ln5683843-1", + "phases": "A", + "to": "m1026820" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009843", + "length": "116.6676", + "name": "line_ln6167749-1", + "phases": "B", + "to": "l3251806" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047340", + "length": "320.4652", + "name": "line_ln6411391-1", + "phases": "A", + "to": "m1047342" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000700", + "length": "467.5028", + "name": "line_ln2000800-1", + "phases": "ABC", + "to": "m2000800" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069572", + "length": "129.9611", + "name": "line_ln6320353-1", + "phases": "B", + "to": "m1069574" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2711225", + "length": "324.5392", + "name": "line_ln6018330-1", + "phases": "C", + "to": "l3030200" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2973833", + "length": "135.8307", + "name": "line_ln5866308-1", + "phases": "ABC", + "to": "m1166373" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "d2000701_int", + "length": "158.2381", + "name": "line_ln2000702-1", + "phases": "B", + "to": "m2000702" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2936271", + "length": "457.8621", + "name": "line_ln5927423-1", + "phases": "ABC", + "to": "m1142815" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142835", + "length": "122.5707", + "name": "line_ln5896824-1", + "phases": "C", + "to": "l3104853" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1136366", + "length": "15.5673", + "name": "line_ln5472390-3", + "phases": "ABC", + "to": "l2916620" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026883", + "length": "202.1878", + "name": "line_ln5653491-1", + "phases": "C", + "to": "m1026898" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3027122", + "length": "23.6139", + "name": "line_ln5500984-1", + "phases": "A", + "to": "m1108506" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026667", + "length": "181.3996", + "name": "line_ln5956473-1", + "phases": "A", + "to": "m1026661" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069632", + "length": "121.5221", + "name": "line_ln5985349-1", + "phases": "B", + "to": "l2726974" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2726974", + "length": "292.5053", + "name": "line_ln5985349-2", + "phases": "B", + "to": "l2916618" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1069312", + "length": "24.0663", + "name": "line_ln81018875-1", + "phases": "C", + "to": "p873800" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069518", + "length": "54.0050", + "name": "line_ln5472390-2", + "phases": "ABC", + "to": "n1136366" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047483", + "length": "25.6840", + "name": "line_ln5958701-1", + "phases": "C", + "to": "p827505" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1142105", + "length": "37.9834", + "name": "line_ln5500984-3", + "phases": "A", + "to": "l3027122" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p901946", + "length": "11.6131", + "name": "line_ln5500984-4", + "phases": "A", + "to": "n1142105" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3225319", + "length": "167.4470", + "name": "line_ln5644817-2", + "phases": "B", + "to": "l3048201" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026463", + "length": "68.0446", + "name": "line_ln6292462-1", + "phases": "B", + "to": "p827495" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069469", + "length": "27.1370", + "name": "line_ln5683856-2", + "phases": "A", + "to": "n1139263" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1139263", + "length": "85.2588", + "name": "line_ln5683856-3", + "phases": "A", + "to": "l3048227" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047388", + "length": "704.6352", + "name": "line_ln5774454-1", + "phases": "B", + "to": "l2691942" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047344", + "length": "246.9700", + "name": "line_ln6108148-1", + "phases": "A", + "to": "l3029499" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx1/0_tpx_ln5562952-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "l2766742", + "length": "296.0435", + "name": "line_ln5562952-1", + "phases": "B", + "to": "m1009820" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047441", + "length": "199.4172", + "name": "line_ln6380814-1", + "phases": "B", + "to": "l3197635" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3327097", + "length": "140.9987", + "name": "line_ln6660515-2", + "phases": "B", + "to": "l3448661" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3066830", + "length": "438.1156", + "name": "line_ln6350570-1", + "phases": "B", + "to": "l3197660" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1166373", + "length": "30.6673", + "name": "line_ln6412354-1", + "phases": "ABC", + "to": "m1166374" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047335", + "length": "279.9589", + "name": "line_ln6169255-1", + "phases": "A", + "to": "l2710519" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069217", + "length": "289.9192", + "name": "line_ln5683821-1", + "phases": "C", + "to": "l2954350" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3216336", + "length": "219.6505", + "name": "line_ln5926286-1", + "phases": "A", + "to": "l2691936" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3772794", + "length": "242.3239", + "name": "line_ln6900592-3", + "phases": "A", + "to": "l3649306" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069556", + "length": "21.1804", + "name": "line_ln6258445-1", + "phases": "C", + "to": "p901932" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx6_wpal_ln5895785-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "l2710520", + "length": "140.3767", + "name": "line_ln5895785-1", + "phases": "A", + "to": "m1069131" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047423", + "length": "165.5683", + "name": "line_ln5835142-1", + "phases": "A", + "to": "m1047420" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2673300", + "length": "160.3374", + "name": "line_ln5532735-1", + "phases": "B", + "to": "m1008753" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "p827580", + "length": "26.2790", + "name": "line_ln5686080-1", + "phases": "ABC", + "to": "d5686080-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089205", + "length": "201.2179", + "name": "line_ln6015794-1", + "phases": "A", + "to": "m1089200" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069555", + "length": "158.7335", + "name": "line_ln5502557-1", + "phases": "B", + "to": "l3085410" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001205", + "length": "158.2381", + "name": "line_ln2001206-1", + "phases": "C", + "to": "m2001206" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047292", + "length": "290.6972", + "name": "line_ln6229835-1", + "phases": "ABC", + "to": "l2691954" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089132", + "length": "154.2096", + "name": "line_ln6077779-1", + "phases": "ABC", + "to": "l3029503" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1145955", + "length": "44.7302", + "name": "line_ln5744343-3", + "phases": "A", + "to": "m1026335" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026366", + "length": "307.2730", + "name": "line_ln5593237-1", + "phases": "A", + "to": "l3104131" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p829974", + "length": "217.0724", + "name": "line_ln5989328-1", + "phases": "A", + "to": "l2805034" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026468", + "length": "307.9261", + "name": "line_ln6380827-1", + "phases": "B", + "to": "l2766732" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047769", + "length": "536.6278", + "name": "line_ln5954962-1", + "phases": "B", + "to": "l3197632" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047324", + "length": "303.7952", + "name": "line_ln5986935-1", + "phases": "ABC", + "to": "l2897780" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026333", + "length": "45.1793", + "name": "line_ln5744343-2", + "phases": "A", + "to": "n1145955" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069300", + "length": "773.7466", + "name": "line_ln5637600-1", + "phases": "ABC", + "to": "m1069310" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "p895114", + "length": "19.4388", + "name": "line_ln5528573-2", + "phases": "A", + "to": "n1141479" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "n1141479", + "length": "34.1189", + "name": "line_ln5528573-3", + "phases": "A", + "to": "l3198348" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069181", + "length": "247.4824", + "name": "line_ln5804794-1", + "phases": "A", + "to": "l2973151" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "m1009715", + "length": "168.9329", + "name": "line_ln5804808-1", + "phases": "A", + "to": "l3010563" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3122817", + "length": "182.9897", + "name": "line_ln5623400-1", + "phases": "C", + "to": "l2673314" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009827", + "length": "285.8982", + "name": "line_ln5623390-1", + "phases": "B", + "to": "m1009832" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1089119", + "length": "22.3474", + "name": "line_ln5625547-1", + "phases": "B", + "to": "p827521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089165", + "length": "502.0109", + "name": "line_ln5926295-1", + "phases": "C", + "to": "l3216343" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047325", + "length": "31.5972", + "name": "line_ln5837356-1", + "phases": "A", + "to": "p827532" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089188", + "length": "217.5801", + "name": "line_ln6229790-1", + "phases": "ABC", + "to": "m1089189" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026341", + "length": "224.9589", + "name": "line_ln5683830-1", + "phases": "ABC", + "to": "l2973162" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026829", + "length": "449.6545", + "name": "line_ln5531256-1", + "phases": "ABC", + "to": "m1026824" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069208", + "length": "363.5149", + "name": "line_ln5865243-1", + "phases": "C", + "to": "l3010567" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m4362181", + "length": "214.7358", + "name": "line_ln5588016-4", + "phases": "B", + "to": "l3254214" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2710546", + "length": "84.9655", + "name": "line_ln5588016-3", + "phases": "B", + "to": "m4362181" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2917330", + "length": "293.7465", + "name": "line_ln5654476-1", + "phases": "A", + "to": "l2861222" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "d5653469-1_int", + "length": "196.0954", + "name": "line_ln5653469-1", + "phases": "B", + "to": "l3178981" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3118855", + "length": "165.6336", + "name": "line_ln5769126-1", + "phases": "ABC", + "to": "l3231255" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p901913", + "length": "75.8156", + "name": "line_ln5803262-1", + "phases": "C", + "to": "l3157708" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2841630", + "length": "93.0966", + "name": "line_ln5926305-1", + "phases": "C", + "to": "l2954352" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069513", + "length": "288.9093", + "name": "line_ln5895804-1", + "phases": "ABC", + "to": "m1069516" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026327", + "length": "834.7717", + "name": "line_ln6320340-1", + "phases": "B", + "to": "l3197643" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026648", + "length": "171.3321", + "name": "line_ln6229800-1", + "phases": "A", + "to": "m1026647" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m4113345", + "length": "264.5570", + "name": "line_ln5803262-6", + "phases": "C", + "to": "l3197640" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069192", + "length": "303.5315", + "name": "line_ln5562930-1", + "phases": "A", + "to": "l2991913" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047447", + "length": "175.3764", + "name": "line_ln6047567-1", + "phases": "B", + "to": "l2954349" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108484", + "length": "29.0082", + "name": "line_ln5565229-1", + "phases": "A", + "to": "p829797" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3010563", + "length": "201.8673", + "name": "line_ln6259990-1", + "phases": "A", + "to": "l2841623" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1136029", + "length": "358.6205", + "name": "line_ln5898058-2", + "phases": "B", + "to": "m1047767" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3157708", + "length": "46.3637", + "name": "line_ln5803262-7", + "phases": "C", + "to": "n1137991" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1137991", + "length": "142.3776", + "name": "line_ln5803262-8", + "phases": "C", + "to": "m4113345" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827509", + "length": "21.7017", + "name": "line_ln5898058-3", + "phases": "B", + "to": "n1136029" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209772", + "length": "571.9677", + "name": "line_ln5542283-1", + "phases": "ABC", + "to": "e192258" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "l2879062", + "length": "295.8508", + "name": "line_ln5956460-1", + "phases": "C", + "to": "m1089173" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125952", + "length": "18.0264", + "name": "line_ln5591708-1", + "phases": "C", + "to": "p901936" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1142811", + "length": "169.0989", + "name": "line_ln5745385-1", + "phases": "A", + "to": "l2992657" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1142874", + "length": "26.4957", + "name": "line_ln6346338-1", + "phases": "C", + "to": "p895111" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108270", + "length": "404.7947", + "name": "line_ln6199509-1", + "phases": "B", + "to": "l2785516" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047344", + "length": "184.8542", + "name": "line_ln5532757-1", + "phases": "A", + "to": "l3066819" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108524", + "length": "115.7786", + "name": "line_ln5679770-2", + "phases": "C", + "to": "n1136031" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125961", + "length": "21.8286", + "name": "line_ln5864458-1", + "phases": "C", + "to": "m1125959" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1136031", + "length": "193.1453", + "name": "line_ln5679770-3", + "phases": "C", + "to": "l3197625" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089179", + "length": "373.4157", + "name": "line_ln5835133-1", + "phases": "ABC", + "to": "m1069451" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2748133", + "length": "279.8956", + "name": "line_ln6108135-1", + "phases": "C", + "to": "l3085399" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026309", + "length": "716.4803", + "name": "line_ln5774467-1", + "phases": "B", + "to": "l2804260" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3104114", + "length": "182.2345", + "name": "line_ln5593215-1", + "phases": "B", + "to": "m1009824" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108526", + "length": "329.1713", + "name": "line_ln6380805-1", + "phases": "ABC", + "to": "m1089199" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2823544", + "length": "101.4394", + "name": "line_ln6379357-1", + "phases": "A", + "to": "m1126016" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3082993", + "length": "199.9984", + "name": "line_ln6492183-1", + "phases": "A", + "to": "m3016088" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125914", + "length": "14.3215", + "name": "line_ln6049963-1", + "phases": "B", + "to": "p829963" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2001400", + "length": "620.8775", + "name": "line_ln2001500-1", + "phases": "ABC", + "to": "m2001500" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "e182722", + "length": "43.8206", + "name": "line_ln5534966-2", + "phases": "A", + "to": "n1138596" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000910", + "length": "158.2381", + "name": "line_ln2000911-1", + "phases": "C", + "to": "m2000911" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2691938", + "length": "145.1821", + "name": "line_ln6169242-1", + "phases": "B", + "to": "m1009840" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m4113348", + "length": "27.2254", + "name": "line_ln8979343-3", + "phases": "C", + "to": "p850400" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125987", + "length": "221.2588", + "name": "line_ln6413700-1", + "phases": "ABC", + "to": "m1125989" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1138596", + "length": "80.3522", + "name": "line_ln5534966-3", + "phases": "A", + "to": "l3254207" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069181", + "length": "60.3124", + "name": "line_ln5532744-1", + "phases": "A", + "to": "l2804253" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108353", + "length": "279.4725", + "name": "line_ln5895772-1", + "phases": "C", + "to": "l3048205" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166387", + "length": "383.3727", + "name": "line_ln5624375-1", + "phases": "C", + "to": "l3198347" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027073", + "length": "151.8441", + "name": "line_ln6320362-1", + "phases": "C", + "to": "l2879089" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027004", + "length": "125.0111", + "name": "line_ln5986922-1", + "phases": "B", + "to": "l2804248" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3214071", + "length": "176.9274", + "name": "line_ln5561442-2", + "phases": "ABC", + "to": "m1125952" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000714", + "length": "158.2381", + "name": "line_ln2000715-1", + "phases": "B", + "to": "m2000715" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125947", + "length": "192.6220", + "name": "line_ln5561442-1", + "phases": "ABC", + "to": "l3214071" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069629", + "length": "479.9941", + "name": "line_ln5894218-1", + "phases": "B", + "to": "m1069640" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069550", + "length": "13.6101", + "name": "line_ln5956482-1", + "phases": "B", + "to": "m1069551" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1149233", + "length": "319.5395", + "name": "line_ln5896833-1", + "phases": "ABC", + "to": "l3048965" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108268", + "length": "1395.4919", + "name": "line_ln5500971-1", + "phases": "B", + "to": "m1108267" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001303", + "length": "158.2381", + "name": "line_ln2001304-1", + "phases": "A", + "to": "m2001304" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1139550", + "length": "79.6687", + "name": "line_ln6017301-3", + "phases": "A", + "to": "l3197639" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m3036169", + "length": "76.7350", + "name": "line_ln6017301-4", + "phases": "A", + "to": "n1139550" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069564", + "length": "21.4534", + "name": "line_ln6076243-1", + "phases": "A", + "to": "p901933" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3011298", + "length": "262.9788", + "name": "line_ln6351524-1", + "phases": "ABC", + "to": "m1108295" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3342743", + "length": "926.5728", + "name": "line_ln6140775-3", + "phases": "C", + "to": "m1026883" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p827511", + "length": "38.9976", + "name": "line_ln6140775-4", + "phases": "C", + "to": "n1140527" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3104830", + "length": "244.3330", + "name": "line_ln5563901-2", + "phases": "ABC", + "to": "n1142104" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1140527", + "length": "462.6533", + "name": "line_ln6140775-5", + "phases": "C", + "to": "l3342743" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1142104", + "length": "149.2205", + "name": "line_ln5563901-3", + "phases": "ABC", + "to": "m1108500" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047406", + "length": "215.2559", + "name": "line_ln6108134-1", + "phases": "A", + "to": "l2691947" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2879069", + "length": "401.0548", + "name": "line_ln6350535-1", + "phases": "A", + "to": "l3197633" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047404", + "length": "203.9987", + "name": "line_ln5480058-1", + "phases": "A", + "to": "l3091052" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008752", + "length": "98.9431", + "name": "line_ln6047554-1", + "phases": "B", + "to": "l3085389" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "n1139251", + "length": "572.7039", + "name": "line_ln8979344-4", + "phases": "C", + "to": "m1069249" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "221-311595", + "length": "12.6733", + "name": "line_ln8979344-3", + "phases": "C", + "to": "n1139251" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186065", + "length": "226.6728", + "name": "line_ln5927383-1", + "phases": "ABC", + "to": "m1186064" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l3101194", + "length": "732.6219", + "name": "line_ln81001717-1", + "phases": "C", + "to": "l2862616" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p850400", + "length": "22.9941", + "name": "line_ln8979344-1", + "phases": "C", + "to": "221-311595" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p901936", + "length": "116.9831", + "name": "line_ln6258453-1", + "phases": "C", + "to": "m1125955" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069462", + "length": "98.5273", + "name": "line_ln5958706-1", + "phases": "B", + "to": "l3216342" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008743", + "length": "270.0996", + "name": "line_ln6017283-1", + "phases": "B", + "to": "m1008742" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3217053", + "length": "8.7063", + "name": "line_ln6506315-4", + "phases": "C", + "to": "m3037455" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2935554", + "length": "143.9965", + "name": "line_ln6169247-1", + "phases": "ABC", + "to": "m1047713" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069155", + "length": "329.8877", + "name": "line_ln5532743-1", + "phases": "ABC", + "to": "m1069154" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3122816", + "length": "1669.6394", + "name": "line_ln6290209-1", + "phases": "ABC", + "to": "l3160103" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009828", + "length": "223.8775", + "name": "line_ln5865226-1", + "phases": "B", + "to": "l2766715" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3159448", + "length": "8.1644", + "name": "line_ln5965099-2", + "phases": "ABC", + "to": "m1069311" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069224", + "length": "392.4829", + "name": "line_ln5744357-1", + "phases": "C", + "to": "m1069218" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m3037540", + "length": "191.4795", + "name": "line_ln5593220-2", + "phases": "C", + "to": "l2822862" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089198", + "length": "580.8660", + "name": "line_ln6290199-1", + "phases": "ABC", + "to": "m1089201" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m4113347", + "length": "76.1845", + "name": "line_ln5965099-8", + "phases": "ABC", + "to": "n1138607" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1138607", + "length": "211.0022", + "name": "line_ln5965099-9", + "phases": "ABC", + "to": "l3159448" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3120534", + "length": "341.3378", + "name": "line_ln5501092-1", + "phases": "A", + "to": "m1126020" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026796", + "length": "99.7777", + "name": "line_ln5498301-1", + "phases": "ABC", + "to": "m1026795" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001308", + "length": "158.2381", + "name": "line_ln2001309-1", + "phases": "A", + "to": "m2001309" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026895", + "length": "199.9986", + "name": "line_ln5863691-1", + "phases": "C", + "to": "l2820528" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2820528", + "length": "99.9972", + "name": "line_ln5863691-2", + "phases": "C", + "to": "l2745799" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108372", + "length": "220.9181", + "name": "line_ln6230694-1", + "phases": "B", + "to": "l3179607" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026906", + "length": "407.0203", + "name": "line_ln6260001-1", + "phases": "A", + "to": "l2916598" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108484", + "length": "340.7855", + "name": "line_ln5503480-1", + "phases": "ABC", + "to": "l2730106" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026886", + "length": "31.7445", + "name": "line_ln6225673-1", + "phases": "C", + "to": "p895409" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2897772", + "length": "185.1879", + "name": "line_ln6318859-1", + "phases": "A", + "to": "l3101814" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069640", + "length": "308.8674", + "name": "line_ln6015793-1", + "phases": "B", + "to": "l3160113" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069738", + "length": "314.0668", + "name": "line_ln5878934-1", + "phases": "B", + "to": "l3234185" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069514", + "length": "23.7761", + "name": "line_ln6171506-1", + "phases": "A", + "to": "p827548" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p895105", + "length": "32.4333", + "name": "line_ln6134417-2", + "phases": "A", + "to": "n1142110" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1142110", + "length": "29.2652", + "name": "line_ln6134417-3", + "phases": "A", + "to": "l2673316" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137961", + "length": "404.0814", + "name": "line_ln6301772-3", + "phases": "A", + "to": "l3104133" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026320", + "length": "240.9853", + "name": "line_ln6138611-1", + "phases": "B", + "to": "l3104130" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026935", + "length": "300.0929", + "name": "line_ln5865239-1", + "phases": "B", + "to": "l2935556" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047314", + "length": "63.3856", + "name": "line_ln6301772-2", + "phases": "A", + "to": "n1137961" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3160108", + "length": "192.4131", + "name": "line_ln6108156-1", + "phases": "B", + "to": "l3029510" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026830", + "length": "9.0484", + "name": "line_ln5928545-1", + "phases": "C", + "to": "p827511" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069192", + "length": "180.7519", + "name": "line_ln5804793-1", + "phases": "A", + "to": "m1069191" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209753", + "length": "675.8795", + "name": "line_ln5866267-1", + "phases": "B", + "to": "m1209748" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108315", + "length": "38.0823", + "name": "line_ln6332133-1", + "phases": "C", + "to": "p860843" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3949157", + "length": "160.9836", + "name": "line_ln6991379-2", + "phases": "A", + "to": "l3727711" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026744", + "length": "552.4778", + "name": "line_ln5835150-1", + "phases": "ABC", + "to": "m1026724" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166356", + "length": "167.1554", + "name": "line_ln6078810-1", + "phases": "A", + "to": "l2730187" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3727711", + "length": "139.6416", + "name": "line_ln6991379-4", + "phases": "A", + "to": "l3727712" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047552", + "length": "28.7631", + "name": "line_ln6292466-1", + "phases": "B", + "to": "p827529" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1027002", + "length": "300.7900", + "name": "line_ln6199518-1", + "phases": "ABC", + "to": "l2673313" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2839305", + "length": "331.0724", + "name": "line_ln5712498-1", + "phases": "A", + "to": "m1166361" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1125979", + "length": "298.1567", + "name": "line_ln5957413-1", + "phases": "C", + "to": "l2917255" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1136363", + "length": "184.1536", + "name": "line_ln6290240-2", + "phases": "ABC", + "to": "r18245" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166386", + "length": "656.1756", + "name": "line_ln6261020-1", + "phases": "C", + "to": "l2898515" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069564", + "length": "117.8675", + "name": "line_ln6290240-3", + "phases": "ABC", + "to": "n1136363" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069202", + "length": "69.2928", + "name": "line_ln6017296-1", + "phases": "C", + "to": "l2785524" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047368", + "length": "208.7599", + "name": "line_ln6350548-1", + "phases": "B", + "to": "l2748130" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2879074", + "length": "242.9692", + "name": "line_ln5714050-1", + "phases": "A", + "to": "l3122820" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3160103", + "length": "78.8841", + "name": "line_ln5744335-1", + "phases": "ABC", + "to": "m1026950" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3231255", + "length": "84.3936", + "name": "line_ln5527264-8", + "phases": "ABC", + "to": "n1144663" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026670", + "length": "156.9190", + "name": "line_ln6380818-1", + "phases": "ABC", + "to": "m1026662" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1144663", + "length": "83.5482", + "name": "line_ln5527264-7", + "phases": "ABC", + "to": "m1089215" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3254234", + "length": "271.8348", + "name": "line_ln6077802-1", + "phases": "B", + "to": "l3104114" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2973150", + "length": "310.8869", + "name": "line_ln5774450-1", + "phases": "A", + "to": "m1047733" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000705", + "length": "158.2381", + "name": "line_ln2000706-1", + "phases": "B", + "to": "m2000706" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069311", + "length": "1.8394", + "name": "line_ln5486729-1", + "phases": "ABC", + "to": "m1069310" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1108380", + "length": "21.4618", + "name": "line_ln81048087-1", + "phases": "B", + "to": "p904452" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2785546", + "length": "390.6958", + "name": "line_ln6376200-2", + "phases": "A", + "to": "m1026810" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "d2000901_int", + "length": "158.2381", + "name": "line_ln2000902-1", + "phases": "C", + "to": "m2000902" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2822865", + "length": "253.7941", + "name": "line_ln6411368-1", + "phases": "C", + "to": "l2916606" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089120", + "length": "190.0732", + "name": "line_ln5472360-1", + "phases": "ABC", + "to": "m1089119" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047750", + "length": "621.1769", + "name": "line_ln6349051-1", + "phases": "A", + "to": "l2708293" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3082983", + "length": "75.8287", + "name": "line_ln6228303-1", + "phases": "B", + "to": "m1069588" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166355", + "length": "367.4939", + "name": "line_ln6015891-1", + "phases": "A", + "to": "l2858200" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001010", + "length": "158.2381", + "name": "line_ln2001011-1", + "phases": "B", + "to": "m2001011" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "e206614", + "length": "76.2763", + "name": "line_ln6228303-2", + "phases": "B", + "to": "l3082983" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009838", + "length": "133.9208", + "name": "line_ln6108121-1", + "phases": "B", + "to": "l2804245" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108526", + "length": "31.5597", + "name": "line_ln6437384-1", + "phases": "C", + "to": "p895075" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3729981", + "length": "109.9996", + "name": "line_ln6879075-2", + "phases": "A", + "to": "l3632979" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069213", + "length": "516.1740", + "name": "line_ln6259999-1", + "phases": "ABC", + "to": "m1069215" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026783", + "length": "96.2012", + "name": "line_ln6259999-2", + "phases": "A", + "to": "n1140524" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1140524", + "length": "385.6779", + "name": "line_ln6259999-3", + "phases": "A", + "to": "l3197641" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3066821", + "length": "208.2708", + "name": "line_ln5804812-1", + "phases": "A", + "to": "m1009691" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026660", + "length": "1114.9021", + "name": "line_ln5895781-1", + "phases": "A", + "to": "l3160106" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069384", + "length": "252.7979", + "name": "line_ln5683808-1", + "phases": "A", + "to": "l2785514" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142880", + "length": "400.7440", + "name": "line_ln5803293-1", + "phases": "C", + "to": "l2764411" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069208", + "length": "464.4419", + "name": "line_ln5593233-1", + "phases": "ABC", + "to": "m1069213" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2764411", + "length": "180.1956", + "name": "line_ln5803293-2", + "phases": "C", + "to": "l2767343" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026357", + "length": "191.9472", + "name": "line_ln5653492-1", + "phases": "C", + "to": "l3178997" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026823", + "length": "214.1239", + "name": "line_ln6047598-1", + "phases": "A", + "to": "l2879087" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m4122658", + "length": "5.4763", + "name": "line_ln5591731-3", + "phases": "ABC", + "to": "l2933135" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108311", + "length": "291.4256", + "name": "line_ln6170302-1", + "phases": "ABC", + "to": "d6170302-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2973151", + "length": "251.8477", + "name": "line_ln5472351-1", + "phases": "A", + "to": "m1069187" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010015", + "length": "266.9984", + "name": "line_ln6409799-1", + "phases": "A", + "to": "m1010014" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026972", + "length": "199.0720", + "name": "line_ln5926299-1", + "phases": "B", + "to": "l2860483" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047471", + "length": "249.8715", + "name": "line_ln5532787-1", + "phases": "B", + "to": "l2973180" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p829975", + "length": "40.8586", + "name": "line_ln6352834-1", + "phases": "C", + "to": "l3160871" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108345", + "length": "127.0213", + "name": "line_ln5715018-1", + "phases": "C", + "to": "m1108347" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr1/0_tpx_ln6229827-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027066", + "length": "40.2000", + "name": "line_ln6229827-1", + "phases": "C", + "to": "l2841645" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108535", + "length": "999.0619", + "name": "line_ln6167731-2", + "phases": "ABC", + "to": "m1108534" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1139539", + "length": "387.1667", + "name": "line_ln5926309-3", + "phases": "A", + "to": "l2710520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m3763623", + "length": "469.3288", + "name": "line_ln81353936-2", + "phases": "C", + "to": "l3645811" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3197631", + "length": "173.5395", + "name": "line_ln6047563-1", + "phases": "A", + "to": "l2748127" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4_wpal_ln5686245-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "m1125919", + "length": "34.2754", + "name": "line_ln6171683-1", + "phases": "A", + "to": "p829961" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l3645811", + "length": "18.7425", + "name": "line_ln81353936-3", + "phases": "C", + "to": "193-103041" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108534", + "length": "421.7653", + "name": "line_ln6167731-1", + "phases": "ABC", + "to": "m1108526" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026656", + "length": "612.1344", + "name": "line_ln6322630-1", + "phases": "A", + "to": "l2729428" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1137989", + "length": "118.0485", + "name": "line_ln5502526-3", + "phases": "C", + "to": "l3122814" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047737", + "length": "38.6335", + "name": "line_ln5502526-2", + "phases": "C", + "to": "n1137989" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1125974", + "length": "131.4407", + "name": "line_ln6260930-1", + "phases": "C", + "to": "m1125979" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3027157", + "length": "362.4135", + "name": "line_ln6076346-1", + "phases": "ABC", + "to": "l2973155" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026925", + "length": "51.1042", + "name": "line_ln5986927-1", + "phases": "A", + "to": "l2916599" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069135", + "length": "94.7900", + "name": "line_ln5926309-2", + "phases": "A", + "to": "n1139539" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000914", + "length": "158.2381", + "name": "line_ln2000915-1", + "phases": "C", + "to": "m2000915" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_3w_cs_ln6043468-3", + "continuous_rating_B": "200.00", + "emergency_rating_B": "200.00", + "from": "n1142106", + "length": "85.9263", + "name": "line_ln6043468-3", + "phases": "B", + "to": "l2936213" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_3w_cs_ln6043468-3", + "continuous_rating_B": "200.00", + "emergency_rating_B": "200.00", + "from": "p895082", + "length": "54.9478", + "name": "line_ln6043468-2", + "phases": "B", + "to": "n1142106" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047338", + "length": "495.8364", + "name": "line_ln6169256-1", + "phases": "A", + "to": "l2691953" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3254217", + "length": "202.9635", + "name": "line_ln6108143-1", + "phases": "ABC", + "to": "m1026800" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108328", + "length": "119.5824", + "name": "line_ln6076248-1", + "phases": "C", + "to": "l2767414" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009832", + "length": "118.2637", + "name": "line_ln6199505-1", + "phases": "B", + "to": "l2860479" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069463", + "length": "7.6540", + "name": "line_ln5746549-1", + "phases": "B", + "to": "m1069462" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1089113", + "length": "249.3881", + "name": "line_ln5835141-1", + "phases": "B", + "to": "l2691946" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069565", + "length": "58.9521", + "name": "line_ln5472386-1", + "phases": "B", + "to": "l3178988" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137003", + "length": "21.4357", + "name": "line_ln6229795-2", + "phases": "A", + "to": "l2935555" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009784", + "length": "199.5001", + "name": "line_ln5501004-1", + "phases": "ABC", + "to": "m1009770" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125978", + "length": "254.6899", + "name": "line_ln6286261-1", + "phases": "B", + "to": "m1125982" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047713", + "length": "31.5486", + "name": "line_ln6229795-3", + "phases": "A", + "to": "n1137003" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3104155", + "length": "209.1141", + "name": "line_ln5562961-1", + "phases": "ABC", + "to": "m1069456" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3197641", + "length": "427.7555", + "name": "line_ln5502539-1", + "phases": "A", + "to": "l2973161" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2973153", + "length": "34.5424", + "name": "line_ln6380809-2", + "phases": "ABC", + "to": "n1136998" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125994", + "length": "349.3076", + "name": "line_ln5775438-1", + "phases": "ABC", + "to": "m1125997" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069175", + "length": "251.0187", + "name": "line_ln5774463-1", + "phases": "C", + "to": "l3197637" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026907", + "length": "270.2730", + "name": "line_ln5916435-1", + "phases": "B", + "to": "p875742" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2990828", + "length": "700.7450", + "name": "line_ln8979259-1", + "phases": "ABC", + "to": "l2841619" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026702", + "length": "163.7076", + "name": "line_ln5653470-1", + "phases": "ABC", + "to": "l2729414" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047490", + "length": "237.7077", + "name": "line_ln6047576-1", + "phases": "ABC", + "to": "l2726973" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p860843", + "length": "130.5385", + "name": "line_ln5957502-1", + "phases": "C", + "to": "l3179682" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108335", + "length": "657.9772", + "name": "line_ln5625542-1", + "phases": "C", + "to": "m1108340" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166393", + "length": "405.4388", + "name": "line_ln5894226-3", + "phases": "C", + "to": "l2745811" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2727008", + "length": "614.1295", + "name": "line_ln6440071-1", + "phases": "B", + "to": "m1069629" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047368", + "length": "138.7250", + "name": "line_ln5472373-1", + "phases": "B", + "to": "l2785528" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125905", + "length": "431.2216", + "name": "line_ln6170292-1", + "phases": "B", + "to": "l2917310" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1136998", + "length": "219.2522", + "name": "line_ln6380809-3", + "phases": "ABC", + "to": "m1047669" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047580", + "length": "22.8381", + "name": "line_ln5843536-1", + "phases": "ABC", + "to": "p828362" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2745811", + "length": "178.5924", + "name": "line_ln6228316-5", + "phases": "C", + "to": "m4122657" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026344", + "length": "966.6990", + "name": "line_ln5804803-1", + "phases": "A", + "to": "m1026364" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108302", + "length": "115.4989", + "name": "line_ln6164818-1", + "phases": "B", + "to": "l3236011" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009771", + "length": "244.9402", + "name": "line_ln6167753-1", + "phases": "B", + "to": "l2914323" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047346", + "length": "141.5543", + "name": "line_ln5865248-1", + "phases": "ABC", + "to": "m1047345" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026363", + "length": "293.3935", + "name": "line_ln6229805-1", + "phases": "C", + "to": "l2897779" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008753", + "length": "283.0691", + "name": "line_ln5623389-1", + "phases": "B", + "to": "l3141390" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx1/0_tpx_ln5562952-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1069555", + "length": "148.6485", + "name": "line_ln5593246-1", + "phases": "B", + "to": "m1069557" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2933135", + "length": "246.4160", + "name": "line_ln5591731-1", + "phases": "ABC", + "to": "m1108484" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3083019", + "length": "94.2325", + "name": "line_ln6106658-1", + "phases": "A", + "to": "m1027080" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142818", + "length": "305.6182", + "name": "line_ln6200532-1", + "phases": "ABC", + "to": "l2955074" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008743", + "length": "216.4264", + "name": "line_ln5804780-1", + "phases": "B", + "to": "l3104115" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069597", + "length": "333.5780", + "name": "line_ln6108165-1", + "phases": "B", + "to": "l3197653" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2804283", + "length": "441.2577", + "name": "line_ln6017328-1", + "phases": "A", + "to": "l2916627" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1136660", + "length": "129.9708", + "name": "line_ln5532752-3", + "phases": "A", + "to": "l3010568" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047534", + "length": "32.5950", + "name": "line_ln5532752-2", + "phases": "A", + "to": "n1136660" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3254218", + "length": "233.8074", + "name": "line_ln6199527-1", + "phases": "ABC", + "to": "l2860490" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108356", + "length": "227.8037", + "name": "line_ln6139656-1", + "phases": "C", + "to": "l2842390" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2804272", + "length": "260.7050", + "name": "line_ln6229818-1", + "phases": "B", + "to": "l2841641" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m3327098", + "length": "655.5251", + "name": "line_ln6108130-6", + "phases": "B", + "to": "l2691943" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3178974", + "length": "236.0199", + "name": "line_ln6108130-5", + "phases": "B", + "to": "m3327098" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089158", + "length": "590.3205", + "name": "line_ln5956459-1", + "phases": "C", + "to": "m1089162" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "d5712587-2_int", + "length": "308.5341", + "name": "line_ln5712587-2", + "phases": "A", + "to": "l3083019" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027056", + "length": "104.1847", + "name": "line_ln5712587-3", + "phases": "A", + "to": "n1144667" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069487", + "length": "224.9077", + "name": "line_ln6017287-1", + "phases": "C", + "to": "l2954344" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009832", + "length": "312.9267", + "name": "line_ln5744326-1", + "phases": "B", + "to": "m1009838" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1089213", + "length": "30.6809", + "name": "line_ln5861081-1", + "phases": "C", + "to": "p895089" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089196", + "length": "350.5924", + "name": "line_ln5653452-1", + "phases": "ABC", + "to": "m1089198" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047484", + "length": "193.8633", + "name": "line_ln6290205-1", + "phases": "ABC", + "to": "l3010560" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089187", + "length": "180.2454", + "name": "line_ln6311089-1", + "phases": "ABC", + "to": "m1089186" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001210", + "length": "158.2381", + "name": "line_ln2001211-1", + "phases": "C", + "to": "m2001211" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1144668", + "length": "97.1474", + "name": "line_ln5965099-11", + "phases": "ABC", + "to": "m4113347" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069350", + "length": "87.7562", + "name": "line_ln5965099-10", + "phases": "ABC", + "to": "n1144668" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209758", + "length": "397.2803", + "name": "line_ln5624380-1", + "phases": "B", + "to": "m1209753" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089204", + "length": "176.4241", + "name": "line_ln5620694-1", + "phases": "A", + "to": "l3157167" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4_acsr_ln5589097-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "p895112", + "length": "84.0031", + "name": "line_ln5589097-1", + "phases": "A", + "to": "l3048962" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2767340", + "length": "6.3565", + "name": "line_ln6506311-4", + "phases": "ABC", + "to": "m3037449" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047766", + "length": "180.8842", + "name": "line_ln5683817-1", + "phases": "B", + "to": "l3216344" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142851", + "length": "45.4595", + "name": "line_ln5558790-1", + "phases": "ABC", + "to": "196-31070" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2991907", + "length": "187.6227", + "name": "line_ln6199514-1", + "phases": "A", + "to": "m1069192" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069730", + "length": "117.5775", + "name": "line_ln5636753-1", + "phases": "B", + "to": "l3159037" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108493", + "length": "122.0679", + "name": "line_ln6321372-3", + "phases": "ABC", + "to": "n1142103" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p829986", + "length": "70.4096", + "name": "line_ln5837516-1", + "phases": "A", + "to": "m1125904" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1142103", + "length": "36.7077", + "name": "line_ln6321372-2", + "phases": "ABC", + "to": "l3104830" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166394", + "length": "216.4705", + "name": "line_ln6230698-1", + "phases": "C", + "to": "m1166398" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3552667", + "length": "653.2207", + "name": "line_ln5987955-3", + "phases": "C", + "to": "l3160862" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1142873", + "length": "181.4936", + "name": "line_ln5987955-2", + "phases": "C", + "to": "l3552667" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2970845", + "length": "288.1765", + "name": "line_ln5501096-1", + "phases": "B", + "to": "l2897771" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2955074", + "length": "292.5181", + "name": "line_ln5594239-1", + "phases": "ABC", + "to": "l3030199" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047824", + "length": "1364.0031", + "name": "line_ln6350531-1", + "phases": "B", + "to": "m1047834" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069588", + "length": "37.5536", + "name": "line_ln6077796-1", + "phases": "B", + "to": "l2804270" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "m1047522", + "length": "29.5395", + "name": "line_ln6411386-2", + "phases": "A", + "to": "n1136664" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "n1136664", + "length": "26.6857", + "name": "line_ln6411386-3", + "phases": "A", + "to": "l3085401" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026931", + "length": "184.8143", + "name": "line_ln5472342-1", + "phases": "A", + "to": "l3216337" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2804248", + "length": "194.8036", + "name": "line_ln5835128-1", + "phases": "B", + "to": "m1027005" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3047060", + "length": "266.5589", + "name": "line_ln6153059-1", + "phases": "ABC", + "to": "l3048221" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3216348", + "length": "617.8429", + "name": "line_ln6320339-1", + "phases": "A", + "to": "l2841627" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4_wpal_ln5686245-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "l2692654", + "length": "7.7822", + "name": "line_ln5957492-1", + "phases": "A", + "to": "m1125929" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_3w_cs_ln6043468-3", + "continuous_rating_B": "200.00", + "emergency_rating_B": "200.00", + "from": "m1108532", + "length": "35.7986", + "name": "line_ln5830952-1", + "phases": "B", + "to": "p895082" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069464", + "length": "263.5708", + "name": "line_ln5593251-1", + "phases": "ABC", + "to": "m1069461" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m3763619", + "length": "47.1994", + "name": "line_ln6896673-6", + "phases": "ABC", + "to": "m3763624" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026877", + "length": "402.1833", + "name": "line_ln6138615-1", + "phases": "A", + "to": "l2729413" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827506", + "length": "23.1305", + "name": "line_ln6171502-1", + "phases": "A", + "to": "m1069469" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m3763624", + "length": "17.9002", + "name": "line_ln6896673-7", + "phases": "ABC", + "to": "m3763618" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1137001", + "length": "162.8399", + "name": "line_ln5924696-3", + "phases": "A", + "to": "l2929261" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000905", + "length": "158.2381", + "name": "line_ln2000906-1", + "phases": "C", + "to": "m2000906" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047702", + "length": "139.9706", + "name": "line_ln5924696-2", + "phases": "A", + "to": "n1137001" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047485", + "length": "645.7020", + "name": "line_ln5829831-1", + "phases": "ABC", + "to": "l3122821" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1108395", + "length": "282.4792", + "name": "line_ln6364659-1", + "phases": "ABC", + "to": "l2728247" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047835", + "length": "635.6389", + "name": "line_ln5926290-1", + "phases": "B", + "to": "m1047836" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3195327", + "length": "226.1117", + "name": "line_ln6258471-1", + "phases": "A", + "to": "l3139103" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p827575", + "length": "16.6823", + "name": "line_ln5776673-1", + "phases": "C", + "to": "m1069437" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026463", + "length": "134.3368", + "name": "line_ln6380799-1", + "phases": "B", + "to": "m1026468" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047309", + "length": "14.9972", + "name": "line_ln6049825-1", + "phases": "ABC", + "to": "d6049825-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209788", + "length": "351.7394", + "name": "line_ln6351519-1", + "phases": "ABC", + "to": "m1209787" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047335", + "length": "194.8645", + "name": "line_ln6077783-1", + "phases": "A", + "to": "l2954354" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166400", + "length": "241.9037", + "name": "line_ln6103754-1", + "phases": "C", + "to": "l3179637" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069376", + "length": "31.5847", + "name": "line_ln5867449-1", + "phases": "ABC", + "to": "p827563" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l3645809", + "length": "484.3841", + "name": "line_ln81354564-8", + "phases": "C", + "to": "l3645810" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827573", + "length": "69.0895", + "name": "line_ln6383061-1", + "phases": "B", + "to": "l2710542" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3104122", + "length": "289.7381", + "name": "line_ln5986962-1", + "phases": "A", + "to": "l2804283" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln5775367-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "l2914324", + "length": "351.8392", + "name": "line_ln6047585-1", + "phases": "A", + "to": "m1026805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m4113347", + "length": "49.2996", + "name": "line_ln7061777-3", + "phases": "C", + "to": "n1138606" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p1121283", + "length": "10.6117", + "name": "line_ln81354564-4", + "phases": "C", + "to": "221-559682" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089162", + "length": "354.6057", + "name": "line_ln6320326-1", + "phases": "C", + "to": "l3197626" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2991919", + "length": "279.8266", + "name": "line_ln5744339-1", + "phases": "A", + "to": "m1026361" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1136671", + "length": "140.1646", + "name": "line_ln5752776-3", + "phases": "ABC", + "to": "m1047593" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "p828362", + "length": "20.4457", + "name": "line_ln5752776-2", + "phases": "ABC", + "to": "n1136671" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1136669", + "length": "198.7252", + "name": "line_ln6350544-3", + "phases": "ABC", + "to": "l3103822" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047552", + "length": "94.0267", + "name": "line_ln6350544-2", + "phases": "ABC", + "to": "n1136669" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1089097", + "length": "468.9415", + "name": "line_ln5803267-1", + "phases": "B", + "to": "m1108268" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2897779", + "length": "316.7869", + "name": "line_ln5714054-1", + "phases": "C", + "to": "l2804261" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1138606", + "length": "105.8303", + "name": "line_ln7061777-4", + "phases": "C", + "to": "m1069335" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p827507", + "length": "36.8432", + "name": "line_ln6079949-2", + "phases": "C", + "to": "n1137956" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3216346", + "length": "430.9737", + "name": "line_ln5621834-1", + "phases": "ABC", + "to": "l2858163" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1137956", + "length": "166.6514", + "name": "line_ln6079949-3", + "phases": "C", + "to": "l3141396" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l3645810", + "length": "32.1743", + "name": "line_ln81354564-9", + "phases": "C", + "to": "m3763623" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069457", + "length": "35.8999", + "name": "line_ln6352701-1", + "phases": "ABC", + "to": "e182745" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2954348", + "length": "255.8138", + "name": "line_ln5562926-1", + "phases": "A", + "to": "l2841615" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001014", + "length": "158.2381", + "name": "line_ln2001015-1", + "phases": "B", + "to": "m2001015" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3066812", + "length": "227.1708", + "name": "line_ln5926300-1", + "phases": "A", + "to": "l2841622" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089141", + "length": "362.7016", + "name": "line_ln6259995-1", + "phases": "ABC", + "to": "l3160107" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069364", + "length": "151.5872", + "name": "line_ln6411364-1", + "phases": "C", + "to": "m1069365" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047434", + "length": "275.1566", + "name": "line_ln5472364-1", + "phases": "A", + "to": "m1047435" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2710514", + "length": "504.4597", + "name": "line_ln5623417-1", + "phases": "B", + "to": "m1047787" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l2916625", + "length": "456.9982", + "name": "line_ln81048230-1", + "phases": "B", + "to": "l3139598" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026366", + "length": "196.5563", + "name": "line_ln6290218-1", + "phases": "A", + "to": "l2860489" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047737", + "length": "531.9166", + "name": "line_ln5742898-1", + "phases": "ABC", + "to": "l3027157" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p859135", + "length": "22.2726", + "name": "line_ln6288693-1", + "phases": "A", + "to": "m1047702" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2001000", + "length": "421.2904", + "name": "line_ln2001100-1", + "phases": "ABC", + "to": "m2001100" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026777", + "length": "202.1688", + "name": "line_ln5773980-1", + "phases": "A", + "to": "l3233353" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089096", + "length": "286.9073", + "name": "line_ln5683804-1", + "phases": "C", + "to": "m1089093" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2763811", + "length": "330.7410", + "name": "line_ln81043320-2", + "phases": "C", + "to": "l2763812" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2952003", + "length": "351.8623", + "name": "line_ln5561437-1", + "phases": "ABC", + "to": "m1108381" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2763812", + "length": "607.6806", + "name": "line_ln81043320-3", + "phases": "C", + "to": "l2951995" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1069328", + "length": "629.7497", + "name": "line_ln81043320-1", + "phases": "C", + "to": "l2763811" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2951995", + "length": "496.5919", + "name": "line_ln81043320-4", + "phases": "C", + "to": "l3101194" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026939", + "length": "80.6309", + "name": "line_ln5623398-1", + "phases": "B", + "to": "l3104124" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_3", + "length": "2460.6299", + "name": "line_hvmv69s1s2-3", + "phases": "ABC", + "to": "hvmv69s1s2_4" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_2", + "length": "2460.6299", + "name": "line_hvmv69s1s2-2", + "phases": "ABC", + "to": "hvmv69s1s2_3" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_5", + "length": "6561.6798", + "name": "line_hvmv69s1s2-5", + "phases": "ABC", + "to": "hvmv69s1s2_6" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_4", + "length": "6561.6798", + "name": "line_hvmv69s1s2-4", + "phases": "ABC", + "to": "hvmv69s1s2_5" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "d2001001_int", + "length": "158.2381", + "name": "line_ln2001002-1", + "phases": "B", + "to": "m2001002" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_1", + "length": "3280.8399", + "name": "line_hvmv69s1s2-1", + "phases": "ABC", + "to": "hvmv69s1s2_2" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2691973", + "length": "111.7040", + "name": "line_ln5865270-1", + "phases": "A", + "to": "m1026890" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2691944", + "length": "297.4028", + "name": "line_ln5472355-1", + "phases": "A", + "to": "l2673312" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047420", + "length": "438.4849", + "name": "line_ln6411377-1", + "phases": "A", + "to": "l2820556" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026347", + "length": "167.1517", + "name": "line_ln5623408-1", + "phases": "ABC", + "to": "m1026341" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026760", + "length": "377.7376", + "name": "line_ln6229809-1", + "phases": "ABC", + "to": "m1026744" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3048890", + "length": "203.4246", + "name": "line_ln6048525-1", + "phases": "C", + "to": "m1166402" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m3036170", + "length": "53.3630", + "name": "line_ln6505950-1", + "phases": "ABC", + "to": "m1026670" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186064", + "length": "16.8845", + "name": "line_ln5654480-1", + "phases": "ABC", + "to": "m1186063" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069428", + "length": "251.5122", + "name": "line_ln6047604-1", + "phases": "ABC", + "to": "m1069424" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108361", + "length": "417.5564", + "name": "line_ln6199558-1", + "phases": "C", + "to": "m1089155" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2673326", + "length": "145.2524", + "name": "line_ln6320348-1", + "phases": "B", + "to": "l2691938" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026848", + "length": "222.8653", + "name": "line_ln5653461-1", + "phases": "A", + "to": "m1026847" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1209823", + "length": "302.2674", + "name": "line_ln5624291-1", + "phases": "C", + "to": "m1209824" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3008279", + "length": "304.0445", + "name": "line_ln5712578-1", + "phases": "A", + "to": "l2785537" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p901912", + "length": "122.7824", + "name": "line_ln6349077-1", + "phases": "B", + "to": "l3195365" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_7", + "length": "3280.8399", + "name": "line_hvmv69s1s2-7", + "phases": "ABC", + "to": "hvmv69s1s2_8" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_6", + "length": "6561.6798", + "name": "line_hvmv69s1s2-6", + "phases": "ABC", + "to": "hvmv69s1s2_7" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1089132", + "length": "124.7876", + "name": "line_ln5956468-1", + "phases": "C", + "to": "l2691950" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_9", + "length": "3280.8399", + "name": "line_hvmv69s1s2-9", + "phases": "ABC", + "to": "hvmv69s1s2_10" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108489", + "length": "80.6557", + "name": "line_ln5533710-1", + "phases": "A", + "to": "m1108492" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_8", + "length": "3280.8399", + "name": "line_hvmv69s1s2-8", + "phases": "ABC", + "to": "hvmv69s1s2_9" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108490", + "length": "144.7282", + "name": "line_ln5927298-1", + "phases": "ABC", + "to": "l3142049" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1139259", + "length": "116.8984", + "name": "line_ln5744370-3", + "phases": "C", + "to": "l2710543" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827554", + "length": "25.8487", + "name": "line_ln6258440-1", + "phases": "B", + "to": "m1047769" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1108501", + "length": "188.2163", + "name": "line_ln6137015-1", + "phases": "A", + "to": "m1108499" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047403", + "length": "225.0011", + "name": "line_ln6207101-1", + "phases": "A", + "to": "m1047404" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069437", + "length": "148.7518", + "name": "line_ln5744370-2", + "phases": "C", + "to": "n1139259" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047497", + "length": "26.1309", + "name": "line_ln5682337-1", + "phases": "B", + "to": "p901912" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2691939", + "length": "204.2736", + "name": "line_ln5714041-1", + "phases": "B", + "to": "l2860478" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3178971", + "length": "130.6121", + "name": "line_ln6138602-1", + "phases": "A", + "to": "l2879067" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026792", + "length": "567.0685", + "name": "line_ln5652982-1", + "phases": "A", + "to": "l2821010" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108295", + "length": "274.7327", + "name": "line_ln6109158-1", + "phases": "ABC", + "to": "l2936279" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026662", + "length": "107.8891", + "name": "line_ln6199523-2", + "phases": "C", + "to": "n1140831" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1140831", + "length": "400.8076", + "name": "line_ln6199523-3", + "phases": "C", + "to": "l3141402" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3784018", + "length": "158.5263", + "name": "line_ln6077815-5", + "phases": "ABC", + "to": "n1136028" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026874", + "length": "341.4809", + "name": "line_ln6229799-1", + "phases": "A", + "to": "l3197638" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2973155", + "length": "209.9994", + "name": "line_ln6077815-4", + "phases": "ABC", + "to": "l3784018" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l3214549", + "length": "26.2528", + "name": "line_ln81048110-3", + "phases": "A", + "to": "m1108393" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l2802481", + "length": "292.0375", + "name": "line_ln81048110-2", + "phases": "A", + "to": "l3214549" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1136028", + "length": "25.5993", + "name": "line_ln6077815-3", + "phases": "ABC", + "to": "l2876797" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1136365", + "length": "97.8384", + "name": "line_ln5714063-2", + "phases": "ABC", + "to": "m1069517" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069516", + "length": "168.6767", + "name": "line_ln5714063-3", + "phases": "ABC", + "to": "n1136365" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1108423", + "length": "135.1265", + "name": "line_ln81048110-1", + "phases": "A", + "to": "l2802481" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1009698", + "length": "165.6349", + "name": "line_ln5773028-1", + "phases": "A", + "to": "l3156034" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125982", + "length": "200.0005", + "name": "line_ln5588822-1", + "phases": "B", + "to": "l3029055" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125944", + "length": "569.2057", + "name": "line_ln6348948-1", + "phases": "ABC", + "to": "m1125947" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000411", + "length": "158.2381", + "name": "line_ln2000412-1", + "phases": "A", + "to": "m2000412" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2842384", + "length": "222.3513", + "name": "line_ln5805762-1", + "phases": "ABC", + "to": "m1149236" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069613", + "length": "324.3558", + "name": "line_ln6290227-1", + "phases": "B", + "to": "m1069597" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3101827", + "length": "493.8388", + "name": "line_ln5591811-1", + "phases": "C", + "to": "m1108540" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069169", + "length": "36.8585", + "name": "line_ln6413565-1", + "phases": "A", + "to": "p827508" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1134476", + "length": "130.9107", + "name": "line_ln6247127-2", + "phases": "ABC", + "to": "l3066814" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069499", + "length": "110.8892", + "name": "line_ln6247127-3", + "phases": "ABC", + "to": "n1134476" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125940", + "length": "582.4009", + "name": "line_ln5775469-1", + "phases": "B", + "to": "l3254915" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1125994", + "length": "11.1985", + "name": "line_ln5867591-1", + "phases": "ABC", + "to": "d5867591-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3253570", + "length": "291.0369", + "name": "line_ln6359077-2", + "phases": "C", + "to": "l2937757" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2937757", + "length": "265.2627", + "name": "line_ln6359077-1", + "phases": "C", + "to": "l3067448" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008742", + "length": "91.2244", + "name": "line_ln5895768-1", + "phases": "B", + "to": "l3029495" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047732", + "length": "39.2111", + "name": "line_ln5682448-2", + "phases": "C", + "to": "n1137987" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1137987", + "length": "128.2705", + "name": "line_ln5682448-3", + "phases": "C", + "to": "l3027156" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026941", + "length": "382.5806", + "name": "line_ln6077770-1", + "phases": "A", + "to": "l3197618" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009726", + "length": "238.6456", + "name": "line_ln5833652-1", + "phases": "ABC", + "to": "m1009724" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "196-29520", + "length": "212.1015", + "name": "line_ln5800830-1", + "phases": "ABC", + "to": "l3160109" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069505", + "length": "102.7858", + "name": "line_ln5653479-1", + "phases": "ABC", + "to": "m1069509" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p901941", + "length": "160.9522", + "name": "line_ln5651988-1", + "phases": "A", + "to": "l3251799" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047826", + "length": "194.0111", + "name": "line_ln5742816-1", + "phases": "B", + "to": "m1047825" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3036162", + "length": "189.5831", + "name": "line_ln5563909-2", + "phases": "B", + "to": "l2879753" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2710508", + "length": "455.9082", + "name": "line_ln5562920-1", + "phases": "B", + "to": "l2822860" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2/0_acsr1/0_tpx_ln5866260-1", + "continuous_rating_C": "225.00", + "emergency_rating_C": "300.00", + "from": "m1142839", + "length": "137.9641", + "name": "line_ln5866260-1", + "phases": "C", + "to": "l3067507" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "d6138609-1_int", + "length": "213.3883", + "name": "line_ln6138609-1", + "phases": "ABC", + "to": "l2691951" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026997", + "length": "69.2830", + "name": "line_ln5744360-1", + "phases": "B", + "to": "l3216361" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3178977", + "length": "195.6623", + "name": "line_ln5895777-1", + "phases": "C", + "to": "l3160105" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1125905", + "length": "797.7942", + "name": "line_ln6505937-2", + "phases": "B", + "to": "l3142079" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1138593", + "length": "134.7077", + "name": "line_ln6411394-3", + "phases": "A", + "to": "l2804262" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026859", + "length": "55.9744", + "name": "line_ln6411394-2", + "phases": "A", + "to": "n1138593" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108261", + "length": "160.2717", + "name": "line_ln6320323-1", + "phases": "B", + "to": "m1108260" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026387", + "length": "309.9874", + "name": "line_ln5835147-1", + "phases": "A", + "to": "l3085402" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1142819", + "length": "8.2335", + "name": "line_ln5625715-1", + "phases": "B", + "to": "p829960" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3160123", + "length": "301.0830", + "name": "line_ln6199556-1", + "phases": "A", + "to": "l2897805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1047612", + "length": "17.6235", + "name": "line_ln8961760-1", + "phases": "C", + "to": "p828360" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069469", + "length": "70.0389", + "name": "line_ln5683813-1", + "phases": "A", + "to": "m1069467" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026872", + "length": "299.2513", + "name": "line_ln5502543-2", + "phases": "ABC", + "to": "d5502543-2_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "p827530", + "length": "22.3769", + "name": "line_ln8945013-1", + "phases": "A", + "to": "221-240991" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3179678", + "length": "386.3635", + "name": "line_ln6079946-1", + "phases": "ABC", + "to": "l2804249" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3195315", + "length": "276.1570", + "name": "line_ln6015788-2", + "phases": "A", + "to": "m1069181" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209752", + "length": "516.5925", + "name": "line_ln6200528-1", + "phases": "B", + "to": "m1209751" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089203", + "length": "183.0138", + "name": "line_ln5986921-1", + "phases": "ABC", + "to": "m1089207" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069191", + "length": "155.4463", + "name": "line_ln6015788-1", + "phases": "A", + "to": "l3195315" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2804250", + "length": "226.7636", + "name": "line_ln5531326-1", + "phases": "C", + "to": "l2820583" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1140819", + "length": "88.3550", + "name": "line_ln6347196-2", + "phases": "ABC", + "to": "m1026700" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2804256", + "length": "177.0438", + "name": "line_ln6169250-1", + "phases": "ABC", + "to": "m1026960" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2955047", + "length": "156.3391", + "name": "line_ln5594212-1", + "phases": "ABC", + "to": "l3179646" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p827501", + "length": "14.1267", + "name": "line_ln6231992-3", + "phases": "ABC", + "to": "n1140516" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069564", + "length": "125.9561", + "name": "line_ln6041764-1", + "phases": "A", + "to": "l3104144" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2973167", + "length": "226.3412", + "name": "line_ln6347196-3", + "phases": "ABC", + "to": "n1140819" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1140516", + "length": "413.3409", + "name": "line_ln6231992-2", + "phases": "ABC", + "to": "m1089176" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047825", + "length": "282.3593", + "name": "line_ln5742816-2", + "phases": "B", + "to": "m1069731" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1108258", + "length": "149.9981", + "name": "line_ln5500978-1", + "phases": "B", + "to": "l3195318" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3030203", + "length": "177.7100", + "name": "line_ln5957496-1", + "phases": "C", + "to": "l3179673" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027013", + "length": "33.0816", + "name": "line_ln5863699-1", + "phases": "B", + "to": "p901905" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001300", + "length": "158.2381", + "name": "line_ln2001301-1", + "phases": "A", + "to": "m2001301" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m3037455", + "length": "233.9571", + "name": "line_ln5927379-2", + "phases": "C", + "to": "l3217052" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2952007", + "length": "415.1787", + "name": "line_ln5894230-1", + "phases": "C", + "to": "l2861158" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3104134", + "length": "152.5305", + "name": "line_ln5472369-1", + "phases": "ABC", + "to": "m1047346" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069148", + "length": "90.2965", + "name": "line_ln5865231-1", + "phases": "C", + "to": "l2785518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166395", + "length": "25.3822", + "name": "line_ln6142227-1", + "phases": "C", + "to": "m1166396" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "d5653457-1_int", + "length": "281.1952", + "name": "line_ln5653457-1", + "phases": "ABC", + "to": "m1026891" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026854", + "length": "430.5370", + "name": "line_ln6380822-1", + "phases": "ABC", + "to": "m1026852" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069557", + "length": "231.7329", + "name": "line_ln5502556-1", + "phases": "B", + "to": "m1069558" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1142099", + "length": "114.4182", + "name": "line_ln5920279-4", + "phases": "ABC", + "to": "n1142100" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1142100", + "length": "43.6121", + "name": "line_ln5920279-2", + "phases": "ABC", + "to": "m1108490" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089115", + "length": "235.6243", + "name": "line_ln6199521-1", + "phases": "C", + "to": "l2991911" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3178978", + "length": "545.1464", + "name": "line_ln5683826-1", + "phases": "A", + "to": "m1047432" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001202", + "length": "158.2381", + "name": "line_ln2001203-1", + "phases": "C", + "to": "m2001203" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2730106", + "length": "73.3892", + "name": "line_ln5920279-5", + "phases": "ABC", + "to": "n1142099" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p827576", + "length": "31.5525", + "name": "line_ln5746550-2", + "phases": "B", + "to": "n1139256" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108402", + "length": "194.7087", + "name": "line_ln6422013-1", + "phases": "ABC", + "to": "m1108403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026784", + "length": "51.5380", + "name": "line_ln5562933-3", + "phases": "C", + "to": "n1140523" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1140523", + "length": "71.7126", + "name": "line_ln5562933-2", + "phases": "C", + "to": "l2766724" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "n1139256", + "length": "208.8205", + "name": "line_ln5746550-3", + "phases": "B", + "to": "l2973178" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069213", + "length": "134.2713", + "name": "line_ln5623401-1", + "phases": "C", + "to": "l3178977" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2973144", + "length": "550.6881", + "name": "line_ln5706733-1", + "phases": "C", + "to": "l2724120" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1009720", + "length": "319.3397", + "name": "line_ln5804809-1", + "phases": "A", + "to": "l3178982" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108368", + "length": "230.8129", + "name": "line_ln5926294-1", + "phases": "C", + "to": "l3085393" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3235242", + "length": "451.5061", + "name": "line_ln5623391-1", + "phases": "C", + "to": "m1089195" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2724120", + "length": "16.7527", + "name": "line_ln5706733-2", + "phases": "C", + "to": "m1069149" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001313", + "length": "158.2381", + "name": "line_ln2001314-1", + "phases": "A", + "to": "m2001314" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001006", + "length": "158.2381", + "name": "line_ln2001007-1", + "phases": "B", + "to": "m2001007" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1108433", + "length": "438.1140", + "name": "line_ln81048090-1", + "phases": "B", + "to": "228-1048090-1_int" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1009809", + "length": "296.3194", + "name": "line_ln6077787-1", + "phases": "C", + "to": "l2710525" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010011", + "length": "265.9987", + "name": "line_ln6106584-1", + "phases": "A", + "to": "m1010008" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108507", + "length": "203.9994", + "name": "line_ln6206103-1", + "phases": "A", + "to": "l3108449" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047442", + "length": "211.6151", + "name": "line_ln5472356-1", + "phases": "B", + "to": "l3235250" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "150.00", + "continuous_rating_B": "150.00", + "continuous_rating_C": "150.00", + "emergency_rating_A": "150.00", + "emergency_rating_B": "150.00", + "emergency_rating_C": "150.00", + "from": "m1047672", + "length": "126.3833", + "name": "line_ln6411372-1", + "phases": "ABC", + "to": "l2822866" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047728", + "length": "311.3993", + "name": "line_ln6108129-1", + "phases": "B", + "to": "l2804255" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_2ph_h-2_acsrx2_acsr2_acsr_ln5637597-1", + "continuous_rating_A": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_C": "175.00", + "from": "m1069311", + "length": "271.5456", + "name": "line_ln5637597-1", + "phases": "AC", + "to": "m1069285" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_wpalxx2_wpal_ln6409800-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1009726", + "length": "128.3298", + "name": "line_ln6409800-1", + "phases": "A", + "to": "l3101789" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1069250", + "length": "67.4379", + "name": "line_ln8979371-1", + "phases": "C", + "to": "l2690868" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2690868", + "length": "37.6003", + "name": "line_ln8979371-2", + "phases": "C", + "to": "228-979371-2_int" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026330", + "length": "98.7141", + "name": "line_ln6047581-1", + "phases": "B", + "to": "l2766726" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009840", + "length": "179.8843", + "name": "line_ln5502521-1", + "phases": "B", + "to": "l2991901" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142863", + "length": "220.3141", + "name": "line_ln5836178-1", + "phases": "ABC", + "to": "m1142865" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026925", + "length": "361.9230", + "name": "line_ln5926304-1", + "phases": "A", + "to": "l3235249" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047722", + "length": "115.9987", + "name": "line_ln5863709-1", + "phases": "B", + "to": "l3214064" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026949", + "length": "285.9999", + "name": "line_ln6259991-1", + "phases": "B", + "to": "m1026951" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3104117", + "length": "412.6218", + "name": "line_ln5593218-1", + "phases": "C", + "to": "m1069494" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000402", + "length": "158.2381", + "name": "line_ln2000403-1", + "phases": "A", + "to": "m2000403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "630.00", + "continuous_rating_B": "630.00", + "continuous_rating_C": "630.00", + "emergency_rating_A": "630.00", + "emergency_rating_B": "630.00", + "emergency_rating_C": "630.00", + "from": "m1142843", + "length": "245.0563", + "name": "line_ln6381853-1", + "phases": "ABC", + "to": "l2955077" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069412", + "length": "202.6285", + "name": "line_ln5502530-1", + "phases": "B", + "to": "l3066813" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1147858", + "length": "173.5152", + "name": "line_ln5943422-4", + "phases": "C", + "to": "l2991933" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2746587", + "length": "74.8762", + "name": "line_ln5943422-3", + "phases": "C", + "to": "n1147858" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3216338", + "length": "192.1953", + "name": "line_ln6380800-1", + "phases": "B", + "to": "l2973146" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p859694", + "length": "52.8032", + "name": "line_ln5943422-1", + "phases": "C", + "to": "l2746587" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026487", + "length": "31.3441", + "name": "line_ln5956476-1", + "phases": "B", + "to": "l2897784" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3198355", + "length": "363.5686", + "name": "line_ln6048642-1", + "phases": "B", + "to": "l2805037" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009855", + "length": "384.1764", + "name": "line_ln6138618-1", + "phases": "B", + "to": "l2991927" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2860486", + "length": "331.2041", + "name": "line_ln6350540-1", + "phases": "C", + "to": "l3141399" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1166377", + "length": "110.7603", + "name": "line_ln5992960-1", + "phases": "ABC", + "to": "m1166376" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026726", + "length": "129.8445", + "name": "line_ln6286965-1", + "phases": "ABC", + "to": "l2814529" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m3032980", + "length": "844.6338", + "name": "line_ln6504020-2", + "phases": "ABC", + "to": "m3032977" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln5775367-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "m1026826", + "length": "274.2567", + "name": "line_ln6258470-1", + "phases": "A", + "to": "l2952013" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3254206", + "length": "162.4430", + "name": "line_ln6259982-1", + "phases": "B", + "to": "m1009827" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2729409", + "length": "284.6575", + "name": "line_ln5835138-1", + "phases": "B", + "to": "l2841624" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047713", + "length": "361.5376", + "name": "line_ln6132680-1", + "phases": "ABC", + "to": "m1047720" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047312", + "length": "49.7678", + "name": "line_ln6320367-3", + "phases": "ABC", + "to": "n1137960" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1137960", + "length": "82.5199", + "name": "line_ln6320367-2", + "phases": "ABC", + "to": "m1047309" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1138599", + "length": "207.3272", + "name": "line_ln6375549-3", + "phases": "ABC", + "to": "l3181545" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166362", + "length": "338.9136", + "name": "line_ln6078774-1", + "phases": "A", + "to": "m1166355" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649297", + "length": "208.8374", + "name": "line_ln6900591-6", + "phases": "A", + "to": "l3649298" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069376", + "length": "72.1641", + "name": "line_ln6375549-4", + "phases": "ABC", + "to": "n1138599" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1138603", + "length": "72.4415", + "name": "line_ln6375549-5", + "phases": "ABC", + "to": "l3125349" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2991914", + "length": "116.9621", + "name": "line_ln5651975-1", + "phases": "ABC", + "to": "m1047503" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3181545", + "length": "257.6932", + "name": "line_ln6375549-6", + "phases": "ABC", + "to": "n1138603" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3649298", + "length": "212.0840", + "name": "line_ln6900591-8", + "phases": "A", + "to": "l3649299" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026906", + "length": "603.8226", + "name": "line_ln5683857-1", + "phases": "A", + "to": "l2691973" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000709", + "length": "158.2381", + "name": "line_ln2000710-1", + "phases": "B", + "to": "m2000710" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1047371", + "length": "8.0701", + "name": "line_ln8968081-1", + "phases": "B", + "to": "p841985" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026997", + "length": "197.8808", + "name": "line_ln5653488-1", + "phases": "ABC", + "to": "m1027000" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069526", + "length": "126.3206", + "name": "line_ln5562946-1", + "phases": "B", + "to": "l2673331" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089173", + "length": "275.8782", + "name": "line_ln5714045-1", + "phases": "C", + "to": "l2673307" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2897790", + "length": "231.0816", + "name": "line_ln5744351-1", + "phases": "C", + "to": "l2935566" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2861218", + "length": "522.7618", + "name": "line_ln5958866-1", + "phases": "ABC", + "to": "d5958866-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026364", + "length": "196.0519", + "name": "line_ln5895786-1", + "phases": "A", + "to": "l3010570" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026357", + "length": "97.0941", + "name": "line_ln5532791-1", + "phases": "ABC", + "to": "m1026356" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2783231", + "length": "498.4894", + "name": "line_ln5985355-1", + "phases": "B", + "to": "l3254227" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "196-29521", + "length": "33.6241", + "name": "line_ln5985355-4", + "phases": "B", + "to": "n1136355" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047424", + "length": "213.0033", + "name": "line_ln5683822-1", + "phases": "ABC", + "to": "l2691949" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026786", + "length": "12.6962", + "name": "line_ln5770318-1", + "phases": "ABC", + "to": "m1026785" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1136355", + "length": "237.7126", + "name": "line_ln5985355-3", + "phases": "B", + "to": "l2783231" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2684420", + "length": "273.7943", + "name": "line_ln5532738-1", + "phases": "B", + "to": "m1047824" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der480-2", + "length": "164.0420", + "name": "line_ln2001der-5", + "phases": "ABC", + "to": "m2001der-5" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026646", + "length": "645.2267", + "name": "line_ln5986930-1", + "phases": "A", + "to": "l3178978" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2841620", + "length": "786.4903", + "name": "line_ln6320332-1", + "phases": "B", + "to": "l2785520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3104118", + "length": "261.7321", + "name": "line_ln5774448-1", + "phases": "C", + "to": "l2748126" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027027", + "length": "141.4624", + "name": "line_ln6137083-1", + "phases": "C", + "to": "l3270853" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047568", + "length": "52.2934", + "name": "line_ln6383059-1", + "phases": "ABC", + "to": "p827527" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3197661", + "length": "222.9381", + "name": "line_ln6229832-2", + "phases": "C", + "to": "l3122848" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026898", + "length": "9.5487", + "name": "line_ln6229832-1", + "phases": "C", + "to": "l3197661" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108534", + "length": "20.8795", + "name": "line_ln5863718-1", + "phases": "A", + "to": "p901934" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der480-1", + "length": "164.0420", + "name": "line_ln2001der-2", + "phases": "ABC", + "to": "m2001der-2" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1139258", + "length": "133.4013", + "name": "line_ln5956498-3", + "phases": "C", + "to": "l3066810" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026847", + "length": "199.3449", + "name": "line_ln5804799-1", + "phases": "A", + "to": "l2673311" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der480-1", + "length": "164.0420", + "name": "line_ln2001der-1", + "phases": "ABC", + "to": "m2001der-1" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069437", + "length": "36.9406", + "name": "line_ln5956498-2", + "phases": "C", + "to": "n1139258" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der480-2", + "length": "164.0420", + "name": "line_ln2001der-4", + "phases": "ABC", + "to": "m2001der-4" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der480-1", + "length": "164.0420", + "name": "line_ln2001der-3", + "phases": "ABC", + "to": "m2001der-3" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125957", + "length": "124.2129", + "name": "line_ln5982822-1", + "phases": "C", + "to": "l2936211" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1126005", + "length": "228.4898", + "name": "line_ln6381764-1", + "phases": "A", + "to": "l2767342" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "p862322", + "length": "17.0721", + "name": "line_ln8979251-1", + "phases": "ABC", + "to": "221-308718" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108540", + "length": "80.6036", + "name": "line_ln6078689-1", + "phases": "C", + "to": "l2955006" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069497", + "length": "50.1280", + "name": "line_ln6138595-1", + "phases": "ABC", + "to": "m1069495" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "221-308718", + "length": "110.4897", + "name": "line_ln8979251-2", + "phases": "ABC", + "to": "l2803199" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026699", + "length": "304.0888", + "name": "line_ln5993742-1", + "phases": "B", + "to": "m1026722" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3177894", + "length": "301.9982", + "name": "line_ln5486878-2", + "phases": "A", + "to": "l3082993" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010004", + "length": "817.9995", + "name": "line_ln5486878-1", + "phases": "A", + "to": "l3177894" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2876797", + "length": "161.9968", + "name": "line_ln6258439-1", + "phases": "ABC", + "to": "r18241" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx1/0_tpx_ln6138596-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026942", + "length": "13.9425", + "name": "line_ln6228279-2", + "phases": "A", + "to": "l3141389" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p829979", + "length": "106.8486", + "name": "line_ln5746706-2", + "phases": "B", + "to": "m3036172" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx1/0_tpx_ln6138596-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026941", + "length": "70.5666", + "name": "line_ln6228279-1", + "phases": "A", + "to": "m1026942" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "r18242", + "length": "124.2330", + "name": "line_ln6199530-1", + "phases": "ABC", + "to": "l3254218" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1126020", + "length": "415.6890", + "name": "line_ln5651997-1", + "phases": "A", + "to": "m1126025" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209805", + "length": "346.3260", + "name": "line_ln5775442-1", + "phases": "ABC", + "to": "l2823592" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1209828", + "length": "131.7993", + "name": "line_ln5873976-1", + "phases": "C", + "to": "l3253570" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026377", + "length": "417.4933", + "name": "line_ln5653466-1", + "phases": "A", + "to": "l3048210" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125955", + "length": "22.3954", + "name": "line_ln5740283-1", + "phases": "C", + "to": "m1125957" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069521", + "length": "163.7328", + "name": "line_ln6380835-1", + "phases": "A", + "to": "l3254231" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2766718", + "length": "301.1730", + "name": "line_ln5956463-1", + "phases": "ABC", + "to": "l3048206" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3142049", + "length": "277.7893", + "name": "line_ln5889821-1", + "phases": "ABC", + "to": "m1108493" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047386", + "length": "438.7305", + "name": "line_ln5562924-1", + "phases": "B", + "to": "m1047388" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026745", + "length": "298.6107", + "name": "line_ln5841919-1", + "phases": "B", + "to": "l3029183" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3216347", + "length": "282.0301", + "name": "line_ln6138605-1", + "phases": "C", + "to": "l2785523" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3235946", + "length": "573.5413", + "name": "line_ln5836089-1", + "phases": "A", + "to": "m1126005" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010004", + "length": "54.9990", + "name": "line_ln6198053-1", + "phases": "A", + "to": "m1010003" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089131", + "length": "314.2059", + "name": "line_ln6290212-1", + "phases": "ABC", + "to": "l3029502" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "190-8593", + "length": "26.3387", + "name": "line_ln5860423-3", + "phases": "ABC", + "to": "d5860423-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "q14733", + "length": "49.0914", + "name": "line_ln5860423-4", + "phases": "ABC", + "to": "m1047568" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3029505", + "length": "326.7000", + "name": "line_ln6411385-1", + "phases": "C", + "to": "l2673318" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142819", + "length": "199.4670", + "name": "line_ln5684859-1", + "phases": "B", + "to": "l2861219" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108274", + "length": "173.3900", + "name": "line_ln5472347-1", + "phases": "B", + "to": "m1108276" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142874", + "length": "180.3117", + "name": "line_ln5987954-1", + "phases": "ABC", + "to": "m1142875" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2841632", + "length": "82.4335", + "name": "line_ln5860423-1", + "phases": "ABC", + "to": "d5860450-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1008758", + "length": "146.2914", + "name": "line_ln5835125-1", + "phases": "B", + "to": "l2822859" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026979", + "length": "252.7146", + "name": "line_ln5865240-1", + "phases": "B", + "to": "l2748152" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047480", + "length": "373.9578", + "name": "line_ln6077774-1", + "phases": "ABC", + "to": "m1069483" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047592", + "length": "11.9952", + "name": "line_ln5565092-1", + "phases": "C", + "to": "p827512" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047575", + "length": "29.1779", + "name": "line_ln5860423-2", + "phases": "ABC", + "to": "regxfmr_190-8593" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047340", + "length": "212.5868", + "name": "line_ln6411390-1", + "phases": "A", + "to": "l2991923" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln5775367-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "p827536", + "length": "41.1314", + "name": "line_ln6440002-3", + "phases": "A", + "to": "n1137999" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2954361", + "length": "177.7903", + "name": "line_ln6320354-1", + "phases": "B", + "to": "m1069627" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln5775367-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "d6440002-2_int", + "length": "264.7575", + "name": "line_ln6440002-2", + "phases": "A", + "to": "l2876813" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m3032980", + "length": "84.9058", + "name": "line_ln0504020-1", + "phases": "ABC", + "to": "m3032981" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026339", + "length": "237.5256", + "name": "line_ln5774466-1", + "phases": "B", + "to": "l2766727" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2730108", + "length": "276.7673", + "name": "line_ln5896731-1", + "phases": "C", + "to": "l2786204" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142832", + "length": "220.0777", + "name": "line_ln6018331-1", + "phases": "ABC", + "to": "l3160865" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027036", + "length": "70.3821", + "name": "line_ln5744364-1", + "phases": "B", + "to": "l3010580" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000700", + "length": "158.2381", + "name": "line_ln2000701-1", + "phases": "B", + "to": "m2000701" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p860892", + "length": "35.2094", + "name": "line_ln6108138-2", + "phases": "C", + "to": "n1139543" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1139543", + "length": "162.8453", + "name": "line_ln6108138-3", + "phases": "C", + "to": "l2727795" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2955077", + "length": "197.7215", + "name": "line_ln6413954-1", + "phases": "ABC", + "to": "m1142851" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2692655", + "length": "175.6027", + "name": "line_ln5896825-1", + "phases": "ABC", + "to": "m1142821" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3214112", + "length": "339.3827", + "name": "line_ln5803984-2", + "phases": "B", + "to": "l3160104" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3254214", + "length": "273.9079", + "name": "line_ln5803984-1", + "phases": "B", + "to": "l3214112" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1137958", + "length": "291.0776", + "name": "line_ln5958702-3", + "phases": "C", + "to": "m1047478" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026485", + "length": "216.2311", + "name": "line_ln6290243-1", + "phases": "B", + "to": "m1026492" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3030197", + "length": "231.4216", + "name": "line_ln6381844-1", + "phases": "ABC", + "to": "m1142868" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1089145", + "length": "117.9983", + "name": "line_ln6028890-1", + "phases": "ABC", + "to": "l3215385" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p827505", + "length": "15.0179", + "name": "line_ln5958702-2", + "phases": "C", + "to": "n1137958" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142880", + "length": "324.5371", + "name": "line_ln5591718-1", + "phases": "C", + "to": "l2891575" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026468", + "length": "31.6182", + "name": "line_ln6167715-1", + "phases": "B", + "to": "p901909" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2748130", + "length": "236.7777", + "name": "line_ln5895773-1", + "phases": "B", + "to": "l3254212" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2897773", + "length": "398.2518", + "name": "line_ln5532747-1", + "phases": "A", + "to": "l3197631" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026970", + "length": "205.1592", + "name": "line_ln6380813-1", + "phases": "ABC", + "to": "m1026977" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1144666", + "length": "102.8843", + "name": "line_ln6318745-2", + "phases": "C", + "to": "m1027041" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2861197", + "length": "241.4746", + "name": "line_ln6292461-1", + "phases": "C", + "to": "l3160896" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3234185", + "length": "326.2019", + "name": "line_ln6121686-1", + "phases": "B", + "to": "l3065750" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2897769", + "length": "180.8482", + "name": "line_ln5986925-2", + "phases": "C", + "to": "l3778577" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1136362", + "length": "89.8397", + "name": "line_ln6409781-3", + "phases": "A", + "to": "l3197652" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069563", + "length": "62.6215", + "name": "line_ln6409781-2", + "phases": "A", + "to": "n1136362" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3778577", + "length": "209.7532", + "name": "line_ln5986925-3", + "phases": "C", + "to": "l3141395" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1027042", + "length": "76.8770", + "name": "line_ln6318745-3", + "phases": "C", + "to": "n1144666" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2841645", + "length": "98.4813", + "name": "line_ln6077810-1", + "phases": "C", + "to": "l3066829" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3327098", + "length": "260.9987", + "name": "line_ln6660514-2", + "phases": "B", + "to": "m3327097" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069582", + "length": "80.9746", + "name": "line_ln6231996-1", + "phases": "B", + "to": "d6231996-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3085402", + "length": "48.1460", + "name": "line_ln6169254-1", + "phases": "A", + "to": "m1026394" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047515", + "length": "369.7093", + "name": "line_ln5593236-6", + "phases": "ABC", + "to": "m1047513" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3159645", + "length": "312.3154", + "name": "line_ln5511594-2", + "phases": "A", + "to": "l2983432" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026356", + "length": "127.1115", + "name": "line_ln5895818-1", + "phases": "ABC", + "to": "m1026354" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047707", + "length": "7.6842", + "name": "line_ln5511594-1", + "phases": "A", + "to": "l3159645" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026855", + "length": "121.4666", + "name": "line_ln5623410-1", + "phases": "ABC", + "to": "m1026861" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001304", + "length": "158.2381", + "name": "line_ln2001305-1", + "phases": "A", + "to": "m2001305" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1166374", + "length": "221.9383", + "name": "line_ln6412355-1", + "phases": "ABC", + "to": "l2786266" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1186078", + "length": "271.6133", + "name": "line_ln6254100-1", + "phases": "C", + "to": "l2806553" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3235945", + "length": "104.9336", + "name": "line_ln6200439-1", + "phases": "C", + "to": "l2842330" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2748780", + "length": "227.0885", + "name": "line_ln6291152-1", + "phases": "A", + "to": "l2823544" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089118", + "length": "530.5390", + "name": "line_ln5835143-1", + "phases": "ABC", + "to": "m1089115" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3156034", + "length": "195.1084", + "name": "line_ln5739003-1", + "phases": "A", + "to": "l3066821" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1108403", + "length": "485.3304", + "name": "line_ln6422017-1", + "phases": "B", + "to": "m1108407" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108328", + "length": "684.8549", + "name": "line_ln5621860-1", + "phases": "C", + "to": "l3160878" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001206", + "length": "158.2381", + "name": "line_ln2001207-1", + "phases": "C", + "to": "m2001207" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1136996", + "length": "45.5437", + "name": "line_ln5867683-3", + "phases": "ABC", + "to": "m1047649" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3235255", + "length": "168.0069", + "name": "line_ln5714080-1", + "phases": "ABC", + "to": "m1047316" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p895080", + "length": "274.8686", + "name": "line_ln6195470-1", + "phases": "A", + "to": "l2917333" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3216123", + "length": "342.0485", + "name": "line_ln5867683-2", + "phases": "ABC", + "to": "n1136996" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2841621", + "length": "113.3906", + "name": "line_ln5865235-2", + "phases": "ABC", + "to": "n1137986" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2933165", + "length": "420.7509", + "name": "line_ln5863825-1", + "phases": "B", + "to": "l3235273" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026805", + "length": "296.9883", + "name": "line_ln6106580-1", + "phases": "A", + "to": "l3120502" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1137986", + "length": "141.2823", + "name": "line_ln5865235-3", + "phases": "ABC", + "to": "m1047732" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1009651", + "length": "172.9994", + "name": "line_ln5774488-1", + "phases": "C", + "to": "l2879092" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p828360", + "length": "103.3396", + "name": "line_ln8961799-1", + "phases": "C", + "to": "l2729206" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2729207", + "length": "40.0028", + "name": "line_ln8961799-3", + "phases": "C", + "to": "228-961799-3_int" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089155", + "length": "239.3236", + "name": "line_ln6047559-2", + "phases": "C", + "to": "m3037540" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2729206", + "length": "961.5595", + "name": "line_ln8961799-2", + "phases": "C", + "to": "l2729207" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p827532", + "length": "23.9262", + "name": "line_ln6201699-1", + "phases": "A", + "to": "m1047326" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2785527", + "length": "237.2403", + "name": "line_ln5744342-1", + "phases": "A", + "to": "l2766729" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108524", + "length": "123.1716", + "name": "line_ln5649361-1", + "phases": "C", + "to": "m1108520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108520", + "length": "176.8171", + "name": "line_ln5649361-2", + "phases": "C", + "to": "l2804277" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3048228", + "length": "297.7465", + "name": "line_ln6260030-1", + "phases": "C", + "to": "l2991940" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3235257", + "length": "362.4646", + "name": "line_ln5804805-1", + "phases": "ABC", + "to": "l2822871" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2992656", + "length": "195.1540", + "name": "line_ln5533838-1", + "phases": "A", + "to": "m1166356" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047752", + "length": "234.0867", + "name": "line_ln5926298-1", + "phases": "A", + "to": "m1047750" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e206217", + "length": "183.5830", + "name": "line_ln6318767-1", + "phases": "ABC", + "to": "m1125969" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089215", + "length": "289.8554", + "name": "line_ln6108125-4", + "phases": "ABC", + "to": "m1089220" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089215", + "length": "149.8210", + "name": "line_ln6108125-3", + "phases": "ABC", + "to": "n1134474" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1134474", + "length": "186.3653", + "name": "line_ln6108125-2", + "phases": "ABC", + "to": "m1069496" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m3037452", + "length": "390.0956", + "name": "line_ln6320341-2", + "phases": "A", + "to": "m1026387" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3217064", + "length": "753.5136", + "name": "line_ln6315098-1", + "phases": "B", + "to": "l3200222" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l3232301", + "length": "48.4164", + "name": "line_ln81037792-1", + "phases": "C", + "to": "m1069328" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2710511", + "length": "220.7415", + "name": "line_ln5502525-1", + "phases": "A", + "to": "l2766719" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "q14412", + "length": "111.3681", + "name": "line_ln5926308-2", + "phases": "ABC", + "to": "m1047325" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2860491", + "length": "112.6780", + "name": "line_ln5926308-3", + "phases": "ABC", + "to": "d5926308-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p860847", + "length": "248.9151", + "name": "line_ln5472401-1", + "phases": "A", + "to": "m1026880" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_dpx_ln6506308-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1026726", + "length": "215.9070", + "name": "line_ln6506308-1", + "phases": "B", + "to": "l2916610" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009742", + "length": "39.2541", + "name": "line_ln6076268-1", + "phases": "ABC", + "to": "p901972" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026891", + "length": "286.3286", + "name": "line_ln6017292-1", + "phases": "ABC", + "to": "l3160102" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3254237", + "length": "460.0012", + "name": "line_ln6425615-1", + "phases": "ABC", + "to": "m1108387" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m3036167", + "length": "240.6005", + "name": "line_ln6505946-1", + "phases": "ABC", + "to": "l3085391" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000406", + "length": "158.2381", + "name": "line_ln2000407-1", + "phases": "A", + "to": "m2000407" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1136368", + "length": "23.1710", + "name": "line_ln5776669-3", + "phases": "A", + "to": "l2897792" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108514", + "length": "320.0007", + "name": "line_ln5735714-1", + "phases": "C", + "to": "m1108508" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827548", + "length": "25.1910", + "name": "line_ln5776669-2", + "phases": "A", + "to": "n1136368" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047374", + "length": "723.3373", + "name": "line_ln5835134-1", + "phases": "B", + "to": "l3197629" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3254870", + "length": "1568.1469", + "name": "line_ln6030576-1", + "phases": "C", + "to": "m1125943" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047432", + "length": "150.3908", + "name": "line_ln5502534-1", + "phases": "A", + "to": "m1047433" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089093", + "length": "198.8770", + "name": "line_ln5593214-1", + "phases": "C", + "to": "m1089094" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3197624", + "length": "455.1837", + "name": "line_ln6380804-1", + "phases": "B", + "to": "m1027101" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l3027671", + "length": "438.7701", + "name": "line_ln81048108-2", + "phases": "A", + "to": "m1108423" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1108462", + "length": "390.3665", + "name": "line_ln81048108-1", + "phases": "A", + "to": "l3027671" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026693", + "length": "333.9055", + "name": "line_ln5956472-1", + "phases": "B", + "to": "l2991916" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000909", + "length": "158.2381", + "name": "line_ln2000910-1", + "phases": "C", + "to": "m2000910" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "d5534967-1_int", + "length": "348.0490", + "name": "line_ln5534967-1", + "phases": "ABC", + "to": "p827501" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "p901945", + "length": "18.9474", + "name": "line_ln6228311-1", + "phases": "ABC", + "to": "m1125988" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026902", + "length": "326.1111", + "name": "line_ln5985039-1", + "phases": "ABC", + "to": "m1026905" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2935568", + "length": "604.5797", + "name": "line_ln5895805-1", + "phases": "B", + "to": "l3235246" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3160862", + "length": "433.6122", + "name": "line_ln6412346-1", + "phases": "C", + "to": "l3104850" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2911069", + "length": "725.4830", + "name": "line_ln6506317-2", + "phases": "B", + "to": "l2948732" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2897801", + "length": "179.1460", + "name": "line_ln5683853-1", + "phases": "A", + "to": "m1069384" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069390", + "length": "143.3637", + "name": "line_ln5865266-1", + "phases": "A", + "to": "l2897801" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047316", + "length": "218.6250", + "name": "line_ln6138640-1", + "phases": "A", + "to": "l2785527" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "d5774457-1_int", + "length": "134.0110", + "name": "line_ln5774457-1", + "phases": "ABC", + "to": "m1026920" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069181", + "length": "325.5628", + "name": "line_ln5593249-1", + "phases": "A", + "to": "l2748146" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026323", + "length": "143.2690", + "name": "line_ln6108147-1", + "phases": "B", + "to": "l2991917" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069202", + "length": "297.3697", + "name": "line_ln5714049-1", + "phases": "C", + "to": "l3104126" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000713", + "length": "158.2381", + "name": "line_ln2000714-1", + "phases": "B", + "to": "m2000714" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2973162", + "length": "174.3787", + "name": "line_ln6017302-1", + "phases": "ABC", + "to": "m1026333" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1166375", + "length": "317.6957", + "name": "line_ln5896834-1", + "phases": "ABC", + "to": "l2842383" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2973163", + "length": "281.7672", + "name": "line_ln5895782-1", + "phases": "B", + "to": "m1026309" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2801896", + "length": "248.3697", + "name": "line_ln5532734-1", + "phases": "B", + "to": "m1009839" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010007", + "length": "524.4936", + "name": "line_ln6102293-1", + "phases": "A", + "to": "m1010004" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166387", + "length": "280.2922", + "name": "line_ln5624374-1", + "phases": "C", + "to": "l3048946" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108360", + "length": "180.3697", + "name": "line_ln5624387-1", + "phases": "C", + "to": "l3048968" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026328", + "length": "15.5178", + "name": "line_ln6140778-1", + "phases": "B", + "to": "d6140778-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069192", + "length": "267.5248", + "name": "line_ln6077778-1", + "phases": "A", + "to": "l3235253" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069504", + "length": "350.0465", + "name": "line_ln6290230-1", + "phases": "ABC", + "to": "m1069500" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "m1108387", + "length": "10.7692", + "name": "line_ln8979255-1", + "phases": "ABC", + "to": "p850080" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1149235", + "length": "20.5020", + "name": "line_ln5989329-1", + "phases": "C", + "to": "p829975" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047292", + "length": "191.0345", + "name": "line_ln6199561-1", + "phases": "C", + "to": "l2766750" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1141480", + "length": "20.4502", + "name": "line_ln5528574-3", + "phases": "C", + "to": "p895113" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047358", + "length": "298.3989", + "name": "line_ln5986934-1", + "phases": "A", + "to": "l2897781" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1147857", + "length": "179.6358", + "name": "line_ln5531255-3", + "phases": "ABC", + "to": "m1009742" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108372", + "length": "261.2420", + "name": "line_ln5624289-1", + "phases": "B", + "to": "l3216988" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142863", + "length": "15.1088", + "name": "line_ln5528574-2", + "phases": "C", + "to": "n1141480" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_tpx_ln5804795-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1047386", + "length": "180.3879", + "name": "line_ln5804795-1", + "phases": "B", + "to": "l3254211" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069487", + "length": "446.8440", + "name": "line_ln6138599-1", + "phases": "C", + "to": "m1069488" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166373", + "length": "33.6693", + "name": "line_ln5594243-1", + "phases": "A", + "to": "m1166369" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027068", + "length": "298.4033", + "name": "line_ln5956494-1", + "phases": "C", + "to": "l3235268" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047702", + "length": "62.1370", + "name": "line_ln6258435-2", + "phases": "A", + "to": "n1137002" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2801950", + "length": "107.9364", + "name": "line_ln6137087-1", + "phases": "ABC", + "to": "m1069224" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p827523", + "length": "115.9341", + "name": "line_ln5837355-1", + "phases": "ABC", + "to": "l2879076" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1137002", + "length": "303.4152", + "name": "line_ln6258435-3", + "phases": "A", + "to": "m1047707" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2860490", + "length": "207.8671", + "name": "line_ln5683831-1", + "phases": "ABC", + "to": "l3104134" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3104859", + "length": "370.3232", + "name": "line_ln5742901-1", + "phases": "B", + "to": "l2970845" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1142811", + "length": "261.1304", + "name": "line_ln6321458-1", + "phases": "A", + "to": "l2917330" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009770", + "length": "26.3917", + "name": "line_ln5531255-2", + "phases": "ABC", + "to": "n1147857" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2954344", + "length": "167.0633", + "name": "line_ln6229791-1", + "phases": "C", + "to": "l2897767" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209750", + "length": "27.9721", + "name": "line_ln6351512-1", + "phases": "B", + "to": "m1209749" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4/0_tpx_ln6103927-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "m1142860", + "length": "21.6015", + "name": "line_ln6103927-1", + "phases": "A", + "to": "p895114" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2710517", + "length": "160.1356", + "name": "line_ln5865244-1", + "phases": "A", + "to": "m1026646" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2879072", + "length": "755.7369", + "name": "line_ln6047568-1", + "phases": "B", + "to": "m1047441" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2786273", + "length": "354.3113", + "name": "line_ln6018340-1", + "phases": "B", + "to": "m1108278" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026948", + "length": "29.6163", + "name": "line_ln5593227-1", + "phases": "B", + "to": "m1026949" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047766", + "length": "155.8307", + "name": "line_ln6108169-1", + "phases": "B", + "to": "m1047768" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069438", + "length": "223.1525", + "name": "line_ln5502569-1", + "phases": "ABC", + "to": "l2766749" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108340", + "length": "229.5993", + "name": "line_ln5744333-1", + "phases": "C", + "to": "m1108344" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e182729", + "length": "25.0043", + "name": "line_ln5863714-2", + "phases": "ABC", + "to": "m1069503" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026986", + "length": "498.8567", + "name": "line_ln6260021-1", + "phases": "ABC", + "to": "m1026997" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1134478", + "length": "36.8855", + "name": "line_ln5863714-3", + "phases": "ABC", + "to": "m1069505" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069503", + "length": "79.1886", + "name": "line_ln5863714-4", + "phases": "ABC", + "to": "n1134478" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069468", + "length": "27.9336", + "name": "line_ln5898057-1", + "phases": "A", + "to": "p827506" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "196-29519", + "length": "112.2456", + "name": "line_ln6383460-1", + "phases": "ABC", + "to": "l3066815" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3104133", + "length": "418.7163", + "name": "line_ln5532756-1", + "phases": "A", + "to": "m1047323" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1126017", + "length": "150.7892", + "name": "line_ln6018242-1", + "phases": "A", + "to": "l2748781" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e182724", + "length": "305.1032", + "name": "line_ln5806919-1", + "phases": "ABC", + "to": "m1069169" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2991912", + "length": "368.7581", + "name": "line_ln6411381-1", + "phases": "A", + "to": "l3104128" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047819", + "length": "234.1256", + "name": "line_ln6199508-1", + "phases": "B", + "to": "l2916603" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p827525", + "length": "325.1113", + "name": "line_ln5686079-1", + "phases": "ABC", + "to": "m1026902" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "d5621886-1_int", + "length": "841.5384", + "name": "line_ln5621886-1", + "phases": "ABC", + "to": "m1009784" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069420", + "length": "25.2099", + "name": "line_ln6201694-1", + "phases": "A", + "to": "p827499" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069535", + "length": "332.7017", + "name": "line_ln5714062-1", + "phases": "B", + "to": "l2804271" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026307", + "length": "410.7347", + "name": "line_ln5981121-1", + "phases": "B", + "to": "l3085388" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m3036165", + "length": "647.8154", + "name": "line_ln5774462-2", + "phases": "ABC", + "to": "l3197636" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3139086", + "length": "220.6385", + "name": "line_ln5472406-1", + "phases": "B", + "to": "l3029520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1089113", + "length": "1447.2934", + "name": "line_ln6046042-1", + "phases": "B", + "to": "m1089103" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166369", + "length": "13.6831", + "name": "line_ln6049964-1", + "phases": "A", + "to": "p829978" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047513", + "length": "228.0833", + "name": "line_ln6047577-1", + "phases": "ABC", + "to": "m1047507" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089197", + "length": "309.7714", + "name": "line_ln6290198-1", + "phases": "ABC", + "to": "m1089196" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026807", + "length": "60.1946", + "name": "line_ln6073575-2", + "phases": "ABC", + "to": "n1140521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3030204", + "length": "220.4711", + "name": "line_ln5866268-1", + "phases": "ABC", + "to": "m1186072" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1140521", + "length": "117.8455", + "name": "line_ln6073575-3", + "phases": "ABC", + "to": "l3254217" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3949157", + "length": "206.9161", + "name": "line_ln6991378-3", + "phases": "A", + "to": "l3727709" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "d6017316-1_int", + "length": "356.4345", + "name": "line_ln6017316-1", + "phases": "B", + "to": "l2766742" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2785530", + "length": "378.8578", + "name": "line_ln5835151-1", + "phases": "A", + "to": "l2822868" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3727709", + "length": "237.1944", + "name": "line_ln6991378-5", + "phases": "A", + "to": "l3727710" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1069247", + "length": "402.8709", + "name": "line_ln8979367-1", + "phases": "A", + "to": "m1069248" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3122849", + "length": "275.5296", + "name": "line_ln5956503-1", + "phases": "ABC", + "to": "m1026357" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1139542", + "length": "70.8509", + "name": "line_ln6292465-3", + "phases": "ABC", + "to": "p827523" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026chp-2", + "length": "408.4581", + "name": "line_ln5002chp-1", + "phases": "ABC", + "to": "m1026chp-3" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2766716", + "length": "225.3106", + "name": "line_ln6229792-1", + "phases": "C", + "to": "l3235245" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2691951", + "length": "75.8457", + "name": "line_ln6292465-2", + "phases": "ABC", + "to": "n1139542" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1126031", + "length": "435.9819", + "name": "line_ln5957412-1", + "phases": "C", + "to": "l2730107" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125969", + "length": "21.7525", + "name": "line_ln6103926-1", + "phases": "B", + "to": "p895102" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026665", + "length": "278.8758", + "name": "line_ln6229802-1", + "phases": "A", + "to": "m1026660" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026697", + "length": "202.8895", + "name": "line_ln5865249-1", + "phases": "ABC", + "to": "m1026690" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069155", + "length": "353.2070", + "name": "line_ln5744334-1", + "phases": "C", + "to": "l3254210" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108529", + "length": "81.3941", + "name": "line_ln5473349-1", + "phases": "ABC", + "to": "m1108532" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069504", + "length": "148.7936", + "name": "line_ln6138623-1", + "phases": "A", + "to": "l3197654" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3027116", + "length": "226.0073", + "name": "line_ln5774497-1", + "phases": "ABC", + "to": "m1047300" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047574", + "length": "39.4479", + "name": "line_ln6380817-1", + "phases": "ABC", + "to": "l2841632" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001011", + "length": "158.2381", + "name": "line_ln2001012-1", + "phases": "B", + "to": "m2001012" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166361", + "length": "55.1820", + "name": "line_ln6015890-1", + "phases": "A", + "to": "l2989600" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000704", + "length": "158.2381", + "name": "line_ln2000705-1", + "phases": "B", + "to": "m2000705" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026876", + "length": "344.8937", + "name": "line_ln5894238-2", + "phases": "ABC", + "to": "m1026866" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000900", + "length": "158.2381", + "name": "line_ln2000901-1", + "phases": "C", + "to": "m2000901" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008752", + "length": "260.2435", + "name": "line_ln5804781-1", + "phases": "B", + "to": "m1008746" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3216342", + "length": "203.0221", + "name": "line_ln6411367-1", + "phases": "B", + "to": "l2879063" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026866", + "length": "441.3043", + "name": "line_ln5894238-1", + "phases": "ABC", + "to": "m1026844" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089143", + "length": "312.1977", + "name": "line_ln5472361-1", + "phases": "A", + "to": "l3141400" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047424", + "length": "154.0260", + "name": "line_ln5562929-1", + "phases": "B", + "to": "l3104127" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2936213", + "length": "285.1097", + "name": "line_ln5533709-1", + "phases": "B", + "to": "m1108527" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047792", + "length": "1213.3654", + "name": "line_ln6349052-1", + "phases": "B", + "to": "l2876846" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1139540", + "length": "274.3890", + "name": "line_ln5806918-3", + "phases": "A", + "to": "l2991907" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827508", + "length": "29.6228", + "name": "line_ln5806918-2", + "phases": "A", + "to": "n1139540" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047836", + "length": "966.1595", + "name": "line_ln5926289-1", + "phases": "B", + "to": "l3254203" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1069226", + "length": "27.3351", + "name": "line_ln5712486-1", + "phases": "C", + "to": "d5712486-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2806553", + "length": "2063.2990", + "name": "line_ln6435650-1", + "phases": "C", + "to": "m1166391" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "221-559682", + "length": "43.8021", + "name": "line_ln81354564-10", + "phases": "C", + "to": "n1140525" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx1/0_tpx_ln5562952-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1008746", + "length": "133.1792", + "name": "line_ln6017284-1", + "phases": "B", + "to": "l2954339" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2673312", + "length": "545.4504", + "name": "line_ln6350536-1", + "phases": "A", + "to": "l3235247" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "n1140525", + "length": "209.6262", + "name": "line_ln81354564-11", + "phases": "C", + "to": "l3645809" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069451", + "length": "673.1938", + "name": "line_ln5744369-1", + "phases": "ABC", + "to": "l2804282" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1142815", + "length": "59.5738", + "name": "line_ln6048681-1", + "phases": "A", + "to": "l2917359" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1142107", + "length": "364.7522", + "name": "line_ln5712584-3", + "phases": "C", + "to": "l3101827" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069488", + "length": "186.9206", + "name": "line_ln6047555-1", + "phases": "C", + "to": "l2748125" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1027041", + "length": "229.2448", + "name": "line_ln5623399-1", + "phases": "C", + "to": "l2916607" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1125987", + "length": "15.8048", + "name": "line_ln5621864-1", + "phases": "ABC", + "to": "p901945" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3010565", + "length": "462.0274", + "name": "line_ln5593232-1", + "phases": "C", + "to": "l2897775" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p829796", + "length": "88.3173", + "name": "line_ln5712584-2", + "phases": "C", + "to": "n1142107" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1108464", + "length": "352.5445", + "name": "line_ln81048109-1", + "phases": "B", + "to": "l3102286" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l3102286", + "length": "128.1097", + "name": "line_ln81048109-2", + "phases": "B", + "to": "m1108433" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1069284", + "length": "30.1745", + "name": "line_ln8979345-1", + "phases": "A", + "to": "p850401" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3037537", + "length": "9.5158", + "name": "line_ln6506316-6", + "phases": "B", + "to": "l2911069" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827515", + "length": "215.1570", + "name": "line_ln5534968-1", + "phases": "A", + "to": "l2991909" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027091", + "length": "129.6678", + "name": "line_ln6409798-1", + "phases": "A", + "to": "l2764412" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2991901", + "length": "1529.9997", + "name": "line_ln6506316-3", + "phases": "B", + "to": "m3037537" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047483", + "length": "261.1153", + "name": "line_ln6259987-1", + "phases": "ABC", + "to": "m1047480" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069149", + "length": "203.1106", + "name": "line_ln5532742-1", + "phases": "C", + "to": "m1069148" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3216367", + "length": "135.6523", + "name": "line_ln5835173-1", + "phases": "ABC", + "to": "m1069468" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047319", + "length": "243.0128", + "name": "line_ln5623409-1", + "phases": "C", + "to": "m1047318" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "m1186052", + "length": "19.1571", + "name": "line_ln8978752-1", + "phases": "ABC", + "to": "198-5320" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089205", + "length": "47.3969", + "name": "line_ln6167732-2", + "phases": "A", + "to": "n1134472" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027114", + "length": "204.6812", + "name": "line_ln5803300-1", + "phases": "A", + "to": "l2876812" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1134472", + "length": "631.8925", + "name": "line_ln6167732-3", + "phases": "A", + "to": "l2973148" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125916", + "length": "117.0334", + "name": "line_ln5563935-1", + "phases": "B", + "to": "m1125913" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1136658", + "length": "140.7334", + "name": "line_ln5716230-3", + "phases": "ABC", + "to": "m1047566" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209776", + "length": "218.1065", + "name": "line_ln5533797-1", + "phases": "ABC", + "to": "m1209775" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1209824", + "length": "824.1896", + "name": "line_ln6139544-1", + "phases": "C", + "to": "m1209828" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000913", + "length": "158.2381", + "name": "line_ln2000914-1", + "phases": "C", + "to": "m2000914" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "p827527", + "length": "20.1495", + "name": "line_ln5716230-2", + "phases": "ABC", + "to": "n1136658" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026915", + "length": "10.0032", + "name": "line_ln5502529-1", + "phases": "B", + "to": "m1026916" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047763", + "length": "15.2269", + "name": "line_ln5776665-1", + "phases": "B", + "to": "p827509" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1126016", + "length": "219.0485", + "name": "line_ln5531242-1", + "phases": "A", + "to": "l3195321" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2841636", + "length": "169.7904", + "name": "line_ln6260000-1", + "phases": "B", + "to": "m1026324" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2935551", + "length": "105.1192", + "name": "line_ln5746546-1", + "phases": "ABC", + "to": "d5746546-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069393", + "length": "362.1980", + "name": "line_ln6505942-2", + "phases": "ABC", + "to": "l3029501" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026320", + "length": "220.6522", + "name": "line_ln6017303-1", + "phases": "B", + "to": "l2879079" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3176661", + "length": "252.7557", + "name": "line_ln6348954-1", + "phases": "C", + "to": "l2970804" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2916627", + "length": "254.8547", + "name": "line_ln5804835-1", + "phases": "A", + "to": "l2673310" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2879773", + "length": "304.0401", + "name": "line_ln6321427-1", + "phases": "ABC", + "to": "m1108298" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047430", + "length": "547.2258", + "name": "line_ln5479790-1", + "phases": "A", + "to": "l2916234" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027114", + "length": "239.9990", + "name": "line_ln5501003-1", + "phases": "A", + "to": "l3195327" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047751", + "length": "30.5371", + "name": "line_ln5865236-1", + "phases": "A", + "to": "l2973154" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1144665", + "length": "89.8573", + "name": "line_ln6138610-2", + "phases": "ABC", + "to": "m1047515" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2897777", + "length": "88.9644", + "name": "line_ln6138610-3", + "phases": "ABC", + "to": "n1144665" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "190-8581", + "length": "27.4004", + "name": "line_ln5587291-3", + "phases": "ABC", + "to": "d5587291-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2822869", + "length": "310.9686", + "name": "line_ln5502538-1", + "phases": "ABC", + "to": "m1026808" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2692633", + "length": "131.1356", + "name": "line_ln5587291-1", + "phases": "ABC", + "to": "d5578300-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026969", + "length": "298.5116", + "name": "line_ln6380808-1", + "phases": "B", + "to": "l2879066" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108334", + "length": "128.5511", + "name": "line_ln5957501-1", + "phases": "C", + "to": "l2692664" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047793", + "length": "20.0022", + "name": "line_ln5928546-1", + "phases": "B", + "to": "p827555" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000200", + "length": "463.8770", + "name": "line_ln2000300-1", + "phases": "ABC", + "to": "m2000300" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "226-23745", + "length": "1709.3225", + "name": "line_ln6109068-1", + "phases": "C", + "to": "m1209822" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125959", + "length": "226.0757", + "name": "line_ln5924709-1", + "phases": "C", + "to": "l2861197" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "l2729406", + "length": "639.0177", + "name": "line_ln5804790-1", + "phases": "C", + "to": "l2897768" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "q14734", + "length": "182.0291", + "name": "line_ln5587291-4", + "phases": "ABC", + "to": "m1108529" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142810", + "length": "61.2206", + "name": "line_ln5894225-1", + "phases": "B", + "to": "m1142808" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026834", + "length": "29.2536", + "name": "line_ln5487004-6", + "phases": "C", + "to": "n1147860" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1147860", + "length": "60.7478", + "name": "line_ln5487004-7", + "phases": "C", + "to": "l3177881" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3122827", + "length": "191.9471", + "name": "line_ln5472374-1", + "phases": "A", + "to": "l2954355" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "m1108381", + "length": "24.2609", + "name": "line_ln8989758-1", + "phases": "ABC", + "to": "p862322" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069382", + "length": "36.9636", + "name": "line_ln6049822-1", + "phases": "A", + "to": "d6049822-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2916234", + "length": "850.3986", + "name": "line_ln5479790-2", + "phases": "A", + "to": "m1047423" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026977", + "length": "196.1792", + "name": "line_ln6199517-1", + "phases": "ABC", + "to": "m1026978" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026858", + "length": "160.0845", + "name": "line_ln5804804-1", + "phases": "ABC", + "to": "m1026854" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026829", + "length": "34.1922", + "name": "line_ln6167754-2", + "phases": "B", + "to": "n1147859" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1147859", + "length": "22.2186", + "name": "line_ln6167754-3", + "phases": "B", + "to": "p827573" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108489", + "length": "47.3109", + "name": "line_ln5837496-3", + "phases": "A", + "to": "n1142101" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1142101", + "length": "121.2179", + "name": "line_ln5837496-4", + "phases": "A", + "to": "l2936214" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p829798", + "length": "0.8525", + "name": "line_ln5837496-1", + "phases": "A", + "to": "m1108489" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069156", + "length": "409.9835", + "name": "line_ln5774453-1", + "phases": "ABC", + "to": "m1069155" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069632", + "length": "274.5454", + "name": "line_ln5593245-1", + "phases": "B", + "to": "l2954361" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069224", + "length": "404.1378", + "name": "line_ln6077801-1", + "phases": "C", + "to": "m1069226" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047319", + "length": "118.9971", + "name": "line_ln6350549-1", + "phases": "C", + "to": "l2991921" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047497", + "length": "75.8955", + "name": "line_ln6134514-1", + "phases": "ABC", + "to": "l3104136" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3160109", + "length": "236.0120", + "name": "line_ln6134514-2", + "phases": "ABC", + "to": "m1047497" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108331", + "length": "323.9899", + "name": "line_ln6139655-1", + "phases": "C", + "to": "m1108334" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2691967", + "length": "150.0208", + "name": "line_ln5653480-1", + "phases": "ABC", + "to": "m1069504" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026960", + "length": "260.6159", + "name": "line_ln6017293-1", + "phases": "ABC", + "to": "m1026970" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209774", + "length": "205.1555", + "name": "line_ln6381858-1", + "phases": "ABC", + "to": "l3123509" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125989", + "length": "16.0851", + "name": "line_ln5807070-1", + "phases": "ABC", + "to": "m1125990" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1108506", + "length": "258.9301", + "name": "line_ln5565240-1", + "phases": "A", + "to": "m1108501" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3123452", + "length": "218.3128", + "name": "line_ln6198039-1", + "phases": "ABC", + "to": "d6198039-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137993", + "length": "211.0393", + "name": "line_ln6140774-2", + "phases": "A", + "to": "l2860482" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827502", + "length": "76.4748", + "name": "line_ln6140774-3", + "phases": "A", + "to": "n1137993" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047507", + "length": "130.8015", + "name": "line_ln5742811-1", + "phases": "ABC", + "to": "l2820531" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2785514", + "length": "214.3984", + "name": "line_ln5683809-1", + "phases": "A", + "to": "l3235244" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2820531", + "length": "122.7704", + "name": "line_ln5742811-3", + "phases": "ABC", + "to": "d5742811-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1137992", + "length": "14.8934", + "name": "line_ln5742811-4", + "phases": "ABC", + "to": "196-29520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "q14414", + "length": "260.9642", + "name": "line_ln6047599-3", + "phases": "ABC", + "to": "l2691952" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1209828", + "length": "241.7631", + "name": "line_ln5775370-1", + "phases": "C", + "to": "l2861157" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047457", + "length": "131.6258", + "name": "line_ln5653493-1", + "phases": "B", + "to": "l2710546" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2860478", + "length": "208.7905", + "name": "line_ln5744325-1", + "phases": "B", + "to": "l2822858" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3198358", + "length": "348.6653", + "name": "line_ln6170303-1", + "phases": "B", + "to": "l3104859" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069428", + "length": "31.2008", + "name": "line_ln5958707-1", + "phases": "B", + "to": "p827576" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3010560", + "length": "106.9941", + "name": "line_ln6169246-1", + "phases": "ABC", + "to": "m1047483" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m3763618", + "length": "12.4152", + "name": "line_ln81354561-2", + "phases": "C", + "to": "p1121282" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108500", + "length": "83.4259", + "name": "line_ln5503544-1", + "phases": "ABC", + "to": "m1108505" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027038", + "length": "340.7628", + "name": "line_ln5472396-1", + "phases": "B", + "to": "m1027036" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069428", + "length": "54.0570", + "name": "line_ln5532786-2", + "phases": "B", + "to": "n1139257" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047831", + "length": "263.7188", + "name": "line_ln6290208-1", + "phases": "B", + "to": "l3178974" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027091", + "length": "90.5298", + "name": "line_ln6348967-1", + "phases": "A", + "to": "m1027092" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "n1139257", + "length": "89.4306", + "name": "line_ln5532786-3", + "phases": "B", + "to": "l3029518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1126031", + "length": "109.2904", + "name": "line_ln5896727-1", + "phases": "C", + "to": "l3179608" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108355", + "length": "286.5117", + "name": "line_ln5715019-1", + "phases": "C", + "to": "m1108352" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069607", + "length": "125.9248", + "name": "line_ln5895801-1", + "phases": "B", + "to": "l2916617" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1144664", + "length": "216.4742", + "name": "line_ln5986926-3", + "phases": "C", + "to": "l3178972" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p873801", + "length": "23.9456", + "name": "line_ln81018878-2", + "phases": "C", + "to": "n1138608" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047688", + "length": "50.7776", + "name": "line_ln5986926-2", + "phases": "C", + "to": "n1144664" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069227", + "length": "327.7225", + "name": "line_ln6019478-1", + "phases": "C", + "to": "l2748133" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "n1138608", + "length": "275.6792", + "name": "line_ln81018878-3", + "phases": "C", + "to": "l3232301" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026951", + "length": "218.4411", + "name": "line_ln6047564-1", + "phases": "B", + "to": "l2954347" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2935553", + "length": "429.8725", + "name": "line_ln5593223-1", + "phases": "B", + "to": "m1026987" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l3047073", + "length": "697.3183", + "name": "line_ln8979358-3", + "phases": "C", + "to": "m1069250" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2803194", + "length": "289.8126", + "name": "line_ln8979358-2", + "phases": "C", + "to": "l3047073" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069335", + "length": "38.7523", + "name": "line_ln6231997-1", + "phases": "C", + "to": "p827564" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1069249", + "length": "194.9453", + "name": "line_ln8979358-1", + "phases": "C", + "to": "l2803194" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827537", + "length": "228.7663", + "name": "line_ln6079950-1", + "phases": "A", + "to": "l3122827" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069461", + "length": "160.8152", + "name": "line_ln6258443-1", + "phases": "ABC", + "to": "l2876798" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e206209", + "length": "408.6547", + "name": "line_ln6108142-1", + "phases": "ABC", + "to": "l2897777" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027055", + "length": "22.0209", + "name": "line_ln6228328-1", + "phases": "A", + "to": "m1027056" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069494", + "length": "199.9999", + "name": "line_ln6076247-1", + "phases": "C", + "to": "l2745806" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "d5712477-3_int", + "length": "338.2957", + "name": "line_ln5712477-3", + "phases": "C", + "to": "m1069174" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p827520", + "length": "21.0143", + "name": "line_ln5712477-2", + "phases": "C", + "to": "n1139545" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2841615", + "length": "132.3679", + "name": "line_ln6199504-1", + "phases": "A", + "to": "m1026931" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125940", + "length": "110.0780", + "name": "line_ln5957491-1", + "phases": "B", + "to": "l3048963" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2991908", + "length": "330.8007", + "name": "line_ln6229796-1", + "phases": "A", + "to": "l3178973" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026647", + "length": "345.3250", + "name": "line_ln6047573-2", + "phases": "A", + "to": "m3036169" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx1/0_3w_cs_ln5686244-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "m1209791", + "length": "11.0551", + "name": "line_ln5686244-1", + "phases": "A", + "to": "p903354" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2766744", + "length": "175.1901", + "name": "line_ln5895810-1", + "phases": "B", + "to": "m1027038" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000904", + "length": "158.2381", + "name": "line_ln2000905-1", + "phases": "C", + "to": "m2000905" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3179650", + "length": "139.7566", + "name": "line_ln5591710-2", + "phases": "ABC", + "to": "l3232902" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3232902", + "length": "127.6094", + "name": "line_ln5591710-3", + "phases": "ABC", + "to": "m4122658" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p903490", + "length": "8.2162", + "name": "line_ln6137794-1", + "phases": "C", + "to": "m1125961" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047725", + "length": "287.6655", + "name": "line_ln5738651-1", + "phases": "B", + "to": "m1047728" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p829962", + "length": "20.1075", + "name": "line_ln5807087-1", + "phases": "C", + "to": "m1142835" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000410", + "length": "158.2381", + "name": "line_ln2000411-1", + "phases": "A", + "to": "m2000411" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1139538", + "length": "114.1778", + "name": "line_ln6383060-3", + "phases": "B", + "to": "l3066818" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089197", + "length": "39.5377", + "name": "line_ln5867448-1", + "phases": "A", + "to": "p827498" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827533", + "length": "30.7170", + "name": "line_ln6383060-2", + "phases": "B", + "to": "n1139538" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2748128", + "length": "570.6542", + "name": "line_ln6320327-1", + "phases": "C", + "to": "m1089170" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026312", + "length": "175.4824", + "name": "line_ln5744338-1", + "phases": "B", + "to": "l2973163" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p903360", + "length": "31.8685", + "name": "line_ln6413566-1", + "phases": "A", + "to": "m1047430" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2954354", + "length": "189.4181", + "name": "line_ln6229806-1", + "phases": "A", + "to": "l2673321" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1140829", + "length": "18.3405", + "name": "line_ln5621833-3", + "phases": "C", + "to": "m1026703" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2897792", + "length": "309.4213", + "name": "line_ln6260017-1", + "phases": "A", + "to": "l2785538" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p895107", + "length": "287.4650", + "name": "line_ln5740282-1", + "phases": "C", + "to": "l3030126" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026705", + "length": "23.0099", + "name": "line_ln5621833-2", + "phases": "C", + "to": "n1140829" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047386", + "length": "311.9474", + "name": "line_ln5774493-1", + "phases": "B", + "to": "m1047379" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026690", + "length": "316.1544", + "name": "line_ln6290217-1", + "phases": "ABC", + "to": "l2879078" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026940", + "length": "215.9216", + "name": "line_ln5562925-1", + "phases": "B", + "to": "m1026939" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209811", + "length": "402.2457", + "name": "line_ln5714974-1", + "phases": "ABC", + "to": "m1209807" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2879076", + "length": "79.5410", + "name": "line_ln5532751-1", + "phases": "ABC", + "to": "m1089122" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2897789", + "length": "200.7313", + "name": "line_ln6350554-1", + "phases": "B", + "to": "m1069662" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000708", + "length": "158.2381", + "name": "line_ln2000709-1", + "phases": "B", + "to": "m2000709" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008758", + "length": "135.1973", + "name": "line_ln5895769-1", + "phases": "B", + "to": "l2673300" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3254227", + "length": "155.6866", + "name": "line_ln6108164-1", + "phases": "B", + "to": "m1069550" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1089097", + "length": "272.7132", + "name": "line_ln6077773-1", + "phases": "B", + "to": "m1108270" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_wpal_ln6259996-1", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047521", + "length": "137.7578", + "name": "line_ln6259996-1", + "phases": "ABC", + "to": "m1047526" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2822868", + "length": "193.0094", + "name": "line_ln5472365-1", + "phases": "A", + "to": "l2766723" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047733", + "length": "340.4195", + "name": "line_ln6411363-1", + "phases": "A", + "to": "l3066804" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2766738", + "length": "181.9563", + "name": "line_ln5623418-1", + "phases": "ABC", + "to": "m1069513" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3122825", + "length": "199.6921", + "name": "line_ln6199526-1", + "phases": "A", + "to": "l2991920" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069517", + "length": "80.5233", + "name": "line_ln6229819-1", + "phases": "ABC", + "to": "m1069518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph-69kv_397_treewire_hvmv69s1s2-3", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s2s3_1", + "length": "14763.7795", + "name": "line_hvmv69s2s3-1", + "phases": "ABC", + "to": "hvmv69s2s3_2" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1108269", + "length": "237.9491", + "name": "line_ln5956458-1", + "phases": "B", + "to": "l2729405" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3141396", + "length": "526.1914", + "name": "line_ln6017288-1", + "phases": "C", + "to": "l3066808" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027005", + "length": "127.3645", + "name": "line_ln5653453-1", + "phases": "B", + "to": "l3160100" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p827500", + "length": "322.1691", + "name": "line_ln6110365-1", + "phases": "A", + "to": "l2822861" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1089144", + "length": "8.5031", + "name": "line_ln6352700-1", + "phases": "A", + "to": "p827522" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069567", + "length": "501.8222", + "name": "line_ln5774480-1", + "phases": "B", + "to": "m1069582" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "d5623395-1_int", + "length": "355.5194", + "name": "line_ln5623395-1", + "phases": "B", + "to": "l2879068" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001002", + "length": "158.2381", + "name": "line_ln2001003-1", + "phases": "B", + "to": "m2001003" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001211", + "length": "158.2381", + "name": "line_ln2001212-1", + "phases": "C", + "to": "m2001212" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027101", + "length": "537.7496", + "name": "line_ln6259983-1", + "phases": "B", + "to": "l2860480" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166407", + "length": "1228.6008", + "name": "line_ln6318771-1", + "phases": "C", + "to": "l3064514" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166398", + "length": "230.3660", + "name": "line_ln6048526-1", + "phases": "C", + "to": "l3142050" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047688", + "length": "224.7488", + "name": "line_ln5472352-1", + "phases": "ABC", + "to": "m1047699" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069217", + "length": "13.3473", + "name": "line_ln6411376-1", + "phases": "ABC", + "to": "l2841626" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001309", + "length": "158.2381", + "name": "line_ln2001310-1", + "phases": "A", + "to": "m2001310" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026378", + "length": "294.3394", + "name": "line_ln6506312-2", + "phases": "A", + "to": "l2897778" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142869", + "length": "97.9326", + "name": "line_ln5715002-1", + "phases": "ABC", + "to": "m1142871" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026660", + "length": "325.9950", + "name": "line_ln5623405-1", + "phases": "A", + "to": "m1026657" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026954", + "length": "691.4081", + "name": "line_ln5683818-1", + "phases": "ABC", + "to": "l2804256" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047478", + "length": "139.4813", + "name": "line_ln6199513-1", + "phases": "C", + "to": "l2766716" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv_sub1_48332", + "length": "63.7665", + "name": "line_ln5710794-3", + "phases": "ABC", + "to": "d5710794-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5683000-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2691949", + "length": "506.5679", + "name": "line_ln5683000-1", + "phases": "A", + "to": "l2692000" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108499", + "length": "204.0005", + "name": "line_ln6417942-1", + "phases": "A", + "to": "m1108507" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr1/0_tpx_ln6229827-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1125974", + "length": "2.1608", + "name": "line_ln5927299-1", + "phases": "C", + "to": "l3104796" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069556", + "length": "296.9676", + "name": "line_ln5894212-2", + "phases": "ABC", + "to": "m1069564" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069384", + "length": "131.6854", + "name": "line_ln6350532-1", + "phases": "A", + "to": "l3066805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069549", + "length": "194.1824", + "name": "line_ln5894212-1", + "phases": "ABC", + "to": "m1069556" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026333", + "length": "151.3151", + "name": "line_ln6198013-2", + "phases": "ABC", + "to": "m1026331" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026331", + "length": "186.2342", + "name": "line_ln6198013-1", + "phases": "ABC", + "to": "m1026330" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027087", + "length": "297.0002", + "name": "line_ln6015811-1", + "phases": "A", + "to": "l2726983" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3047058", + "length": "495.1403", + "name": "line_ln6153058-1", + "phases": "ABC", + "to": "l3047059" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069565", + "length": "267.2170", + "name": "line_ln5472387-1", + "phases": "B", + "to": "m1069572" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1140832", + "length": "85.7112", + "name": "line_ln5683827-3", + "phases": "C", + "to": "l2841631" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108352", + "length": "302.5568", + "name": "line_ln6230805-1", + "phases": "C", + "to": "m1108356" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026662", + "length": "29.1314", + "name": "line_ln5683827-2", + "phases": "C", + "to": "n1140832" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2692660", + "length": "487.6130", + "name": "line_ln5473438-1", + "phases": "A", + "to": "l2955076" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108260", + "length": "116.9874", + "name": "line_ln6078744-1", + "phases": "B", + "to": "m1108259" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3065665", + "length": "356.1330", + "name": "line_ln5775433-3", + "phases": "A", + "to": "l3235946" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069135", + "length": "232.9077", + "name": "line_ln6138614-1", + "phases": "ABC", + "to": "r18242" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089213", + "length": "264.2370", + "name": "line_ln5799408-1", + "phases": "ABC", + "to": "l3118855" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3254869", + "length": "235.9296", + "name": "line_ln5644788-1", + "phases": "B", + "to": "l2798067" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026657", + "length": "19.7194", + "name": "line_ln5655683-1", + "phases": "A", + "to": "m1026656" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069563", + "length": "127.3109", + "name": "line_ln5924705-2", + "phases": "A", + "to": "n1136360" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047615", + "length": "6.5023", + "name": "line_ln6298585-2", + "phases": "ABC", + "to": "l3216123" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047593", + "length": "428.3360", + "name": "line_ln6298585-1", + "phases": "ABC", + "to": "m1047615" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1136360", + "length": "146.7622", + "name": "line_ln5924705-3", + "phases": "A", + "to": "l2729424" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "p904452", + "length": "20.8247", + "name": "line_ln81048100-6", + "phases": "B", + "to": "221-282818" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "n1230123", + "length": "183.0816", + "name": "line_ln81048100-5", + "phases": "B", + "to": "l2708744" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "221-282818", + "length": "21.2881", + "name": "line_ln81048100-7", + "phases": "B", + "to": "n1230123" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2804957", + "length": "195.6736", + "name": "line_ln5957460-1", + "phases": "C", + "to": "l3048937" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047568", + "length": "297.1146", + "name": "line_ln5804800-1", + "phases": "ABC", + "to": "m1047558" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026774", + "length": "391.3442", + "name": "line_ln6077782-1", + "phases": "ABC", + "to": "m1026769" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069619", + "length": "8.7989", + "name": "line_ln6290226-1", + "phases": "B", + "to": "m1069620" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047293", + "length": "65.9258", + "name": "line_ln6047605-1", + "phases": "ABC", + "to": "m1047292" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2898515", + "length": "195.5573", + "name": "line_ln6018326-1", + "phases": "C", + "to": "m1166387" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2804261", + "length": "319.0817", + "name": "line_ln6047582-1", + "phases": "C", + "to": "l3178980" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108361", + "length": "107.7460", + "name": "line_ln5986961-1", + "phases": "C", + "to": "l3048228" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p829963", + "length": "21.9034", + "name": "line_ln5535142-1", + "phases": "B", + "to": "m1125916" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2673323", + "length": "234.7150", + "name": "line_ln6199535-1", + "phases": "C", + "to": "m1009809" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3027156", + "length": "373.3943", + "name": "line_ln5773136-1", + "phases": "C", + "to": "l2860481" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l2708744", + "length": "312.6824", + "name": "line_ln81048100-2", + "phases": "B", + "to": "l2690187" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e183473", + "length": "21.1388", + "name": "line_ln5576174-3", + "phases": "ABC", + "to": "r20703" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2859403", + "length": "124.5329", + "name": "line_ln5576174-2", + "phases": "ABC", + "to": "l2973791" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1209800", + "length": "179.7399", + "name": "line_ln6198133-1", + "phases": "C", + "to": "l2839332" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2820556", + "length": "129.5582", + "name": "line_ln6017297-1", + "phases": "A", + "to": "m1047410" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026323", + "length": "386.3576", + "name": "line_ln5714053-1", + "phases": "B", + "to": "m1026320" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l2690187", + "length": "293.8702", + "name": "line_ln81048100-3", + "phases": "B", + "to": "m1108412" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3029506", + "length": "290.2646", + "name": "line_ln6350545-1", + "phases": "B", + "to": "m1047518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000400", + "length": "503.8947", + "name": "line_ln2000500-1", + "phases": "ABC", + "to": "m2000500" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "r20703", + "length": "140.3046", + "name": "line_ln5576174-4", + "phases": "ABC", + "to": "l2859403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069515", + "length": "150.1989", + "name": "line_ln5835160-1", + "phases": "ABC", + "to": "m1069514" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "d2000401_int", + "length": "158.2381", + "name": "line_ln2000402-1", + "phases": "A", + "to": "m2000402" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026767", + "length": "144.6877", + "name": "line_ln5500957-1", + "phases": "ABC", + "to": "l3216346" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2954346", + "length": "575.0969", + "name": "line_ln6320336-1", + "phases": "B", + "to": "m1047831" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2822862", + "length": "212.0336", + "name": "line_ln5744329-1", + "phases": "C", + "to": "l3066806" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069533", + "length": "389.5949", + "name": "line_ln6047595-2", + "phases": "ABC", + "to": "n1136356" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2767341", + "length": "96.2097", + "name": "line_ln6260929-1", + "phases": "ABC", + "to": "m1125968" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026953", + "length": "99.9999", + "name": "line_ln5651966-1", + "phases": "B", + "to": "l2764399" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3235241", + "length": "505.8775", + "name": "line_ln5683805-1", + "phases": "C", + "to": "l2691941" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027109", + "length": "219.7670", + "name": "line_ln6379372-1", + "phases": "A", + "to": "l3101788" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047409", + "length": "418.4975", + "name": "line_ln6138636-1", + "phases": "A", + "to": "l2841648" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1009828", + "length": "135.7214", + "name": "line_ln6138591-1", + "phases": "B", + "to": "l3254206" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1136356", + "length": "84.6741", + "name": "line_ln6047595-3", + "phases": "ABC", + "to": "m1069549" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2876814", + "length": "261.9987", + "name": "line_ln6001653-2", + "phases": "ABC", + "to": "m1026834" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2897800", + "length": "86.9148", + "name": "line_ln5532782-1", + "phases": "B", + "to": "m1047809" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3019248", + "length": "299.9992", + "name": "line_ln6495088-1", + "phases": "B", + "to": "m3021569" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026844", + "length": "9.7449", + "name": "line_ln6001653-3", + "phases": "ABC", + "to": "l2876814" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047572", + "length": "114.8210", + "name": "line_ln5631690-1", + "phases": "ABC", + "to": "m1047580" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026854", + "length": "19.4377", + "name": "line_ln5682327-1", + "phases": "A", + "to": "p901894" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026834", + "length": "177.1741", + "name": "line_ln6001653-1", + "phases": "ABC", + "to": "m1026829" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m3036170", + "length": "169.5723", + "name": "line_ln6505951-1", + "phases": "C", + "to": "l3197642" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2766499", + "length": "27.1196", + "name": "line_ln8961800-3", + "phases": "C", + "to": "m1047633" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2879767", + "length": "230.3393", + "name": "line_ln6109148-1", + "phases": "B", + "to": "l2767407" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026354", + "length": "235.6899", + "name": "line_ln5865271-1", + "phases": "ABC", + "to": "l3235275" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2786204", + "length": "236.3634", + "name": "line_ln5589094-1", + "phases": "C", + "to": "m1209819" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p828359", + "length": "582.3726", + "name": "line_ln8961800-1", + "phases": "C", + "to": "l2878848" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069465", + "length": "249.4192", + "name": "line_ln6047560-1", + "phases": "A", + "to": "l3010561" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2673308", + "length": "369.4543", + "name": "line_ln6199557-1", + "phases": "ABC", + "to": "l2991939" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2878848", + "length": "474.0810", + "name": "line_ln8961800-2", + "phases": "C", + "to": "l2766499" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p895111", + "length": "229.1842", + "name": "line_ln5591834-1", + "phases": "C", + "to": "l2895496" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026648", + "length": "317.8778", + "name": "line_ln5653462-1", + "phases": "A", + "to": "l2973159" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2804282", + "length": "267.0625", + "name": "line_ln5714075-1", + "phases": "ABC", + "to": "l3104154" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069202", + "length": "398.8543", + "name": "line_ln5956467-1", + "phases": "ABC", + "to": "l2879073" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1209782", + "length": "127.1404", + "name": "line_ln6048633-1", + "phases": "A", + "to": "l3217057" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2710513", + "length": "620.8249", + "name": "line_ln5625550-1", + "phases": "B", + "to": "p827553" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1142098", + "length": "170.0548", + "name": "line_ln5805676-3", + "phases": "A", + "to": "l2936212" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108483", + "length": "22.0663", + "name": "line_ln5805676-2", + "phases": "A", + "to": "n1142098" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026343", + "length": "30.8785", + "name": "line_ln6411389-1", + "phases": "A", + "to": "m1026344" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2804254", + "length": "43.6442", + "name": "line_ln6138601-1", + "phases": "A", + "to": "m1047752" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3160871", + "length": "293.5436", + "name": "line_ln5957495-1", + "phases": "C", + "to": "l3030203" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009838", + "length": "155.0878", + "name": "line_ln5472343-1", + "phases": "B", + "to": "l2801896" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2897765", + "length": "374.7407", + "name": "line_ln5835129-1", + "phases": "B", + "to": "m1047819" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e192201", + "length": "182.6842", + "name": "line_ln6321409-1", + "phases": "ABC", + "to": "m1209800" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069363", + "length": "303.8930", + "name": "line_ln6290239-1", + "phases": "C", + "to": "m1069364" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m4118754", + "length": "444.3335", + "name": "line_ln6380821-3", + "phases": "B", + "to": "m1026312" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3030126", + "length": "157.4342", + "name": "line_ln6260928-1", + "phases": "C", + "to": "l3254870" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001203", + "length": "158.2381", + "name": "line_ln2001204-1", + "phases": "C", + "to": "m2001204" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2954338", + "length": "292.4521", + "name": "line_ln5774447-1", + "phases": "B", + "to": "m1009828" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p901933", + "length": "27.0691", + "name": "line_ln6288699-1", + "phases": "A", + "to": "m1069563" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069565", + "length": "337.8521", + "name": "line_ln5501089-1", + "phases": "B", + "to": "l2989596" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027109", + "length": "205.3368", + "name": "line_ln6379373-1", + "phases": "A", + "to": "m1027114" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026798", + "length": "80.5107", + "name": "line_ln5803299-1", + "phases": "A", + "to": "l2952014" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000908", + "length": "158.2381", + "name": "line_ln2000909-1", + "phases": "C", + "to": "m2000909" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047480", + "length": "41.3036", + "name": "line_ln5504712-1", + "phases": "A", + "to": "p827504" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047410", + "length": "306.8765", + "name": "line_ln5623402-1", + "phases": "A", + "to": "m1047409" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3066810", + "length": "425.3221", + "name": "line_ln5623392-1", + "phases": "C", + "to": "l2897769" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2860504", + "length": "683.6655", + "name": "line_ln6108172-1", + "phases": "A", + "to": "l2860493" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1149236", + "length": "14.0555", + "name": "line_ln6232159-1", + "phases": "A", + "to": "p829974" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2991906", + "length": "211.0557", + "name": "line_ln6138598-1", + "phases": "A", + "to": "l2879054" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089170", + "length": "256.8719", + "name": "line_ln5926293-1", + "phases": "C", + "to": "l3085392" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "n1139252", + "length": "20.4742", + "name": "line_ln5621837-3", + "phases": "B", + "to": "l3122812" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001007", + "length": "158.2381", + "name": "line_ln2001008-1", + "phases": "B", + "to": "m2001008" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000414", + "length": "158.2381", + "name": "line_ln2000415-1", + "phases": "A", + "to": "m2000415" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal1/0_tpx_ln6411371-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047649", + "length": "79.0974", + "name": "line_ln6411371-1", + "phases": "ABC", + "to": "l2973153" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027100", + "length": "229.9990", + "name": "line_ln6122719-1", + "phases": "A", + "to": "l3140238" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166391", + "length": "348.3422", + "name": "line_ln6048523-1", + "phases": "C", + "to": "l3254873" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2822867", + "length": "12.3683", + "name": "line_ln5472357-1", + "phases": "B", + "to": "m1069412" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx2_wpal_ln5496577-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1125913", + "length": "130.2641", + "name": "line_ln5496577-1", + "phases": "B", + "to": "l3068944" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026393", + "length": "87.4701", + "name": "line_ln5653467-1", + "phases": "A", + "to": "l2804252" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "221-240988", + "length": "134.7809", + "name": "line_ln8939784-1", + "phases": "C", + "to": "l3141411" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027101", + "length": "11.8843", + "name": "line_ln6229788-1", + "phases": "B", + "to": "l2710508" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p901910", + "length": "22.2087", + "name": "line_ln5621837-2", + "phases": "B", + "to": "n1139252" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2785523", + "length": "327.0579", + "name": "line_ln5926303-1", + "phases": "C", + "to": "l3141388" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125905", + "length": "280.6758", + "name": "line_ln5836177-1", + "phases": "B", + "to": "l2748839" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137985", + "length": "811.9327", + "name": "line_ln5803264-3", + "phases": "A", + "to": "l3176656" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047722", + "length": "31.5895", + "name": "line_ln5803264-2", + "phases": "A", + "to": "n1137985" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047520", + "length": "170.7420", + "name": "line_ln5562932-1", + "phases": "ABC", + "to": "m1047521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1027043", + "length": "144.9393", + "name": "line_ln5956466-1", + "phases": "ABC", + "to": "m1027055" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069590", + "length": "443.9831", + "name": "line_ln5591702-1", + "phases": "B", + "to": "m1069595" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx1/0_tpx_ln6138596-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089148", + "length": "158.8097", + "name": "line_ln6259992-1", + "phases": "A", + "to": "l2766721" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069483", + "length": "27.3050", + "name": "line_ln5898056-1", + "phases": "C", + "to": "p827503" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2673316", + "length": "175.2488", + "name": "line_ln6077777-1", + "phases": "A", + "to": "m1089138" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047441", + "length": "138.2927", + "name": "line_ln5865241-1", + "phases": "B", + "to": "m1047442" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2858163", + "length": "529.3433", + "name": "line_ln5833611-1", + "phases": "ABC", + "to": "l2766747" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1125944", + "length": "28.7524", + "name": "line_ln5651987-1", + "phases": "A", + "to": "p901941" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026852", + "length": "26.5131", + "name": "line_ln5774469-1", + "phases": "C", + "to": "l2785529" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108354", + "length": "256.3779", + "name": "line_ln6379351-1", + "phases": "C", + "to": "m1108350" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089143", + "length": "450.6489", + "name": "line_ln5502533-1", + "phases": "ABC", + "to": "m1089141" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108299", + "length": "22.2995", + "name": "line_ln5686247-1", + "phases": "B", + "to": "m1108300" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2766732", + "length": "45.0560", + "name": "line_ln5926316-1", + "phases": "B", + "to": "m1026485" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3029502", + "length": "280.5672", + "name": "line_ln6138608-3", + "phases": "ABC", + "to": "d6138608-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "q14404", + "length": "15.0822", + "name": "line_ln6138608-2", + "phases": "ABC", + "to": "regxfmr_190-7361" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069738", + "length": "323.7003", + "name": "line_ln6212942-1", + "phases": "B", + "to": "l2690941" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026700", + "length": "72.5888", + "name": "line_ln6286966-3", + "phases": "B", + "to": "n1140820" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2727795", + "length": "105.1792", + "name": "line_ln5895778-1", + "phases": "C", + "to": "l2972704" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1140820", + "length": "135.6907", + "name": "line_ln6286966-2", + "phases": "B", + "to": "l3189189" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3142079", + "length": "8.2369", + "name": "line_ln6505938-4", + "phases": "B", + "to": "m3036162" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2823611", + "length": "273.9171", + "name": "line_ln5473440-1", + "phases": "ABC", + "to": "l3030204" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069411", + "length": "184.8419", + "name": "line_ln6290202-1", + "phases": "A", + "to": "l2991905" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3064514", + "length": "204.5053", + "name": "line_ln5591715-1", + "phases": "C", + "to": "l3048888" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3214069", + "length": "166.0049", + "name": "line_ln6137009-1", + "phases": "ABC", + "to": "m1125960" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108258", + "length": "141.9639", + "name": "line_ln5894220-1", + "phases": "B", + "to": "m1108257" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108356", + "length": "204.5835", + "name": "line_ln5503584-1", + "phases": "C", + "to": "l2674052" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108259", + "length": "151.6662", + "name": "line_ln5894220-2", + "phases": "B", + "to": "m1108258" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125952", + "length": "41.8933", + "name": "line_ln6137009-2", + "phases": "ABC", + "to": "l3214069" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m3036164", + "length": "156.6655", + "name": "line_ln5835135-2", + "phases": "B", + "to": "l2935553" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2691954", + "length": "210.6527", + "name": "line_ln6320368-1", + "phases": "ABC", + "to": "l3122849" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089131", + "length": "165.6768", + "name": "line_ln6409869-1", + "phases": "A", + "to": "l3270854" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3048200", + "length": "220.1672", + "name": "line_ln5986920-1", + "phases": "B", + "to": "m1008733" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2989600", + "length": "326.1218", + "name": "line_ln5591813-1", + "phases": "A", + "to": "m1166362" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1026661", + "length": "16.6482", + "name": "line_ln8945012-1", + "phases": "A", + "to": "p827530" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2804252", + "length": "205.3900", + "name": "line_ln5683814-1", + "phases": "A", + "to": "l3195310" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142819", + "length": "246.0130", + "name": "line_ln5745348-1", + "phases": "ABC", + "to": "m1142818" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "221-306687", + "length": "436.3281", + "name": "line_ln8968082-2", + "phases": "B", + "to": "l2916625" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "p841985", + "length": "5.6226", + "name": "line_ln8968082-1", + "phases": "B", + "to": "221-306687" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2001300", + "length": "436.0067", + "name": "line_ln2001400-1", + "phases": "ABC", + "to": "m2001400" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx2_wpal_ln5561444-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "m1125988", + "length": "154.7468", + "name": "line_ln5561444-1", + "phases": "A", + "to": "l2898457" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1142815", + "length": "79.3849", + "name": "line_ln6291288-3", + "phases": "A", + "to": "n1141477" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln5775367-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "l2785531", + "length": "299.9911", + "name": "line_ln5956488-1", + "phases": "A", + "to": "l3216358" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1141477", + "length": "92.9323", + "name": "line_ln6291288-2", + "phases": "A", + "to": "l2879794" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2876846", + "length": "954.6560", + "name": "line_ln5531325-1", + "phases": "B", + "to": "l3048203" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047577", + "length": "337.9466", + "name": "line_ln5619489-1", + "phases": "ABC", + "to": "m1047592" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108315", + "length": "236.8860", + "name": "line_ln6291253-1", + "phases": "ABC", + "to": "m1108311" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069607", + "length": "107.6571", + "name": "line_ln5744350-1", + "phases": "B", + "to": "m1069619" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "d2001301_int", + "length": "158.2381", + "name": "line_ln2001302-1", + "phases": "A", + "to": "m2001302" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108286", + "length": "260.1462", + "name": "line_ln5955063-1", + "phases": "ABC", + "to": "l2933164" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2936216", + "length": "307.2721", + "name": "line_ln5473351-1", + "phases": "C", + "to": "226-23745" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108387", + "length": "100.0005", + "name": "line_ln5728479-1", + "phases": "ABC", + "to": "m1108398" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069201", + "length": "473.8642", + "name": "line_ln6199520-1", + "phases": "C", + "to": "l3010565" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047773", + "length": "221.5927", + "name": "line_ln6320333-1", + "phases": "B", + "to": "l2973152" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166364", + "length": "244.8668", + "name": "line_ln5805804-1", + "phases": "C", + "to": "m1166358" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026905", + "length": "18.1094", + "name": "line_ln6383058-1", + "phases": "A", + "to": "p827515" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "e182744", + "length": "199.9987", + "name": "line_ln5803255-1", + "phases": "B", + "to": "l2801895" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069398", + "length": "339.5027", + "name": "line_ln5653454-1", + "phases": "A", + "to": "l3010559" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108401", + "length": "434.6776", + "name": "line_ln6422012-1", + "phases": "ABC", + "to": "m1108402" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001212", + "length": "158.2381", + "name": "line_ln2001213-1", + "phases": "C", + "to": "m2001213" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001310", + "length": "158.2381", + "name": "line_ln2001311-1", + "phases": "A", + "to": "m2001311" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1134471", + "length": "243.6564", + "name": "line_ln6137084-2", + "phases": "A", + "to": "l2839331" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108347", + "length": "300.4353", + "name": "line_ln5684869-1", + "phases": "C", + "to": "m1108355" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027080", + "length": "73.1785", + "name": "line_ln6137084-3", + "phases": "A", + "to": "n1134471" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1108393", + "length": "5.8961", + "name": "line_ln81048093-1", + "phases": "A", + "to": "193-51796" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx6_wpal6_wpal_ln6108128-2", + "continuous_rating_C": "115.00", + "emergency_rating_C": "115.00", + "from": "m1047649", + "length": "20.0682", + "name": "line_ln6108128-2", + "phases": "C", + "to": "n1136997" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026857", + "length": "28.0186", + "name": "line_ln6228278-1", + "phases": "A", + "to": "m1026859" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2766746", + "length": "362.4657", + "name": "line_ln6077809-1", + "phases": "C", + "to": "m1027073" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr1/0_tpx_ln6229827-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1125917", + "length": "27.0313", + "name": "line_ln7064337-2", + "phases": "C", + "to": "p1197121" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069627", + "length": "162.9672", + "name": "line_ln6380834-1", + "phases": "B", + "to": "l3254228" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1108527", + "length": "12.6755", + "name": "line_ln5804787-1", + "phases": "B", + "to": "l3141394" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx6_wpal6_wpal_ln6108128-2", + "continuous_rating_C": "115.00", + "emergency_rating_C": "115.00", + "from": "n1136997", + "length": "82.9683", + "name": "line_ln6108128-3", + "phases": "C", + "to": "l3104123" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009720", + "length": "93.7123", + "name": "line_ln5714057-1", + "phases": "ABC", + "to": "m1009715" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089173", + "length": "97.0016", + "name": "line_ln5562923-1", + "phases": "ABC", + "to": "m1089174" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2785517", + "length": "328.1981", + "name": "line_ln6506309-1", + "phases": "C", + "to": "l3066809" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2766722", + "length": "172.7240", + "name": "line_ln6290211-1", + "phases": "B", + "to": "l2879071" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000405", + "length": "158.2381", + "name": "line_ln2000406-1", + "phases": "A", + "to": "m2000406" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2933164", + "length": "221.4275", + "name": "line_ln6440069-1", + "phases": "ABC", + "to": "l3029498" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026824", + "length": "623.7895", + "name": "line_ln5985378-1", + "phases": "ABC", + "to": "m1009807" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009698", + "length": "264.9150", + "name": "line_ln6258429-1", + "phases": "ABC", + "to": "m1026767" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3160104", + "length": "366.0667", + "name": "line_ln6411384-1", + "phases": "B", + "to": "m1047471" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089162", + "length": "846.4428", + "name": "line_ln5472348-1", + "phases": "C", + "to": "m1089165" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3254238", + "length": "325.8324", + "name": "line_ln6380847-1", + "phases": "ABC", + "to": "m1047303" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "e182727", + "length": "20.0645", + "name": "line_ln6439975-1", + "phases": "C", + "to": "m1027042" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3179646", + "length": "253.8216", + "name": "line_ln5805728-1", + "phases": "ABC", + "to": "l2674027" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3160872", + "length": "190.3807", + "name": "line_ln6321420-1", + "phases": "ABC", + "to": "m1142860" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3160115", + "length": "263.7184", + "name": "line_ln6320355-1", + "phases": "B", + "to": "l2935567" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000600", + "length": "372.3127", + "name": "line_ln2000700-1", + "phases": "ABC", + "to": "m2000700" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2820590", + "length": "181.8499", + "name": "line_ln5531334-1", + "phases": "C", + "to": "m1108328" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209749", + "length": "666.6055", + "name": "line_ln5896826-1", + "phases": "B", + "to": "l2748840" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069133", + "length": "59.6443", + "name": "line_ln5742808-1", + "phases": "A", + "to": "l2710521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l3027670", + "length": "472.5929", + "name": "line_ln81048103-2", + "phases": "B", + "to": "m1108459" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx2_wpal_ln5496577-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "l3068944", + "length": "7.2842", + "name": "line_ln5708136-1", + "phases": "B", + "to": "m1125911" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3160107", + "length": "353.7660", + "name": "line_ln6350541-1", + "phases": "ABC", + "to": "l3104125" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166361", + "length": "226.6312", + "name": "line_ln6198041-1", + "phases": "A", + "to": "l2692661" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2936270", + "length": "198.8142", + "name": "line_ln6351517-1", + "phases": "A", + "to": "l3086078" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2935559", + "length": "124.2438", + "name": "line_ln6411397-1", + "phases": "A", + "to": "l3048214" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047303", + "length": "926.0535", + "name": "line_ln5986964-1", + "phases": "C", + "to": "l3048230" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026851", + "length": "98.5616", + "name": "line_ln5502542-1", + "phases": "ABC", + "to": "l3235257" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047756", + "length": "18.3622", + "name": "line_ln6380812-1", + "phases": "A", + "to": "m1047755" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3119793", + "length": "141.3341", + "name": "line_ln6102834-2", + "phases": "B", + "to": "m1047371" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047322", + "length": "243.9281", + "name": "line_ln5835148-1", + "phases": "A", + "to": "l3048211" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047379", + "length": "170.6674", + "name": "line_ln6102834-1", + "phases": "B", + "to": "l3119793" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p901909", + "length": "67.7247", + "name": "line_ln6379342-1", + "phases": "B", + "to": "m1026472" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3216368", + "length": "90.8688", + "name": "line_ln5683858-2", + "phases": "ABC", + "to": "n1140827" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2860506", + "length": "821.2778", + "name": "line_ln5653489-1", + "phases": "B", + "to": "m1027019" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209775", + "length": "531.7275", + "name": "line_ln6078775-1", + "phases": "ABC", + "to": "m1209774" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1140827", + "length": "56.6568", + "name": "line_ln5683858-3", + "phases": "ABC", + "to": "m1026726" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026701", + "length": "200.6493", + "name": "line_ln6411407-1", + "phases": "ABC", + "to": "m1026697" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125955", + "length": "370.2767", + "name": "line_ln5625527-1", + "phases": "C", + "to": "l3236004" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1108412", + "length": "196.3753", + "name": "line_ln81048103-1", + "phases": "B", + "to": "l3027670" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p895117", + "length": "16.9985", + "name": "line_ln6409780-1", + "phases": "B", + "to": "m1069532" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3949154", + "length": "12.4230", + "name": "line_ln6991381-2", + "phases": "A", + "to": "l3728038" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069467", + "length": "51.6392", + "name": "line_ln5714044-1", + "phases": "A", + "to": "m1069466" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3728038", + "length": "259.5434", + "name": "line_ln6991381-4", + "phases": "A", + "to": "l3728039" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1108499", + "length": "118.9067", + "name": "line_ln5833633-4", + "phases": "A", + "to": "l3065665" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2991943", + "length": "254.2215", + "name": "line_ln5532790-1", + "phases": "C", + "to": "m1047319" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026329", + "length": "112.0985", + "name": "line_ln5895787-1", + "phases": "ABC", + "to": "m1026328" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3768670", + "length": "14.6639", + "name": "line_ln6900590-2", + "phases": "A", + "to": "p1123251" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089119", + "length": "258.8058", + "name": "line_ln5683823-1", + "phases": "ABC", + "to": "m1089118" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3048889", + "length": "286.9790", + "name": "line_ln6137018-1", + "phases": "C", + "to": "m1166407" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108331", + "length": "6.6651", + "name": "line_ln5712492-1", + "phases": "C", + "to": "l3045895" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3045895", + "length": "293.9298", + "name": "line_ln5712492-2", + "phases": "C", + "to": "m1108329" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3728039", + "length": "197.9911", + "name": "line_ln6991381-6", + "phases": "A", + "to": "l3728040" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069544", + "length": "10.4787", + "name": "line_ln5623415-1", + "phases": "B", + "to": "m1069543" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3728040", + "length": "124.9685", + "name": "line_ln6991381-8", + "phases": "A", + "to": "l3728041" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069532", + "length": "192.1886", + "name": "line_ln6046046-1", + "phases": "B", + "to": "l2785534" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047724", + "length": "139.0173", + "name": "line_ln5773040-1", + "phases": "ABC", + "to": "m1047722" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047722", + "length": "353.9081", + "name": "line_ln5773040-2", + "phases": "ABC", + "to": "l2841621" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026857", + "length": "273.7427", + "name": "line_ln5651961-1", + "phases": "A", + "to": "l2973165" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001207", + "length": "158.2381", + "name": "line_ln2001208-1", + "phases": "C", + "to": "m2001208" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_tpx_ln5742835-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1009770", + "length": "182.7023", + "name": "line_ln5742835-1", + "phases": "ABC", + "to": "l2689691" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3037538", + "length": "237.1998", + "name": "line_ln5501001-2", + "phases": "A", + "to": "l2857591" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2689726", + "length": "446.4914", + "name": "line_ln5647724-1", + "phases": "A", + "to": "m1047400" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026701", + "length": "16.9465", + "name": "line_ln5837358-1", + "phases": "A", + "to": "p827560" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3216351", + "length": "103.9953", + "name": "line_ln5986937-1", + "phases": "A", + "to": "l2879081" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3141399", + "length": "252.2085", + "name": "line_ln5593235-1", + "phases": "C", + "to": "m1069210" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142871", + "length": "19.4870", + "name": "line_ln5989326-1", + "phases": "C", + "to": "p829956" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2897780", + "length": "142.9531", + "name": "line_ln5744341-1", + "phases": "ABC", + "to": "l3235255" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047794", + "length": "289.2147", + "name": "line_ln5502559-1", + "phases": "B", + "to": "m1047792" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009715", + "length": "263.6724", + "name": "line_ln6380825-1", + "phases": "ABC", + "to": "m1009705" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2973152", + "length": "56.7954", + "name": "line_ln5804796-1", + "phases": "B", + "to": "m1047777" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047623", + "length": "207.5506", + "name": "line_ln5956497-1", + "phases": "A", + "to": "l2748157" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2841639", + "length": "145.4316", + "name": "line_ln5804806-1", + "phases": "A", + "to": "m1026877" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "p829965", + "length": "91.6011", + "name": "line_ln5928744-1", + "phases": "ABC", + "to": "l2936271" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069558", + "length": "126.8093", + "name": "line_ln6017312-1", + "phases": "B", + "to": "l3254229" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx4_tpx_ln6169266-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "200.00", + "from": "m1069597", + "length": "111.5238", + "name": "line_ln6169266-1", + "phases": "B", + "to": "l2785535" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047342", + "length": "241.7915", + "name": "line_ln5683832-1", + "phases": "A", + "to": "l3197645" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069156", + "length": "68.8429", + "name": "line_ln5926297-1", + "phases": "C", + "to": "l2710510" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209790", + "length": "193.9492", + "name": "line_ln5594242-1", + "phases": "ABC", + "to": "m1209788" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3142078", + "length": "442.0581", + "name": "line_ln6230759-1", + "phases": "B", + "to": "l2879752" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142860", + "length": "165.9460", + "name": "line_ln6139646-1", + "phases": "ABC", + "to": "m1142863" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108505", + "length": "179.0075", + "name": "line_ln5624342-1", + "phases": "ABC", + "to": "l2955047" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2989566", + "length": "283.4381", + "name": "line_ln6318768-1", + "phases": "ABC", + "to": "m1108378" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186067", + "length": "164.5040", + "name": "line_ln6504019-5", + "phases": "ABC", + "to": "m3032980" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089148", + "length": "516.6344", + "name": "line_ln5865245-1", + "phases": "A", + "to": "l2991906" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2691942", + "length": "245.7255", + "name": "line_ln5502524-1", + "phases": "B", + "to": "m1047374" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3197646", + "length": "323.8198", + "name": "line_ln6320342-1", + "phases": "ABC", + "to": "m1026851" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5683000-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2841000", + "length": "196.2395", + "name": "line_ln6128000-1", + "phases": "A", + "to": "l2841648" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6504019-6_int", + "length": "526.2791", + "name": "line_ln6504019-6", + "phases": "ABC", + "to": "m1186065" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027036", + "length": "263.4325", + "name": "line_ln5714070-1", + "phases": "B", + "to": "l2785543" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069218", + "length": "296.1215", + "name": "line_ln6047569-1", + "phases": "C", + "to": "l2954351" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009824", + "length": "217.2309", + "name": "line_ln6350528-1", + "phases": "B", + "to": "l2691939" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2925506", + "length": "102.5315", + "name": "line_ln5472402-1", + "phases": "ABC", + "to": "m1069438" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3159037", + "length": "162.1578", + "name": "line_ln5727681-1", + "phases": "B", + "to": "m1069738" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3235266", + "length": "260.5275", + "name": "line_ln6046144-1", + "phases": "ABC", + "to": "l2801950" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal1/0_tpx_ln5956462-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1108344", + "length": "129.3679", + "name": "line_ln5956462-1", + "phases": "C", + "to": "l2804250" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p895106", + "length": "131.7627", + "name": "line_ln5952393-1", + "phases": "B", + "to": "l3048887" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026655", + "length": "206.9838", + "name": "line_ln6260020-1", + "phases": "ABC", + "to": "m1009651" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108520", + "length": "320.0004", + "name": "line_ln5524067-1", + "phases": "C", + "to": "m1108514" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2935549", + "length": "315.0343", + "name": "line_ln5835131-1", + "phases": "ABC", + "to": "m1069420" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069174", + "length": "191.1439", + "name": "line_ln5742813-1", + "phases": "C", + "to": "l2841629" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e192860", + "length": "64.2826", + "name": "line_ln5815900-1", + "phases": "ABC", + "to": "m1209817" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1186061", + "length": "119.6550", + "name": "line_ln6230800-1", + "phases": "B", + "to": "l2861223" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3066816", + "length": "398.4986", + "name": "line_ln5774465-1", + "phases": "A", + "to": "m1026667" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2688692", + "length": "16.7214", + "name": "line_ln5527400-1", + "phases": "ABC", + "to": "m1108286" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p893163", + "length": "12.8809", + "name": "line_ln5741249-1", + "phases": "A", + "to": "m1047314" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2879077", + "length": "392.6912", + "name": "line_ln5502537-1", + "phases": "B", + "to": "m1026693" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089122", + "length": "249.6044", + "name": "line_ln6108137-1", + "phases": "ABC", + "to": "m1089132" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026931", + "length": "161.3726", + "name": "line_ln5714039-1", + "phases": "A", + "to": "l3216336" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047836", + "length": "460.9661", + "name": "line_ln6380803-1", + "phases": "B", + "to": "l3048199" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p827495", + "length": "54.9327", + "name": "line_ln5534964-1", + "phases": "B", + "to": "m1026466" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "d5863704-2_int", + "length": "291.5319", + "name": "line_ln5863704-2", + "phases": "ABC", + "to": "n1136667" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1136667", + "length": "115.3725", + "name": "line_ln5863704-3", + "phases": "ABC", + "to": "196-29519" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089200", + "length": "88.0921", + "name": "line_ln6169244-1", + "phases": "A", + "to": "l2916602" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125962", + "length": "19.0035", + "name": "line_ln6289479-1", + "phases": "C", + "to": "p903490" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027087", + "length": "76.0140", + "name": "line_ln5924721-1", + "phases": "A", + "to": "m1027091" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1209795", + "length": "205.1412", + "name": "line_ln6381845-1", + "phases": "C", + "to": "l2936268" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069419", + "length": "159.0934", + "name": "line_ln5683810-1", + "phases": "ABC", + "to": "m1069418" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026797", + "length": "8.3705", + "name": "line_ln5649275-1", + "phases": "ABC", + "to": "m1026796" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2879068", + "length": "317.5824", + "name": "line_ln5895774-1", + "phases": "B", + "to": "m1047773" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal1/0_tpx_ln6411371-1", + "continuous_rating_A": "150.00", + "continuous_rating_B": "150.00", + "continuous_rating_C": "150.00", + "emergency_rating_A": "150.00", + "emergency_rating_B": "150.00", + "emergency_rating_C": "150.00", + "from": "l2822866", + "length": "106.9255", + "name": "line_ln5532746-1", + "phases": "ABC", + "to": "m1047688" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3029518", + "length": "302.9064", + "name": "line_ln6320364-1", + "phases": "B", + "to": "l2897807" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047794", + "length": "435.2080", + "name": "line_ln5593248-1", + "phases": "B", + "to": "m1047796" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3236011", + "length": "372.8639", + "name": "line_ln5866274-1", + "phases": "B", + "to": "l3198358" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000712", + "length": "158.2381", + "name": "line_ln2000713-1", + "phases": "B", + "to": "m2000713" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069548", + "length": "67.5869", + "name": "line_ln5561440-2", + "phases": "C", + "to": "n1136358" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047721", + "length": "312.8201", + "name": "line_ln5986924-1", + "phases": "A", + "to": "m1047723" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1136358", + "length": "62.3526", + "name": "line_ln5561440-3", + "phases": "C", + "to": "l2729423" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p829797", + "length": "19.1484", + "name": "line_ln6262430-1", + "phases": "A", + "to": "m1108483" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4_acsr_ln5589097-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "m1142865", + "length": "28.6412", + "name": "line_ln5800724-1", + "phases": "A", + "to": "p895112" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001305", + "length": "158.2381", + "name": "line_ln2001306-1", + "phases": "A", + "to": "m2001306" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3036162", + "length": "141.2795", + "name": "line_ln6048598-2", + "phases": "B", + "to": "l2955055" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1186063", + "length": "12.8481", + "name": "line_ln6322801-1", + "phases": "B", + "to": "p829979" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2973791", + "length": "211.9683", + "name": "line_ln5684838-1", + "phases": "ABC", + "to": "l3179650" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026709", + "length": "192.2961", + "name": "line_ln6290233-1", + "phases": "ABC", + "to": "m1026701" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069225", + "length": "211.3958", + "name": "line_ln5591696-1", + "phases": "C", + "to": "l3122819" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2989564", + "length": "348.9539", + "name": "line_ln6076245-1", + "phases": "B", + "to": "l2897789" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "d5504876-1_int", + "length": "221.3697", + "name": "line_ln5504876-1", + "phases": "ABC", + "to": "p829965" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166356", + "length": "266.7313", + "name": "line_ln5715051-1", + "phases": "A", + "to": "l3104856" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069147", + "length": "119.4135", + "name": "line_ln6138589-1", + "phases": "C", + "to": "l3066801" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069408", + "length": "122.0087", + "name": "line_ln5653458-1", + "phases": "B", + "to": "l2897774" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2785520", + "length": "440.7660", + "name": "line_ln5865232-1", + "phases": "B", + "to": "m1047386" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108403", + "length": "1062.6553", + "name": "line_ln6422016-1", + "phases": "ABC", + "to": "m1108406" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026341", + "length": "30.6328", + "name": "line_ln6140777-1", + "phases": "A", + "to": "p827531" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047435", + "length": "151.1237", + "name": "line_ln5863824-1", + "phases": "A", + "to": "l2970841" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p827512", + "length": "52.7476", + "name": "line_ln6201696-2", + "phases": "C", + "to": "n1136994" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1136994", + "length": "128.0348", + "name": "line_ln6201696-3", + "phases": "C", + "to": "l2785521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089183", + "length": "170.8605", + "name": "line_ln8979256-1", + "phases": "ABC", + "to": "l2990826" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1089195", + "length": "369.8621", + "name": "line_ln6047556-1", + "phases": "C", + "to": "l3141393" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089201", + "length": "13.1633", + "name": "line_ln5679696-1", + "phases": "ABC", + "to": "m1089202" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125968", + "length": "131.1754", + "name": "line_ln5624288-1", + "phases": "ABC", + "to": "m1125976" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001314", + "length": "158.2381", + "name": "line_ln2001315-1", + "phases": "A", + "to": "m2001315" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e206211", + "length": "490.9394", + "name": "line_ln5833624-2", + "phases": "ABC", + "to": "n1134480" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1134480", + "length": "62.4852", + "name": "line_ln5833624-3", + "phases": "ABC", + "to": "m1069519" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2692635", + "length": "27.6863", + "name": "line_ln5587295-1", + "phases": "ABC", + "to": "regxfmr_190-8581" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047339", + "length": "271.9089", + "name": "line_ln5472370-1", + "phases": "ABC", + "to": "l2860491" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069224", + "length": "763.5976", + "name": "line_ln6137088-1", + "phases": "ABC", + "to": "m1069230" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "221-311359", + "length": "158.0726", + "name": "line_ln8978753-2", + "phases": "ABC", + "to": "l3234149" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "198-5320", + "length": "12.7691", + "name": "line_ln8978753-1", + "phases": "ABC", + "to": "221-311359" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2748144", + "length": "387.4846", + "name": "line_ln5532768-1", + "phases": "ABC", + "to": "m1069533" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089118", + "length": "282.9783", + "name": "line_ln6411380-1", + "phases": "C", + "to": "l2973158" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2766741", + "length": "200.5805", + "name": "line_ln6380838-1", + "phases": "ABC", + "to": "m1069382" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026987", + "length": "156.0327", + "name": "line_ln6108124-1", + "phases": "B", + "to": "m1026989" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2955081", + "length": "310.6459", + "name": "line_ln6018341-1", + "phases": "ABC", + "to": "m1108315" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2935555", + "length": "164.8861", + "name": "line_ln5593226-1", + "phases": "A", + "to": "l2897773" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069535", + "length": "289.0493", + "name": "line_ln5986946-1", + "phases": "B", + "to": "m1069530" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2916606", + "length": "202.4228", + "name": "line_ln5744332-1", + "phases": "C", + "to": "l2822864" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3101788", + "length": "179.9939", + "name": "line_ln6198050-1", + "phases": "A", + "to": "l3101787" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069565", + "length": "606.9908", + "name": "line_ln5804819-1", + "phases": "B", + "to": "l2785536" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m3036169", + "length": "8.5239", + "name": "line_ln6505947-4", + "phases": "A", + "to": "l2673317" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026960", + "length": "35.8708", + "name": "line_ln5776666-1", + "phases": "A", + "to": "m1026961" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010016", + "length": "266.9993", + "name": "line_ln6076267-1", + "phases": "A", + "to": "m1010015" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047409", + "length": "216.9670", + "name": "line_ln5682375-1", + "phases": "A", + "to": "l3082992" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p829976", + "length": "179.7946", + "name": "line_ln6413711-1", + "phases": "A", + "to": "l2955078" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047401", + "length": "144.9974", + "name": "line_ln5691535-1", + "phases": "A", + "to": "m1047403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142839", + "length": "239.4759", + "name": "line_ln5503575-1", + "phases": "ABC", + "to": "m1142832" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108540", + "length": "280.5899", + "name": "line_ln6018243-1", + "phases": "C", + "to": "l3235945" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3086079", + "length": "239.8468", + "name": "line_ln6506305-2", + "phases": "B", + "to": "l2936276" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047711", + "length": "285.4290", + "name": "line_ln5683841-1", + "phases": "A", + "to": "m1047718" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3179674", + "length": "393.3859", + "name": "line_ln6381854-1", + "phases": "B", + "to": "m1209758" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p893610", + "length": "289.0775", + "name": "line_ln6103662-1", + "phases": "B", + "to": "m1108302" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010014", + "length": "191.7763", + "name": "line_ln6440003-1", + "phases": "A", + "to": "m1010011" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2876798", + "length": "332.7694", + "name": "line_ln5803273-1", + "phases": "ABC", + "to": "d5803273-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3215549", + "length": "471.1427", + "name": "line_ln5744367-1", + "phases": "B", + "to": "l2897800" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000703", + "length": "158.2381", + "name": "line_ln2000704-1", + "phases": "B", + "to": "m2000704" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l3252336", + "length": "556.8654", + "name": "line_ln81048107-3", + "phases": "B", + "to": "l3233413" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l2802480", + "length": "263.7792", + "name": "line_ln81048107-2", + "phases": "B", + "to": "l3252336" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "d5956471-2_int", + "length": "349.2330", + "name": "line_ln5956471-2", + "phases": "ABC", + "to": "m1047572" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166370", + "length": "155.8783", + "name": "line_ln5927421-1", + "phases": "C", + "to": "m1166364" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "l3233413", + "length": "151.9706", + "name": "line_ln81048107-4", + "phases": "B", + "to": "m1108464" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047548", + "length": "59.7600", + "name": "line_ln5956471-3", + "phases": "ABC", + "to": "n1136670" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m3037540", + "length": "10.9671", + "name": "line_ln6506318-4", + "phases": "C", + "to": "l2710509" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069524", + "length": "3.8768", + "name": "line_ln5985347-2", + "phases": "A", + "to": "l3254230" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1108459", + "length": "271.0441", + "name": "line_ln81048107-1", + "phases": "B", + "to": "l2802480" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026679", + "length": "29.1645", + "name": "line_ln5958703-1", + "phases": "A", + "to": "p827537" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125997", + "length": "10.9609", + "name": "line_ln5535139-1", + "phases": "ABC", + "to": "d5535139-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069521", + "length": "322.0244", + "name": "line_ln5985347-1", + "phases": "A", + "to": "m1069524" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026906", + "length": "320.9614", + "name": "line_ln6411393-1", + "phases": "A", + "to": "l3048212" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "e182725", + "length": "408.1424", + "name": "line_ln6292464-1", + "phases": "B", + "to": "m1026948" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1126020", + "length": "94.2641", + "name": "line_ln5712496-1", + "phases": "A", + "to": "m1126023" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069533", + "length": "61.0444", + "name": "line_ln5898408-1", + "phases": "B", + "to": "196-29521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "196-35541", + "length": "245.8313", + "name": "line_ln6141147-1", + "phases": "C", + "to": "d6141147-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026989", + "length": "635.9156", + "name": "line_ln5865267-1", + "phases": "B", + "to": "l2673343" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1027041", + "length": "231.1468", + "name": "line_ln5774456-1", + "phases": "C", + "to": "l3010564" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026767", + "length": "485.1240", + "name": "line_ln6318742-1", + "phases": "A", + "to": "l3029500" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1126020", + "length": "248.3289", + "name": "line_ln5742826-1", + "phases": "A", + "to": "l3101782" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3197643", + "length": "133.5978", + "name": "line_ln6108146-1", + "phases": "B", + "to": "m1026339" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047453", + "length": "228.3554", + "name": "line_ln6380816-1", + "phases": "B", + "to": "l2691948" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2673315", + "length": "408.3552", + "name": "line_ln5714048-1", + "phases": "A", + "to": "m1089148" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069130", + "length": "63.5425", + "name": "line_ln5651970-1", + "phases": "A", + "to": "m1069133" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000800", + "length": "624.7518", + "name": "line_ln2000900-1", + "phases": "ABC", + "to": "m2000900" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2955005", + "length": "105.1807", + "name": "line_ln5533708-1", + "phases": "B", + "to": "m1108372" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2766723", + "length": "187.5267", + "name": "line_ln6169253-1", + "phases": "A", + "to": "l3122822" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186063", + "length": "200.3729", + "name": "line_ln6412356-1", + "phases": "ABC", + "to": "m1209776" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3235256", + "length": "114.4806", + "name": "line_ln5593239-1", + "phases": "ABC", + "to": "m1069136" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3160102", + "length": "201.0296", + "name": "line_ln6231993-1", + "phases": "ABC", + "to": "p827514" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx1/0_tpx_ln5562952-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1069730", + "length": "151.6182", + "name": "line_ln5532733-1", + "phases": "B", + "to": "l2748124" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3141388", + "length": "128.6907", + "name": "line_ln5926284-2", + "phases": "C", + "to": "l3626914" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026309", + "length": "1283.5831", + "name": "line_ln5895783-1", + "phases": "B", + "to": "l2860488" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3626914", + "length": "141.7783", + "name": "line_ln5926284-3", + "phases": "C", + "to": "m1089102" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3066815", + "length": "145.6488", + "name": "line_ln5835144-1", + "phases": "ABC", + "to": "m1047548" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1089141", + "length": "22.6455", + "name": "line_ln5679773-1", + "phases": "A", + "to": "p895105" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1136666", + "length": "97.6816", + "name": "line_ln6422809-4", + "phases": "ABC", + "to": "m1047528" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2861157", + "length": "398.1260", + "name": "line_ln5594152-1", + "phases": "C", + "to": "p901951" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3216370", + "length": "330.9733", + "name": "line_ln6199560-1", + "phases": "ABC", + "to": "m1047312" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047419", + "length": "157.4607", + "name": "line_ln6316403-1", + "phases": "A", + "to": "l2973157" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047528", + "length": "15.8571", + "name": "line_ln6422809-2", + "phases": "ABC", + "to": "l2858166" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047526", + "length": "36.6677", + "name": "line_ln6422809-3", + "phases": "ABC", + "to": "n1136666" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069456", + "length": "206.9229", + "name": "line_ln6138635-1", + "phases": "C", + "to": "l2897806" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008742", + "length": "338.9340", + "name": "line_ln6138590-1", + "phases": "B", + "to": "l2804247" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069408", + "length": "262.6830", + "name": "line_ln5593231-1", + "phases": "B", + "to": "l2822867" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000900", + "length": "540.7130", + "name": "line_ln2001000-1", + "phases": "ABC", + "to": "m2001000" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069210", + "length": "266.2414", + "name": "line_ln6411379-1", + "phases": "C", + "to": "l3085400" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047558", + "length": "179.8968", + "name": "line_ln5956470-1", + "phases": "ABC", + "to": "m1047550" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2764412", + "length": "472.2083", + "name": "line_ln6409797-4", + "phases": "A", + "to": "n1134470" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1134470", + "length": "295.4180", + "name": "line_ln6409797-3", + "phases": "A", + "to": "l3251808" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3066814", + "length": "46.8120", + "name": "line_ln5534969-3", + "phases": "ABC", + "to": "n1134477" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1134477", + "length": "74.1832", + "name": "line_ln5534969-2", + "phases": "ABC", + "to": "d5534969-2_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3251808", + "length": "195.1227", + "name": "line_ln6409797-1", + "phases": "A", + "to": "m1027100" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m3036172", + "length": "8.8690", + "name": "line_ln6505952-4", + "phases": "B", + "to": "l3086079" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3048205", + "length": "642.8287", + "name": "line_ln5835174-1", + "phases": "C", + "to": "m1108361" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069148", + "length": "351.8178", + "name": "line_ln6259988-1", + "phases": "C", + "to": "l2673309" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026486", + "length": "42.3425", + "name": "line_ln5895792-1", + "phases": "B", + "to": "m1026487" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3048230", + "length": "226.8025", + "name": "line_ln5532789-1", + "phases": "C", + "to": "l2991943" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m4362177", + "length": "214.9096", + "name": "line_ln7167521-1", + "phases": "ABC", + "to": "m1186052" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026927", + "length": "16.8664", + "name": "line_ln6292826-1", + "phases": "ABC", + "to": "196-29518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1142108", + "length": "241.7277", + "name": "line_ln5715016-3", + "phases": "A", + "to": "l2674051" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1125904", + "length": "48.1054", + "name": "line_ln5715016-2", + "phases": "A", + "to": "n1142108" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027092", + "length": "247.5995", + "name": "line_ln5894313-1", + "phases": "A", + "to": "l2689727" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026734", + "length": "220.1102", + "name": "line_ln6061814-1", + "phases": "A", + "to": "l3065696" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2745848", + "length": "188.8270", + "name": "line_ln5833717-1", + "phases": "ABC", + "to": "l2673308" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026830", + "length": "172.1633", + "name": "line_ln5502528-1", + "phases": "ABC", + "to": "l2879070" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026331", + "length": "199.9981", + "name": "line_ln6409762-1", + "phases": "C", + "to": "l3214055" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6108145-1_int", + "length": "195.5159", + "name": "line_ln6108145-1", + "phases": "ABC", + "to": "m1026681" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1009855", + "length": "214.9691", + "name": "line_ln5774474-1", + "phases": "B", + "to": "l2748139" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069582", + "length": "86.0416", + "name": "line_ln5895802-1", + "phases": "B", + "to": "l2973171" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125969", + "length": "85.6137", + "name": "line_ln5927296-1", + "phases": "ABC", + "to": "l2767341" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026920", + "length": "308.1406", + "name": "line_ln6047565-1", + "phases": "ABC", + "to": "m1026926" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047769", + "length": "345.1952", + "name": "line_ln6379347-1", + "phases": "B", + "to": "l2710514" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069135", + "length": "36.4699", + "name": "line_ln5716231-1", + "phases": "B", + "to": "p827533" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3104130", + "length": "251.1204", + "name": "line_ln6288856-1", + "phases": "B", + "to": "l2763072" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827531", + "length": "20.3620", + "name": "line_ln5746547-1", + "phases": "A", + "to": "m1026343" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089176", + "length": "227.4480", + "name": "line_ln6138600-1", + "phases": "ABC", + "to": "m1089179" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1125903", + "length": "50.9865", + "name": "line_ln5894215-1", + "phases": "A", + "to": "l2989565" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3197647", + "length": "5.3174", + "name": "line_ln6017304-1", + "phases": "A", + "to": "m1026778" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1145954", + "length": "18.8581", + "name": "line_ln6262266-13", + "phases": "ABC", + "to": "p827580" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047303", + "length": "13.7083", + "name": "line_ln6262266-12", + "phases": "ABC", + "to": "n1145954" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069564", + "length": "70.3820", + "name": "line_ln5472384-2", + "phases": "A", + "to": "n1136361" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047300", + "length": "206.2078", + "name": "line_ln5804836-1", + "phases": "ABC", + "to": "m1047299" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1136361", + "length": "163.6956", + "name": "line_ln5472384-3", + "phases": "A", + "to": "l3160114" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010014", + "length": "42.1135", + "name": "line_ln5803301-1", + "phases": "A", + "to": "m1010013" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069483", + "length": "167.1698", + "name": "line_ln6229793-1", + "phases": "ABC", + "to": "m1069481" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125976", + "length": "25.9569", + "name": "line_ln6255845-1", + "phases": "B", + "to": "p895106" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3160117", + "length": "319.6348", + "name": "line_ln5895815-1", + "phases": "B", + "to": "l3215549" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827504", + "length": "30.2500", + "name": "line_ln6201695-2", + "phases": "A", + "to": "n1137957" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047724", + "length": "11.2334", + "name": "line_ln5981120-1", + "phases": "B", + "to": "m1047725" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137957", + "length": "144.4681", + "name": "line_ln6201695-3", + "phases": "A", + "to": "l3104119" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2822863", + "length": "1096.7223", + "name": "line_ln6380807-1", + "phases": "ABC", + "to": "m1089187" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p850083", + "length": "19.3509", + "name": "line_ln8979257-1", + "phases": "ABC", + "to": "221-312488" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3160105", + "length": "274.9774", + "name": "line_ln5774461-1", + "phases": "C", + "to": "l3235251" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "221-312488", + "length": "44.3464", + "name": "line_ln8979257-2", + "phases": "ABC", + "to": "m1089183" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2841635", + "length": "195.1017", + "name": "line_ln6047578-1", + "phases": "ABC", + "to": "l2822869" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2897784", + "length": "149.6060", + "name": "line_ln5653472-1", + "phases": "B", + "to": "m1026496" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1142814", + "length": "207.6147", + "name": "line_ln5957500-1", + "phases": "ABC", + "to": "m1142813" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "196-35813", + "length": "24.4937", + "name": "line_ln5621841-2", + "phases": "ABC", + "to": "n1140519" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2763072", + "length": "239.0731", + "name": "line_ln6288856-3", + "phases": "B", + "to": "m4118754" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000912", + "length": "158.2381", + "name": "line_ln2000913-1", + "phases": "C", + "to": "m2000913" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047763", + "length": "59.5168", + "name": "line_ln6409775-3", + "phases": "A", + "to": "n1136027" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108331", + "length": "542.9187", + "name": "line_ln5896843-1", + "phases": "C", + "to": "m1108335" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "d6409775-4_int", + "length": "213.5366", + "name": "line_ln6409775-4", + "phases": "A", + "to": "l2876796" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069206", + "length": "498.9717", + "name": "line_ln5986929-1", + "phases": "C", + "to": "l2841625" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047345", + "length": "285.6130", + "name": "line_ln5472371-1", + "phases": "A", + "to": "m1047340" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2876796", + "length": "167.5168", + "name": "line_ln6409775-2", + "phases": "A", + "to": "m1047756" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125911", + "length": "345.9300", + "name": "line_ln5563934-1", + "phases": "B", + "to": "l2711224" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2970842", + "length": "235.8186", + "name": "line_ln6409873-1", + "phases": "B", + "to": "m1089113" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2710519", + "length": "162.9337", + "name": "line_ln5804801-1", + "phases": "A", + "to": "m1047344" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047316", + "length": "112.8863", + "name": "line_ln5956502-1", + "phases": "C", + "to": "l2766728" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026808", + "length": "15.4419", + "name": "line_ln6229803-2", + "phases": "C", + "to": "n1140520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1140520", + "length": "74.5636", + "name": "line_ln6229803-3", + "phases": "C", + "to": "l2729410" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3197652", + "length": "100.1531", + "name": "line_ln6138622-1", + "phases": "A", + "to": "l2748143" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3235275", + "length": "282.0623", + "name": "line_ln5774496-1", + "phases": "ABC", + "to": "m1026347" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2804270", + "length": "291.6884", + "name": "line_ln5593244-1", + "phases": "B", + "to": "l3104145" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1047613", + "length": "14.8440", + "name": "line_ln8961758-1", + "phases": "C", + "to": "p828359" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "e182723", + "length": "161.5835", + "name": "line_ln5806917-1", + "phases": "ABC", + "to": "m1089177" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026783", + "length": "58.7806", + "name": "line_ln5532754-1", + "phases": "ABC", + "to": "m1026780" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr1/0_tpx_ln6229827-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047346", + "length": "134.2847", + "name": "line_ln6199529-1", + "phases": "C", + "to": "l3254219" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3254229", + "length": "145.8403", + "name": "line_ln6229816-1", + "phases": "B", + "to": "m1069565" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108378", + "length": "34.7722", + "name": "line_ln6077443-1", + "phases": "ABC", + "to": "m1108379" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047729", + "length": "240.2533", + "name": "line_ln5835130-1", + "phases": "A", + "to": "l2973150" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047453", + "length": "272.9995", + "name": "line_ln6013613-1", + "phases": "B", + "to": "l2913406" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026905", + "length": "413.9725", + "name": "line_ln6350537-1", + "phases": "ABC", + "to": "m1026907" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2748140", + "length": "256.7701", + "name": "line_ln5774487-1", + "phases": "A", + "to": "l3141412" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "r18245", + "length": "105.1596", + "name": "line_ln6231998-1", + "phases": "ABC", + "to": "e182746" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089102", + "length": "556.2095", + "name": "line_ln5744324-1", + "phases": "C", + "to": "m1089096" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3157167", + "length": "411.4348", + "name": "line_ln5499793-1", + "phases": "A", + "to": "l2785511" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "221-311583", + "length": "13.1528", + "name": "line_ln8979346-4", + "phases": "A", + "to": "n1139250" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l2821770", + "length": "246.4828", + "name": "line_ln8979346-3", + "phases": "A", + "to": "m1069247" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027073", + "length": "268.0103", + "name": "line_ln5804827-1", + "phases": "C", + "to": "l3104118" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "p850401", + "length": "13.7120", + "name": "line_ln8979346-1", + "phases": "A", + "to": "221-311583" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089173", + "length": "199.6642", + "name": "line_ln5532741-1", + "phases": "ABC", + "to": "l2935551" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2991902", + "length": "295.0766", + "name": "line_ln5562919-1", + "phases": "B", + "to": "m1008758" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069398", + "length": "219.0808", + "name": "line_ln6169245-1", + "phases": "A", + "to": "l2785513" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069412", + "length": "270.0332", + "name": "line_ln6108132-1", + "phases": "B", + "to": "l2879061" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2897778", + "length": "6.5120", + "name": "line_ln6506313-4", + "phases": "A", + "to": "m3037452" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069155", + "length": "180.6823", + "name": "line_ln6290207-1", + "phases": "A", + "to": "l3085395" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "n1139250", + "length": "431.9277", + "name": "line_ln8979346-5", + "phases": "A", + "to": "l2821770" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142800", + "length": "306.1118", + "name": "line_ln6321415-1", + "phases": "B", + "to": "m1142799" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026808", + "length": "16.5010", + "name": "line_ln5558792-1", + "phases": "ABC", + "to": "m1026807" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1027011", + "length": "331.7154", + "name": "line_ln5683819-1", + "phases": "ABC", + "to": "m1027013" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026466", + "length": "20.4437", + "name": "line_ln5865224-1", + "phases": "B", + "to": "d5865224-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p1164481", + "length": "174.1164", + "name": "line_ln6991377-9", + "phases": "A", + "to": "l3729297" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "221-306686", + "length": "112.9021", + "name": "line_ln81018877-1", + "phases": "C", + "to": "l2970258" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p873800", + "length": "15.7145", + "name": "line_ln81018877-2", + "phases": "C", + "to": "221-306686" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1027043", + "length": "30.0085", + "name": "line_ln6019477-1", + "phases": "C", + "to": "d6019477-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3122837", + "length": "494.6796", + "name": "line_ln5744359-1", + "phases": "C", + "to": "l3048222" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3010556", + "length": "348.4062", + "name": "line_ln5593222-1", + "phases": "ABC", + "to": "l2766718" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001306", + "length": "158.2381", + "name": "line_ln2001307-1", + "phases": "A", + "to": "m2001307" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108267", + "length": "626.7009", + "name": "line_ln5472340-1", + "phases": "B", + "to": "m1108266" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3029501", + "length": "6.1212", + "name": "line_ln6505943-3", + "phases": "ABC", + "to": "m3036165" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p901951", + "length": "575.6150", + "name": "line_ln6078691-1", + "phases": "C", + "to": "m1186078" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001208", + "length": "158.2381", + "name": "line_ln2001209-1", + "phases": "C", + "to": "m2001209" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e182748", + "length": "209.8419", + "name": "line_ln6171508-1", + "phases": "ABC", + "to": "l2673346" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1027023", + "length": "246.8572", + "name": "line_ln5865237-1", + "phases": "B", + "to": "l3122815" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026690", + "length": "38.5862", + "name": "line_ln5986938-2", + "phases": "A", + "to": "n1140830" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1125929", + "length": "528.5016", + "name": "line_ln6018332-1", + "phases": "A", + "to": "l2842379" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000903", + "length": "158.2381", + "name": "line_ln2000904-1", + "phases": "C", + "to": "m2000904" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1141478", + "length": "408.7294", + "name": "line_ln5928743-3", + "phases": "B", + "to": "m1142826" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3101787", + "length": "127.6164", + "name": "line_ln5621885-1", + "phases": "A", + "to": "l3027132" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p829960", + "length": "58.0111", + "name": "line_ln5928743-2", + "phases": "B", + "to": "n1141478" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108329", + "length": "500.6620", + "name": "line_ln6262235-1", + "phases": "C", + "to": "l2935552" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069169", + "length": "240.6688", + "name": "line_ln5804791-1", + "phases": "ABC", + "to": "l3010556" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p827564", + "length": "201.7061", + "name": "line_ln6049823-1", + "phases": "C", + "to": "m1069348" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1138598", + "length": "48.6271", + "name": "line_ln6229829-3", + "phases": "ABC", + "to": "m1069376" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026948", + "length": "160.4084", + "name": "line_ln6199516-1", + "phases": "B", + "to": "m1026947" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125905", + "length": "83.7127", + "name": "line_ln6139645-1", + "phases": "B", + "to": "l3142098" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3120502", + "length": "414.6715", + "name": "line_ln6198049-1", + "phases": "A", + "to": "m1026792" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "n1140526", + "length": "1596.4202", + "name": "line_ln81354562-7", + "phases": "C", + "to": "m3763620" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "221-559681", + "length": "43.5385", + "name": "line_ln81354562-6", + "phases": "C", + "to": "n1140526" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p1121282", + "length": "10.1558", + "name": "line_ln81354562-4", + "phases": "C", + "to": "221-559681" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108340", + "length": "43.5061", + "name": "line_ln5774452-1", + "phases": "C", + "to": "l2916605" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108298", + "length": "33.3908", + "name": "line_ln6195132-1", + "phases": "B", + "to": "p893610" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2673320", + "length": "215.4413", + "name": "line_ln5744337-1", + "phases": "B", + "to": "l3048209" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "m1108398", + "length": "10.0950", + "name": "line_ln8979248-1", + "phases": "ABC", + "to": "p850072" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047792", + "length": "313.4731", + "name": "line_ln5653481-1", + "phases": "B", + "to": "l2860500" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009705", + "length": "155.0904", + "name": "line_ln5894192-1", + "phases": "ABC", + "to": "m1009698" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2748131", + "length": "183.2082", + "name": "line_ln6077800-1", + "phases": "B", + "to": "l2729427" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2767409", + "length": "305.9659", + "name": "line_ln6412352-1", + "phases": "B", + "to": "m1142800" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000707", + "length": "158.2381", + "name": "line_ln2000708-1", + "phases": "B", + "to": "m2000708" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1089122", + "length": "102.8439", + "name": "line_ln5544392-1", + "phases": "C", + "to": "p860892" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1009807", + "length": "328.8760", + "name": "line_ln5894237-1", + "phases": "C", + "to": "l2673323" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047432", + "length": "341.2746", + "name": "line_ln5472362-1", + "phases": "A", + "to": "p903360" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1140830", + "length": "28.6734", + "name": "line_ln5986938-3", + "phases": "A", + "to": "l3216351" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069356", + "length": "219.3033", + "name": "line_ln6260025-1", + "phases": "C", + "to": "m1069363" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1027000", + "length": "219.3140", + "name": "line_ln6017294-1", + "phases": "ABC", + "to": "l2916608" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1108413", + "length": "479.3149", + "name": "line_ln81048089-1", + "phases": "A", + "to": "m1108460" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2785538", + "length": "214.6805", + "name": "line_ln6047596-1", + "phases": "A", + "to": "l2897793" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1166366", + "length": "135.0662", + "name": "line_ln5957526-1", + "phases": "ABC", + "to": "m1166368" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2001100", + "length": "568.4991", + "name": "line_ln2001200-1", + "phases": "ABC", + "to": "m2001200" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047828", + "length": "320.4542", + "name": "line_ln5623396-1", + "phases": "B", + "to": "l2710513" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047311", + "length": "34.5032", + "name": "line_ln6138639-1", + "phases": "A", + "to": "l2748158" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026896", + "length": "102.5640", + "name": "line_ln5695520-1", + "phases": "A", + "to": "p860847" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069468", + "length": "239.9032", + "name": "line_ln5532785-1", + "phases": "ABC", + "to": "m1069464" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001003", + "length": "158.2381", + "name": "line_ln2001004-1", + "phases": "B", + "to": "m2001004" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047550", + "length": "327.2390", + "name": "line_ln6350542-1", + "phases": "ABC", + "to": "m1047534" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3160098", + "length": "349.0061", + "name": "line_ln6259984-1", + "phases": "ABC", + "to": "m1089213" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047441", + "length": "190.6389", + "name": "line_ln6411375-1", + "phases": "B", + "to": "l2804258" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089170", + "length": "557.8271", + "name": "line_ln6320328-1", + "phases": "C", + "to": "d6320328-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047831", + "length": "337.7850", + "name": "line_ln5472353-1", + "phases": "B", + "to": "l2710505" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026682", + "length": "301.5594", + "name": "line_ln5623406-1", + "phases": "A", + "to": "l3066816" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1009827", + "length": "499.9987", + "name": "line_ln6495087-1", + "phases": "B", + "to": "m3019248" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047303", + "length": "236.8957", + "name": "line_ln5865272-1", + "phases": "ABC", + "to": "l3027116" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125966", + "length": "223.3853", + "name": "line_ln5896728-1", + "phases": "B", + "to": "l2955005" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069154", + "length": "583.0295", + "name": "line_ln6047561-1", + "phases": "ABC", + "to": "l3197630" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l3645812", + "length": "974.0039", + "name": "line_ln81353934-4", + "phases": "C", + "to": "228-1353934-4_int" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m3763620", + "length": "146.3642", + "name": "line_ln81353934-3", + "phases": "C", + "to": "l3645812" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2822877", + "length": "76.3544", + "name": "line_ln6229829-2", + "phases": "ABC", + "to": "n1138598" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3123509", + "length": "299.0830", + "name": "line_ln6078776-1", + "phases": "ABC", + "to": "m1209772" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026695", + "length": "62.0934", + "name": "line_ln5774470-3", + "phases": "A", + "to": "n1138594" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_2ph_h-2_acsrx2_acsr2_acsr_ln5637597-1", + "continuous_rating_A": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_C": "175.00", + "from": "m1069285", + "length": "5.6414", + "name": "line_ln5698090-2", + "phases": "AC", + "to": "m4113348" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_2ph_h-2_acsrx2_acsr2_acsr_ln5637597-1", + "continuous_rating_A": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_C": "175.00", + "from": "m4113348", + "length": "4.7729", + "name": "line_ln5698090-3", + "phases": "AC", + "to": "m1069284" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "d5774470-2_int", + "length": "460.3480", + "name": "line_ln5774470-2", + "phases": "A", + "to": "m1026679" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047518", + "length": "283.9236", + "name": "line_ln5653463-1", + "phases": "B", + "to": "l2973160" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027071", + "length": "48.3406", + "name": "line_ln5714043-1", + "phases": "C", + "to": "l3235241" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026907", + "length": "184.0030", + "name": "line_ln6138604-1", + "phases": "ABC", + "to": "l3085398" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2673346", + "length": "423.8209", + "name": "line_ln6350577-1", + "phases": "ABC", + "to": "l3254238" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047521", + "length": "66.6264", + "name": "line_ln6108141-1", + "phases": "ABC", + "to": "d6108141-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p827561", + "length": "22.1624", + "name": "line_ln6198014-1", + "phases": "C", + "to": "m1026705" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166362", + "length": "226.2194", + "name": "line_ln5563943-1", + "phases": "A", + "to": "l2898522" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089185", + "length": "23.6818", + "name": "line_ln81098881-1", + "phases": "ABC", + "to": "p850083" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069549", + "length": "18.2762", + "name": "line_ln5894211-1", + "phases": "C", + "to": "p901931" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3085410", + "length": "257.0573", + "name": "line_ln5472388-1", + "phases": "B", + "to": "l2860499" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2841625", + "length": "285.7569", + "name": "line_ln5835139-1", + "phases": "C", + "to": "l3010566" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2973154", + "length": "210.2678", + "name": "line_ln6229797-1", + "phases": "A", + "to": "l2879069" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1089187", + "length": "635.8418", + "name": "line_ln6301089-1", + "phases": "ABC", + "to": "m1089188" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1166368", + "length": "162.0912", + "name": "line_ln5988007-1", + "phases": "A", + "to": "l3086098" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1136661", + "length": "89.2163", + "name": "line_ln6047574-3", + "phases": "C", + "to": "l3029505" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047534", + "length": "25.9381", + "name": "line_ln6047574-2", + "phases": "C", + "to": "n1136661" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "f739845", + "length": "100.0000", + "name": "line_293471", + "phases": "ABC", + "to": "293471" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000409", + "length": "158.2381", + "name": "line_ln2000410-1", + "phases": "A", + "to": "m2000410" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2897793", + "length": "83.9444", + "name": "line_ln6290229-1", + "phases": "A", + "to": "m1069521" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3139121", + "length": "246.0995", + "name": "line_ln6379462-2", + "phases": "ABC", + "to": "l2763153" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2763153", + "length": "158.6196", + "name": "line_ln6379462-3", + "phases": "ABC", + "to": "m1047293" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026954", + "length": "15.0053", + "name": "line_ln5655682-1", + "phases": "B", + "to": "d5655682-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1145956", + "length": "128.7045", + "name": "line_ln5562937-3", + "phases": "A", + "to": "l2729412" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026722", + "length": "233.5590", + "name": "line_ln6206281-1", + "phases": "B", + "to": "m1026736" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047299", + "length": "147.6042", + "name": "line_ln6379462-1", + "phases": "ABC", + "to": "l3139121" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026347", + "length": "33.2441", + "name": "line_ln5562937-2", + "phases": "A", + "to": "n1145956" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069519", + "length": "27.0299", + "name": "line_ln6348946-1", + "phases": "B", + "to": "p901927" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026724", + "length": "21.6052", + "name": "line_ln5472375-1", + "phases": "ABC", + "to": "r18243" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p829956", + "length": "201.5469", + "name": "line_ln5807086-1", + "phases": "C", + "to": "l3160861" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m3036172", + "length": "402.0095", + "name": "line_ln6321419-2", + "phases": "B", + "to": "m1209763" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2841648", + "length": "300.6761", + "name": "line_ln5623428-1", + "phases": "A", + "to": "l2710544" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026877", + "length": "748.7459", + "name": "line_ln5593240-1", + "phases": "A", + "to": "m1026906" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3037538", + "length": "8.2780", + "name": "line_ln6167751-6", + "phases": "A", + "to": "l3027133" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3037453", + "length": "22.4666", + "name": "line_ln5679261-2", + "phases": "A", + "to": "m1026812" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3197630", + "length": "392.7320", + "name": "line_ln6229807-1", + "phases": "ABC", + "to": "l3235256" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3141403", + "length": "195.7589", + "name": "line_ln6167751-3", + "phases": "A", + "to": "m3037538" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1139541", + "length": "49.1036", + "name": "line_ln6413567-3", + "phases": "ABC", + "to": "d6413567-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069557", + "length": "178.0855", + "name": "line_ln6260016-1", + "phases": "B", + "to": "m1069554" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069175", + "length": "142.9991", + "name": "line_ln6413567-2", + "phases": "ABC", + "to": "n1139541" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3125349", + "length": "197.8358", + "name": "line_ln5517002-3", + "phases": "ABC", + "to": "n1138604" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1138604", + "length": "256.3194", + "name": "line_ln5517002-9", + "phases": "ABC", + "to": "l3143999" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m4122657", + "length": "724.3549", + "name": "line_ln6258460-3", + "phases": "C", + "to": "l3027124" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069662", + "length": "200.7092", + "name": "line_ln6350555-1", + "phases": "B", + "to": "l2935547" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3143999", + "length": "9.6809", + "name": "line_ln5517002-2", + "phases": "ABC", + "to": "m1069350" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l3254213", + "length": "209.5194", + "name": "line_ln5532750-1", + "phases": "ABC", + "to": "m1027039" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008746", + "length": "254.2832", + "name": "line_ln6077772-1", + "phases": "B", + "to": "m1008743" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069560", + "length": "289.0837", + "name": "line_ln6198036-1", + "phases": "B", + "to": "l3176660" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209807", + "length": "144.8817", + "name": "line_ln5896798-1", + "phases": "ABC", + "to": "m1209805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m3037452", + "length": "234.4219", + "name": "line_ln6199525-2", + "phases": "A", + "to": "l2973164" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026916", + "length": "35.4405", + "name": "line_ln6320337-1", + "phases": "B", + "to": "l3197634" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047821", + "length": "64.8418", + "name": "line_ln5744328-1", + "phases": "B", + "to": "l2684420" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3030199", + "length": "96.1114", + "name": "line_ln6078767-1", + "phases": "ABC", + "to": "m1125934" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx2_wpal_ln5561444-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "m1047339", + "length": "25.3928", + "name": "line_ln6073648-1", + "phases": "A", + "to": "p895104" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m4277837", + "length": "226.2745", + "name": "line_ln6350533-5", + "phases": "ABC", + "to": "m1069419" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1138597", + "length": "157.0877", + "name": "line_ln5956457-3", + "phases": "ABC", + "to": "m1069411" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069420", + "length": "559.3368", + "name": "line_ln6350533-4", + "phases": "ABC", + "to": "m4277837" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047821", + "length": "676.5494", + "name": "line_ln6017285-1", + "phases": "B", + "to": "l2785512" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069147", + "length": "195.8968", + "name": "line_ln5653450-1", + "phases": "C", + "to": "l2879055" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069417", + "length": "104.2445", + "name": "line_ln5956457-2", + "phases": "ABC", + "to": "n1138597" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3235267", + "length": "209.6888", + "name": "line_ln6380842-1", + "phases": "C", + "to": "m1027068" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069424", + "length": "290.6703", + "name": "line_ln6290203-1", + "phases": "ABC", + "to": "l2935549" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047432", + "length": "158.6794", + "name": "line_ln5895779-1", + "phases": "A", + "to": "l2879075" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026891", + "length": "30.9474", + "name": "line_ln6169249-2", + "phases": "C", + "to": "n1147863" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1147863", + "length": "14.4209", + "name": "line_ln6169249-3", + "phases": "C", + "to": "l3122817" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026713", + "length": "179.2896", + "name": "line_ln5804823-1", + "phases": "A", + "to": "l2785530" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p895075", + "length": "17.7674", + "name": "line_ln5589095-1", + "phases": "C", + "to": "m1108524" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142833", + "length": "171.2490", + "name": "line_ln6109147-1", + "phases": "C", + "to": "l2767408" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047720", + "length": "299.1076", + "name": "line_ln5496764-1", + "phases": "C", + "to": "l2954345" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089177", + "length": "451.9027", + "name": "line_ln6199512-1", + "phases": "C", + "to": "l2729406" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr4_acsr4_acsr_ln5655838-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "p829977", + "length": "245.2879", + "name": "line_ln5655838-1", + "phases": "ABC", + "to": "m1186061" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m4118755", + "length": "144.7875", + "name": "line_ln6015889-4", + "phases": "A", + "to": "m1209782" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125919", + "length": "131.2232", + "name": "line_ln5745347-1", + "phases": "ABC", + "to": "m1125917" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "d5746703-1_int", + "length": "541.1684", + "name": "line_ln5746703-1", + "phases": "C", + "to": "l3160863" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069533", + "length": "28.1262", + "name": "line_ln6407207-1", + "phases": "B", + "to": "p895117" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3104121", + "length": "108.0011", + "name": "line_ln5683815-1", + "phases": "A", + "to": "l3104113" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069489", + "length": "242.2622", + "name": "line_ln5865228-1", + "phases": "C", + "to": "l2933120" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026785", + "length": "97.5781", + "name": "line_ln6255773-1", + "phases": "ABC", + "to": "m1026783" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069620", + "length": "65.3158", + "name": "line_ln6074369-1", + "phases": "B", + "to": "m1069610" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6048634-1_int", + "length": "138.3656", + "name": "line_ln6048634-1", + "phases": "ABC", + "to": "m1186067" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069610", + "length": "150.3002", + "name": "line_ln6074369-2", + "phases": "B", + "to": "l2991929" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069590", + "length": "355.1812", + "name": "line_ln5926320-1", + "phases": "B", + "to": "l3122835" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009832", + "length": "154.8759", + "name": "line_ln5472344-1", + "phases": "B", + "to": "m1009834" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx1/0_tpx_ln5528573-2", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "m1026361", + "length": "60.5901", + "name": "line_ln6411388-1", + "phases": "A", + "to": "l3122825" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr4_acsr_ln5898194-1", + "continuous_rating_A": "300.00", + "continuous_rating_B": "300.00", + "continuous_rating_C": "300.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1186065", + "length": "302.8978", + "name": "line_ln5898194-1", + "phases": "ABC", + "to": "p829977" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2766747", + "length": "116.4582", + "name": "line_ln6153057-1", + "phases": "ABC", + "to": "m1026732" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3082981", + "length": "523.0011", + "name": "line_ln5985351-2", + "phases": "C", + "to": "m1108368" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089162", + "length": "373.4171", + "name": "line_ln6326286-1", + "phases": "C", + "to": "l2991640" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026732", + "length": "266.3666", + "name": "line_ln6153057-2", + "phases": "ABC", + "to": "l3047058" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3216343", + "length": "244.2841", + "name": "line_ln5985351-1", + "phases": "C", + "to": "l3082981" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089160", + "length": "274.9991", + "name": "line_ln6326286-3", + "phases": "C", + "to": "m1089163" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1142814", + "length": "987.2773", + "name": "line_ln5957494-1", + "phases": "ABC", + "to": "m1142810" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2991640", + "length": "336.7198", + "name": "line_ln6326286-2", + "phases": "C", + "to": "m1089160" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108263", + "length": "387.3582", + "name": "line_ln5686078-2", + "phases": "B", + "to": "n1142112" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026327", + "length": "343.5980", + "name": "line_ln5683828-1", + "phases": "B", + "to": "l2841636" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026866", + "length": "36.8061", + "name": "line_ln6341781-2", + "phases": "A", + "to": "n1147862" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1147862", + "length": "293.1960", + "name": "line_ln6341781-3", + "phases": "A", + "to": "l2685805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "n1142112", + "length": "40.7082", + "name": "line_ln5686078-3", + "phases": "B", + "to": "p827496" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009843", + "length": "271.4745", + "name": "line_ln5502550-1", + "phases": "B", + "to": "m1009855" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026327", + "length": "125.7892", + "name": "line_ln6380820-1", + "phases": "B", + "to": "l3122823" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1142843", + "length": "260.3967", + "name": "line_ln5473439-1", + "phases": "A", + "to": "l2692660" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000907", + "length": "158.2381", + "name": "line_ln2000908-1", + "phases": "C", + "to": "m2000908" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047326", + "length": "127.8249", + "name": "line_ln6138613-1", + "phases": "A", + "to": "m1047322" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047507", + "length": "167.4266", + "name": "line_ln5682339-1", + "phases": "ABC", + "to": "196-35813" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047486", + "length": "327.1902", + "name": "line_ln6012046-1", + "phases": "ABC", + "to": "m1047484" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1149236", + "length": "136.3488", + "name": "line_ln6018336-1", + "phases": "ABC", + "to": "m1149235" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047486", + "length": "33.5172", + "name": "line_ln5928543-1", + "phases": "A", + "to": "p827502" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p827542", + "length": "15.2900", + "name": "line_ln6171504-1", + "phases": "B", + "to": "m1026486" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047316", + "length": "48.2165", + "name": "line_ln5593253-1", + "phases": "ABC", + "to": "l3216370" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142871", + "length": "125.1729", + "name": "line_ln6139641-1", + "phases": "ABC", + "to": "m1142874" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1140818", + "length": "35.0690", + "name": "line_ln6108150-2", + "phases": "ABC", + "to": "l2973167" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026695", + "length": "207.3910", + "name": "line_ln6108150-3", + "phases": "ABC", + "to": "n1140818" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3086078", + "length": "242.0043", + "name": "line_ln6015889-3", + "phases": "A", + "to": "m4118755" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047534", + "length": "376.4293", + "name": "line_ln6077781-2", + "phases": "ABC", + "to": "n1136663" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1136663", + "length": "155.2154", + "name": "line_ln6077781-3", + "phases": "ABC", + "to": "d6077791-3_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3120376", + "length": "293.0858", + "name": "line_ln5772710-2", + "phases": "A", + "to": "m1026925" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2991922", + "length": "236.9027", + "name": "line_ln6047583-1", + "phases": "ABC", + "to": "m1047339" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3178997", + "length": "108.0865", + "name": "line_ln6047606-1", + "phases": "C", + "to": "m1026363" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026906", + "length": "350.4979", + "name": "line_ln5772710-1", + "phases": "A", + "to": "l3120376" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069495", + "length": "36.8091", + "name": "line_ln6320324-1", + "phases": "ABC", + "to": "m1069498" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026713", + "length": "43.6243", + "name": "line_ln5653485-1", + "phases": "A", + "to": "l2860504" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166399", + "length": "274.1150", + "name": "line_ln6200441-1", + "phases": "C", + "to": "l3048890" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2841627", + "length": "350.7360", + "name": "line_ln6017298-1", + "phases": "A", + "to": "l3254216" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047325", + "length": "30.1303", + "name": "line_ln6350546-1", + "phases": "ABC", + "to": "m1047324" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047558", + "length": "53.4088", + "name": "line_ln5714052-2", + "phases": "A", + "to": "n1136659" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1136659", + "length": "304.7400", + "name": "line_ln5714052-3", + "phases": "A", + "to": "l3104129" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_wpal_ln6291244-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3160865", + "length": "428.4819", + "name": "line_ln6291244-1", + "phases": "ABC", + "to": "m1142828" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026769", + "length": "28.0543", + "name": "line_ln6290216-1", + "phases": "ABC", + "to": "l2841633" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001012", + "length": "158.2381", + "name": "line_ln2001013-1", + "phases": "B", + "to": "m2001013" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1136354", + "length": "36.5515", + "name": "line_ln5561439-2", + "phases": "ABC", + "to": "l2748144" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047444", + "length": "498.1972", + "name": "line_ln5562928-1", + "phases": "B", + "to": "m1047447" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069519", + "length": "496.2582", + "name": "line_ln5561439-3", + "phases": "ABC", + "to": "n1136354" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026308", + "length": "310.7369", + "name": "line_ln5472366-1", + "phases": "B", + "to": "l2991902" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2991915", + "length": "195.5908", + "name": "line_ln6259997-1", + "phases": "B", + "to": "l2673320" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3048196", + "length": "903.5561", + "name": "line_ln6411366-1", + "phases": "B", + "to": "m1089097" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108490", + "length": "30.1595", + "name": "line_ln6292600-1", + "phases": "A", + "to": "p829798" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166366", + "length": "29.2992", + "name": "line_ln6140925-1", + "phases": "C", + "to": "p830058" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000400", + "length": "158.2381", + "name": "line_ln2000401-1", + "phases": "A", + "to": "m2000401" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026773", + "length": "386.7213", + "name": "line_ln6199040-1", + "phases": "A", + "to": "l3195751" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "190-7361", + "length": "19.0960", + "name": "line_ln5502532-1", + "phases": "ABC", + "to": "d5472350-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026486", + "length": "35.4435", + "name": "line_ln5926315-1", + "phases": "B", + "to": "m1026488" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026732", + "length": "221.3403", + "name": "line_ln5758684-1", + "phases": "A", + "to": "m1026734" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026880", + "length": "113.3993", + "name": "line_ln5623425-1", + "phases": "A", + "to": "l2766748" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3048199", + "length": "278.1680", + "name": "line_ln6259980-1", + "phases": "B", + "to": "m1047837" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "n1230122", + "length": "416.6198", + "name": "line_ln81048102-4", + "phases": "A", + "to": "l3233412" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026886", + "length": "5.9633", + "name": "line_ln5526906-2", + "phases": "ABC", + "to": "l3120484" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1027027", + "length": "551.2739", + "name": "line_ln6290201-1", + "phases": "C", + "to": "m1027014" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "221-282819", + "length": "18.4090", + "name": "line_ln81048102-6", + "phases": "A", + "to": "n1230122" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3120484", + "length": "339.5389", + "name": "line_ln5526906-1", + "phases": "ABC", + "to": "m1026896" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "p904451", + "length": "18.0480", + "name": "line_ln81048102-5", + "phases": "A", + "to": "221-282819" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1140518", + "length": "131.8875", + "name": "line_ln5651977-4", + "phases": "A", + "to": "l2764403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827549", + "length": "72.3934", + "name": "line_ln5651977-3", + "phases": "A", + "to": "n1140518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "221-242079", + "length": "186.1664", + "name": "line_ln8940663-1", + "phases": "ABC", + "to": "l3011293" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137988", + "length": "134.1902", + "name": "line_ln5835136-3", + "phases": "A", + "to": "l2991908" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047737", + "length": "64.6378", + "name": "line_ln5835136-2", + "phases": "A", + "to": "n1137988" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2710537", + "length": "269.3974", + "name": "line_ln6047602-1", + "phases": "B", + "to": "m1008752" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026805", + "length": "276.1817", + "name": "line_ln5683859-1", + "phases": "A", + "to": "l3010585" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026764", + "length": "300.2488", + "name": "line_ln5774459-1", + "phases": "A", + "to": "l3178976" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2764403", + "length": "193.1124", + "name": "line_ln5651977-2", + "phases": "A", + "to": "m1047623" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089155", + "length": "261.9101", + "name": "line_ln6199510-1", + "phases": "C", + "to": "l2935550" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l3233412", + "length": "56.6344", + "name": "line_ln81048102-2", + "phases": "A", + "to": "m1108413" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108328", + "length": "69.7742", + "name": "line_ln5803287-1", + "phases": "C", + "to": "l2875754" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3235246", + "length": "253.2882", + "name": "line_ln5714047-1", + "phases": "B", + "to": "l2710512" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx1/0_3w_cs_ln5775368-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "l3048887", + "length": "99.2932", + "name": "line_ln5775368-1", + "phases": "B", + "to": "m1125966" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026852", + "length": "338.6963", + "name": "line_ln5895788-1", + "phases": "ABC", + "to": "l3197646" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_wpal_ln5833622-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1209822", + "length": "338.1840", + "name": "line_ln5866186-1", + "phases": "C", + "to": "l2992556" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p827522", + "length": "34.3217", + "name": "line_ln5504713-2", + "phases": "A", + "to": "n1142111" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1142111", + "length": "171.5302", + "name": "line_ln5504713-3", + "phases": "A", + "to": "l2991912" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027019", + "length": "673.5960", + "name": "line_ln5924800-1", + "phases": "B", + "to": "l2801949" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069731", + "length": "564.9633", + "name": "line_ln5774446-1", + "phases": "B", + "to": "m1069730" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089118", + "length": "148.6123", + "name": "line_ln6047570-1", + "phases": "A", + "to": "l3048208" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047777", + "length": "357.8500", + "name": "line_ln6320334-1", + "phases": "B", + "to": "l2748131" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p901931", + "length": "15.9281", + "name": "line_ln5621849-1", + "phases": "C", + "to": "m1069548" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1027100", + "length": "558.6263", + "name": "line_ln6379374-1", + "phases": "A", + "to": "m1027109" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069199", + "length": "235.4954", + "name": "line_ln5986932-1", + "phases": "C", + "to": "l2785525" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2689678", + "length": "1302.0741", + "name": "line_ln5561432-2", + "phases": "B", + "to": "m1026463" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047374", + "length": "292.0716", + "name": "line_ln5561432-1", + "phases": "B", + "to": "l2689678" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026726", + "length": "239.1128", + "name": "line_ln5833721-1", + "phases": "B", + "to": "l2876847" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx2_wpal_ln5561444-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "n1139537", + "length": "343.4551", + "name": "line_ln5528572-3", + "phases": "A", + "to": "l3122826" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1089103", + "length": "210.0714", + "name": "line_ln6138597-1", + "phases": "B", + "to": "l3048196" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108278", + "length": "217.6137", + "name": "line_ln5594245-1", + "phases": "B", + "to": "l2805036" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p827555", + "length": "26.0702", + "name": "line_ln5806921-1", + "phases": "B", + "to": "m1047794" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx2_wpal_ln5561444-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "p895104", + "length": "46.6901", + "name": "line_ln5528572-2", + "phases": "A", + "to": "n1139537" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3254873", + "length": "111.2883", + "name": "line_ln6381766-1", + "phases": "C", + "to": "m1166393" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026984", + "length": "236.2387", + "name": "line_ln5593229-1", + "phases": "ABC", + "to": "m1026986" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p901894", + "length": "24.5774", + "name": "line_ln5682325-1", + "phases": "A", + "to": "m1026857" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026665", + "length": "477.4857", + "name": "line_ln6137085-1", + "phases": "A", + "to": "l3232933" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069532", + "length": "225.5912", + "name": "line_ln5924702-1", + "phases": "B", + "to": "l2691965" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000413", + "length": "158.2381", + "name": "line_ln2000414-1", + "phases": "A", + "to": "m2000414" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108266", + "length": "452.2859", + "name": "line_ln5835123-1", + "phases": "B", + "to": "m1108265" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2879071", + "length": "262.0272", + "name": "line_ln5865242-1", + "phases": "B", + "to": "l3029504" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047323", + "length": "131.6118", + "name": "line_ln5653468-1", + "phases": "A", + "to": "l3010569" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069398", + "length": "303.6814", + "name": "line_ln6229789-1", + "phases": "A", + "to": "l3160101" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr1/0_tpx_ln6229827-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p1197121", + "length": "158.0192", + "name": "line_ln7064338-3", + "phases": "C", + "to": "l2805031" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2841622", + "length": "881.5843", + "name": "line_ln5956465-1", + "phases": "A", + "to": "l2804254" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3048207", + "length": "9.5848", + "name": "line_ln6505939-4", + "phases": "B", + "to": "m3036164" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2785524", + "length": "68.5582", + "name": "line_ln6138607-1", + "phases": "C", + "to": "m1069201" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009838", + "length": "281.6019", + "name": "line_ln6350551-1", + "phases": "B", + "to": "m1009843" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026783", + "length": "26.7434", + "name": "line_ln6290214-1", + "phases": "C", + "to": "m1026784" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1139255", + "length": "12.3006", + "name": "line_ln5898055-3", + "phases": "A", + "to": "p827500" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2804269", + "length": "203.6500", + "name": "line_ln5591703-1", + "phases": "B", + "to": "l2989564" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069424", + "length": "34.9972", + "name": "line_ln5898055-2", + "phases": "A", + "to": "n1139255" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p827525", + "length": "413.2954", + "name": "line_ln5000chp-1", + "phases": "ABC", + "to": "m1026chp-1" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3029495", + "length": "169.1207", + "name": "line_ln5565090-1", + "phases": "B", + "to": "d5565090-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3235254", + "length": "332.1264", + "name": "line_ln6411383-1", + "phases": "ABC", + "to": "m1026855" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069218", + "length": "11.5077", + "name": "line_ln6077776-1", + "phases": "C", + "to": "l2860486" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3179682", + "length": "90.9744", + "name": "line_ln5654484-1", + "phases": "C", + "to": "l2786274" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3216361", + "length": "306.7484", + "name": "line_ln5683846-1", + "phases": "B", + "to": "l2729434" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx1/0_3w_cs_ln5686244-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "p903354", + "length": "147.2496", + "name": "line_ln5686246-1", + "phases": "A", + "to": "l2936270" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1108492", + "length": "23.9946", + "name": "line_ln5503478-2", + "phases": "A", + "to": "n1142102" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1142102", + "length": "172.3470", + "name": "line_ln5503478-3", + "phases": "A", + "to": "l2804956" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069572", + "length": "280.4772", + "name": "line_ln5653477-1", + "phases": "B", + "to": "l3066826" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089165", + "length": "415.8776", + "name": "line_ln5562922-1", + "phases": "C", + "to": "l3197627" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1009763", + "length": "271.2832", + "name": "line_ln6019480-1", + "phases": "ABC", + "to": "e182733" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2989432", + "length": "268.7833", + "name": "line_ln6318427-2", + "phases": "B", + "to": "l3066830" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027071", + "length": "218.1548", + "name": "line_ln5562957-1", + "phases": "C", + "to": "l3235267" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2710515", + "length": "454.8416", + "name": "line_ln5895775-1", + "phases": "C", + "to": "m1027027" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125916", + "length": "227.5494", + "name": "line_ln5896827-1", + "phases": "B", + "to": "l2879767" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3048888", + "length": "362.7475", + "name": "line_ln5591716-1", + "phases": "C", + "to": "m1149249" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln5775367-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "l2876813", + "length": "262.1360", + "name": "line_ln6015809-1", + "phases": "A", + "to": "l2785531" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2785516", + "length": "495.8910", + "name": "line_ln5683811-1", + "phases": "B", + "to": "m1108274" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209753", + "length": "507.6622", + "name": "line_ln6351518-1", + "phases": "B", + "to": "m1209752" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1125902", + "length": "31.2133", + "name": "line_ln5595583-1", + "phases": "A", + "to": "p829986" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1136032", + "length": "305.5016", + "name": "line_ln5958700-3", + "phases": "A", + "to": "m1089204" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827498", + "length": "105.3386", + "name": "line_ln5958700-2", + "phases": "A", + "to": "n1136032" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047809", + "length": "240.7436", + "name": "line_ln6318427-1", + "phases": "B", + "to": "l2989432" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026393", + "length": "212.3187", + "name": "line_ln5865251-1", + "phases": "A", + "to": "l2935559" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1125904", + "length": "62.5290", + "name": "line_ln6439987-1", + "phases": "A", + "to": "m1125903" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166370", + "length": "806.9534", + "name": "line_ln6261048-1", + "phases": "C", + "to": "l3067506" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026329", + "length": "299.2141", + "name": "line_ln5502541-1", + "phases": "A", + "to": "l3104135" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2710512", + "length": "476.4333", + "name": "line_ln6380811-1", + "phases": "B", + "to": "m1047828" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026330", + "length": "118.3042", + "name": "line_ln5835149-1", + "phases": "ABC", + "to": "m1026329" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "p827528", + "length": "20.9632", + "name": "line_ln8945011-1", + "phases": "C", + "to": "221-240988" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108317", + "length": "219.0668", + "name": "line_ln5591814-1", + "phases": "C", + "to": "l2820590" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026820", + "length": "294.5283", + "name": "line_ln6411406-1", + "phases": "A", + "to": "m1026823" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p895087", + "length": "27.1523", + "name": "line_ln5621858-1", + "phases": "A", + "to": "m1089205" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069411", + "length": "285.9482", + "name": "line_ln5956487-1", + "phases": "ABC", + "to": "l2766741" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027068", + "length": "430.8037", + "name": "line_ln6138629-1", + "phases": "C", + "to": "m1027066" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "226-23751", + "length": "137.5970", + "name": "line_ln6291252-2", + "phases": "ABC", + "to": "l2955081" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3728042", + "length": "216.9247", + "name": "line_ln6991380-4", + "phases": "A", + "to": "l3728043" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047825", + "length": "229.9986", + "name": "line_ln6076240-1", + "phases": "B", + "to": "l2726975" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125902", + "length": "248.9134", + "name": "line_ln6291252-1", + "phases": "ABC", + "to": "226-23751" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2729428", + "length": "241.8547", + "name": "line_ln5926324-1", + "phases": "A", + "to": "m1026648" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3949154", + "length": "240.1711", + "name": "line_ln6991380-2", + "phases": "A", + "to": "l3728042" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069509", + "length": "222.2092", + "name": "line_ln6077798-1", + "phases": "ABC", + "to": "l2766738" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_tpx_ln5531226-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1027042", + "length": "226.7467", + "name": "line_ln5531226-1", + "phases": "C", + "to": "l3235248" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069500", + "length": "688.9363", + "name": "line_ln5623416-1", + "phases": "ABC", + "to": "m1047574" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3226771", + "length": "531.0953", + "name": "line_ln6196270-2", + "phases": "A", + "to": "l3189190" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069595", + "length": "461.5781", + "name": "line_ln6046049-1", + "phases": "B", + "to": "m1069607" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3029503", + "length": "206.7842", + "name": "line_ln5683824-1", + "phases": "ABC", + "to": "m1069202" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001200", + "length": "158.2381", + "name": "line_ln2001201-1", + "phases": "C", + "to": "m2001201" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3195356", + "length": "237.1567", + "name": "line_ln5501088-1", + "phases": "ABC", + "to": "m1069189" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108340", + "length": "282.1691", + "name": "line_ln5653455-1", + "phases": "C", + "to": "l2822865" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3037441", + "length": "106.4225", + "name": "line_ln6196270-4", + "phases": "A", + "to": "n1140824" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108400", + "length": "753.7509", + "name": "line_ln6422011-1", + "phases": "ABC", + "to": "m1108401" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1140824", + "length": "653.5979", + "name": "line_ln6196270-5", + "phases": "A", + "to": "l3226771" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026308", + "length": "347.1012", + "name": "line_ln5562935-1", + "phases": "B", + "to": "l2897764" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2822872", + "length": "304.5404", + "name": "line_ln6169261-1", + "phases": "ABC", + "to": "m1047490" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3086002", + "length": "282.2043", + "name": "line_ln6048520-1", + "phases": "C", + "to": "m1126031" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3029498", + "length": "287.7736", + "name": "line_ln5623403-1", + "phases": "ABC", + "to": "m1089143" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069154", + "length": "128.8048", + "name": "line_ln5623393-1", + "phases": "A", + "to": "l2804251" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026361", + "length": "229.5418", + "name": "line_ln5744340-1", + "phases": "A", + "to": "m1026366" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1108274", + "length": "201.0763", + "name": "line_ln5926292-1", + "phases": "B", + "to": "m1108269" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108508", + "length": "299.9993", + "name": "line_ln5675121-1", + "phases": "C", + "to": "l3097861" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001213", + "length": "158.2381", + "name": "line_ln2001214-1", + "phases": "C", + "to": "m2001214" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2860493", + "length": "287.4330", + "name": "line_ln6077785-1", + "phases": "A", + "to": "l3085403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001311", + "length": "158.2381", + "name": "line_ln2001312-1", + "phases": "A", + "to": "m2001312" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2710516", + "length": "280.5846", + "name": "line_ln6411374-1", + "phases": "A", + "to": "l2691944" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001004", + "length": "158.2381", + "name": "line_ln2001005-1", + "phases": "B", + "to": "m2001005" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2895496", + "length": "165.8834", + "name": "line_ln6440079-1", + "phases": "C", + "to": "m1142873" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069205", + "length": "119.0997", + "name": "line_ln5472358-1", + "phases": "ABC", + "to": "m1069208" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2711226", + "length": "256.4569", + "name": "line_ln5654471-1", + "phases": "ABC", + "to": "m1142819" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026926", + "length": "19.0510", + "name": "line_ln5532749-2", + "phases": "A", + "to": "n1138000" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx1/0_tpx_ln6138596-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069187", + "length": "177.3964", + "name": "line_ln6108127-1", + "phases": "A", + "to": "l2785519" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108532", + "length": "305.0665", + "name": "line_ln5563853-1", + "phases": "ABC", + "to": "m1108535" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142826", + "length": "299.8254", + "name": "line_ln6018329-1", + "phases": "B", + "to": "l3160864" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1138000", + "length": "164.0063", + "name": "line_ln5532749-3", + "phases": "A", + "to": "l2766720" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "221-240991", + "length": "660.3915", + "name": "line_ln8939783-1", + "phases": "A", + "to": "l3066817" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2804262", + "length": "245.0043", + "name": "line_ln6320343-1", + "phases": "A", + "to": "l2841639" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142875", + "length": "860.4262", + "name": "line_ln6318761-1", + "phases": "ABC", + "to": "m1125944" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027073", + "length": "314.3905", + "name": "line_ln6077808-1", + "phases": "C", + "to": "m1027071" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069365", + "length": "268.4995", + "name": "line_ln5804788-1", + "phases": "C", + "to": "l3235243" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1139551", + "length": "74.1116", + "name": "line_ln5714056-2", + "phases": "ABC", + "to": "m1026695" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026702", + "length": "422.3578", + "name": "line_ln5714056-3", + "phases": "ABC", + "to": "n1139551" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2898495", + "length": "454.3282", + "name": "line_ln6411010-1", + "phases": "ABC", + "to": "m1108400" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069213", + "length": "316.7901", + "name": "line_ln6259993-1", + "phases": "ABC", + "to": "m1069217" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1027023", + "length": "145.5857", + "name": "line_ln5926302-1", + "phases": "ABC", + "to": "l3254213" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e193509", + "length": "204.7514", + "name": "line_ln5594236-1", + "phases": "ABC", + "to": "m1142839" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000404", + "length": "158.2381", + "name": "line_ln2000405-1", + "phases": "A", + "to": "m2000405" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1149225", + "length": "223.2941", + "name": "line_ln6381851-1", + "phases": "B", + "to": "l2767409" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069488", + "length": "240.6090", + "name": "line_ln6380802-1", + "phases": "C", + "to": "m1069489" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1089188", + "length": "248.4597", + "name": "line_ln5835132-1", + "phases": "C", + "to": "l2673306" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1126016", + "length": "116.5975", + "name": "line_ln5531333-1", + "phases": "A", + "to": "l3120534" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047593", + "length": "32.2077", + "name": "line_ln5661951-2", + "phases": "A", + "to": "n1136993" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1136993", + "length": "70.5968", + "name": "line_ln5661951-3", + "phases": "A", + "to": "l2972930" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108298", + "length": "35.2943", + "name": "line_ln5807090-1", + "phases": "B", + "to": "m1108299" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p901972", + "length": "295.5487", + "name": "line_ln5954983-1", + "phases": "ABC", + "to": "m1009726" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1141475", + "length": "26.1401", + "name": "line_ln5502536-3", + "phases": "C", + "to": "m1009655" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026655", + "length": "33.9177", + "name": "line_ln5502536-2", + "phases": "C", + "to": "n1141475" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026736", + "length": "350.5986", + "name": "line_ln6418150-1", + "phases": "B", + "to": "m1026745" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026779", + "length": "299.7982", + "name": "line_ln5956474-1", + "phases": "A", + "to": "l2973169" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008758", + "length": "392.6162", + "name": "line_ln5804829-1", + "phases": "B", + "to": "l2710537" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l2990098", + "length": "161.7583", + "name": "line_ln81048106-3", + "phases": "A", + "to": "m1108462" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1139254", + "length": "90.5841", + "name": "line_ln5534965-3", + "phases": "A", + "to": "l3122811" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827499", + "length": "20.9188", + "name": "line_ln5534965-2", + "phases": "A", + "to": "n1139254" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2729429", + "length": "388.5133", + "name": "line_ln5895807-1", + "phases": "A", + "to": "l3197647" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047834", + "length": "181.4304", + "name": "line_ln6169243-1", + "phases": "B", + "to": "m1047835" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "l2821087", + "length": "322.2531", + "name": "line_ln81048106-2", + "phases": "A", + "to": "l2990098" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2710509", + "length": "338.4291", + "name": "line_ln6506319-2", + "phases": "C", + "to": "m1108364" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1108460", + "length": "138.2598", + "name": "line_ln81048106-1", + "phases": "A", + "to": "l2821087" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2820583", + "length": "505.6169", + "name": "line_ln5561521-1", + "phases": "C", + "to": "m1108354" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1108505", + "length": "12.0758", + "name": "line_ln5500985-1", + "phases": "A", + "to": "p901946" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m3037455", + "length": "287.9590", + "name": "line_ln5624376-2", + "phases": "C", + "to": "l3086074" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166395", + "length": "265.2825", + "name": "line_ln5960126-1", + "phases": "C", + "to": "m1166400" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1139260", + "length": "335.3192", + "name": "line_ln5865268-3", + "phases": "ABC", + "to": "l2925506" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047672", + "length": "52.5814", + "name": "line_ln5774455-2", + "phases": "A", + "to": "n1136999" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1136999", + "length": "28.9228", + "name": "line_ln5774455-3", + "phases": "A", + "to": "m1047671" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069457", + "length": "22.4344", + "name": "line_ln5865268-2", + "phases": "ABC", + "to": "n1139260" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069588", + "length": "362.3322", + "name": "line_ln5803283-1", + "phases": "B", + "to": "m1069590" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3216344", + "length": "101.9772", + "name": "line_ln5593247-1", + "phases": "B", + "to": "l2860501" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047795", + "length": "180.4526", + "name": "line_ln5744353-1", + "phases": "B", + "to": "l3160117" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3122826", + "length": "340.1375", + "name": "line_ln6108149-1", + "phases": "A", + "to": "m1047358" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000711", + "length": "158.2381", + "name": "line_ln2000712-1", + "phases": "B", + "to": "m2000712" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047401", + "length": "183.9115", + "name": "line_ln6388581-2", + "phases": "A", + "to": "l2748132" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3254216", + "length": "109.9871", + "name": "line_ln6388581-1", + "phases": "A", + "to": "m1047401" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069189", + "length": "285.3908", + "name": "line_ln6017300-1", + "phases": "C", + "to": "l2860487" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069208", + "length": "76.8777", + "name": "line_ln5683820-1", + "phases": "C", + "to": "l2691945" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx1/0_tpx_ln5895784-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "l3010569", + "length": "173.0722", + "name": "line_ln5895784-1", + "phases": "A", + "to": "m1047335" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108315", + "length": "29.8847", + "name": "line_ln6351523-3", + "phases": "C", + "to": "n1230121" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3160878", + "length": "638.4642", + "name": "line_ln5745360-1", + "phases": "C", + "to": "l2917336" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1230121", + "length": "49.4345", + "name": "line_ln6351523-2", + "phases": "C", + "to": "m1108316" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108344", + "length": "408.0521", + "name": "line_ln5472349-1", + "phases": "C", + "to": "m1108353" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009807", + "length": "202.2666", + "name": "line_ln5742836-1", + "phases": "ABC", + "to": "m1009805" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209800", + "length": "247.3910", + "name": "line_ln5654466-1", + "phases": "ABC", + "to": "m1209797" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026343", + "length": "174.1151", + "name": "line_ln5986936-1", + "phases": "A", + "to": "l2748135" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009839", + "length": "212.9986", + "name": "line_ln5647725-1", + "phases": "B", + "to": "l2673326" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1009691", + "length": "98.4289", + "name": "line_ln5562940-1", + "phases": "A", + "to": "l2748140" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069187", + "length": "283.7266", + "name": "line_ln6320330-1", + "phases": "A", + "to": "l2748129" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047699", + "length": "23.4358", + "name": "line_ln6392124-1", + "phases": "A", + "to": "p859135" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047786", + "length": "207.1650", + "name": "line_ln5804797-1", + "phases": "B", + "to": "m1026969" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2842383", + "length": "173.7486", + "name": "line_ln6023352-1", + "phases": "ABC", + "to": "d6023352-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108300", + "length": "233.2926", + "name": "line_ln6412366-1", + "phases": "B", + "to": "l2711234" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069131", + "length": "28.7297", + "name": "line_ln5625548-1", + "phases": "A", + "to": "p827534" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3178981", + "length": "711.2781", + "name": "line_ln5683833-1", + "phases": "B", + "to": "m1047368" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr1/0_tpx_ln6229827-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1125959", + "length": "212.6504", + "name": "line_ln5651995-1", + "phases": "C", + "to": "m1125974" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166369", + "length": "195.4769", + "name": "line_ln6046058-1", + "phases": "A", + "to": "l2839305" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142821", + "length": "5.3590", + "name": "line_ln6351510-1", + "phases": "ABC", + "to": "l2711226" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026655", + "length": "16.3975", + "name": "line_ln5865246-2", + "phases": "A", + "to": "n1141474" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1141474", + "length": "77.7460", + "name": "line_ln5865246-3", + "phases": "A", + "to": "l2710518" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2860483", + "length": "249.5101", + "name": "line_ln5593225-1", + "phases": "B", + "to": "l3141397" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m3032977", + "length": "1009.2343", + "name": "line_ln6504018-1", + "phases": "ABC", + "to": "m1166366" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089199", + "length": "266.5853", + "name": "line_ln6350529-1", + "phases": "ABC", + "to": "m1089197" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr4_dpx_ln5744331-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "200.00", + "from": "m1047478", + "length": "99.0711", + "name": "line_ln5744331-1", + "phases": "C", + "to": "l3254209" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "e182730", + "length": "78.8197", + "name": "line_ln5898059-3", + "phases": "A", + "to": "n1142109" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1209819", + "length": "163.9624", + "name": "line_ln5952392-1", + "phases": "C", + "to": "l2936216" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108340", + "length": "335.9584", + "name": "line_ln5956461-1", + "phases": "C", + "to": "l3085394" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1142109", + "length": "229.6139", + "name": "line_ln5898059-2", + "phases": "A", + "to": "l2729429" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026979", + "length": "232.0751", + "name": "line_ln6290210-1", + "phases": "ABC", + "to": "m1026984" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2673343", + "length": "355.0624", + "name": "line_ln5591805-1", + "phases": "B", + "to": "l2764436" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125934", + "length": "207.9275", + "name": "line_ln5503576-1", + "phases": "ABC", + "to": "l2730163" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142801", + "length": "329.6649", + "name": "line_ln6139658-1", + "phases": "B", + "to": "l3217064" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3082992", + "length": "195.5266", + "name": "line_ln6167748-1", + "phases": "A", + "to": "m1047406" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "q14413", + "length": "342.0545", + "name": "line_ln5532758-3", + "phases": "ABC", + "to": "m1026886" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047768", + "length": "13.5736", + "name": "line_ln5565094-1", + "phases": "B", + "to": "p827554" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1147861", + "length": "200.7999", + "name": "line_ln6440004-3", + "phases": "C", + "to": "l3122818" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010017", + "length": "593.1978", + "name": "line_ln5768778-1", + "phases": "A", + "to": "m1010016" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3016088", + "length": "153.0002", + "name": "line_ln6492184-2", + "phases": "A", + "to": "l3312692" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010016", + "length": "463.6448", + "name": "line_ln5768778-2", + "phases": "A", + "to": "l3251807" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026844", + "length": "24.9060", + "name": "line_ln6440004-2", + "phases": "C", + "to": "n1147861" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026496", + "length": "151.0435", + "name": "line_ln6229812-1", + "phases": "B", + "to": "l2691959" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2955006", + "length": "196.5469", + "name": "line_ln5714915-1", + "phases": "C", + "to": "l2692600" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069136", + "length": "159.2685", + "name": "line_ln5774468-1", + "phases": "C", + "to": "l2841638" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2822870", + "length": "209.0943", + "name": "line_ln6047579-1", + "phases": "C", + "to": "l2766725" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069189", + "length": "84.7397", + "name": "line_ln6108136-1", + "phases": "ABC", + "to": "m1069184" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "196-29518", + "length": "296.7137", + "name": "line_ln5959087-1", + "phases": "ABC", + "to": "l3122816" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108264", + "length": "328.0653", + "name": "line_ln5714038-1", + "phases": "B", + "to": "m1108263" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069348", + "length": "317.9078", + "name": "line_ln5744366-1", + "phases": "C", + "to": "m1069356" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000702", + "length": "158.2381", + "name": "line_ln2000703-1", + "phases": "B", + "to": "m2000703" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047720", + "length": "6.2970", + "name": "line_ln5894206-1", + "phases": "ABC", + "to": "l2895449" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2729427", + "length": "148.5835", + "name": "line_ln5472393-1", + "phases": "B", + "to": "m1047786" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1137005", + "length": "45.3769", + "name": "line_ln5894206-4", + "phases": "ABC", + "to": "m1047724" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2895449", + "length": "292.3263", + "name": "line_ln5894206-3", + "phases": "ABC", + "to": "n1137005" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047787", + "length": "242.8218", + "name": "line_ln5985348-1", + "phases": "B", + "to": "l3157710" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3157710", + "length": "167.7749", + "name": "line_ln5985348-2", + "phases": "B", + "to": "m1047793" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2970811", + "length": "197.2126", + "name": "line_ln5924720-2", + "phases": "A", + "to": "m1027121" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026969", + "length": "126.1654", + "name": "line_ln5532745-1", + "phases": "B", + "to": "m1026972" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027121", + "length": "102.1165", + "name": "line_ln5924720-1", + "phases": "A", + "to": "m1027123" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1139264", + "length": "153.2880", + "name": "line_ln5895771-3", + "phases": "A", + "to": "m1069465" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069466", + "length": "84.2943", + "name": "line_ln5895771-2", + "phases": "A", + "to": "n1139264" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047368", + "length": "406.5792", + "name": "line_ln6411392-1", + "phases": "B", + "to": "l2841620" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p827496", + "length": "14.9981", + "name": "line_ln6292463-1", + "phases": "B", + "to": "m1108262" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026880", + "length": "241.0539", + "name": "line_ln6290241-1", + "phases": "A", + "to": "m1026874" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3103822", + "length": "384.1112", + "name": "line_ln6163390-1", + "phases": "ABC", + "to": "m1047577" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr2_acsr_ln5741170-3", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1026700", + "length": "36.5829", + "name": "line_ln5741170-3", + "phases": "C", + "to": "n1140821" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr2_acsr_ln5741170-3", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "n1140821", + "length": "52.0171", + "name": "line_ln5741170-2", + "phases": "C", + "to": "l3189188" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3066813", + "length": "282.6291", + "name": "line_ln6380815-1", + "phases": "B", + "to": "l2991910" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1027004", + "length": "478.6856", + "name": "line_ln5986923-1", + "phases": "B", + "to": "l2897765" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1009651", + "length": "29.6267", + "name": "line_ln5800693-1", + "phases": "ABC", + "to": "m1009650" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069226", + "length": "34.3085", + "name": "line_ln6231994-1", + "phases": "C", + "to": "m1069227" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047548", + "length": "63.5141", + "name": "line_ln6169252-1", + "phases": "ABC", + "to": "m1047552" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069543", + "length": "221.6746", + "name": "line_ln5956483-1", + "phases": "B", + "to": "m1069535" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001302", + "length": "158.2381", + "name": "line_ln2001303-1", + "phases": "A", + "to": "m2001303" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1140825", + "length": "66.9421", + "name": "line_ln5895816-3", + "phases": "ABC", + "to": "l3216368" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026706", + "length": "49.6115", + "name": "line_ln5895816-2", + "phases": "ABC", + "to": "n1140825" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "e206210", + "length": "15.1001", + "name": "line_ln5591697-1", + "phases": "C", + "to": "m1069225" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1166368", + "length": "344.7777", + "name": "line_ln5715052-1", + "phases": "ABC", + "to": "l2973833" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr1/0_acsr_ln5852082-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1026824", + "length": "22.1400", + "name": "line_ln5852082-1", + "phases": "C", + "to": "p859694" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026704", + "length": "537.8642", + "name": "line_ln5835145-1", + "phases": "B", + "to": "l2841634" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3067448", + "length": "835.0036", + "name": "line_ln6073916-1", + "phases": "C", + "to": "l2763407" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1089138", + "length": "323.3217", + "name": "line_ln5653459-1", + "phases": "A", + "to": "l2841628" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089112", + "length": "128.9074", + "name": "line_ln5863823-1", + "phases": "ABC", + "to": "l3195356" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047744", + "length": "2.7631", + "name": "line_ln5865233-1", + "phases": "A", + "to": "l3178971" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2767414", + "length": "478.0245", + "name": "line_ln6015795-1", + "phases": "C", + "to": "m1108331" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108402", + "length": "423.1454", + "name": "line_ln6422015-1", + "phases": "ABC", + "to": "m1108405" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001204", + "length": "158.2381", + "name": "line_ln2001205-1", + "phases": "C", + "to": "m2001205" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000408", + "length": "158.2381", + "name": "line_ln2000409-1", + "phases": "A", + "to": "m2000409" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026792", + "length": "179.6169", + "name": "line_ln5501000-1", + "phases": "A", + "to": "l2895461" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026344", + "length": "423.7401", + "name": "line_ln5593238-1", + "phases": "A", + "to": "l2991919" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "l2897554", + "length": "393.6651", + "name": "line_ln8961797-2", + "phases": "C", + "to": "193-46661" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069496", + "length": "195.3666", + "name": "line_ln6047557-2", + "phases": "ABC", + "to": "n1134475" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026896", + "length": "47.3277", + "name": "line_ln6201697-1", + "phases": "ABC", + "to": "p827525" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1134475", + "length": "109.3349", + "name": "line_ln6047557-3", + "phases": "ABC", + "to": "m1069497" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1140828", + "length": "39.9354", + "name": "line_ln5472403-2", + "phases": "ABC", + "to": "m1026708" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1047633", + "length": "590.0089", + "name": "line_ln8961797-1", + "phases": "C", + "to": "l2897554" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1009724", + "length": "149.4031", + "name": "line_ln5744344-1", + "phases": "ABC", + "to": "m1009720" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026706", + "length": "391.3713", + "name": "line_ln5472403-3", + "phases": "ABC", + "to": "n1140828" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026700", + "length": "121.4181", + "name": "line_ln6438273-2", + "phases": "ABC", + "to": "n1140823" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "n1140823", + "length": "198.3470", + "name": "line_ln6438273-3", + "phases": "ABC", + "to": "l2851933" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089202", + "length": "206.7328", + "name": "line_ln5679695-1", + "phases": "ABC", + "to": "m1089203" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125990", + "length": "208.8994", + "name": "line_ln06534433_sw", + "phases": "ABC", + "to": "l3067478" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx2_acsr_ln5775367-1", + "continuous_rating_A": "150.00", + "emergency_rating_A": "150.00", + "from": "l3216358", + "length": "150.1893", + "name": "line_ln6350560-1", + "phases": "A", + "to": "m1026826" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2876812", + "length": "233.9652", + "name": "line_ln6106582-1", + "phases": "A", + "to": "l2970811" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108265", + "length": "3179.5518", + "name": "line_ln5926296-1", + "phases": "B", + "to": "m1108264" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3160868", + "length": "87.5592", + "name": "line_ln6139649-1", + "phases": "B", + "to": "l3082988" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2710510", + "length": "198.8522", + "name": "line_ln6411370-1", + "phases": "C", + "to": "l3197628" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125962", + "length": "404.8174", + "name": "line_ln6381820-1", + "phases": "ABC", + "to": "l3123452" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001008", + "length": "158.2381", + "name": "line_ln2001009-1", + "phases": "B", + "to": "m2001009" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3048221", + "length": "223.3741", + "name": "line_ln5835167-6", + "phases": "ABC", + "to": "d5835167-6_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142835", + "length": "35.5482", + "name": "line_ln6321412-1", + "phases": "C", + "to": "m1142833" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089163", + "length": "297.6993", + "name": "line_ln5502523-1", + "phases": "C", + "to": "l3066807" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108398", + "length": "223.1818", + "name": "line_ln6061815-1", + "phases": "ABC", + "to": "m1108395" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047813", + "length": "220.2650", + "name": "line_ln6108123-1", + "phases": "B", + "to": "l2973149" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3104128", + "length": "382.1091", + "name": "line_ln5926306-1", + "phases": "A", + "to": "l2673315" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069629", + "length": "321.6106", + "name": "line_ln5986945-1", + "phases": "B", + "to": "m1069632" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1047522", + "length": "167.4292", + "name": "line_ln5562931-1", + "phases": "ABC", + "to": "m1047520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1137996", + "length": "23.9043", + "name": "line_ln5562931-3", + "phases": "C", + "to": "l3178979" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047558", + "length": "19.9400", + "name": "line_ln5562931-2", + "phases": "C", + "to": "n1137996" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2989596", + "length": "290.7327", + "name": "line_ln6046143-1", + "phases": "B", + "to": "l2822873" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047767", + "length": "358.2564", + "name": "line_ln6017290-1", + "phases": "B", + "to": "l2860484" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2673317", + "length": "327.0882", + "name": "line_ln6505948-2", + "phases": "A", + "to": "l2710517" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027123", + "length": "81.7029", + "name": "line_ln6076266-1", + "phases": "A", + "to": "l3008248" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1209788", + "length": "247.1335", + "name": "line_ln6381855-1", + "phases": "C", + "to": "m1209795" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "l2851933", + "length": "77.4945", + "name": "line_ln6506306-2", + "phases": "ABC", + "to": "l3207907" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2897791", + "length": "9.4781", + "name": "line_ln5683842-1", + "phases": "B", + "to": "m1069613" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026354", + "length": "504.8260", + "name": "line_ln2000000-1", + "phases": "ABC", + "to": "m2000100" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089112", + "length": "15.1953", + "name": "line_ln5776667-1", + "phases": "C", + "to": "p827520" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1125978", + "length": "338.3628", + "name": "line_ln6134418-1", + "phases": "B", + "to": "l3254869" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2689691", + "length": "272.9084", + "name": "line_ln5712507-1", + "phases": "ABC", + "to": "m1009763" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "e183472", + "length": "512.2680", + "name": "line_ln5985361-1", + "phases": "ABC", + "to": "l2989566" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m4350438", + "length": "310.6807", + "name": "line_ln6409872-3", + "phases": "B", + "to": "l2935568" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3010564", + "length": "405.4772", + "name": "line_ln5865238-1", + "phases": "C", + "to": "l2710515" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047318", + "length": "1265.9929", + "name": "line_ln6138612-1", + "phases": "C", + "to": "l3254205" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p827503", + "length": "101.2816", + "name": "line_ln5928544-2", + "phases": "C", + "to": "n1137994" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l3235244", + "length": "206.3512", + "name": "line_ln6380806-1", + "phases": "A", + "to": "m1069398" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2990826", + "length": "521.4686", + "name": "line_ln8979258-1", + "phases": "ABC", + "to": "l2990827" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1137994", + "length": "184.9440", + "name": "line_ln5928544-3", + "phases": "C", + "to": "m1069484" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2748132", + "length": "840.8238", + "name": "line_ln6440070-1", + "phases": "A", + "to": "l2689726" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000911", + "length": "158.2381", + "name": "line_ln2000912-1", + "phases": "C", + "to": "m2000912" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026849", + "length": "3.8780", + "name": "line_ln6077780-1", + "phases": "A", + "to": "m1026848" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2785519", + "length": "107.0855", + "name": "line_ln5804792-1", + "phases": "A", + "to": "l3104122" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047326", + "length": "335.7198", + "name": "line_ln5472372-1", + "phases": "A", + "to": "m1047338" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026709", + "length": "18.8611", + "name": "line_ln5655685-1", + "phases": "C", + "to": "p827561" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108311", + "length": "80.9517", + "name": "line_ln5896844-1", + "phases": "C", + "to": "l2898526" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047447", + "length": "323.1349", + "name": "line_ln6199519-1", + "phases": "B", + "to": "l2766722" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108379", + "length": "131.7255", + "name": "line_ln6411005-1", + "phases": "ABC", + "to": "m1108380" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108380", + "length": "280.5297", + "name": "line_ln6411005-2", + "phases": "ABC", + "to": "l2898495" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "d2000100_int", + "length": "175.8104", + "name": "line_ln2000200-1", + "phases": "ABC", + "to": "m2000200" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069136", + "length": "246.6429", + "name": "line_ln5804802-1", + "phases": "ABC", + "to": "m1069135" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3046854", + "length": "172.3268", + "name": "line_ln6407748-2", + "phases": "B", + "to": "m1047453" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3029504", + "length": "193.6558", + "name": "line_ln6407748-1", + "phases": "B", + "to": "l3046854" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3254219", + "length": "210.5291", + "name": "line_ln6350547-1", + "phases": "C", + "to": "l3254220" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3197636", + "length": "296.2708", + "name": "line_ln5714051-1", + "phases": "ABC", + "to": "m1047424" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "d6017295-1_int", + "length": "381.6331", + "name": "line_ln6017295-1", + "phases": "ABC", + "to": "m1069393" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3066809", + "length": "208.7462", + "name": "line_ln5774451-1", + "phases": "C", + "to": "m1069487" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2691936", + "length": "240.0595", + "name": "line_ln5623388-1", + "phases": "A", + "to": "m1026941" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026488", + "length": "17.9223", + "name": "line_ln6047588-1", + "phases": "B", + "to": "d6047588-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8979370-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "250.00", + "from": "m1108378", + "length": "22.9770", + "name": "line_ln81048088-1", + "phases": "A", + "to": "p904451" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "196-36167", + "length": "267.5600", + "name": "line_ln6106511-1", + "phases": "ABC", + "to": "l3011298" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5895780-3_int", + "length": "184.0295", + "name": "line_ln5895780-3", + "phases": "ABC", + "to": "l2991914" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142828", + "length": "1.0000", + "name": "line_ln5473436-1", + "phases": "ABC", + "to": "l2674047" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2674047", + "length": "199.6421", + "name": "line_ln5473436-2", + "phases": "ABC", + "to": "l2692655" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "r20185", + "length": "69.8178", + "name": "line_ln5513564-1", + "phases": "ABC", + "to": "d5513564-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026769", + "length": "22.6748", + "name": "line_ln6140776-1", + "phases": "A", + "to": "d6140776-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1027038", + "length": "195.1262", + "name": "line_ln5829253-1", + "phases": "B", + "to": "l2731712" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108483", + "length": "104.2077", + "name": "line_ln5594151-1", + "phases": "A", + "to": "m1108486" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "f739844", + "length": "100.0000", + "name": "line_ln247171", + "phases": "B", + "to": "l0247171" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142865", + "length": "201.9363", + "name": "line_ln5533786-1", + "phases": "ABC", + "to": "l3030197" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1089094", + "length": "200.7587", + "name": "line_ln5744323-1", + "phases": "C", + "to": "m1069147" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026708", + "length": "2.4013", + "name": "line_ln5472394-1", + "phases": "ABC", + "to": "m1026709" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1209782", + "length": "241.7224", + "name": "line_ln5927382-1", + "phases": "A", + "to": "l3217056" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108262", + "length": "14.9988", + "name": "line_ln5562918-1", + "phases": "B", + "to": "m1108261" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009770", + "length": "28.1828", + "name": "line_ln5863746-1", + "phases": "B", + "to": "m1009771" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "e182726", + "length": "245.6062", + "name": "line_ln5958705-1", + "phases": "B", + "to": "l2766744" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1140822", + "length": "147.2658", + "name": "line_ln5532788-3", + "phases": "C", + "to": "l2935560" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3104136", + "length": "467.6420", + "name": "line_ln5895793-1", + "phases": "ABC", + "to": "l2822872" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2879070", + "length": "292.9818", + "name": "line_ln6169248-1", + "phases": "ABC", + "to": "l3216345" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1125994", + "length": "72.7043", + "name": "line_ln5503546-1", + "phases": "ABC", + "to": "l2730149" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026700", + "length": "280.5128", + "name": "line_ln5650219-1", + "phases": "ABC", + "to": "m1026706" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069524", + "length": "199.9989", + "name": "line_ln6198028-1", + "phases": "A", + "to": "l2820533" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026706", + "length": "36.5052", + "name": "line_ln5532788-2", + "phases": "C", + "to": "n1140822" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108350", + "length": "227.4743", + "name": "line_ln5715017-1", + "phases": "C", + "to": "l3198356" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2936279", + "length": "333.6831", + "name": "line_ln5473449-1", + "phases": "ABC", + "to": "l3179678" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209748", + "length": "263.3435", + "name": "line_ln6230793-1", + "phases": "B", + "to": "l3142099" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_wpal_ln5654485-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069550", + "length": "305.0457", + "name": "line_ln5895803-1", + "phases": "B", + "to": "m1069544" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026795", + "length": "242.0107", + "name": "line_ln6108144-1", + "phases": "ABC", + "to": "m1026786" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2991910", + "length": "148.4577", + "name": "line_ln5986928-1", + "phases": "B", + "to": "l2879072" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1026703", + "length": "239.6001", + "name": "line_ln5744358-1", + "phases": "C", + "to": "l2973166" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_acsr_ln6108135-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069484", + "length": "408.5933", + "name": "line_ln5593221-1", + "phases": "C", + "to": "l2785517" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010008", + "length": "7.4660", + "name": "line_ln6344714-1", + "phases": "A", + "to": "m1010007" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "f739841", + "length": "100.0000", + "name": "line_ln247160", + "phases": "B", + "to": "l0247160" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m3768670", + "length": "243.8353", + "name": "line_ln5653460-6", + "phases": "ABC", + "to": "l3235254" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2/0_acsrxx2_acsr_ln6129680-2", + "continuous_rating_A": "300.00", + "emergency_rating_A": "300.00", + "from": "m1047521", + "length": "36.8290", + "name": "line_ln6129680-2", + "phases": "A", + "to": "n1136665" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142808", + "length": "301.2134", + "name": "line_ln5798823-1", + "phases": "B", + "to": "l3160868" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3216345", + "length": "248.7033", + "name": "line_ln5653460-5", + "phases": "ABC", + "to": "m3768670" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2673313", + "length": "214.8932", + "name": "line_ln6047566-1", + "phases": "ABC", + "to": "m1027011" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "f739842", + "length": "100.0000", + "name": "line_ln247162", + "phases": "B", + "to": "l0247162" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2/0_acsrxx2_acsr_ln6129680-2", + "continuous_rating_A": "300.00", + "emergency_rating_A": "300.00", + "from": "n1136665", + "length": "98.1706", + "name": "line_ln6129680-3", + "phases": "A", + "to": "l2685809" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069464", + "length": "20.4578", + "name": "line_ln5859996-1", + "phases": "B", + "to": "p873787" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1142799", + "length": "330.6393", + "name": "line_ln5896831-1", + "phases": "B", + "to": "m1142798" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1108486", + "length": "46.3101", + "name": "line_ln6230695-1", + "phases": "A", + "to": "l3067447" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "221-703009", + "length": "111.5356", + "name": "line_ln8976560-3", + "phases": "C", + "to": "l3150961" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1125943", + "length": "17.0734", + "name": "line_ln8976560-2", + "phases": "C", + "to": "221-703009" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m3021569", + "length": "519.9970", + "name": "line_ln6496337-2", + "phases": "B", + "to": "l3315860" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr397_acsr_ln5742828-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209814", + "length": "350.8814", + "name": "line_ln5473414-1", + "phases": "ABC", + "to": "m1209811" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069417", + "length": "14.1565", + "name": "line_ln5712475-1", + "phases": "B", + "to": "p901910" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069311", + "length": "86.8468", + "name": "line_ln5970852-1", + "phases": "C", + "to": "m1069312" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2673310", + "length": "258.0781", + "name": "line_ln6229794-1", + "phases": "A", + "to": "l3104121" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l3198356", + "length": "199.6995", + "name": "line_ln5805767-1", + "phases": "C", + "to": "m1108345" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166356", + "length": "201.1904", + "name": "line_ln6258530-1", + "phases": "A", + "to": "l2727019" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "n1139544", + "length": "87.2786", + "name": "line_ln5803270-3", + "phases": "C", + "to": "l2897776" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069382", + "length": "127.0725", + "name": "line_ln5895812-1", + "phases": "ABC", + "to": "l2822877" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2673322", + "length": "162.0024", + "name": "line_ln5818176-1", + "phases": "B", + "to": "l2859391" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "m1069225", + "length": "40.0904", + "name": "line_ln5803270-2", + "phases": "C", + "to": "n1139544" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047566", + "length": "19.9972", + "name": "line_ln6047575-2", + "phases": "A", + "to": "n1137995" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000902", + "length": "158.2381", + "name": "line_ln2000903-1", + "phases": "C", + "to": "m2000903" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209751", + "length": "12.6315", + "name": "line_ln6018333-1", + "phases": "B", + "to": "m1209750" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1137995", + "length": "83.9895", + "name": "line_ln6047575-3", + "phases": "A", + "to": "l3141401" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1166376", + "length": "17.2145", + "name": "line_ln5508630-1", + "phases": "ABC", + "to": "l2842384" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2711224", + "length": "223.6213", + "name": "line_ln6170291-1", + "phases": "B", + "to": "m1125905" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l3067506", + "length": "174.8903", + "name": "line_ln5866266-1", + "phases": "C", + "to": "m1166386" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m1069312", + "length": "23.1124", + "name": "line_ln81018876-1", + "phases": "C", + "to": "p873801" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047299", + "length": "180.6085", + "name": "line_ln5956501-1", + "phases": "C", + "to": "l3104157" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1089203", + "length": "20.8937", + "name": "line_ln6103924-1", + "phases": "A", + "to": "p895087" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2860488", + "length": "175.7184", + "name": "line_ln6229804-1", + "phases": "B", + "to": "m1026308" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125960", + "length": "41.2722", + "name": "line_ln6286109-1", + "phases": "ABC", + "to": "m1125962" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026704", + "length": "180.3028", + "name": "line_ln5865247-1", + "phases": "B", + "to": "l2991915" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1147866", + "length": "103.1191", + "name": "line_ln6201702-2", + "phases": "A", + "to": "m1026713" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln8945010-1", + "continuous_rating_C": "200.00", + "emergency_rating_C": "250.00", + "from": "m3763624", + "length": "32.6906", + "name": "line_ln81354563-2", + "phases": "C", + "to": "p1121283" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1027013", + "length": "323.5708", + "name": "line_ln5744336-1", + "phases": "ABC", + "to": "m1027023" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069500", + "length": "15.0017", + "name": "line_ln6413568-1", + "phases": "A", + "to": "p827549" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047471", + "length": "313.2535", + "name": "line_ln6380819-1", + "phases": "B", + "to": "l2879077" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047490", + "length": "119.4666", + "name": "line_ln6987572-4", + "phases": "A", + "to": "p1164481" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008753", + "length": "969.2507", + "name": "line_ln6163394-1", + "phases": "B", + "to": "m1026307" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069481", + "length": "88.1566", + "name": "line_ln6106657-1", + "phases": "ABC", + "to": "l2745848" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1069438", + "length": "32.9875", + "name": "line_ln6352702-1", + "phases": "C", + "to": "p827575" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "221-311609", + "length": "136.5770", + "name": "line_ln8979249-2", + "phases": "ABC", + "to": "l2915542" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009763", + "length": "105.5630", + "name": "line_ln5502549-1", + "phases": "B", + "to": "l2673322" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "p850072", + "length": "13.3275", + "name": "line_ln8979249-1", + "phases": "ABC", + "to": "221-311609" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2000706", + "length": "158.2381", + "name": "line_ln2000707-1", + "phases": "B", + "to": "m2000707" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2748143", + "length": "220.0003", + "name": "line_ln5531956-1", + "phases": "A", + "to": "l3251854" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001009", + "length": "158.2381", + "name": "line_ln2001010-1", + "phases": "B", + "to": "m2001010" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069595", + "length": "164.2832", + "name": "line_ln6228304-1", + "phases": "B", + "to": "l2916619" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2785518", + "length": "250.4992", + "name": "line_ln6411369-1", + "phases": "C", + "to": "l2766717" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l3122821", + "length": "452.4689", + "name": "line_ln5532753-1", + "phases": "ABC", + "to": "m1047486" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047433", + "length": "300.0985", + "name": "line_ln5472363-1", + "phases": "A", + "to": "m1047434" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069498", + "length": "322.3273", + "name": "line_ln5761784-1", + "phases": "ABC", + "to": "m1069499" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069640", + "length": "331.8406", + "name": "line_ln6106559-1", + "phases": "B", + "to": "l2804269" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166358", + "length": "201.8157", + "name": "line_ln6170336-1", + "phases": "C", + "to": "l3030205" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026387", + "length": "232.5032", + "name": "line_ln6290219-1", + "phases": "A", + "to": "l3104132" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047358", + "length": "67.3649", + "name": "line_ln6199528-1", + "phases": "A", + "to": "l3197644" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026960", + "length": "85.0001", + "name": "line_ln6879074-1", + "phases": "A", + "to": "m3729981" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx1/0_tpx_ln5532786-2", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069544", + "length": "51.7366", + "name": "line_ln6229817-1", + "phases": "B", + "to": "l2804272" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026820", + "length": "194.3325", + "name": "line_ln5774486-1", + "phases": "A", + "to": "l3141403" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142868", + "length": "177.0388", + "name": "line_ln6048626-1", + "phases": "ABC", + "to": "m1142869" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089115", + "length": "300.2087", + "name": "line_ln5593234-1", + "phases": "ABC", + "to": "m1089112" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1026950", + "length": "345.7933", + "name": "line_ln6350538-1", + "phases": "ABC", + "to": "m1026954" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1125968", + "length": "27.7281", + "name": "line_ln5861084-1", + "phases": "C", + "to": "p895107" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx2_acsr_ln5472350-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1069154", + "length": "210.7422", + "name": "line_ln5472350-1", + "phases": "B", + "to": "l3104120" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1089170", + "length": "155.3860", + "name": "line_ln5532740-1", + "phases": "C", + "to": "l3029497" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009840", + "length": "305.4828", + "name": "line_ln6017282-1", + "phases": "B", + "to": "l3216338" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "l2916608", + "length": "284.0062", + "name": "line_ln6108131-1", + "phases": "ABC", + "to": "m1027002" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2767408", + "length": "148.7871", + "name": "line_ln6506314-2", + "phases": "C", + "to": "l3217053" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3048206", + "length": "196.5001", + "name": "line_ln6320329-1", + "phases": "ABC", + "to": "m1069156" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "150.00", + "emergency_rating_C": "150.00", + "from": "l3160863", + "length": "1019.5548", + "name": "line_ln6201670-1", + "phases": "C", + "to": "l2730108" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_wpal_ln5927423-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "r18241", + "length": "226.5406", + "name": "line_ln6259989-1", + "phases": "ABC", + "to": "m1047763" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047453", + "length": "252.7781", + "name": "line_ln5835175-1", + "phases": "B", + "to": "l2785547" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2879075", + "length": "195.0644", + "name": "line_ln5894312-1", + "phases": "A", + "to": "l3251830" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1009824", + "length": "175.9835", + "name": "line_ln5865225-1", + "phases": "B", + "to": "l2822857" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047796", + "length": "400.9391", + "name": "line_ln5502527-1", + "phases": "B", + "to": "l3010562" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "e182731", + "length": "141.6482", + "name": "line_ln5716232-1", + "phases": "B", + "to": "m1026327" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2001307", + "length": "158.2381", + "name": "line_ln2001308-1", + "phases": "A", + "to": "m2001308" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e182732", + "length": "30.1193", + "name": "line_ln5746548-1", + "phases": "ABC", + "to": "m1026760" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1138595", + "length": "386.8395", + "name": "line_ln6505944-3", + "phases": "ABC", + "to": "m3036167" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026810", + "length": "444.6293", + "name": "line_ln6260002-1", + "phases": "A", + "to": "l2914324" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p827534", + "length": "16.2537", + "name": "line_ln5985339-1", + "phases": "A", + "to": "m1069130" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1069130", + "length": "258.4847", + "name": "line_ln5985339-2", + "phases": "A", + "to": "l3085396" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "p827563", + "length": "22.0364", + "name": "line_ln6505944-2", + "phases": "ABC", + "to": "n1138595" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1026861", + "length": "534.5932", + "name": "line_ln6169257-1", + "phases": "ABC", + "to": "m1026858" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr4_acsr4_acsr4_acsr_ln6380810-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1142815", + "length": "483.6907", + "name": "line_ln5684911-1", + "phases": "ABC", + "to": "m1142814" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2879073", + "length": "205.1442", + "name": "line_ln5835140-1", + "phases": "ABC", + "to": "m1069205" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069567", + "length": "269.1826", + "name": "line_ln5472385-1", + "phases": "B", + "to": "l2691966" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026492", + "length": "175.8592", + "name": "line_ln5804837-1", + "phases": "B", + "to": "l3048231" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1209822", + "length": "186.9522", + "name": "line_ln6078692-1", + "phases": "C", + "to": "m1209823" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1010003", + "length": "195.0000", + "name": "line_ln5803302-1", + "phases": "A", + "to": "l2989571" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_wpal_ln6108134-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026394", + "length": "141.9797", + "name": "line_ln5683829-1", + "phases": "A", + "to": "m1026393" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "p873787", + "length": "48.4679", + "name": "line_ln6163946-1", + "phases": "B", + "to": "m1069463" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1009763", + "length": "81.6749", + "name": "line_ln6138616-1", + "phases": "B", + "to": "l2766730" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1069174", + "length": "306.0783", + "name": "line_ln5924697-1", + "phases": "C", + "to": "l2841630" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069514", + "length": "40.1729", + "name": "line_ln6290228-2", + "phases": "ABC", + "to": "n1136657" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026705", + "length": "114.9670", + "name": "line_ln5803257-1", + "phases": "C", + "to": "l2710532" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069600", + "length": "190.0005", + "name": "line_ln5831676-1", + "phases": "B", + "to": "l3102793" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026377", + "length": "190.5045", + "name": "line_ln5562936-1", + "phases": "A", + "to": "m1026378" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m3037453", + "length": "11.2274", + "name": "line_ln6436903-4", + "phases": "A", + "to": "l2785546" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "r42246", + "length": "139.2668", + "name": "line_ln6290228-5", + "phases": "ABC", + "to": "l2691967" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1136657", + "length": "174.6514", + "name": "line_ln6290228-6", + "phases": "ABC", + "to": "d6290228-6_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "q16642_cap", + "length": "14.8983", + "name": "line_ln6290228-7", + "phases": "ABC", + "to": "r42246" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2898495", + "length": "461.4899", + "name": "line_ln6409778-1", + "phases": "ABC", + "to": "l2952003" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p827574", + "length": "199.9018", + "name": "line_ln5776672-1", + "phases": "A", + "to": "l3160123" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3178976", + "length": "297.1361", + "name": "line_ln6108153-1", + "phases": "A", + "to": "m1026779" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2879081", + "length": "184.4732", + "name": "line_ln5472376-1", + "phases": "A", + "to": "m1026682" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1069461", + "length": "28.5005", + "name": "line_ln6049824-1", + "phases": "A", + "to": "p827574" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047828", + "length": "66.9504", + "name": "line_ln6199515-1", + "phases": "B", + "to": "l2954346" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166407", + "length": "493.7524", + "name": "line_ln5985365-1", + "phases": "C", + "to": "l2952007" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2822871", + "length": "197.3244", + "name": "line_ln6077784-1", + "phases": "ABC", + "to": "m1026872" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l2785547", + "length": "129.0966", + "name": "line_ln6047607-1", + "phases": "B", + "to": "m1047457" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047345", + "length": "179.2233", + "name": "line_ln6047584-1", + "phases": "ABC", + "to": "l2991922" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "q1301", + "length": "46.3509", + "name": "line_ln5861005-3", + "phases": "ABC", + "to": "l3160872" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1166391", + "length": "283.3100", + "name": "line_ln6200442-1", + "phases": "C", + "to": "m1166394" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "196-31070", + "length": "20.1474", + "name": "line_ln5861005-2", + "phases": "ABC", + "to": "d5861005-2_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1147867", + "length": "19.4111", + "name": "line_ln5837361-8", + "phases": "ABC", + "to": "d5837361-8_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2991933", + "length": "273.2062", + "name": "line_ln5653486-1", + "phases": "C", + "to": "l3122837" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1027027", + "length": "384.5177", + "name": "line_ln6077807-1", + "phases": "C", + "to": "l2766746" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047344", + "length": "232.9696", + "name": "line_ln5714055-1", + "phases": "A", + "to": "l2897772" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069184", + "length": "209.5686", + "name": "line_ln6017299-1", + "phases": "ABC", + "to": "m1069175" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3081380", + "length": "302.2330", + "name": "line_ln5799561-2", + "phases": "ABC", + "to": "d5799561-2_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142843", + "length": "362.8248", + "name": "line_ln5799561-1", + "phases": "ABC", + "to": "l3081380" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "e184626", + "length": "33.8509", + "name": "line_ln6326450-1", + "phases": "ABC", + "to": "m1166377" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069456", + "length": "74.3772", + "name": "line_ln5837361-7", + "phases": "ABC", + "to": "n1147867" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "p895089", + "length": "198.5139", + "name": "line_ln6134414-1", + "phases": "C", + "to": "l3235242" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1142826", + "length": "940.4608", + "name": "line_ln5654470-1", + "phases": "B", + "to": "m1125940" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m2000300", + "length": "473.3272", + "name": "line_ln2000400-1", + "phases": "ABC", + "to": "m2000400" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2786266", + "length": "113.4009", + "name": "line_ln5745355-1", + "phases": "ABC", + "to": "m1166375" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047718", + "length": "178.6656", + "name": "line_ln5683807-1", + "phases": "A", + "to": "m1047721" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047834", + "length": "308.9107", + "name": "line_ln5744327-1", + "phases": "B", + "to": "l3197624" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026920", + "length": "79.5162", + "name": "line_ln6320338-1", + "phases": "B", + "to": "l2729408" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047420", + "length": "41.3833", + "name": "line_ln6195664-1", + "phases": "A", + "to": "m1047419" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "q16483_cap", + "length": "17.2556", + "name": "line_ln5563942-5", + "phases": "ABC", + "to": "r42247" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1047580", + "length": "34.7410", + "name": "line_ln6025724-2", + "phases": "C", + "to": "n1136672" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "p895102", + "length": "32.5571", + "name": "line_ln6376708-1", + "phases": "B", + "to": "m1125978" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1108368", + "length": "230.9165", + "name": "line_ln6290206-1", + "phases": "C", + "to": "l2897770" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047314", + "length": "73.2220", + "name": "line_ln5756001-1", + "phases": "A", + "to": "m1047311" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2748125", + "length": "176.9719", + "name": "line_ln6138593-1", + "phases": "C", + "to": "l2673303" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026662", + "length": "468.6803", + "name": "line_ln6350543-1", + "phases": "ABC", + "to": "l2673319" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2673319", + "length": "109.2091", + "name": "line_ln5591284-1", + "phases": "ABC", + "to": "m1026658" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2804249", + "length": "232.9644", + "name": "line_ln6256144-4", + "phases": "ABC", + "to": "n1139547" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125976", + "length": "567.3386", + "name": "line_ln5745257-1", + "phases": "ABC", + "to": "m1125987" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1139547", + "length": "278.9562", + "name": "line_ln6256144-3", + "phases": "ABC", + "to": "l2688693" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026658", + "length": "234.2658", + "name": "line_ln5591284-2", + "phases": "ABC", + "to": "m1026655" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2688693", + "length": "128.5395", + "name": "line_ln6256144-1", + "phases": "ABC", + "to": "l2688692" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p827560", + "length": "45.3782", + "name": "line_ln6201702-3", + "phases": "A", + "to": "n1147866" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1166355", + "length": "214.1133", + "name": "line_ln5624381-1", + "phases": "A", + "to": "l2805035" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1166375", + "length": "32.0261", + "name": "line_ln5589096-1", + "phases": "A", + "to": "p895080" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1142832", + "length": "15.0477", + "name": "line_ln6292614-1", + "phases": "C", + "to": "p829962" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026324", + "length": "182.4078", + "name": "line_ln5502540-1", + "phases": "B", + "to": "m1026323" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047777", + "length": "300.3130", + "name": "line_ln6047562-1", + "phases": "B", + "to": "m1047780" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1008733", + "length": "272.3492", + "name": "line_ln6229785-1", + "phases": "B", + "to": "l3216339" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "l3082988", + "length": "226.8580", + "name": "line_ln6230797-1", + "phases": "B", + "to": "m1149225" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1140517", + "length": "332.1830", + "name": "line_ln5621857-3", + "phases": "A", + "to": "l3157718" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2972704", + "length": "174.5399", + "name": "line_ln5956469-1", + "phases": "C", + "to": "l3263051" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1209763", + "length": "344.8824", + "name": "line_ln6048635-1", + "phases": "B", + "to": "l2936275" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "p901934", + "length": "46.9376", + "name": "line_ln5621857-2", + "phases": "A", + "to": "n1140517" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3067478", + "length": "343.4016", + "name": "line_ln6170256-1", + "phases": "ABC", + "to": "m1125994" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026308", + "length": "61.5745", + "name": "line_ln5653464-1", + "phases": "B", + "to": "l2991918" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026812", + "length": "284.7709", + "name": "line_ln6255312-1", + "phases": "A", + "to": "l3122847" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "n1147865", + "length": "395.5819", + "name": "line_ln6379450-3", + "phases": "A", + "to": "l2895489" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1209750", + "length": "378.4411", + "name": "line_ln5987956-1", + "phases": "B", + "to": "l3086075" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047824", + "length": "256.2380", + "name": "line_ln5714042-1", + "phases": "B", + "to": "l3122810" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026946", + "length": "421.8171", + "name": "line_ln6138603-1", + "phases": "B", + "to": "m1026940" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026662", + "length": "45.6942", + "name": "line_ln6108140-2", + "phases": "A", + "to": "n1141473" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "n1141473", + "length": "135.3284", + "name": "line_ln6108140-3", + "phases": "A", + "to": "l3216350" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1027055", + "length": "55.0365", + "name": "line_ln6379450-2", + "phases": "A", + "to": "n1147865" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "r42247", + "length": "130.4082", + "name": "line_ln5563942-3", + "phases": "ABC", + "to": "m1149233" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047521", + "length": "38.9734", + "name": "line_ln6411387-1", + "phases": "A", + "to": "l2954353" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1149235", + "length": "102.1435", + "name": "line_ln5563942-4", + "phases": "ABC", + "to": "d5563942-4_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026472", + "length": "20.6871", + "name": "line_ln5472341-1", + "phases": "B", + "to": "d5472341-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1027001", + "length": "301.3936", + "name": "line_ln5835127-1", + "phases": "B", + "to": "m1027004" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125917", + "length": "298.4022", + "name": "line_ln5957493-1", + "phases": "ABC", + "to": "m1125914" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1108350", + "length": "780.1370", + "name": "line_ln5833631-1", + "phases": "C", + "to": "m1108360" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2691950", + "length": "232.8535", + "name": "line_ln6047571-1", + "phases": "C", + "to": "l2916609" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026330", + "length": "356.1885", + "name": "line_ln6199524-1", + "phases": "B", + "to": "l2785526" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047777", + "length": "1797.6689", + "name": "line_ln6229798-1", + "phases": "B", + "to": "l3178975" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2000906", + "length": "158.2381", + "name": "line_ln2000907-1", + "phases": "C", + "to": "m2000907" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1069517", + "length": "94.1423", + "name": "line_ln6350556-2", + "phases": "ABC", + "to": "n1136367" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "n1136367", + "length": "126.3069", + "name": "line_ln6350556-3", + "phases": "ABC", + "to": "m1069515" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3122820", + "length": "194.9105", + "name": "line_ln5774460-1", + "phases": "A", + "to": "l3141398" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1p_1/0_axnj_db_ln81048087-1", + "continuous_rating_B": "200.00", + "emergency_rating_B": "250.00", + "from": "m1108395", + "length": "606.4067", + "name": "line_ln6061820-1", + "phases": "B", + "to": "m1108410" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1047457", + "length": "219.9410", + "name": "line_ln5926332-1", + "phases": "B", + "to": "l3139086" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001313-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m2000412", + "length": "158.2381", + "name": "line_ln2000413-1", + "phases": "A", + "to": "m2000413" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026335", + "length": "229.2830", + "name": "line_ln6229808-1", + "phases": "A", + "to": "l2804259" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209787", + "length": "407.9844", + "name": "line_ln6261021-1", + "phases": "ABC", + "to": "l2823611" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1047723", + "length": "303.1876", + "name": "line_ln6320325-1", + "phases": "A", + "to": "m1047729" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2991939", + "length": "307.5968", + "name": "line_ln5774495-1", + "phases": "ABC", + "to": "l3216367" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2841626", + "length": "306.9153", + "name": "line_ln6260019-1", + "phases": "ABC", + "to": "l3235266" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3141389", + "length": "248.9193", + "name": "line_ln5895767-1", + "phases": "A", + "to": "l2860477" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026780", + "length": "351.2907", + "name": "line_ln6290215-1", + "phases": "ABC", + "to": "m1026774" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001013", + "length": "158.2381", + "name": "line_ln2001014-1", + "phases": "B", + "to": "m2001014" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx4_acsr_ln6047568-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047442", + "length": "225.8185", + "name": "line_ln5562927-1", + "phases": "B", + "to": "m1047444" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1108257", + "length": "1436.0718", + "name": "line_ln5866235-1", + "phases": "B", + "to": "l3142078" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1149249", + "length": "761.7737", + "name": "line_ln6258463-1", + "phases": "C", + "to": "m1142880" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l3029510", + "length": "354.8084", + "name": "line_ln5804811-1", + "phases": "B", + "to": "l2729409" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_wpalx1/0_tpx_ln6077771-1", + "continuous_rating_B": "150.00", + "emergency_rating_B": "150.00", + "from": "m1009824", + "length": "100.7711", + "name": "line_ln6077771-1", + "phases": "B", + "to": "l2954338" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1136672", + "length": "39.9036", + "name": "line_ln6025724-5", + "phases": "C", + "to": "l3253995" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l2822861", + "length": "676.6774", + "name": "line_ln6411365-1", + "phases": "A", + "to": "l2841616" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1026795", + "length": "44.4800", + "name": "line_ln6259998-2", + "phases": "C", + "to": "n1140522" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "n1140522", + "length": "51.6825", + "name": "line_ln6259998-3", + "phases": "C", + "to": "l2822870" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "m1047318", + "length": "240.2929", + "name": "line_ln5472367-1", + "phases": "C", + "to": "l2841637" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1069393", + "length": "229.0093", + "name": "line_ln5593230-1", + "phases": "B", + "to": "m1069408" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "l2821010", + "length": "357.5965", + "name": "line_ln6349988-1", + "phases": "A", + "to": "m1026773" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1069530", + "length": "87.7733", + "name": "line_ln6199546-1", + "phases": "B", + "to": "m1069526" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2785512", + "length": "386.9641", + "name": "line_ln6017286-1", + "phases": "B", + "to": "m1047813" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047374", + "length": "392.8781", + "name": "line_ln6350534-1", + "phases": "B", + "to": "l2879065" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047755", + "length": "240.3642", + "name": "line_ln5623397-1", + "phases": "A", + "to": "m1047751" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026990", + "length": "836.1619", + "name": "line_ln5956456-1", + "phases": "B", + "to": "m1027001" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3p_1/0_axnj_db_ln8979254-2", + "continuous_rating_A": "200.00", + "continuous_rating_B": "200.00", + "continuous_rating_C": "200.00", + "emergency_rating_A": "250.00", + "emergency_rating_B": "250.00", + "emergency_rating_C": "250.00", + "from": "m1209774", + "length": "14.2222", + "name": "line_ln8940662-1", + "phases": "ABC", + "to": "221-242079" + }, + "children": [], + "name": "underground_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2916619", + "length": "314.2763", + "name": "line_ln6228396-1", + "phases": "B", + "to": "l2727008" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln2001215-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m2001209", + "length": "158.2381", + "name": "line_ln2001210-1", + "phases": "C", + "to": "m2001210" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "n1140817", + "length": "51.8058", + "name": "line_ln5926310-3", + "phases": "ABC", + "to": "l3235258" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "l2897776", + "length": "476.7774", + "name": "line_ln6411378-1", + "phases": "C", + "to": "l3254215" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m2001000", + "length": "158.2381", + "name": "line_ln2001001-1", + "phases": "B", + "to": "m2001001" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1026744", + "length": "96.9044", + "name": "line_ln5926310-2", + "phases": "ABC", + "to": "n1140817" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx4_acsr_ln5589097-1", + "continuous_rating_A": "200.00", + "emergency_rating_A": "200.00", + "from": "m1047486", + "length": "59.9987", + "name": "line_ln6437757-1", + "phases": "A", + "to": "l3177665" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_acsr2_acsr2_acsr4_wpal_ln5774458-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1027039", + "length": "88.7418", + "name": "line_ln5472354-1", + "phases": "ABC", + "to": "m1027043" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_wpal4_wpal_ln6018241-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2841619", + "length": "382.1263", + "name": "line_ln6259985-1", + "phases": "C", + "to": "l2785515" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "l2896685", + "length": "78.8398", + "name": "line_ln6274208-2", + "phases": "ABC", + "to": "m1089185" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2767343", + "length": "221.4451", + "name": "line_ln6048524-1", + "phases": "C", + "to": "l2804957" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x2_acsrx2_acsr_ln5835159-1", + "continuous_rating_B": "100.00", + "emergency_rating_B": "175.00", + "from": "m1026339", + "length": "289.7604", + "name": "line_ln5623407-1", + "phases": "B", + "to": "l3029507" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2/0_acsr2/0_acsr2/0_acsr2_acsr_ln1047pvfrm-2", + "continuous_rating_A": "225.00", + "continuous_rating_B": "225.00", + "continuous_rating_C": "225.00", + "emergency_rating_A": "300.00", + "emergency_rating_B": "300.00", + "emergency_rating_C": "300.00", + "from": "m1108395", + "length": "310.8379", + "name": "line_ln6274208-1", + "phases": "ABC", + "to": "l2896685" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1125988", + "length": "236.9342", + "name": "line_ln6506310-2", + "phases": "ABC", + "to": "l2767340" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2897767", + "length": "426.8282", + "name": "line_ln6199511-1", + "phases": "C", + "to": "l3254208" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "m1186061", + "length": "461.4646", + "name": "line_ln5622467-1", + "phases": "ABC", + "to": "l3139366" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "p895113", + "length": "225.9369", + "name": "line_ln6407206-1", + "phases": "C", + "to": "l2711225" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-4_wpal4_wpal4_wpal4_wpal_ln5956464-1", + "continuous_rating_A": "90.00", + "continuous_rating_B": "90.00", + "continuous_rating_C": "90.00", + "emergency_rating_A": "130.00", + "emergency_rating_B": "130.00", + "emergency_rating_C": "130.00", + "from": "m1047699", + "length": "263.1622", + "name": "line_ln5683816-1", + "phases": "ABC", + "to": "l2935554" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1026987", + "length": "187.1850", + "name": "line_ln5865229-1", + "phases": "B", + "to": "m1026990" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1108298", + "length": "128.8297", + "name": "line_ln5531195-1", + "phases": "ABC", + "to": "196-36167" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx4_acsr4_acsr_ln5563852-1", + "continuous_rating_C": "90.00", + "emergency_rating_C": "130.00", + "from": "l2842330", + "length": "187.4760", + "name": "line_ln5927297-1", + "phases": "C", + "to": "l3086002" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-2_acsr2_acsr2_acsr2_acsr_ln6169251-1", + "continuous_rating_A": "100.00", + "continuous_rating_B": "100.00", + "continuous_rating_C": "100.00", + "emergency_rating_A": "175.00", + "emergency_rating_B": "175.00", + "emergency_rating_C": "175.00", + "from": "l3139366", + "length": "379.2851", + "name": "line_ln5622467-4", + "phases": "ABC", + "to": "m4362177" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_wpal_ln6137086-2", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047809", + "length": "267.2585", + "name": "line_ln6350569-1", + "phases": "B", + "to": "m1047812" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_wpal_ln5472359-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "p829978", + "length": "181.9136", + "name": "line_ln5989332-1", + "phases": "A", + "to": "l2992656" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_wpalxx4_acsr_ln5835146-1", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1047312", + "length": "13.5979", + "name": "line_ln6014135-1", + "phases": "A", + "to": "p893163" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-4_acsrxx4_acsr_ln6392977-2", + "continuous_rating_A": "90.00", + "emergency_rating_A": "130.00", + "from": "m1026890", + "length": "168.5518", + "name": "line_ln5744371-1", + "phases": "A", + "to": "l2954357" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "l2954339", + "length": "205.8702", + "name": "line_ln5986919-1", + "phases": "B", + "to": "l3048200" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "m1026773", + "length": "101.2386", + "name": "line_ln5652983-1", + "phases": "A", + "to": "m1026777" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1125914", + "length": "137.7981", + "name": "line_ln6078768-1", + "phases": "ABC", + "to": "l2917328" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-2_acsrxx2_acsr_ln6320335-1", + "continuous_rating_A": "100.00", + "emergency_rating_A": "175.00", + "from": "l3254230", + "length": "310.5497", + "name": "line_ln5472389-1", + "phases": "A", + "to": "m1047711" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_3ph_h-397_acsr397_acsr397_acsr2/0_acsr_ln6291242-1", + "continuous_rating_A": "450.00", + "continuous_rating_B": "450.00", + "continuous_rating_C": "450.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2841633", + "length": "349.6128", + "name": "line_ln5534970-1", + "phases": "ABC", + "to": "d5534970-1_int" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-x4_acsrx4_acsr_ln5833720-1", + "continuous_rating_B": "90.00", + "emergency_rating_B": "130.00", + "from": "m1047786", + "length": "228.0444", + "name": "line_ln6505940-2", + "phases": "B", + "to": "l3048207" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_1ph-xx2_acsr2_acsr_ln5565091-1", + "continuous_rating_C": "100.00", + "emergency_rating_C": "175.00", + "from": "m1166393", + "length": "215.3849", + "name": "line_ln5717630-1", + "phases": "C", + "to": "m1166395" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085398b", + "length": "50.0000", + "name": "tpx_tpx355777b0", + "phases": "BS", + "to": "sx3085398b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3179646b", + "length": "50.0000", + "name": "tpx_tpx328365b0", + "phases": "BS", + "to": "sx3179646b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766716c", + "length": "50.0000", + "name": "tpx_tpx337713c0", + "phases": "CS", + "to": "sx2766716c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122835b", + "length": "50.0000", + "name": "tpx_tpx339008b0", + "phases": "BS", + "to": "sx3122835b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235253a", + "length": "50.0000", + "name": "tpx_tpx138573a0", + "phases": "AS", + "to": "sx3235253a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048210a", + "length": "50.0000", + "name": "tpx_tpx302412a0", + "phases": "AS", + "to": "sx3048210a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104115b", + "length": "50.0000", + "name": "tpx_tpx391738b0", + "phases": "BS", + "to": "sx3104115b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2925506c", + "length": "50.0000", + "name": "tpx_tpx225533703c0", + "phases": "CS", + "to": "sx2925506c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3784018a", + "length": "50.0000", + "name": "tpx_tpx2224500658a0", + "phases": "AS", + "to": "sx3784018a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048231b", + "length": "50.0000", + "name": "tpx_tpx21400215b0", + "phases": "BS", + "to": "sx3048231b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2935550c", + "length": "50.0000", + "name": "tpx_tpx274999c0", + "phases": "CS", + "to": "sx2935550c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748144a", + "length": "50.0000", + "name": "tpx_tpx338984a0", + "phases": "AS", + "to": "sx2748144a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3233413b", + "length": "50.0000", + "name": "tpx_tpx226308727b0", + "phases": "BS", + "to": "sx3233413b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2748125c", + "length": "50.0000", + "name": "tpx_tpx338962c0", + "phases": "CS", + "to": "sx2748125c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160114a", + "length": "50.0000", + "name": "tpx_tpx339019a0", + "phases": "AS", + "to": "sx3160114a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3448661b", + "length": "50.0000", + "name": "tpx_tpx2223878647b0", + "phases": "BS", + "to": "sx3448661b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2729207c", + "length": "50.0000", + "name": "tpx_tpx2212168874c0", + "phases": "CS", + "to": "sx2729207c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2767341c", + "length": "50.0000", + "name": "tpx_tpx260577c0", + "phases": "CS", + "to": "sx2767341c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122827a", + "length": "50.0000", + "name": "tpx_tpx293673a0", + "phases": "AS", + "to": "sx3122827a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216351a", + "length": "50.0000", + "name": "tpx_tpx21398815a0", + "phases": "AS", + "to": "sx3216351a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2860487c", + "length": "50.0000", + "name": "tpx_tpx138586c0", + "phases": "CS", + "to": "sx2860487c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3159645a", + "length": "50.0000", + "name": "tpx_tpx228446184a0", + "phases": "AS", + "to": "sx3159645a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2730108c", + "length": "50.0000", + "name": "tpx_tpx223661c0", + "phases": "CS", + "to": "sx2730108c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973154a", + "length": "50.0000", + "name": "tpx_tpx338897a0", + "phases": "AS", + "to": "sx2973154a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2673310a", + "length": "50.0000", + "name": "tpx_tpx138562a0", + "phases": "AS", + "to": "sx2673310a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000711b", + "length": "50.0000", + "name": "tpx_tpx2000711b0", + "phases": "BS", + "to": "sx2000711b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710519a", + "length": "50.0000", + "name": "tpx_tpx302676a0", + "phases": "AS", + "to": "sx2710519a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3120502a", + "length": "50.0000", + "name": "tpx_tpx294812a0", + "phases": "AS", + "to": "sx3120502a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254217c", + "length": "50.0000", + "name": "tpx_tpx21399112c0", + "phases": "CS", + "to": "sx3254217c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691943b", + "length": "50.0000", + "name": "tpx_tpx323400b0", + "phases": "BS", + "to": "sx2691943b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897807b", + "length": "50.0000", + "name": "tpx_tpx21386771b0", + "phases": "BS", + "to": "sx2897807b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197618a", + "length": "50.0000", + "name": "tpx_tpx356008a0", + "phases": "AS", + "to": "sx3197618a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3179673c", + "length": "50.0000", + "name": "tpx_tpx260640c0", + "phases": "CS", + "to": "sx3179673c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2690187b", + "length": "50.0000", + "name": "tpx_tpx226308716b0", + "phases": "BS", + "to": "sx2690187b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000406a", + "length": "50.0000", + "name": "tpx_tpx2000406a0", + "phases": "AS", + "to": "sx2000406a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2955055b", + "length": "50.0000", + "name": "tpx_tpx21249647b0", + "phases": "BS", + "to": "sx2955055b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001208c", + "length": "50.0000", + "name": "tpx_tpx2001208c0", + "phases": "CS", + "to": "sx2001208c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766722b", + "length": "50.0000", + "name": "tpx_tpx337700b0", + "phases": "BS", + "to": "sx2766722b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2858166a", + "length": "50.0000", + "name": "tpx_tpx226192994a0", + "phases": "AS", + "to": "sx2858166a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748143a", + "length": "50.0000", + "name": "tpx_tpx28121368a0", + "phases": "AS", + "to": "sx2748143a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254873c", + "length": "50.0000", + "name": "tpx_tpx251862c0", + "phases": "CS", + "to": "sx3254873c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104134c", + "length": "50.0000", + "name": "tpx_tpx138718c0", + "phases": "CS", + "to": "sx3104134c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3195327a", + "length": "50.0000", + "name": "tpx_tpx225901711a0", + "phases": "AS", + "to": "sx3195327a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3011293c", + "length": "50.0000", + "name": "tpx_tpx28129466c0", + "phases": "CS", + "to": "sx3011293c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2842330c", + "length": "50.0000", + "name": "tpx_tpx356795c0", + "phases": "CS", + "to": "sx2842330c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691938b", + "length": "50.0000", + "name": "tpx_tpx355600b0", + "phases": "BS", + "to": "sx2691938b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2711234b", + "length": "50.0000", + "name": "tpx_tpx207287b0", + "phases": "BS", + "to": "sx2711234b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2973144c", + "length": "50.0000", + "name": "tpx_tpx138466c0", + "phases": "CS", + "to": "sx2973144c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2955074a", + "length": "50.0000", + "name": "tpx_tpx260479a0", + "phases": "AS", + "to": "sx2955074a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860499b", + "length": "50.0000", + "name": "tpx_tpx338997b0", + "phases": "BS", + "to": "sx2860499b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001315a", + "length": "50.0000", + "name": "tpx_tpx2001315a0", + "phases": "AS", + "to": "sx2001315a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897770c", + "length": "50.0000", + "name": "tpx_tpx337628c0", + "phases": "CS", + "to": "sx2897770c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728042a", + "length": "50.0000", + "name": "tpx_tpx2224387113a0", + "phases": "AS", + "to": "sx3728042a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766744b", + "length": "50.0000", + "name": "tpx_tpx28127319b0", + "phases": "BS", + "to": "sx2766744b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2955076a", + "length": "50.0000", + "name": "tpx_tpx21243817a0", + "phases": "AS", + "to": "sx2955076a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3179637c", + "length": "50.0000", + "name": "tpx_tpx21386442c0", + "phases": "CS", + "to": "sx3179637c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3178980c", + "length": "50.0000", + "name": "tpx_tpx302510c0", + "phases": "CS", + "to": "sx3178980c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3123509c", + "length": "50.0000", + "name": "tpx_tpx28129923c0", + "phases": "CS", + "to": "sx3123509c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879061b", + "length": "50.0000", + "name": "tpx_tpx337692b0", + "phases": "BS", + "to": "sx2879061b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254915b", + "length": "50.0000", + "name": "tpx_tpx260520b0", + "phases": "BS", + "to": "sx3254915b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3045895c", + "length": "50.0000", + "name": "tpx_tpx351020c0", + "phases": "CS", + "to": "sx3045895c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3214071c", + "length": "50.0000", + "name": "tpx_tpx226194419c0", + "phases": "CS", + "to": "sx3214071c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197639a", + "length": "50.0000", + "name": "tpx_tpx310569a0", + "phases": "AS", + "to": "sx3197639a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122817c", + "length": "50.0000", + "name": "tpx_tpx355779c0", + "phases": "CS", + "to": "sx3122817c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973157a", + "length": "50.0000", + "name": "tpx_tpx337722a0", + "phases": "AS", + "to": "sx2973157a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048199b", + "length": "50.0000", + "name": "tpx_tpx323237b0", + "phases": "BS", + "to": "sx3048199b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804259a", + "length": "50.0000", + "name": "tpx_tpx28127372a0", + "phases": "AS", + "to": "sx2804259a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122814c", + "length": "50.0000", + "name": "tpx_tpx338899c0", + "phases": "CS", + "to": "sx3122814c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2876797a", + "length": "50.0000", + "name": "tpx_tpx226193345a0", + "phases": "AS", + "to": "sx2876797a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991918b", + "length": "50.0000", + "name": "tpx_tpx391749b0", + "phases": "BS", + "to": "sx2991918b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3011293b", + "length": "50.0000", + "name": "tpx_tpx28129466b0", + "phases": "BS", + "to": "sx3011293b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104132a", + "length": "50.0000", + "name": "tpx_tpx302469a0", + "phases": "AS", + "to": "sx3104132a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2691951c", + "length": "50.0000", + "name": "tpx_tpx138379c0", + "phases": "CS", + "to": "sx2691951c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x1108404c", + "length": "50.0000", + "name": "tpx_tpx2221108404c0", + "phases": "CS", + "to": "sx1108404c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3085394c", + "length": "50.0000", + "name": "tpx_tpx274988c0", + "phases": "CS", + "to": "sx3085394c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748157a", + "length": "50.0000", + "name": "tpx_tpx338973a0", + "phases": "AS", + "to": "sx2748157a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001304a", + "length": "50.0000", + "name": "tpx_tpx2001304a0", + "phases": "AS", + "to": "sx2001304a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3085396a", + "length": "50.0000", + "name": "tpx_tpx138684a0", + "phases": "AS", + "to": "sx3085396a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785515c", + "length": "50.0000", + "name": "tpx_tpx293609c0", + "phases": "CS", + "to": "sx2785515c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3195321a", + "length": "50.0000", + "name": "tpx_tpx356805a0", + "phases": "AS", + "to": "sx3195321a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2933135a", + "length": "50.0000", + "name": "tpx_tpx226197070a0", + "phases": "AS", + "to": "sx2933135a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2955078a", + "length": "50.0000", + "name": "tpx_tpx260542a0", + "phases": "AS", + "to": "sx2955078a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897775c", + "length": "50.0000", + "name": "tpx_tpx138342c0", + "phases": "CS", + "to": "sx2897775c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2936213b", + "length": "50.0000", + "name": "tpx_tpx328363b0", + "phases": "BS", + "to": "sx2936213b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029183b", + "length": "50.0000", + "name": "tpx_tpx228580047b0", + "phases": "BS", + "to": "sx3029183b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916610b", + "length": "50.0000", + "name": "tpx_tpx293660b0", + "phases": "BS", + "to": "sx2916610b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991913a", + "length": "50.0000", + "name": "tpx_tpx138571a0", + "phases": "AS", + "to": "sx2991913a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860485b", + "length": "50.0000", + "name": "tpx_tpx321855b0", + "phases": "BS", + "to": "sx2860485b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235268c", + "length": "50.0000", + "name": "tpx_tpx28099529c0", + "phases": "CS", + "to": "sx3235268c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2972704c", + "length": "50.0000", + "name": "tpx_tpx228445756c0", + "phases": "CS", + "to": "sx2972704c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3011293a", + "length": "50.0000", + "name": "tpx_tpx28129466a0", + "phases": "AS", + "to": "sx3011293a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104131a", + "length": "50.0000", + "name": "tpx_tpx302410a0", + "phases": "AS", + "to": "sx3104131a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000702b", + "length": "50.0000", + "name": "tpx_tpx2000702b0", + "phases": "BS", + "to": "sx2000702b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048228c", + "length": "50.0000", + "name": "tpx_tpx274997c0", + "phases": "CS", + "to": "sx3048228c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991920a", + "length": "50.0000", + "name": "tpx_tpx28118822a0", + "phases": "AS", + "to": "sx2991920a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2876813a", + "length": "50.0000", + "name": "tpx_tpx355842a0", + "phases": "AS", + "to": "sx2876813a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2802480b", + "length": "50.0000", + "name": "tpx_tpx226308725b0", + "phases": "BS", + "to": "sx2802480b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897767c", + "length": "50.0000", + "name": "tpx_tpx338960c0", + "phases": "CS", + "to": "sx2897767c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048887b", + "length": "50.0000", + "name": "tpx_tpx260586b0", + "phases": "BS", + "to": "sx3048887b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104113a", + "length": "50.0000", + "name": "tpx_tpx138560a0", + "phases": "AS", + "to": "sx3104113a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000408a", + "length": "50.0000", + "name": "tpx_tpx2000408a0", + "phases": "AS", + "to": "sx2000408a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710530b", + "length": "50.0000", + "name": "tpx_tpx21381118b0", + "phases": "BS", + "to": "sx2710530b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2936216c", + "length": "50.0000", + "name": "tpx_tpx223663c0", + "phases": "CS", + "to": "sx2936216c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2673321a", + "length": "50.0000", + "name": "tpx_tpx302674a0", + "phases": "AS", + "to": "sx2673321a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3217057a", + "length": "50.0000", + "name": "tpx_tpx218475a0", + "phases": "AS", + "to": "sx3217057a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000713b", + "length": "50.0000", + "name": "tpx_tpx2000713b0", + "phases": "BS", + "to": "sx2000713b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860478b", + "length": "50.0000", + "name": "tpx_tpx355590b0", + "phases": "BS", + "to": "sx2860478b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2730187a", + "length": "50.0000", + "name": "tpx_tpx260464a0", + "phases": "AS", + "to": "sx2730187a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216367b", + "length": "50.0000", + "name": "tpx_tpx337648b0", + "phases": "BS", + "to": "sx3216367b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785534b", + "length": "50.0000", + "name": "tpx_tpx338982b0", + "phases": "BS", + "to": "sx2785534b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001206c", + "length": "50.0000", + "name": "tpx_tpx2001206c0", + "phases": "CS", + "to": "sx2001206c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3251799a", + "length": "50.0000", + "name": "tpx_tpx260562a0", + "phases": "AS", + "to": "sx3251799a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729408b", + "length": "50.0000", + "name": "tpx_tpx355768b0", + "phases": "BS", + "to": "sx2729408b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691954b", + "length": "50.0000", + "name": "tpx_tpx21399361b0", + "phases": "BS", + "to": "sx2691954b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029504b", + "length": "50.0000", + "name": "tpx_tpx337702b0", + "phases": "BS", + "to": "sx3029504b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3108449a", + "length": "50.0000", + "name": "tpx_tpx228622562a0", + "phases": "AS", + "to": "sx3108449a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2955006c", + "length": "50.0000", + "name": "tpx_tpx356797c0", + "phases": "CS", + "to": "sx2955006c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841626c", + "length": "50.0000", + "name": "tpx_tpx302808c0", + "phases": "CS", + "to": "sx2841626c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000911c", + "length": "50.0000", + "name": "tpx_tpx2000911c0", + "phases": "CS", + "to": "sx2000911c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3251806b", + "length": "50.0000", + "name": "tpx_tpx355602b0", + "phases": "BS", + "to": "sx3251806b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254219c", + "length": "50.0000", + "name": "tpx_tpx138716c0", + "phases": "CS", + "to": "sx3254219c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879067a", + "length": "50.0000", + "name": "tpx_tpx21380616a0", + "phases": "AS", + "to": "sx2879067a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3102793b", + "length": "50.0000", + "name": "tpx_tpx227734175b0", + "phases": "BS", + "to": "sx3102793b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066801c", + "length": "50.0000", + "name": "tpx_tpx138464c0", + "phases": "CS", + "to": "sx3066801c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001313a", + "length": "50.0000", + "name": "tpx_tpx2001313a0", + "phases": "AS", + "to": "sx2001313a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3216343c", + "length": "50.0000", + "name": "tpx_tpx337626c0", + "phases": "CS", + "to": "sx3216343c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2748133c", + "length": "50.0000", + "name": "tpx_tpx302861c0", + "phases": "CS", + "to": "sx2748133c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254227b", + "length": "50.0000", + "name": "tpx_tpx338995b0", + "phases": "BS", + "to": "sx3254227b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2861219b", + "length": "50.0000", + "name": "tpx_tpx21389761b0", + "phases": "BS", + "to": "sx2861219b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3215549b", + "length": "50.0000", + "name": "tpx_tpx228219458b0", + "phases": "BS", + "to": "sx3215549b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2711225c", + "length": "50.0000", + "name": "tpx_tpx260553c0", + "phases": "CS", + "to": "sx2711225c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104127b", + "length": "50.0000", + "name": "tpx_tpx337690b0", + "phases": "BS", + "to": "sx3104127b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2862616c", + "length": "50.0000", + "name": "tpx_tpx227447984c0", + "phases": "CS", + "to": "sx2862616c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879075a", + "length": "50.0000", + "name": "tpx_tpx337724a0", + "phases": "AS", + "to": "sx2879075a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254216a", + "length": "50.0000", + "name": "tpx_tpx21398563a0", + "phases": "AS", + "to": "sx3254216a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897773a", + "length": "50.0000", + "name": "tpx_tpx338918a0", + "phases": "AS", + "to": "sx2897773a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2822865c", + "length": "50.0000", + "name": "tpx_tpx274986c0", + "phases": "CS", + "to": "sx2822865c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2842379a", + "length": "50.0000", + "name": "tpx_tpx260488a0", + "phases": "AS", + "to": "sx2842379a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001302a", + "length": "50.0000", + "name": "tpx_tpx2001302a0", + "phases": "AS", + "to": "sx2001302a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860493a", + "length": "50.0000", + "name": "tpx_tpx21397645a0", + "phases": "AS", + "to": "sx2860493a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001008b", + "length": "50.0000", + "name": "tpx_tpx2001008b0", + "phases": "BS", + "to": "sx2001008b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2823545a", + "length": "50.0000", + "name": "tpx_tpx356807a0", + "phases": "AS", + "to": "sx2823545a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197643b", + "length": "50.0000", + "name": "tpx_tpx302369b0", + "phases": "BS", + "to": "sx3197643b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254869b", + "length": "50.0000", + "name": "tpx_tpx260575b0", + "phases": "BS", + "to": "sx3254869b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785527a", + "length": "50.0000", + "name": "tpx_tpx293522a0", + "phases": "AS", + "to": "sx2785527a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2972930a", + "length": "50.0000", + "name": "tpx_tpx338927a0", + "phases": "AS", + "to": "sx2972930a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3232902a", + "length": "50.0000", + "name": "tpx_tpx226194826a0", + "phases": "AS", + "to": "sx3232902a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2916599a", + "length": "50.0000", + "name": "tpx_tpx356015a0", + "phases": "AS", + "to": "sx2916599a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673320b", + "length": "50.0000", + "name": "tpx_tpx392037b0", + "phases": "BS", + "to": "sx2673320b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001215c", + "length": "50.0000", + "name": "tpx_tpx2001215c0", + "phases": "CS", + "to": "sx2001215c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2711224b", + "length": "50.0000", + "name": "tpx_tpx260500b0", + "phases": "BS", + "to": "sx2711224b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897554c", + "length": "50.0000", + "name": "tpx_tpx2212168870c0", + "phases": "CS", + "to": "sx2897554c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3067507c", + "length": "50.0000", + "name": "tpx_tpx260535c0", + "phases": "CS", + "to": "sx3067507c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3082981c", + "length": "50.0000", + "name": "tpx_tpx226193737c0", + "phases": "CS", + "to": "sx3082981c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3252336b", + "length": "50.0000", + "name": "tpx_tpx226308723b0", + "phases": "BS", + "to": "sx3252336b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766730b", + "length": "50.0000", + "name": "tpx_tpx355359b0", + "phases": "BS", + "to": "sx2766730b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2729414c", + "length": "50.0000", + "name": "tpx_tpx293655c0", + "phases": "CS", + "to": "sx2729414c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2730106c", + "length": "50.0000", + "name": "tpx_tpx356814c0", + "phases": "CS", + "to": "sx2730106c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973164a", + "length": "50.0000", + "name": "tpx_tpx302514a0", + "phases": "AS", + "to": "sx2973164a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3270814a", + "length": "50.0000", + "name": "tpx_tpx226191850a0", + "phases": "AS", + "to": "sx3270814a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2805036b", + "length": "50.0000", + "name": "tpx_tpx275248b0", + "phases": "BS", + "to": "sx2805036b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235243c", + "length": "50.0000", + "name": "tpx_tpx275008c0", + "phases": "CS", + "to": "sx3235243c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2691953a", + "length": "50.0000", + "name": "tpx_tpx302732a0", + "phases": "AS", + "to": "sx2691953a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197636b", + "length": "50.0000", + "name": "tpx_tpx28148580b0", + "phases": "BS", + "to": "sx3197636b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991909a", + "length": "50.0000", + "name": "tpx_tpx355773a0", + "phases": "AS", + "to": "sx2991909a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2688693c", + "length": "50.0000", + "name": "tpx_tpx225918936c0", + "phases": "CS", + "to": "sx2688693c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3086078a", + "length": "50.0000", + "name": "tpx_tpx218473a0", + "phases": "AS", + "to": "sx3086078a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197633a", + "length": "50.0000", + "name": "tpx_tpx338893a0", + "phases": "AS", + "to": "sx3197633a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860489a", + "length": "50.0000", + "name": "tpx_tpx302405a0", + "phases": "AS", + "to": "sx2860489a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3178981b", + "length": "50.0000", + "name": "tpx_tpx21396331b0", + "phases": "BS", + "to": "sx3178981b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2822863c", + "length": "50.0000", + "name": "tpx_tpx337635c0", + "phases": "CS", + "to": "sx2822863c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3178973a", + "length": "50.0000", + "name": "tpx_tpx21149420a0", + "phases": "AS", + "to": "sx3178973a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879063b", + "length": "50.0000", + "name": "tpx_tpx337646b0", + "phases": "BS", + "to": "sx2879063b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001204c", + "length": "50.0000", + "name": "tpx_tpx2001204c0", + "phases": "CS", + "to": "sx2001204c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729414b", + "length": "50.0000", + "name": "tpx_tpx293655b0", + "phases": "BS", + "to": "sx2729414b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3178976a", + "length": "50.0000", + "name": "tpx_tpx21397721a0", + "phases": "AS", + "to": "sx3178976a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000402a", + "length": "50.0000", + "name": "tpx_tpx2000402a0", + "phases": "AS", + "to": "sx2000402a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048206a", + "length": "50.0000", + "name": "tpx_tpx138649a0", + "phases": "AS", + "to": "sx3048206a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2935559a", + "length": "50.0000", + "name": "tpx_tpx21400185a0", + "phases": "AS", + "to": "sx2935559a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3181545c", + "length": "50.0000", + "name": "tpx_tpx226193702c0", + "phases": "CS", + "to": "sx3181545c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216358a", + "length": "50.0000", + "name": "tpx_tpx21399826a0", + "phases": "AS", + "to": "sx3216358a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235267c", + "length": "50.0000", + "name": "tpx_tpx321892c0", + "phases": "CS", + "to": "sx3235267c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2767343c", + "length": "50.0000", + "name": "tpx_tpx356791c0", + "phases": "CS", + "to": "sx2767343c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216346a", + "length": "50.0000", + "name": "tpx_tpx391991a0", + "phases": "AS", + "to": "sx3216346a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2876796a", + "length": "50.0000", + "name": "tpx_tpx226193338a0", + "phases": "AS", + "to": "sx2876796a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748781a", + "length": "50.0000", + "name": "tpx_tpx21382813a0", + "phases": "AS", + "to": "sx2748781a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3157718a", + "length": "50.0000", + "name": "tpx_tpx226194093a0", + "phases": "AS", + "to": "sx3157718a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001400c", + "length": "50.0000", + "name": "tpx_tpx2001400c0", + "phases": "CS", + "to": "sx2001400c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3067447a", + "length": "50.0000", + "name": "tpx_tpx21386157a0", + "phases": "AS", + "to": "sx3067447a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3178982a", + "length": "50.0000", + "name": "tpx_tpx294843a0", + "phases": "AS", + "to": "sx3178982a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3066811b", + "length": "50.0000", + "name": "tpx_tpx28126875b0", + "phases": "BS", + "to": "sx3066811b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2991921c", + "length": "50.0000", + "name": "tpx_tpx28129399c0", + "phases": "CS", + "to": "sx2991921c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066807c", + "length": "50.0000", + "name": "tpx_tpx337624c0", + "phases": "CS", + "to": "sx3066807c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104125b", + "length": "50.0000", + "name": "tpx_tpx138264b0", + "phases": "BS", + "to": "sx3104125b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2917359a", + "length": "50.0000", + "name": "tpx_tpx21482431a0", + "phases": "AS", + "to": "sx2917359a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2915542c", + "length": "50.0000", + "name": "tpx_tpx227921427c0", + "phases": "CS", + "to": "sx2915542c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2917336c", + "length": "50.0000", + "name": "tpx_tpx260513c0", + "phases": "CS", + "to": "sx2917336c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804272b", + "length": "50.0000", + "name": "tpx_tpx338993b0", + "phases": "BS", + "to": "sx2804272b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001311a", + "length": "50.0000", + "name": "tpx_tpx2001311a0", + "phases": "AS", + "to": "sx2001311a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x0247160b", + "length": "50.0000", + "name": "tpx_tpx247160b0", + "phases": "BS", + "to": "sx0247160b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000413a", + "length": "50.0000", + "name": "tpx_tpx2000413a0", + "phases": "AS", + "to": "sx2000413a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766750c", + "length": "50.0000", + "name": "tpx_tpx293424c0", + "phases": "CS", + "to": "sx2766750c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2992556c", + "length": "50.0000", + "name": "tpx_tpx346639c0", + "phases": "CS", + "to": "sx2992556c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2858175a", + "length": "50.0000", + "name": "tpx_tpx225668688a0", + "phases": "AS", + "to": "sx2858175a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3081380a", + "length": "50.0000", + "name": "tpx_tpx225700953a0", + "phases": "AS", + "to": "sx3081380a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254203b", + "length": "50.0000", + "name": "tpx_tpx323233b0", + "phases": "BS", + "to": "sx3254203b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3235246b", + "length": "50.0000", + "name": "tpx_tpx323279b0", + "phases": "BS", + "to": "sx3235246b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710516a", + "length": "50.0000", + "name": "tpx_tpx321839a0", + "phases": "AS", + "to": "sx2710516a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2955047a", + "length": "50.0000", + "name": "tpx_tpx21469911a0", + "phases": "AS", + "to": "sx2955047a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3312692a", + "length": "50.0000", + "name": "tpx_tpx2223661373a0", + "phases": "AS", + "to": "sx3312692a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000909c", + "length": "50.0000", + "name": "tpx_tpx2000909c0", + "phases": "CS", + "to": "sx2000909c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2726973a", + "length": "50.0000", + "name": "tpx_tpx226192926a0", + "phases": "AS", + "to": "sx2726973a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3198347c", + "length": "50.0000", + "name": "tpx_tpx260622c0", + "phases": "CS", + "to": "sx3198347c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3118855c", + "length": "50.0000", + "name": "tpx_tpx339052c0", + "phases": "CS", + "to": "sx3118855c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2915542b", + "length": "50.0000", + "name": "tpx_tpx227921427b0", + "phases": "BS", + "to": "sx2915542b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066810c", + "length": "50.0000", + "name": "tpx_tpx337659c0", + "phases": "CS", + "to": "sx3066810c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710521a", + "length": "50.0000", + "name": "tpx_tpx138680a0", + "phases": "AS", + "to": "sx2710521a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3253570c", + "length": "50.0000", + "name": "tpx_tpx228314460c0", + "phases": "CS", + "to": "sx3253570c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3189190a", + "length": "50.0000", + "name": "tpx_tpx227100753a0", + "phases": "AS", + "to": "sx3189190a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2673316a", + "length": "50.0000", + "name": "tpx_tpx28120855a0", + "phases": "AS", + "to": "sx2673316a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001006b", + "length": "50.0000", + "name": "tpx_tpx2001006b0", + "phases": "BS", + "to": "sx2001006b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897801a", + "length": "50.0000", + "name": "tpx_tpx21470405a0", + "phases": "AS", + "to": "sx2897801a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2936279c", + "length": "50.0000", + "name": "tpx_tpx247184c0", + "phases": "CS", + "to": "sx2936279c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2710532c", + "length": "50.0000", + "name": "tpx_tpx293666c0", + "phases": "CS", + "to": "sx2710532c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3011229a", + "length": "50.0000", + "name": "tpx_tpx356801a0", + "phases": "AS", + "to": "sx3011229a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649300a", + "length": "50.0000", + "name": "tpx_tpx2224237546a0", + "phases": "AS", + "to": "sx3649300a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254213b", + "length": "50.0000", + "name": "tpx_tpx321859b0", + "phases": "BS", + "to": "sx3254213b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860488b", + "length": "50.0000", + "name": "tpx_tpx391751b0", + "phases": "BS", + "to": "sx2860488b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2933120c", + "length": "50.0000", + "name": "tpx_tpx226192890c0", + "phases": "CS", + "to": "sx2933120c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048207b", + "length": "50.0000", + "name": "tpx_tpx323248b0", + "phases": "BS", + "to": "sx3048207b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729430b", + "length": "50.0000", + "name": "tpx_tpx21248901b0", + "phases": "BS", + "to": "sx2729430b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2685805a", + "length": "50.0000", + "name": "tpx_tpx225533531a0", + "phases": "AS", + "to": "sx2685805a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254211b", + "length": "50.0000", + "name": "tpx_tpx247084b0", + "phases": "BS", + "to": "sx3254211b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710511a", + "length": "50.0000", + "name": "tpx_tpx21357515a0", + "phases": "AS", + "to": "sx2710511a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2954348a", + "length": "50.0000", + "name": "tpx_tpx356013a0", + "phases": "AS", + "to": "sx2954348a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104135a", + "length": "50.0000", + "name": "tpx_tpx21399508a0", + "phases": "AS", + "to": "sx3104135a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973153a", + "length": "50.0000", + "name": "tpx_tpx338925a0", + "phases": "AS", + "to": "sx2973153a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001213c", + "length": "50.0000", + "name": "tpx_tpx2001213c0", + "phases": "CS", + "to": "sx2001213c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748139b", + "length": "50.0000", + "name": "tpx_tpx21400108b0", + "phases": "BS", + "to": "sx2748139b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048962a", + "length": "50.0000", + "name": "tpx_tpx260555a0", + "phases": "AS", + "to": "sx3048962a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3207907b", + "length": "50.0000", + "name": "tpx_tpx293664b0", + "phases": "BS", + "to": "sx3207907b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048200b", + "length": "50.0000", + "name": "tpx_tpx391740b0", + "phases": "BS", + "to": "sx3048200b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085390b", + "length": "50.0000", + "name": "tpx_tpx321848b0", + "phases": "BS", + "to": "sx3085390b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2691952a", + "length": "50.0000", + "name": "tpx_tpx391980a0", + "phases": "AS", + "to": "sx2691952a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010585a", + "length": "50.0000", + "name": "tpx_tpx294810a0", + "phases": "AS", + "to": "sx3010585a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649302a", + "length": "50.0000", + "name": "tpx_tpx2224237653a0", + "phases": "AS", + "to": "sx3649302a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3029499a", + "length": "50.0000", + "name": "tpx_tpx302678a0", + "phases": "AS", + "to": "sx3029499a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104118c", + "length": "50.0000", + "name": "tpx_tpx321890c0", + "phases": "CS", + "to": "sx3104118c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2820528c", + "length": "50.0000", + "name": "tpx_tpx226191778c0", + "phases": "CS", + "to": "sx2820528c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2729406c", + "length": "50.0000", + "name": "tpx_tpx337633c0", + "phases": "CS", + "to": "sx2729406c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3086079b", + "length": "50.0000", + "name": "tpx_tpx260457b0", + "phases": "BS", + "to": "sx3086079b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2763811c", + "length": "50.0000", + "name": "tpx_tpx21459629c0", + "phases": "CS", + "to": "sx2763811c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2935568b", + "length": "50.0000", + "name": "tpx_tpx28119958b0", + "phases": "BS", + "to": "sx2935568b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001202c", + "length": "50.0000", + "name": "tpx_tpx2001202c0", + "phases": "CS", + "to": "sx2001202c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000404a", + "length": "50.0000", + "name": "tpx_tpx2000404a0", + "phases": "AS", + "to": "sx2000404a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2990098a", + "length": "50.0000", + "name": "tpx_tpx226308721a0", + "phases": "AS", + "to": "sx2990098a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2915534a", + "length": "50.0000", + "name": "tpx_tpx227917122a0", + "phases": "AS", + "to": "sx2915534a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2991943c", + "length": "50.0000", + "name": "tpx_tpx21399619c0", + "phases": "CS", + "to": "sx2991943c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x0247171b", + "length": "50.0000", + "name": "tpx_tpx247171b0", + "phases": "BS", + "to": "sx0247171b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3225319b", + "length": "50.0000", + "name": "tpx_tpx225533675b0", + "phases": "BS", + "to": "sx3225319b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2708744b", + "length": "50.0000", + "name": "tpx_tpx226308710b0", + "phases": "BS", + "to": "sx2708744b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3207907a", + "length": "50.0000", + "name": "tpx_tpx293664a0", + "phases": "AS", + "to": "sx3207907a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3179608c", + "length": "50.0000", + "name": "tpx_tpx356793c0", + "phases": "CS", + "to": "sx3179608c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3156034a", + "length": "50.0000", + "name": "tpx_tpx391993a0", + "phases": "AS", + "to": "sx3156034a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649306a", + "length": "50.0000", + "name": "tpx_tpx2224238167a0", + "phases": "AS", + "to": "sx3649306a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2786266a", + "length": "50.0000", + "name": "tpx_tpx260631a0", + "phases": "AS", + "to": "sx2786266a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2798067b", + "length": "50.0000", + "name": "tpx_tpx225533237b0", + "phases": "BS", + "to": "sx2798067b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010563a", + "length": "50.0000", + "name": "tpx_tpx294845a0", + "phases": "AS", + "to": "sx3010563a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2710525c", + "length": "50.0000", + "name": "tpx_tpx355437c0", + "phases": "CS", + "to": "sx2710525c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2804277c", + "length": "50.0000", + "name": "tpx_tpx339043c0", + "phases": "CS", + "to": "sx2804277c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066816a", + "length": "50.0000", + "name": "tpx_tpx21398676a0", + "phases": "AS", + "to": "sx3066816a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048211a", + "length": "50.0000", + "name": "tpx_tpx21396015a0", + "phases": "AS", + "to": "sx3048211a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2914324a", + "length": "50.0000", + "name": "tpx_tpx226196642a0", + "phases": "AS", + "to": "sx2914324a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691942b", + "length": "50.0000", + "name": "tpx_tpx247105b0", + "phases": "BS", + "to": "sx2691942b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710544a", + "length": "50.0000", + "name": "tpx_tpx21482279a0", + "phases": "AS", + "to": "sx2710544a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785522b", + "length": "50.0000", + "name": "tpx_tpx28127681b0", + "phases": "BS", + "to": "sx2785522b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2876814a", + "length": "50.0000", + "name": "tpx_tpx225806974a0", + "phases": "AS", + "to": "sx2876814a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3214069c", + "length": "50.0000", + "name": "tpx_tpx226194421c0", + "phases": "CS", + "to": "sx3214069c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000415a", + "length": "50.0000", + "name": "tpx_tpx2000415a0", + "phases": "AS", + "to": "sx2000415a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3047073c", + "length": "50.0000", + "name": "tpx_tpx227917133c0", + "phases": "CS", + "to": "sx3047073c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160878c", + "length": "50.0000", + "name": "tpx_tpx260511c0", + "phases": "CS", + "to": "sx3160878c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3178997c", + "length": "50.0000", + "name": "tpx_tpx293422c0", + "phases": "CS", + "to": "sx3178997c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841648a", + "length": "50.0000", + "name": "tpx_tpx337720a0", + "phases": "AS", + "to": "sx2841648a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2673312a", + "length": "50.0000", + "name": "tpx_tpx321837a0", + "phases": "AS", + "to": "sx2673312a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197624b", + "length": "50.0000", + "name": "tpx_tpx323235b0", + "phases": "BS", + "to": "sx3197624b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104830c", + "length": "50.0000", + "name": "tpx_tpx328367c0", + "phases": "CS", + "to": "sx3104830c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3029503c", + "length": "50.0000", + "name": "tpx_tpx138373c0", + "phases": "CS", + "to": "sx3029503c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3097861c", + "length": "50.0000", + "name": "tpx_tpx225533215c0", + "phases": "CS", + "to": "sx3097861c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3251854a", + "length": "50.0000", + "name": "tpx_tpx226881700a0", + "phases": "AS", + "to": "sx3251854a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3067506c", + "length": "50.0000", + "name": "tpx_tpx260620c0", + "phases": "CS", + "to": "sx3067506c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104136b", + "length": "50.0000", + "name": "tpx_tpx338949b0", + "phases": "BS", + "to": "sx3104136b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991906a", + "length": "50.0000", + "name": "tpx_tpx247060a0", + "phases": "AS", + "to": "sx2991906a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3141397b", + "length": "50.0000", + "name": "tpx_tpx21396796b0", + "phases": "BS", + "to": "sx3141397b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822871b", + "length": "50.0000", + "name": "tpx_tpx355840b0", + "phases": "BS", + "to": "sx2822871b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010559a", + "length": "50.0000", + "name": "tpx_tpx337679a0", + "phases": "AS", + "to": "sx3010559a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729411a", + "length": "50.0000", + "name": "tpx_tpx138769a0", + "phases": "AS", + "to": "sx2729411a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3029502a", + "length": "50.0000", + "name": "tpx_tpx138262a0", + "phases": "AS", + "to": "sx3029502a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001004b", + "length": "50.0000", + "name": "tpx_tpx2001004b0", + "phases": "BS", + "to": "sx2001004b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2935549b", + "length": "50.0000", + "name": "tpx_tpx337668b0", + "phases": "BS", + "to": "sx2935549b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3101194c", + "length": "50.0000", + "name": "tpx_tpx21459660c0", + "phases": "CS", + "to": "sx3101194c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2842329c", + "length": "50.0000", + "name": "tpx_tpx260568c0", + "phases": "CS", + "to": "sx2842329c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3067448c", + "length": "50.0000", + "name": "tpx_tpx262075c0", + "phases": "CS", + "to": "sx3067448c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3207907c", + "length": "50.0000", + "name": "tpx_tpx293664c0", + "phases": "CS", + "to": "sx3207907c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748780a", + "length": "50.0000", + "name": "tpx_tpx356803a0", + "phases": "AS", + "to": "sx2748780a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3645810c", + "length": "50.0000", + "name": "tpx_tpx2224230651c0", + "phases": "CS", + "to": "sx3645810c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3142049c", + "length": "50.0000", + "name": "tpx_tpx356810c0", + "phases": "CS", + "to": "sx3142049c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_750_triplex_12", + "continuous_rating_B": "580.00", + "emergency_rating_B": "725.00", + "from": "x2691959b", + "length": "50.0000", + "name": "tpx_tpx21400253b0", + "phases": "BS", + "to": "sx2691959b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729412a", + "length": "50.0000", + "name": "tpx_tpx28150189a0", + "phases": "AS", + "to": "sx2729412a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973163b", + "length": "50.0000", + "name": "tpx_tpx391753b0", + "phases": "BS", + "to": "sx2973163b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3626914c", + "length": "50.0000", + "name": "tpx_tpx2224179616c0", + "phases": "CS", + "to": "sx3626914c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2842384c", + "length": "50.0000", + "name": "tpx_tpx260637c0", + "phases": "CS", + "to": "sx2842384c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122810b", + "length": "50.0000", + "name": "tpx_tpx323242b0", + "phases": "BS", + "to": "sx3122810b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2911069b", + "length": "50.0000", + "name": "tpx_tpx225571871b0", + "phases": "BS", + "to": "sx2911069b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2989566b", + "length": "50.0000", + "name": "tpx_tpx260602b0", + "phases": "BS", + "to": "sx2989566b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3632979a", + "length": "50.0000", + "name": "tpx_tpx2224192013a0", + "phases": "AS", + "to": "sx3632979a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2726983a", + "length": "50.0000", + "name": "tpx_tpx226109079a0", + "phases": "AS", + "to": "sx2726983a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000708b", + "length": "50.0000", + "name": "tpx_tpx2000708b0", + "phases": "BS", + "to": "sx2000708b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001015b", + "length": "50.0000", + "name": "tpx_tpx2001015b0", + "phases": "BS", + "to": "sx2001015b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001211c", + "length": "50.0000", + "name": "tpx_tpx2001211c0", + "phases": "CS", + "to": "sx2001211c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160865a", + "length": "50.0000", + "name": "tpx_tpx260515a0", + "phases": "AS", + "to": "sx3160865a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991908a", + "length": "50.0000", + "name": "tpx_tpx338900a0", + "phases": "AS", + "to": "sx2991908a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104123c", + "length": "50.0000", + "name": "tpx_tpx338924c0", + "phases": "CS", + "to": "sx3104123c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879753b", + "length": "50.0000", + "name": "tpx_tpx21249674b0", + "phases": "BS", + "to": "sx2879753b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_750_triplex_12", + "continuous_rating_A": "580.00", + "emergency_rating_A": "725.00", + "from": "x3234149a", + "length": "50.0000", + "name": "tpx_tpx227944551a0", + "phases": "AS", + "to": "sx3234149a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2954349b", + "length": "50.0000", + "name": "tpx_tpx337699b0", + "phases": "BS", + "to": "sx2954349b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973160b", + "length": "50.0000", + "name": "tpx_tpx338935b0", + "phases": "BS", + "to": "sx2973160b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3150961c", + "length": "50.0000", + "name": "tpx_tpx223400157c0", + "phases": "CS", + "to": "sx3150961c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2935560c", + "length": "50.0000", + "name": "tpx_tpx293659c0", + "phases": "CS", + "to": "sx2935560c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104154c", + "length": "50.0000", + "name": "tpx_tpx337642c0", + "phases": "CS", + "to": "sx3104154c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216337a", + "length": "50.0000", + "name": "tpx_tpx356011a0", + "phases": "AS", + "to": "sx3216337a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841630c", + "length": "50.0000", + "name": "tpx_tpx138404c0", + "phases": "CS", + "to": "sx2841630c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673308b", + "length": "50.0000", + "name": "tpx_tpx337653b0", + "phases": "BS", + "to": "sx2673308b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879077b", + "length": "50.0000", + "name": "tpx_tpx337709b0", + "phases": "BS", + "to": "sx2879077b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766742b", + "length": "50.0000", + "name": "tpx_tpx355585b0", + "phases": "BS", + "to": "sx2766742b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710518a", + "length": "50.0000", + "name": "tpx_tpx21209868a0", + "phases": "AS", + "to": "sx2710518a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710520a", + "length": "50.0000", + "name": "tpx_tpx138679a0", + "phases": "AS", + "to": "sx2710520a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2710515c", + "length": "50.0000", + "name": "tpx_tpx321884c0", + "phases": "CS", + "to": "sx2710515c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3139086b", + "length": "50.0000", + "name": "tpx_tpx226192846b0", + "phases": "BS", + "to": "sx3139086b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000410a", + "length": "50.0000", + "name": "tpx_tpx2000410a0", + "phases": "AS", + "to": "sx2000410a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3177881c", + "length": "50.0000", + "name": "tpx_tpx227896008c0", + "phases": "CS", + "to": "sx3177881c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897779c", + "length": "50.0000", + "name": "tpx_tpx302508c0", + "phases": "CS", + "to": "sx2897779c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2764403a", + "length": "50.0000", + "name": "tpx_tpx226193078a0", + "phases": "AS", + "to": "sx2764403a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2731712b", + "length": "50.0000", + "name": "tpx_tpx21426205b0", + "phases": "BS", + "to": "sx2731712b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048201b", + "length": "50.0000", + "name": "tpx_tpx391742b0", + "phases": "BS", + "to": "sx3048201b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3179682c", + "length": "50.0000", + "name": "tpx_tpx207292c0", + "phases": "CS", + "to": "sx3179682c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2879092c", + "length": "50.0000", + "name": "tpx_tpx21399326c0", + "phases": "CS", + "to": "sx2879092c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879087a", + "length": "50.0000", + "name": "tpx_tpx21399762a0", + "phases": "AS", + "to": "sx2879087a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973152b", + "length": "50.0000", + "name": "tpx_tpx323253b0", + "phases": "BS", + "to": "sx2973152b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000904c", + "length": "50.0000", + "name": "tpx_tpx2000904c0", + "phases": "CS", + "to": "sx2000904c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3198356c", + "length": "50.0000", + "name": "tpx_tpx350993c0", + "phases": "CS", + "to": "sx3198356c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254218a", + "length": "50.0000", + "name": "tpx_tpx138720a0", + "phases": "AS", + "to": "sx3254218a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785520b", + "length": "50.0000", + "name": "tpx_tpx138755b0", + "phases": "BS", + "to": "sx2785520b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029501b", + "length": "50.0000", + "name": "tpx_tpx337688b0", + "phases": "BS", + "to": "sx3029501b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3178969b", + "length": "50.0000", + "name": "tpx_tpx355596b0", + "phases": "BS", + "to": "sx3178969b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2954346b", + "length": "50.0000", + "name": "tpx_tpx323397b0", + "phases": "BS", + "to": "sx2954346b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3029497c", + "length": "50.0000", + "name": "tpx_tpx337631c0", + "phases": "CS", + "to": "sx3029497c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728039a", + "length": "50.0000", + "name": "tpx_tpx2224387053a0", + "phases": "AS", + "to": "sx3728039a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3120503a", + "length": "50.0000", + "name": "tpx_tpx225869139a0", + "phases": "AS", + "to": "sx3120503a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673319c", + "length": "50.0000", + "name": "tpx_tpx391973c0", + "phases": "CS", + "to": "sx2673319c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2860492c", + "length": "50.0000", + "name": "tpx_tpx21395720c0", + "phases": "CS", + "to": "sx2860492c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748140a", + "length": "50.0000", + "name": "tpx_tpx391995a0", + "phases": "AS", + "to": "sx2748140a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197647a", + "length": "50.0000", + "name": "tpx_tpx294787a0", + "phases": "AS", + "to": "sx3197647a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197638a", + "length": "50.0000", + "name": "tpx_tpx21396959a0", + "phases": "AS", + "to": "sx3197638a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2814529c", + "length": "50.0000", + "name": "tpx_tpx28120126c0", + "phases": "CS", + "to": "sx2814529c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2820556a", + "length": "50.0000", + "name": "tpx_tpx226196648a0", + "phases": "AS", + "to": "sx2820556a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2804250c", + "length": "50.0000", + "name": "tpx_tpx274992c0", + "phases": "CS", + "to": "sx2804250c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048890c", + "length": "50.0000", + "name": "tpx_tpx28128517c0", + "phases": "CS", + "to": "sx3048890c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216344b", + "length": "50.0000", + "name": "tpx_tpx323264b0", + "phases": "BS", + "to": "sx3216344b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2767408c", + "length": "50.0000", + "name": "tpx_tpx260517c0", + "phases": "CS", + "to": "sx2767408c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804255b", + "length": "50.0000", + "name": "tpx_tpx338913b0", + "phases": "BS", + "to": "sx2804255b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3727709a", + "length": "50.0000", + "name": "tpx_tpx2224386842a0", + "phases": "AS", + "to": "sx3727709a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2916598a", + "length": "50.0000", + "name": "tpx_tpx355933a0", + "phases": "AS", + "to": "sx2916598a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3157710b", + "length": "50.0000", + "name": "tpx_tpx226193361b0", + "phases": "BS", + "to": "sx3157710b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160862c", + "length": "50.0000", + "name": "tpx_tpx21386143c0", + "phases": "CS", + "to": "sx3160862c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2898522a", + "length": "50.0000", + "name": "tpx_tpx260648a0", + "phases": "AS", + "to": "sx2898522a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804251a", + "length": "50.0000", + "name": "tpx_tpx138646a0", + "phases": "AS", + "to": "sx2804251a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254870c", + "length": "50.0000", + "name": "tpx_tpx260581c0", + "phases": "CS", + "to": "sx3254870c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2929261a", + "length": "50.0000", + "name": "tpx_tpx225533337a0", + "phases": "AS", + "to": "sx2929261a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879773a", + "length": "50.0000", + "name": "tpx_tpx207290a0", + "phases": "AS", + "to": "sx2879773a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3068944b", + "length": "50.0000", + "name": "tpx_tpx260494b0", + "phases": "BS", + "to": "sx3068944b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254215c", + "length": "50.0000", + "name": "tpx_tpx302859c0", + "phases": "CS", + "to": "sx3254215c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197660b", + "length": "50.0000", + "name": "tpx_tpx323275b0", + "phases": "BS", + "to": "sx3197660b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673343b", + "length": "50.0000", + "name": "tpx_tpx21470122b0", + "phases": "BS", + "to": "sx2673343b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691966b", + "length": "50.0000", + "name": "tpx_tpx339010b0", + "phases": "BS", + "to": "sx2691966b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3010580b", + "length": "50.0000", + "name": "tpx_tpx21451973b0", + "phases": "BS", + "to": "sx3010580b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2861158c", + "length": "50.0000", + "name": "tpx_tpx251858c0", + "phases": "CS", + "to": "sx2861158c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197652a", + "length": "50.0000", + "name": "tpx_tpx339021a0", + "phases": "AS", + "to": "sx3197652a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3010567c", + "length": "50.0000", + "name": "tpx_tpx302813c0", + "phases": "CS", + "to": "sx3010567c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2801909c", + "length": "50.0000", + "name": "tpx_tpx226195333c0", + "phases": "CS", + "to": "sx2801909c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3217052c", + "length": "50.0000", + "name": "tpx_tpx260528c0", + "phases": "CS", + "to": "sx3217052c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141396c", + "length": "50.0000", + "name": "tpx_tpx337655c0", + "phases": "CS", + "to": "sx3141396c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029518b", + "length": "50.0000", + "name": "tpx_tpx337666b0", + "phases": "BS", + "to": "sx3029518b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3729297a", + "length": "50.0000", + "name": "tpx_tpx2224386592a0", + "phases": "AS", + "to": "sx3729297a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2954344c", + "length": "50.0000", + "name": "tpx_tpx338959c0", + "phases": "CS", + "to": "sx2954344c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001002b", + "length": "50.0000", + "name": "tpx_tpx2001002b0", + "phases": "BS", + "to": "sx2001002b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804254a", + "length": "50.0000", + "name": "tpx_tpx323418a0", + "phases": "AS", + "to": "sx2804254a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785513a", + "length": "50.0000", + "name": "tpx_tpx337677a0", + "phases": "AS", + "to": "sx2785513a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841637c", + "length": "50.0000", + "name": "tpx_tpx293492c0", + "phases": "CS", + "to": "sx2841637c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3251807a", + "length": "50.0000", + "name": "tpx_tpx225673440a0", + "phases": "AS", + "to": "sx3251807a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804248b", + "length": "50.0000", + "name": "tpx_tpx323244b0", + "phases": "BS", + "to": "sx2804248b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104130b", + "length": "50.0000", + "name": "tpx_tpx391755b0", + "phases": "BS", + "to": "sx3104130b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2820533a", + "length": "50.0000", + "name": "tpx_tpx226193298a0", + "phases": "AS", + "to": "sx2820533a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122837c", + "length": "50.0000", + "name": "tpx_tpx355432c0", + "phases": "CS", + "to": "sx3122837c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2935566c", + "length": "50.0000", + "name": "tpx_tpx441854c0", + "phases": "CS", + "to": "sx2935566c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3178979c", + "length": "50.0000", + "name": "tpx_tpx338968c0", + "phases": "CS", + "to": "sx3178979c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001013b", + "length": "50.0000", + "name": "tpx_tpx2001013b0", + "phases": "BS", + "to": "sx2001013b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2915542a", + "length": "50.0000", + "name": "tpx_tpx227921427a0", + "phases": "AS", + "to": "sx2915542a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216345b", + "length": "50.0000", + "name": "tpx_tpx338933b0", + "phases": "BS", + "to": "sx3216345b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3066814b", + "length": "50.0000", + "name": "tpx_tpx338979b0", + "phases": "BS", + "to": "sx3066814b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2861157c", + "length": "50.0000", + "name": "tpx_tpx251867c0", + "phases": "CS", + "to": "sx2861157c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3234185b", + "length": "50.0000", + "name": "tpx_tpx323388b0", + "phases": "BS", + "to": "sx3234185b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3253995c", + "length": "50.0000", + "name": "tpx_tpx21396815c0", + "phases": "CS", + "to": "sx3253995c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804258b", + "length": "50.0000", + "name": "tpx_tpx337697b0", + "phases": "BS", + "to": "sx2804258b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104114b", + "length": "50.0000", + "name": "tpx_tpx355587b0", + "phases": "BS", + "to": "sx3104114b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197646b", + "length": "50.0000", + "name": "tpx_tpx355944b0", + "phases": "BS", + "to": "sx3197646b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000412a", + "length": "50.0000", + "name": "tpx_tpx2000412a0", + "phases": "AS", + "to": "sx2000412a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785526b", + "length": "50.0000", + "name": "tpx_tpx302374b0", + "phases": "BS", + "to": "sx2785526b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748839b", + "length": "50.0000", + "name": "tpx_tpx260502b0", + "phases": "BS", + "to": "sx2748839b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2916607c", + "length": "50.0000", + "name": "tpx_tpx321882c0", + "phases": "CS", + "to": "sx2916607c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860484b", + "length": "50.0000", + "name": "tpx_tpx323255b0", + "phases": "BS", + "to": "sx2860484b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710537b", + "length": "50.0000", + "name": "tpx_tpx391744b0", + "phases": "BS", + "to": "sx2710537b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2674051a", + "length": "50.0000", + "name": "tpx_tpx21389831a0", + "phases": "AS", + "to": "sx2674051a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000906c", + "length": "50.0000", + "name": "tpx_tpx2000906c0", + "phases": "CS", + "to": "sx2000906c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2674027b", + "length": "50.0000", + "name": "tpx_tpx21380325b0", + "phases": "BS", + "to": "sx2674027b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3065696a", + "length": "50.0000", + "name": "tpx_tpx227921416a0", + "phases": "AS", + "to": "sx3065696a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2859403a", + "length": "50.0000", + "name": "tpx_tpx228001810a0", + "phases": "AS", + "to": "sx2859403a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3178974b", + "length": "50.0000", + "name": "tpx_tpx323399b0", + "phases": "BS", + "to": "sx3178974b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748130b", + "length": "50.0000", + "name": "tpx_tpx138753b0", + "phases": "BS", + "to": "sx2748130b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973148a", + "length": "50.0000", + "name": "tpx_tpx339047a0", + "phases": "AS", + "to": "sx2973148a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3179699b", + "length": "50.0000", + "name": "tpx_tpx21393454b0", + "phases": "BS", + "to": "sx3179699b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3216347c", + "length": "50.0000", + "name": "tpx_tpx138413c0", + "phases": "CS", + "to": "sx3216347c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066806c", + "length": "50.0000", + "name": "tpx_tpx275002c0", + "phases": "CS", + "to": "sx3066806c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804245b", + "length": "50.0000", + "name": "tpx_tpx355598b0", + "phases": "BS", + "to": "sx2804245b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785516b", + "length": "50.0000", + "name": "tpx_tpx138294b0", + "phases": "BS", + "to": "sx2785516b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3085403a", + "length": "50.0000", + "name": "tpx_tpx293668a0", + "phases": "AS", + "to": "sx3085403a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3189189b", + "length": "50.0000", + "name": "tpx_tpx293657b0", + "phases": "BS", + "to": "sx3189189b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2991940c", + "length": "50.0000", + "name": "tpx_tpx28148060c0", + "phases": "CS", + "to": "sx2991940c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2992657a", + "length": "50.0000", + "name": "tpx_tpx21475841a0", + "phases": "AS", + "to": "sx2992657a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197632b", + "length": "50.0000", + "name": "tpx_tpx323266b0", + "phases": "BS", + "to": "sx3197632b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010556a", + "length": "50.0000", + "name": "tpx_tpx138655a0", + "phases": "AS", + "to": "sx3010556a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2857591a", + "length": "50.0000", + "name": "tpx_tpx226101460a0", + "phases": "AS", + "to": "sx2857591a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2895461a", + "length": "50.0000", + "name": "tpx_tpx294789a0", + "phases": "AS", + "to": "sx2895461a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3141403a", + "length": "50.0000", + "name": "tpx_tpx21399707a0", + "phases": "AS", + "to": "sx3141403a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3178988b", + "length": "50.0000", + "name": "tpx_tpx339001b0", + "phases": "BS", + "to": "sx3178988b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_750_triplex_12", + "continuous_rating_C": "580.00", + "emergency_rating_C": "725.00", + "from": "x3234149c", + "length": "50.0000", + "name": "tpx_tpx227944551c0", + "phases": "CS", + "to": "sx3234149c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2841634b", + "length": "50.0000", + "name": "tpx_tpx392038b0", + "phases": "BS", + "to": "sx2841634b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729414a", + "length": "50.0000", + "name": "tpx_tpx293655a0", + "phases": "AS", + "to": "sx2729414a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3195318b", + "length": "50.0000", + "name": "tpx_tpx226194280b0", + "phases": "BS", + "to": "sx3195318b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973159a", + "length": "50.0000", + "name": "tpx_tpx21398536a0", + "phases": "AS", + "to": "sx2973159a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3179678b", + "length": "50.0000", + "name": "tpx_tpx247185b0", + "phases": "BS", + "to": "sx3179678b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3179674b", + "length": "50.0000", + "name": "tpx_tpx157716b0", + "phases": "BS", + "to": "sx3179674b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991923a", + "length": "50.0000", + "name": "tpx_tpx302735a0", + "phases": "AS", + "to": "sx2991923a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3315860b", + "length": "50.0000", + "name": "tpx_tpx2223664050b0", + "phases": "BS", + "to": "sx3315860b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897800b", + "length": "50.0000", + "name": "tpx_tpx323277b0", + "phases": "BS", + "to": "sx2897800b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197630a", + "length": "50.0000", + "name": "tpx_tpx138644a0", + "phases": "AS", + "to": "sx3197630a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216988b", + "length": "50.0000", + "name": "tpx_tpx260590b0", + "phases": "BS", + "to": "sx3216988b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973165a", + "length": "50.0000", + "name": "tpx_tpx355942a0", + "phases": "AS", + "to": "sx2973165a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2767414c", + "length": "50.0000", + "name": "tpx_tpx351019c0", + "phases": "CS", + "to": "sx2767414c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728040a", + "length": "50.0000", + "name": "tpx_tpx2224387062a0", + "phases": "AS", + "to": "sx3728040a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2730163c", + "length": "50.0000", + "name": "tpx_tpx260481c0", + "phases": "CS", + "to": "sx2730163c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973171b", + "length": "50.0000", + "name": "tpx_tpx339012b0", + "phases": "BS", + "to": "sx2973171b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048946c", + "length": "50.0000", + "name": "tpx_tpx260624c0", + "phases": "CS", + "to": "sx3048946c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748132a", + "length": "50.0000", + "name": "tpx_tpx302637a0", + "phases": "AS", + "to": "sx2748132a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160105c", + "length": "50.0000", + "name": "tpx_tpx302811c0", + "phases": "CS", + "to": "sx3160105c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822866b", + "length": "50.0000", + "name": "tpx_tpx338922b0", + "phases": "BS", + "to": "sx2822866b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235254c", + "length": "50.0000", + "name": "tpx_tpx441331c0", + "phases": "CS", + "to": "sx3235254c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048888c", + "length": "50.0000", + "name": "tpx_tpx251856c0", + "phases": "CS", + "to": "sx3048888c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_750_triplex_12", + "continuous_rating_B": "580.00", + "emergency_rating_B": "725.00", + "from": "x3234149b", + "length": "50.0000", + "name": "tpx_tpx227944551b0", + "phases": "BS", + "to": "sx3234149b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785514a", + "length": "50.0000", + "name": "tpx_tpx337675a0", + "phases": "AS", + "to": "sx2785514a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785517c", + "length": "50.0000", + "name": "tpx_tpx338957c0", + "phases": "CS", + "to": "sx2785517c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729429a", + "length": "50.0000", + "name": "tpx_tpx293644a0", + "phases": "AS", + "to": "sx2729429a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649305a", + "length": "50.0000", + "name": "tpx_tpx2224237718a0", + "phases": "AS", + "to": "sx3649305a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048230c", + "length": "50.0000", + "name": "tpx_tpx293490c0", + "phases": "CS", + "to": "sx3048230c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2913406b", + "length": "50.0000", + "name": "tpx_tpx225940756b0", + "phases": "BS", + "to": "sx2913406b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785543b", + "length": "50.0000", + "name": "tpx_tpx321860b0", + "phases": "BS", + "to": "sx2785543b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2673311a", + "length": "50.0000", + "name": "tpx_tpx21397029a0", + "phases": "AS", + "to": "sx2673311a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785525c", + "length": "50.0000", + "name": "tpx_tpx21396606c0", + "phases": "CS", + "to": "sx2785525c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3235255b", + "length": "50.0000", + "name": "tpx_tpx293519b0", + "phases": "BS", + "to": "sx3235255b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785547b", + "length": "50.0000", + "name": "tpx_tpx337705b0", + "phases": "BS", + "to": "sx2785547b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160113b", + "length": "50.0000", + "name": "tpx_tpx323284b0", + "phases": "BS", + "to": "sx3160113b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991917b", + "length": "50.0000", + "name": "tpx_tpx391757b0", + "phases": "BS", + "to": "sx2991917b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000704b", + "length": "50.0000", + "name": "tpx_tpx2000704b0", + "phases": "BS", + "to": "sx2000704b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3086075b", + "length": "50.0000", + "name": "tpx_tpx260463b0", + "phases": "BS", + "to": "sx3086075b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2917330a", + "length": "50.0000", + "name": "tpx_tpx260474a0", + "phases": "AS", + "to": "sx2917330a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2822869a", + "length": "50.0000", + "name": "tpx_tpx338942a0", + "phases": "AS", + "to": "sx2822869a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254231a", + "length": "50.0000", + "name": "tpx_tpx338988a0", + "phases": "AS", + "to": "sx3254231a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3142050c", + "length": "50.0000", + "name": "tpx_tpx251865c0", + "phases": "CS", + "to": "sx3142050c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3029505c", + "length": "50.0000", + "name": "tpx_tpx338966c0", + "phases": "CS", + "to": "sx3029505c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001011b", + "length": "50.0000", + "name": "tpx_tpx2001011b0", + "phases": "BS", + "to": "sx2001011b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916620b", + "length": "50.0000", + "name": "tpx_tpx338977b0", + "phases": "BS", + "to": "sx2916620b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841627a", + "length": "50.0000", + "name": "tpx_tpx337716a0", + "phases": "AS", + "to": "sx2841627a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235241c", + "length": "50.0000", + "name": "tpx_tpx321888c0", + "phases": "CS", + "to": "sx3235241c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673313b", + "length": "50.0000", + "name": "tpx_tpx321853b0", + "phases": "BS", + "to": "sx2673313b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879072b", + "length": "50.0000", + "name": "tpx_tpx337695b0", + "phases": "BS", + "to": "sx2879072b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2767409b", + "length": "50.0000", + "name": "tpx_tpx21391242b0", + "phases": "BS", + "to": "sx2767409b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2804249c", + "length": "50.0000", + "name": "tpx_tpx21389962c0", + "phases": "CS", + "to": "sx2804249c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x1108406b", + "length": "50.0000", + "name": "tpx_tpx2221108406b0", + "phases": "BS", + "to": "sx1108406b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3195751a", + "length": "50.0000", + "name": "tpx_tpx293681a0", + "phases": "AS", + "to": "sx3195751a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3778577c", + "length": "50.0000", + "name": "tpx_tpx2224490448c0", + "phases": "CS", + "to": "sx3778577c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104850c", + "length": "50.0000", + "name": "tpx_tpx260561c0", + "phases": "CS", + "to": "sx3104850c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2935556b", + "length": "50.0000", + "name": "tpx_tpx356064b0", + "phases": "BS", + "to": "sx2935556b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2917328b", + "length": "50.0000", + "name": "tpx_tpx21389092b0", + "phases": "BS", + "to": "sx2917328b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766723a", + "length": "50.0000", + "name": "tpx_tpx391986a0", + "phases": "AS", + "to": "sx2766723a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085388b", + "length": "50.0000", + "name": "tpx_tpx391746b0", + "phases": "BS", + "to": "sx3085388b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785519a", + "length": "50.0000", + "name": "tpx_tpx138566a0", + "phases": "AS", + "to": "sx2785519a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3065665a", + "length": "50.0000", + "name": "tpx_tpx227895952a0", + "phases": "AS", + "to": "sx3065665a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000715b", + "length": "50.0000", + "name": "tpx_tpx2000715b0", + "phases": "BS", + "to": "sx2000715b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001309a", + "length": "50.0000", + "name": "tpx_tpx2001309a0", + "phases": "AS", + "to": "sx2001309a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2674052c", + "length": "50.0000", + "name": "tpx_tpx21393570c0", + "phases": "CS", + "to": "sx2674052c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048937c", + "length": "50.0000", + "name": "tpx_tpx356789c0", + "phases": "CS", + "to": "sx3048937c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2879062c", + "length": "50.0000", + "name": "tpx_tpx21385192c0", + "phases": "CS", + "to": "sx2879062c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3177665a", + "length": "50.0000", + "name": "tpx_tpx227731863a0", + "phases": "AS", + "to": "sx3177665a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785521c", + "length": "50.0000", + "name": "tpx_tpx338931c0", + "phases": "CS", + "to": "sx2785521c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3198358b", + "length": "50.0000", + "name": "tpx_tpx138797b0", + "phases": "BS", + "to": "sx3198358b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2822861a", + "length": "50.0000", + "name": "tpx_tpx21015829a0", + "phases": "AS", + "to": "sx2822861a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2916620c", + "length": "50.0000", + "name": "tpx_tpx338977c0", + "phases": "CS", + "to": "sx2916620c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2916602a", + "length": "50.0000", + "name": "tpx_tpx339049a0", + "phases": "AS", + "to": "sx2916602a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254206b", + "length": "50.0000", + "name": "tpx_tpx355592b0", + "phases": "BS", + "to": "sx3254206b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3066818b", + "length": "50.0000", + "name": "tpx_tpx138751b0", + "phases": "BS", + "to": "sx3066818b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2710509c", + "length": "50.0000", + "name": "tpx_tpx275000c0", + "phases": "CS", + "to": "sx2710509c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x1108406a", + "length": "50.0000", + "name": "tpx_tpx2221108406a0", + "phases": "AS", + "to": "sx1108406a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2729206c", + "length": "50.0000", + "name": "tpx_tpx2212168866c0", + "phases": "CS", + "to": "sx2729206c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3123452c", + "length": "50.0000", + "name": "tpx_tpx260574c0", + "phases": "CS", + "to": "sx3123452c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2673315a", + "length": "50.0000", + "name": "tpx_tpx247058a0", + "phases": "AS", + "to": "sx2673315a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3027122a", + "length": "50.0000", + "name": "tpx_tpx226194865a0", + "phases": "AS", + "to": "sx3027122a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3029498c", + "length": "50.0000", + "name": "tpx_tpx247036c0", + "phases": "CS", + "to": "sx3029498c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3066826b", + "length": "50.0000", + "name": "tpx_tpx339003b0", + "phases": "BS", + "to": "sx3066826b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2841624b", + "length": "50.0000", + "name": "tpx_tpx355604b0", + "phases": "BS", + "to": "sx2841624b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000913c", + "length": "50.0000", + "name": "tpx_tpx2000913c0", + "phases": "CS", + "to": "sx2000913c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197631a", + "length": "50.0000", + "name": "tpx_tpx338920a0", + "phases": "AS", + "to": "sx3197631a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3010560b", + "length": "50.0000", + "name": "tpx_tpx338955b0", + "phases": "BS", + "to": "sx3010560b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197640c", + "length": "50.0000", + "name": "tpx_tpx338944c0", + "phases": "CS", + "to": "sx3197640c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3159448a", + "length": "50.0000", + "name": "tpx_tpx337684a0", + "phases": "AS", + "to": "sx3159448a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2954361b", + "length": "50.0000", + "name": "tpx_tpx21383494b0", + "phases": "BS", + "to": "sx2954361b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3215385c", + "length": "50.0000", + "name": "tpx_tpx21384099c0", + "phases": "CS", + "to": "sx3215385c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841639a", + "length": "50.0000", + "name": "tpx_tpx355937a0", + "phases": "AS", + "to": "sx2841639a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3120504a", + "length": "50.0000", + "name": "tpx_tpx225897846a0", + "phases": "AS", + "to": "sx3120504a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3027124c", + "length": "50.0000", + "name": "tpx_tpx226195194c0", + "phases": "CS", + "to": "sx3027124c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748135a", + "length": "50.0000", + "name": "tpx_tpx28150172a0", + "phases": "AS", + "to": "sx2748135a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235256a", + "length": "50.0000", + "name": "tpx_tpx138642a0", + "phases": "AS", + "to": "sx3235256a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3101787a", + "length": "50.0000", + "name": "tpx_tpx321877a0", + "phases": "AS", + "to": "sx3101787a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3141400a", + "length": "50.0000", + "name": "tpx_tpx138313a0", + "phases": "AS", + "to": "sx3141400a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916603b", + "length": "50.0000", + "name": "tpx_tpx323403b0", + "phases": "BS", + "to": "sx2916603b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141395c", + "length": "50.0000", + "name": "tpx_tpx28149184c0", + "phases": "CS", + "to": "sx3141395c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122818c", + "length": "50.0000", + "name": "tpx_tpx28120183c0", + "phases": "CS", + "to": "sx3122818c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2916620a", + "length": "50.0000", + "name": "tpx_tpx338977a0", + "phases": "AS", + "to": "sx2916620a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3030205c", + "length": "50.0000", + "name": "tpx_tpx21390038c0", + "phases": "CS", + "to": "sx3030205c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254228b", + "length": "50.0000", + "name": "tpx_tpx325474b0", + "phases": "BS", + "to": "sx3254228b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2895449c", + "length": "50.0000", + "name": "tpx_tpx226193134c0", + "phases": "CS", + "to": "sx2895449c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2955081a", + "length": "50.0000", + "name": "tpx_tpx260508a0", + "phases": "AS", + "to": "sx2955081a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2859391b", + "length": "50.0000", + "name": "tpx_tpx227989724b0", + "phases": "BS", + "to": "sx2859391b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3215385b", + "length": "50.0000", + "name": "tpx_tpx21384099b0", + "phases": "BS", + "to": "sx3215385b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3008232b", + "length": "50.0000", + "name": "tpx_tpx226192492b0", + "phases": "BS", + "to": "sx3008232b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841618a", + "length": "50.0000", + "name": "tpx_tpx337673a0", + "phases": "AS", + "to": "sx2841618a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766727b", + "length": "50.0000", + "name": "tpx_tpx302367b0", + "phases": "BS", + "to": "sx2766727b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3030203c", + "length": "50.0000", + "name": "tpx_tpx260639c0", + "phases": "CS", + "to": "sx3030203c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2861197c", + "length": "50.0000", + "name": "tpx_tpx21474711c0", + "phases": "CS", + "to": "sx2861197c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2814529a", + "length": "50.0000", + "name": "tpx_tpx28120126a0", + "phases": "AS", + "to": "sx2814529a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216350a", + "length": "50.0000", + "name": "tpx_tpx391977a0", + "phases": "AS", + "to": "sx3216350a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197628c", + "length": "50.0000", + "name": "tpx_tpx138651c0", + "phases": "CS", + "to": "sx3197628c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2989564b", + "length": "50.0000", + "name": "tpx_tpx323286b0", + "phases": "BS", + "to": "sx2989564b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3195310a", + "length": "50.0000", + "name": "tpx_tpx226192185a0", + "phases": "AS", + "to": "sx3195310a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2916609c", + "length": "50.0000", + "name": "tpx_tpx138346c0", + "phases": "CS", + "to": "sx2916609c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973161a", + "length": "50.0000", + "name": "tpx_tpx293592a0", + "phases": "AS", + "to": "sx2973161a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841616a", + "length": "50.0000", + "name": "tpx_tpx21031684a0", + "phases": "AS", + "to": "sx2841616a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2936268c", + "length": "50.0000", + "name": "tpx_tpx223655c0", + "phases": "CS", + "to": "sx2936268c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2861223b", + "length": "50.0000", + "name": "tpx_tpx260461b0", + "phases": "BS", + "to": "sx2861223b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000706b", + "length": "50.0000", + "name": "tpx_tpx2000706b0", + "phases": "BS", + "to": "sx2000706b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3125349c", + "length": "50.0000", + "name": "tpx_tpx226193698c0", + "phases": "CS", + "to": "sx3125349c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2839305a", + "length": "50.0000", + "name": "tpx_tpx28150292a0", + "phases": "AS", + "to": "sx2839305a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3102286b", + "length": "50.0000", + "name": "tpx_tpx226308729b0", + "phases": "BS", + "to": "sx3102286b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2748128c", + "length": "50.0000", + "name": "tpx_tpx337629c0", + "phases": "CS", + "to": "sx2748128c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104117c", + "length": "50.0000", + "name": "tpx_tpx338964c0", + "phases": "CS", + "to": "sx3104117c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2745811c", + "length": "50.0000", + "name": "tpx_tpx251863c0", + "phases": "CS", + "to": "sx2745811c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785538a", + "length": "50.0000", + "name": "tpx_tpx338986a0", + "phases": "AS", + "to": "sx2785538a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197644a", + "length": "50.0000", + "name": "tpx_tpx138771a0", + "phases": "AS", + "to": "sx3197644a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729434b", + "length": "50.0000", + "name": "tpx_tpx321851b0", + "phases": "BS", + "to": "sx2729434b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160104b", + "length": "50.0000", + "name": "tpx_tpx337707b0", + "phases": "BS", + "to": "sx3160104b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2691947a", + "length": "50.0000", + "name": "tpx_tpx337718a0", + "phases": "AS", + "to": "sx2691947a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766746c", + "length": "50.0000", + "name": "tpx_tpx321886c0", + "phases": "CS", + "to": "sx2766746c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104133a", + "length": "50.0000", + "name": "tpx_tpx293483a0", + "phases": "AS", + "to": "sx3104133a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x1108404b", + "length": "50.0000", + "name": "tpx_tpx2221108404b0", + "phases": "BS", + "to": "sx1108404b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2684420b", + "length": "50.0000", + "name": "tpx_tpx225498968b0", + "phases": "BS", + "to": "sx2684420b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3066813b", + "length": "50.0000", + "name": "tpx_tpx337693b0", + "phases": "BS", + "to": "sx3066813b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2917255c", + "length": "50.0000", + "name": "tpx_tpx21386065c0", + "phases": "CS", + "to": "sx2917255c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2914323b", + "length": "50.0000", + "name": "tpx_tpx355376b0", + "phases": "BS", + "to": "sx2914323b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3177894a", + "length": "50.0000", + "name": "tpx_tpx227903012a0", + "phases": "AS", + "to": "sx3177894a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841628a", + "length": "50.0000", + "name": "tpx_tpx28120786a0", + "phases": "AS", + "to": "sx2841628a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122816b", + "length": "50.0000", + "name": "tpx_tpx356062b0", + "phases": "BS", + "to": "sx3122816b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991902b", + "length": "50.0000", + "name": "tpx_tpx391748b0", + "phases": "BS", + "to": "sx2991902b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804283a", + "length": "50.0000", + "name": "tpx_tpx138564a0", + "phases": "AS", + "to": "sx2804283a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2814529b", + "length": "50.0000", + "name": "tpx_tpx28120126b0", + "phases": "BS", + "to": "sx2814529b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001307a", + "length": "50.0000", + "name": "tpx_tpx2001307a0", + "phases": "AS", + "to": "sx2001307a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000902c", + "length": "50.0000", + "name": "tpx_tpx2000902c0", + "phases": "CS", + "to": "sx2000902c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785531a", + "length": "50.0000", + "name": "tpx_tpx21399809a0", + "phases": "AS", + "to": "sx2785531a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879074a", + "length": "50.0000", + "name": "tpx_tpx310560a0", + "phases": "AS", + "to": "sx2879074a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804256b", + "length": "50.0000", + "name": "tpx_tpx321840b0", + "phases": "BS", + "to": "sx2804256b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2823611a", + "length": "50.0000", + "name": "tpx_tpx21386877a0", + "phases": "AS", + "to": "sx2823611a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2728247a", + "length": "50.0000", + "name": "tpx_tpx337729a0", + "phases": "AS", + "to": "sx2728247a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x1108404a", + "length": "50.0000", + "name": "tpx_tpx2221108404a0", + "phases": "AS", + "to": "sx1108404a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048196b", + "length": "50.0000", + "name": "tpx_tpx138237b0", + "phases": "BS", + "to": "sx3048196b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2898457a", + "length": "50.0000", + "name": "tpx_tpx260594a0", + "phases": "AS", + "to": "sx2898457a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048214a", + "length": "50.0000", + "name": "tpx_tpx302474a0", + "phases": "AS", + "to": "sx3048214a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3236004c", + "length": "50.0000", + "name": "tpx_tpx260572c0", + "phases": "CS", + "to": "sx3236004c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728043a", + "length": "50.0000", + "name": "tpx_tpx2224387138a0", + "phases": "AS", + "to": "sx3728043a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785535b", + "length": "50.0000", + "name": "tpx_tpx339005b0", + "phases": "BS", + "to": "sx2785535b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197642c", + "length": "50.0000", + "name": "tpx_tpx391979c0", + "phases": "CS", + "to": "sx3197642c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991912a", + "length": "50.0000", + "name": "tpx_tpx247056a0", + "phases": "AS", + "to": "sx2991912a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991901b", + "length": "50.0000", + "name": "tpx_tpx354851b0", + "phases": "BS", + "to": "sx2991901b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141399c", + "length": "50.0000", + "name": "tpx_tpx302804c0", + "phases": "CS", + "to": "sx3141399c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000915c", + "length": "50.0000", + "name": "tpx_tpx2000915c0", + "phases": "CS", + "to": "sx2000915c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029510b", + "length": "50.0000", + "name": "tpx_tpx355606b0", + "phases": "BS", + "to": "sx3029510b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048205c", + "length": "50.0000", + "name": "tpx_tpx274994c0", + "phases": "CS", + "to": "sx3048205c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3143999a", + "length": "50.0000", + "name": "tpx_tpx226193696a0", + "phases": "AS", + "to": "sx3143999a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160793c", + "length": "50.0000", + "name": "tpx_tpx28147899c0", + "phases": "CS", + "to": "sx3160793c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3027133a", + "length": "50.0000", + "name": "tpx_tpx226101449a0", + "phases": "AS", + "to": "sx3027133a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122821b", + "length": "50.0000", + "name": "tpx_tpx338953b0", + "phases": "BS", + "to": "sx3122821b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822873b", + "length": "50.0000", + "name": "tpx_tpx338999b0", + "phases": "BS", + "to": "sx2822873b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2728247b", + "length": "50.0000", + "name": "tpx_tpx337729b0", + "phases": "BS", + "to": "sx2728247b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2691973a", + "length": "50.0000", + "name": "tpx_tpx355935a0", + "phases": "AS", + "to": "sx2691973a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2973158c", + "length": "50.0000", + "name": "tpx_tpx138259c0", + "phases": "CS", + "to": "sx2973158c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2935557a", + "length": "50.0000", + "name": "tpx_tpx21397005a0", + "phases": "AS", + "to": "sx2935557a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897769c", + "length": "50.0000", + "name": "tpx_tpx337660c0", + "phases": "CS", + "to": "sx2897769c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254205c", + "length": "50.0000", + "name": "tpx_tpx302672c0", + "phases": "CS", + "to": "sx3254205c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879752b", + "length": "50.0000", + "name": "tpx_tpx330122b0", + "phases": "BS", + "to": "sx2879752b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2983432a", + "length": "50.0000", + "name": "tpx_tpx225534325a0", + "phases": "AS", + "to": "sx2983432a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2691936a", + "length": "50.0000", + "name": "tpx_tpx356009a0", + "phases": "AS", + "to": "sx2691936a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879767b", + "length": "50.0000", + "name": "tpx_tpx260496b0", + "phases": "BS", + "to": "sx2879767b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048203b", + "length": "50.0000", + "name": "tpx_tpx323273b0", + "phases": "BS", + "to": "sx3048203b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973149b", + "length": "50.0000", + "name": "tpx_tpx325472b0", + "phases": "BS", + "to": "sx2973149b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3176660b", + "length": "50.0000", + "name": "tpx_tpx226193892b0", + "phases": "BS", + "to": "sx3176660b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2860486c", + "length": "50.0000", + "name": "tpx_tpx28127390c0", + "phases": "CS", + "to": "sx2860486c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2745806c", + "length": "50.0000", + "name": "tpx_tpx226194262c0", + "phases": "CS", + "to": "sx2745806c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785537a", + "length": "50.0000", + "name": "tpx_tpx338975a0", + "phases": "AS", + "to": "sx2785537a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3235273b", + "length": "50.0000", + "name": "tpx_tpx339016b0", + "phases": "BS", + "to": "sx3235273b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254207a", + "length": "50.0000", + "name": "tpx_tpx337671a0", + "phases": "AS", + "to": "sx3254207a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2728247c", + "length": "50.0000", + "name": "tpx_tpx337729c0", + "phases": "CS", + "to": "sx2728247c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001209c", + "length": "50.0000", + "name": "tpx_tpx2001209c0", + "phases": "CS", + "to": "sx2001209c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2764411c", + "length": "50.0000", + "name": "tpx_tpx226010605c0", + "phases": "CS", + "to": "sx2764411c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879071b", + "length": "50.0000", + "name": "tpx_tpx337701b0", + "phases": "BS", + "to": "sx2879071b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254220c", + "length": "50.0000", + "name": "tpx_tpx138717c0", + "phases": "CS", + "to": "sx3254220c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766748a", + "length": "50.0000", + "name": "tpx_tpx21470326a0", + "phases": "AS", + "to": "sx2766748a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710512b", + "length": "50.0000", + "name": "tpx_tpx323280b0", + "phases": "BS", + "to": "sx2710512b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673323c", + "length": "50.0000", + "name": "tpx_tpx355438c0", + "phases": "CS", + "to": "sx2673323c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235945c", + "length": "50.0000", + "name": "tpx_tpx356796c0", + "phases": "CS", + "to": "sx3235945c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2954350c", + "length": "50.0000", + "name": "tpx_tpx302809c0", + "phases": "CS", + "to": "sx2954350c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3198355b", + "length": "50.0000", + "name": "tpx_tpx207288b0", + "phases": "BS", + "to": "sx3198355b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822867b", + "length": "50.0000", + "name": "tpx_tpx21386552b0", + "phases": "BS", + "to": "sx2822867b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2879055c", + "length": "50.0000", + "name": "tpx_tpx138465c0", + "phases": "CS", + "to": "sx2879055c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3085399c", + "length": "50.0000", + "name": "tpx_tpx302862c0", + "phases": "CS", + "to": "sx3085399c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3085393c", + "length": "50.0000", + "name": "tpx_tpx337627c0", + "phases": "CS", + "to": "sx3085393c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160117b", + "length": "50.0000", + "name": "tpx_tpx21357901b0", + "phases": "BS", + "to": "sx3160117b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122847a", + "length": "50.0000", + "name": "tpx_tpx21483138a0", + "phases": "AS", + "to": "sx3122847a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822872b", + "length": "50.0000", + "name": "tpx_tpx338950b0", + "phases": "BS", + "to": "sx2822872b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2991911c", + "length": "50.0000", + "name": "tpx_tpx138258c0", + "phases": "CS", + "to": "sx2991911c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3030200c", + "length": "50.0000", + "name": "tpx_tpx260554c0", + "phases": "CS", + "to": "sx3030200c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897774b", + "length": "50.0000", + "name": "tpx_tpx337691b0", + "phases": "BS", + "to": "sx2897774b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2692664c", + "length": "50.0000", + "name": "tpx_tpx351021c0", + "phases": "CS", + "to": "sx2692664c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673314c", + "length": "50.0000", + "name": "tpx_tpx355778c0", + "phases": "CS", + "to": "sx2673314c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3178978a", + "length": "50.0000", + "name": "tpx_tpx337723a0", + "phases": "AS", + "to": "sx3178978a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748127a", + "length": "50.0000", + "name": "tpx_tpx338919a0", + "phases": "AS", + "to": "sx2748127a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001305a", + "length": "50.0000", + "name": "tpx_tpx2001305a0", + "phases": "AS", + "to": "sx2001305a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2842390c", + "length": "50.0000", + "name": "tpx_tpx21325725c0", + "phases": "CS", + "to": "sx2842390c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x1108403c", + "length": "50.0000", + "name": "tpx_tpx2221108403c0", + "phases": "CS", + "to": "sx1108403c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2916605c", + "length": "50.0000", + "name": "tpx_tpx274987c0", + "phases": "CS", + "to": "sx2916605c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2948732b", + "length": "50.0000", + "name": "tpx_tpx225571845b0", + "phases": "BS", + "to": "sx2948732b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2801895b", + "length": "50.0000", + "name": "tpx_tpx226191951b0", + "phases": "BS", + "to": "sx2801895b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2879089c", + "length": "50.0000", + "name": "tpx_tpx21455388c0", + "phases": "CS", + "to": "sx2879089c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860477a", + "length": "50.0000", + "name": "tpx_tpx28121587a0", + "phases": "AS", + "to": "sx2860477a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216361b", + "length": "50.0000", + "name": "tpx_tpx21452406b0", + "phases": "BS", + "to": "sx3216361b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3216368c", + "length": "50.0000", + "name": "tpx_tpx293663c0", + "phases": "CS", + "to": "sx3216368c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3008237c", + "length": "50.0000", + "name": "tpx_tpx226193838c0", + "phases": "CS", + "to": "sx3008237c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235245c", + "length": "50.0000", + "name": "tpx_tpx337712c0", + "phases": "CS", + "to": "sx3235245c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991907a", + "length": "50.0000", + "name": "tpx_tpx138574a0", + "phases": "AS", + "to": "sx2991907a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122815b", + "length": "50.0000", + "name": "tpx_tpx321858b0", + "phases": "BS", + "to": "sx3122815b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729427b", + "length": "50.0000", + "name": "tpx_tpx323249b0", + "phases": "BS", + "to": "sx2729427b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916617b", + "length": "50.0000", + "name": "tpx_tpx339007b0", + "phases": "BS", + "to": "sx2916617b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804247b", + "length": "50.0000", + "name": "tpx_tpx391737b0", + "phases": "BS", + "to": "sx2804247b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3214112b", + "length": "50.0000", + "name": "tpx_tpx226881057b0", + "phases": "BS", + "to": "sx3214112b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048965b", + "length": "50.0000", + "name": "tpx_tpx260641b0", + "phases": "BS", + "to": "sx3048965b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2710510c", + "length": "50.0000", + "name": "tpx_tpx138650c0", + "phases": "CS", + "to": "sx2710510c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649298a", + "length": "50.0000", + "name": "tpx_tpx2224237384a0", + "phases": "AS", + "to": "sx3649298a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x1108403b", + "length": "50.0000", + "name": "tpx_tpx2221108403b0", + "phases": "BS", + "to": "sx1108403b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879065b", + "length": "50.0000", + "name": "tpx_tpx247126b0", + "phases": "BS", + "to": "sx2879065b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897792a", + "length": "50.0000", + "name": "tpx_tpx338985a0", + "phases": "AS", + "to": "sx2897792a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2822868a", + "length": "50.0000", + "name": "tpx_tpx21397544a0", + "phases": "AS", + "to": "sx2822868a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3727707a", + "length": "50.0000", + "name": "tpx_tpx2224386750a0", + "phases": "AS", + "to": "sx3727707a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066817a", + "length": "50.0000", + "name": "tpx_tpx21373784a0", + "phases": "AS", + "to": "sx3066817a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729424a", + "length": "50.0000", + "name": "tpx_tpx339018a0", + "phases": "AS", + "to": "sx2729424a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897781a", + "length": "50.0000", + "name": "tpx_tpx138770a0", + "phases": "AS", + "to": "sx2897781a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2955005b", + "length": "50.0000", + "name": "tpx_tpx260589b0", + "phases": "BS", + "to": "sx2955005b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673303c", + "length": "50.0000", + "name": "tpx_tpx338963c0", + "phases": "CS", + "to": "sx2673303c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3086074c", + "length": "50.0000", + "name": "tpx_tpx260532c0", + "phases": "CS", + "to": "sx3086074c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2989565a", + "length": "50.0000", + "name": "tpx_tpx21389237a0", + "phases": "AS", + "to": "sx2989565a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2954355a", + "length": "50.0000", + "name": "tpx_tpx293672a0", + "phases": "AS", + "to": "sx2954355a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_cap_3a_PUZ_A", + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "q16642", + "length": "0.0033", + "name": "line_cap_3a", + "phases": "A", + "to": "q16642_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197634b", + "length": "50.0000", + "name": "tpx_tpx355767b0", + "phases": "BS", + "to": "sx3197634b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973155a", + "length": "50.0000", + "name": "tpx_tpx338898a0", + "phases": "AS", + "to": "sx2973155a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_cap_3c_PUZ_C", + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "q16642", + "length": "0.0033", + "name": "line_cap_3c", + "phases": "C", + "to": "q16642_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2916627a", + "length": "50.0000", + "name": "tpx_tpx138563a0", + "phases": "AS", + "to": "sx2916627a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2806553c", + "length": "50.0000", + "name": "tpx_tpx227411655c0", + "phases": "CS", + "to": "sx2806553c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160100b", + "length": "50.0000", + "name": "tpx_tpx321847b0", + "phases": "BS", + "to": "sx3160100b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_cap_3b_PUZ_B", + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "q16642", + "length": "0.0033", + "name": "line_cap_3b", + "phases": "B", + "to": "q16642_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3263051c", + "length": "50.0000", + "name": "tpx_tpx2212371533c0", + "phases": "CS", + "to": "sx3263051c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991919a", + "length": "50.0000", + "name": "tpx_tpx302400a0", + "phases": "AS", + "to": "sx2991919a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2786204c", + "length": "50.0000", + "name": "tpx_tpx223662c0", + "phases": "CS", + "to": "sx2786204c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000712b", + "length": "50.0000", + "name": "tpx_tpx2000712b0", + "phases": "BS", + "to": "sx2000712b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3215340a", + "length": "50.0000", + "name": "tpx_tpx228057846a0", + "phases": "AS", + "to": "sx3215340a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066819a", + "length": "50.0000", + "name": "tpx_tpx302677a0", + "phases": "AS", + "to": "sx3066819a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2745799c", + "length": "50.0000", + "name": "tpx_tpx226191779c0", + "phases": "CS", + "to": "sx2745799c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2801902b", + "length": "50.0000", + "name": "tpx_tpx226194002b0", + "phases": "BS", + "to": "sx2801902b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3141389a", + "length": "50.0000", + "name": "tpx_tpx356007a0", + "phases": "AS", + "to": "sx3141389a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104856a", + "length": "50.0000", + "name": "tpx_tpx260467a0", + "phases": "AS", + "to": "sx3104856a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3091052a", + "length": "50.0000", + "name": "tpx_tpx228532641a0", + "phases": "AS", + "to": "sx3091052a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000405a", + "length": "50.0000", + "name": "tpx_tpx2000405a0", + "phases": "AS", + "to": "sx2000405a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973150a", + "length": "50.0000", + "name": "tpx_tpx21380528a0", + "phases": "AS", + "to": "sx2973150a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001207c", + "length": "50.0000", + "name": "tpx_tpx2001207c0", + "phases": "CS", + "to": "sx2001207c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2955077c", + "length": "50.0000", + "name": "tpx_tpx260543c0", + "phases": "CS", + "to": "sx2955077c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x1108403a", + "length": "50.0000", + "name": "tpx_tpx2221108403a0", + "phases": "AS", + "to": "sx1108403a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3727708a", + "length": "50.0000", + "name": "tpx_tpx2224386815a0", + "phases": "AS", + "to": "sx3727708a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3120376a", + "length": "50.0000", + "name": "tpx_tpx226163467a0", + "phases": "AS", + "to": "sx3120376a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691948b", + "length": "50.0000", + "name": "tpx_tpx337703b0", + "phases": "BS", + "to": "sx2691948b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3251808a", + "length": "50.0000", + "name": "tpx_tpx226029836a0", + "phases": "AS", + "to": "sx3251808a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235266c", + "length": "50.0000", + "name": "tpx_tpx302807c0", + "phases": "CS", + "to": "sx3235266c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085410b", + "length": "50.0000", + "name": "tpx_tpx339097b0", + "phases": "BS", + "to": "sx3085410b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897791b", + "length": "50.0000", + "name": "tpx_tpx323282b0", + "phases": "BS", + "to": "sx2897791b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2692600c", + "length": "50.0000", + "name": "tpx_tpx356798c0", + "phases": "CS", + "to": "sx2692600c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197627c", + "length": "50.0000", + "name": "tpx_tpx337625c0", + "phases": "CS", + "to": "sx3197627c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048227a", + "length": "50.0000", + "name": "tpx_tpx337647a0", + "phases": "AS", + "to": "sx3048227a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2936271a", + "length": "50.0000", + "name": "tpx_tpx260476a0", + "phases": "AS", + "to": "sx2936271a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673326b", + "length": "50.0000", + "name": "tpx_tpx355601b0", + "phases": "BS", + "to": "sx2673326b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001314a", + "length": "50.0000", + "name": "tpx_tpx2001314a0", + "phases": "AS", + "to": "sx2001314a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000910c", + "length": "50.0000", + "name": "tpx_tpx2000910c0", + "phases": "CS", + "to": "sx2000910c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122819c", + "length": "50.0000", + "name": "tpx_tpx302860c0", + "phases": "CS", + "to": "sx3122819c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2989571a", + "length": "50.0000", + "name": "tpx_tpx225991691a0", + "phases": "AS", + "to": "sx2989571a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3215385a", + "length": "50.0000", + "name": "tpx_tpx21384099a0", + "phases": "AS", + "to": "sx3215385a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160115b", + "length": "50.0000", + "name": "tpx_tpx338994b0", + "phases": "BS", + "to": "sx3160115b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2688692b", + "length": "50.0000", + "name": "tpx_tpx225918926b0", + "phases": "BS", + "to": "sx2688692b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2692633c", + "length": "50.0000", + "name": "tpx_tpx328364c0", + "phases": "CS", + "to": "sx2692633c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3142079b", + "length": "50.0000", + "name": "tpx_tpx21249626b0", + "phases": "BS", + "to": "sx3142079b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254238b", + "length": "50.0000", + "name": "tpx_tpx293487b0", + "phases": "BS", + "to": "sx3254238b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3101788a", + "length": "50.0000", + "name": "tpx_tpx321878a0", + "phases": "AS", + "to": "sx3101788a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2935555a", + "length": "50.0000", + "name": "tpx_tpx338917a0", + "phases": "AS", + "to": "sx2935555a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2970804c", + "length": "50.0000", + "name": "tpx_tpx356787c0", + "phases": "CS", + "to": "sx2970804c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897778a", + "length": "50.0000", + "name": "tpx_tpx302468a0", + "phases": "AS", + "to": "sx2897778a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048209b", + "length": "50.0000", + "name": "tpx_tpx28120195b0", + "phases": "BS", + "to": "sx3048209b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3231255c", + "length": "50.0000", + "name": "tpx_tpx339051c0", + "phases": "CS", + "to": "sx3231255c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3066830b", + "length": "50.0000", + "name": "tpx_tpx21469960b0", + "phases": "BS", + "to": "sx3066830b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673306c", + "length": "50.0000", + "name": "tpx_tpx293608c0", + "phases": "CS", + "to": "sx2673306c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2822864c", + "length": "50.0000", + "name": "tpx_tpx274985c0", + "phases": "CS", + "to": "sx2822864c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3176656a", + "length": "50.0000", + "name": "tpx_tpx226193170a0", + "phases": "AS", + "to": "sx3176656a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2726975b", + "length": "50.0000", + "name": "tpx_tpx226193422b0", + "phases": "BS", + "to": "sx2726975b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2692654a", + "length": "50.0000", + "name": "tpx_tpx260487a0", + "phases": "AS", + "to": "sx2692654a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001303a", + "length": "50.0000", + "name": "tpx_tpx2001303a0", + "phases": "AS", + "to": "sx2001303a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3231269b", + "length": "50.0000", + "name": "tpx_tpx225684682b0", + "phases": "BS", + "to": "sx3231269b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2690868c", + "length": "50.0000", + "name": "tpx_tpx227917127c0", + "phases": "CS", + "to": "sx2690868c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3141401a", + "length": "50.0000", + "name": "tpx_tpx338970a0", + "phases": "AS", + "to": "sx3141401a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3101782a", + "length": "50.0000", + "name": "tpx_tpx356808a0", + "phases": "AS", + "to": "sx3101782a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3159037b", + "length": "50.0000", + "name": "tpx_tpx323391b0", + "phases": "BS", + "to": "sx3159037b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001009b", + "length": "50.0000", + "name": "tpx_tpx2001009b0", + "phases": "BS", + "to": "sx2001009b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3179650b", + "length": "50.0000", + "name": "tpx_tpx251828b0", + "phases": "BS", + "to": "sx3179650b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3010565c", + "length": "50.0000", + "name": "tpx_tpx138343c0", + "phases": "CS", + "to": "sx3010565c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728037a", + "length": "50.0000", + "name": "tpx_tpx2224386946a0", + "phases": "AS", + "to": "sx3728037a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3067478a", + "length": "50.0000", + "name": "tpx_tpx260598a0", + "phases": "AS", + "to": "sx3067478a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860506b", + "length": "50.0000", + "name": "tpx_tpx321856b0", + "phases": "BS", + "to": "sx2860506b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254209c", + "length": "50.0000", + "name": "tpx_tpx337714c0", + "phases": "CS", + "to": "sx3254209c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2860481c", + "length": "50.0000", + "name": "tpx_tpx338908c0", + "phases": "CS", + "to": "sx2860481c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2692661a", + "length": "50.0000", + "name": "tpx_tpx260650a0", + "phases": "AS", + "to": "sx2692661a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2954339b", + "length": "50.0000", + "name": "tpx_tpx391739b0", + "phases": "BS", + "to": "sx2954339b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000703b", + "length": "50.0000", + "name": "tpx_tpx2000703b0", + "phases": "BS", + "to": "sx2000703b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2952013a", + "length": "50.0000", + "name": "tpx_tpx355843a0", + "phases": "AS", + "to": "sx2952013a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2952003b", + "length": "50.0000", + "name": "tpx_tpx337614b0", + "phases": "BS", + "to": "sx2952003b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254208c", + "length": "50.0000", + "name": "tpx_tpx338961c0", + "phases": "CS", + "to": "sx3254208c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2841632b", + "length": "50.0000", + "name": "tpx_tpx338972b0", + "phases": "BS", + "to": "sx2841632b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3030126c", + "length": "50.0000", + "name": "tpx_tpx260576c0", + "phases": "CS", + "to": "sx3030126c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3198348a", + "length": "50.0000", + "name": "tpx_tpx260552a0", + "phases": "AS", + "to": "sx3198348a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104121a", + "length": "50.0000", + "name": "tpx_tpx138561a0", + "phases": "AS", + "to": "sx3104121a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3178975b", + "length": "50.0000", + "name": "tpx_tpx321845b0", + "phases": "BS", + "to": "sx3178975b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3030204a", + "length": "50.0000", + "name": "tpx_tpx52107636a0", + "phases": "AS", + "to": "sx3030204a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197637c", + "length": "50.0000", + "name": "tpx_tpx138585c0", + "phases": "CS", + "to": "sx3197637c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000407a", + "length": "50.0000", + "name": "tpx_tpx2000407a0", + "phases": "AS", + "to": "sx2000407a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3178971a", + "length": "50.0000", + "name": "tpx_tpx338896a0", + "phases": "AS", + "to": "sx3178971a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2689678b", + "length": "50.0000", + "name": "tpx_tpx226192762b0", + "phases": "BS", + "to": "sx2689678b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2954354a", + "length": "50.0000", + "name": "tpx_tpx302675a0", + "phases": "AS", + "to": "sx2954354a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973169a", + "length": "50.0000", + "name": "tpx_tpx21397304a0", + "phases": "AS", + "to": "sx2973169a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000714b", + "length": "50.0000", + "name": "tpx_tpx2000714b0", + "phases": "BS", + "to": "sx2000714b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804253a", + "length": "50.0000", + "name": "tpx_tpx21396254a0", + "phases": "AS", + "to": "sx2804253a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710513b", + "length": "50.0000", + "name": "tpx_tpx325245b0", + "phases": "BS", + "to": "sx2710513b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822858b", + "length": "50.0000", + "name": "tpx_tpx355591b0", + "phases": "BS", + "to": "sx2822858b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001205c", + "length": "50.0000", + "name": "tpx_tpx2001205c0", + "phases": "CS", + "to": "sx2001205c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2841641b", + "length": "50.0000", + "name": "tpx_tpx21380156b0", + "phases": "BS", + "to": "sx2841641b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691965b", + "length": "50.0000", + "name": "tpx_tpx338983b0", + "phases": "BS", + "to": "sx2691965b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3086098a", + "length": "50.0000", + "name": "tpx_tpx21474556a0", + "phases": "AS", + "to": "sx3086098a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2858163a", + "length": "50.0000", + "name": "tpx_tpx391990a0", + "phases": "AS", + "to": "sx2858163a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860491b", + "length": "50.0000", + "name": "tpx_tpx302733b0", + "phases": "BS", + "to": "sx2860491b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3101789a", + "length": "50.0000", + "name": "tpx_tpx294842a0", + "phases": "AS", + "to": "sx3101789a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2917333a", + "length": "50.0000", + "name": "tpx_tpx260632a0", + "phases": "AS", + "to": "sx2917333a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3729298a", + "length": "50.0000", + "name": "tpx_tpx2224386617a0", + "phases": "AS", + "to": "sx3729298a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197626c", + "length": "50.0000", + "name": "tpx_tpx337623c0", + "phases": "CS", + "to": "sx3197626c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001312a", + "length": "50.0000", + "name": "tpx_tpx2001312a0", + "phases": "AS", + "to": "sx2001312a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729413a", + "length": "50.0000", + "name": "tpx_tpx21397067a0", + "phases": "AS", + "to": "sx2729413a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2935567b", + "length": "50.0000", + "name": "tpx_tpx338992b0", + "phases": "BS", + "to": "sx2935567b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000414a", + "length": "50.0000", + "name": "tpx_tpx2000414a0", + "phases": "AS", + "to": "sx2000414a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160861c", + "length": "50.0000", + "name": "tpx_tpx260558c0", + "phases": "CS", + "to": "sx3160861c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3027116a", + "length": "50.0000", + "name": "tpx_tpx226192684a0", + "phases": "AS", + "to": "sx3027116a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691939b", + "length": "50.0000", + "name": "tpx_tpx355589b0", + "phases": "BS", + "to": "sx2691939b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860480b", + "length": "50.0000", + "name": "tpx_tpx323234b0", + "phases": "BS", + "to": "sx2860480b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879064a", + "length": "50.0000", + "name": "tpx_tpx138581a0", + "phases": "AS", + "to": "sx2879064a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2803199c", + "length": "50.0000", + "name": "tpx_tpx227760021c0", + "phases": "CS", + "to": "sx2803199c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2691944a", + "length": "50.0000", + "name": "tpx_tpx321838a0", + "phases": "AS", + "to": "sx2691944a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2691950c", + "length": "50.0000", + "name": "tpx_tpx138374c0", + "phases": "CS", + "to": "sx2691950c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2898515c", + "length": "50.0000", + "name": "tpx_tpx260621c0", + "phases": "CS", + "to": "sx2898515c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000908c", + "length": "50.0000", + "name": "tpx_tpx2000908c0", + "phases": "CS", + "to": "sx2000908c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2692660a", + "length": "50.0000", + "name": "tpx_tpx260643a0", + "phases": "AS", + "to": "sx2692660a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160107a", + "length": "50.0000", + "name": "tpx_tpx138265a0", + "phases": "AS", + "to": "sx3160107a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673309c", + "length": "50.0000", + "name": "tpx_tpx138472c0", + "phases": "CS", + "to": "sx2673309c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001007b", + "length": "50.0000", + "name": "tpx_tpx2001007b0", + "phases": "BS", + "to": "sx2001007b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104796c", + "length": "50.0000", + "name": "tpx_tpx260569c0", + "phases": "CS", + "to": "sx3104796c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3645811c", + "length": "50.0000", + "name": "tpx_tpx2224230689c0", + "phases": "CS", + "to": "sx3645811c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2767342a", + "length": "50.0000", + "name": "tpx_tpx356802a0", + "phases": "AS", + "to": "sx2767342a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748146a", + "length": "50.0000", + "name": "tpx_tpx138570a0", + "phases": "AS", + "to": "sx2748146a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2803199b", + "length": "50.0000", + "name": "tpx_tpx227760021b0", + "phases": "BS", + "to": "sx2803199b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785512b", + "length": "50.0000", + "name": "tpx_tpx323245b0", + "phases": "BS", + "to": "sx2785512b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2954352c", + "length": "50.0000", + "name": "tpx_tpx28127090c0", + "phases": "CS", + "to": "sx2954352c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2805031c", + "length": "50.0000", + "name": "tpx_tpx260491c0", + "phases": "CS", + "to": "sx2805031c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3217064b", + "length": "50.0000", + "name": "tpx_tpx21391390b0", + "phases": "BS", + "to": "sx3217064b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3645812c", + "length": "50.0000", + "name": "tpx_tpx2224230754c0", + "phases": "CS", + "to": "sx3645812c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216370a", + "length": "50.0000", + "name": "tpx_tpx293521a0", + "phases": "AS", + "to": "sx3216370a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2729428a", + "length": "50.0000", + "name": "tpx_tpx21398402a0", + "phases": "AS", + "to": "sx2729428a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3065750b", + "length": "50.0000", + "name": "tpx_tpx323389b0", + "phases": "BS", + "to": "sx3065750b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122811a", + "length": "50.0000", + "name": "tpx_tpx337669a0", + "phases": "AS", + "to": "sx3122811a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141393c", + "length": "50.0000", + "name": "tpx_tpx442373c0", + "phases": "CS", + "to": "sx3141393c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649297a", + "length": "50.0000", + "name": "tpx_tpx2224237380a0", + "phases": "AS", + "to": "sx3649297a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991915b", + "length": "50.0000", + "name": "tpx_tpx392036b0", + "phases": "BS", + "to": "sx2991915b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001214c", + "length": "50.0000", + "name": "tpx_tpx2001214c0", + "phases": "CS", + "to": "sx2001214c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235249a", + "length": "50.0000", + "name": "tpx_tpx356014a0", + "phases": "AS", + "to": "sx3235249a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122825a", + "length": "50.0000", + "name": "tpx_tpx28118808a0", + "phases": "AS", + "to": "sx3122825a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673322b", + "length": "50.0000", + "name": "tpx_tpx355358b0", + "phases": "BS", + "to": "sx2673322b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3008248a", + "length": "50.0000", + "name": "tpx_tpx321159a0", + "phases": "AS", + "to": "sx3008248a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3142098b", + "length": "50.0000", + "name": "tpx_tpx260501b0", + "phases": "BS", + "to": "sx3142098b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160864b", + "length": "50.0000", + "name": "tpx_tpx28127146b0", + "phases": "BS", + "to": "sx3160864b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2876812a", + "length": "50.0000", + "name": "tpx_tpx321880a0", + "phases": "AS", + "to": "sx2876812a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860491a", + "length": "50.0000", + "name": "tpx_tpx302733a0", + "phases": "AS", + "to": "sx2860491a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3142099b", + "length": "50.0000", + "name": "tpx_tpx157718b0", + "phases": "BS", + "to": "sx3142099b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879069a", + "length": "50.0000", + "name": "tpx_tpx338894a0", + "phases": "AS", + "to": "sx2879069a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3217056a", + "length": "50.0000", + "name": "tpx_tpx218474a0", + "phases": "AS", + "to": "sx3217056a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2803199a", + "length": "50.0000", + "name": "tpx_tpx227760021a0", + "phases": "AS", + "to": "sx2803199a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216370b", + "length": "50.0000", + "name": "tpx_tpx293521b0", + "phases": "BS", + "to": "sx3216370b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841619c", + "length": "50.0000", + "name": "tpx_tpx337636c0", + "phases": "CS", + "to": "sx2841619c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649299a", + "length": "50.0000", + "name": "tpx_tpx2224237391a0", + "phases": "AS", + "to": "sx3649299a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766499c", + "length": "50.0000", + "name": "tpx_tpx2212168880c0", + "phases": "CS", + "to": "sx2766499c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001203c", + "length": "50.0000", + "name": "tpx_tpx2001203c0", + "phases": "CS", + "to": "sx2001203c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197645a", + "length": "50.0000", + "name": "tpx_tpx21395962a0", + "phases": "AS", + "to": "sx3197645a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029520b", + "length": "50.0000", + "name": "tpx_tpx21486213b0", + "phases": "BS", + "to": "sx3029520b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897766c", + "length": "50.0000", + "name": "tpx_tpx28128007c0", + "phases": "CS", + "to": "sx2897766c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2820535b", + "length": "50.0000", + "name": "tpx_tpx338981b0", + "phases": "BS", + "to": "sx2820535b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122849b", + "length": "50.0000", + "name": "tpx_tpx293423b0", + "phases": "BS", + "to": "sx3122849b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2786273b", + "length": "50.0000", + "name": "tpx_tpx275247b0", + "phases": "BS", + "to": "sx2786273b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841645c", + "length": "50.0000", + "name": "tpx_tpx321893c0", + "phases": "CS", + "to": "sx2841645c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2746587c", + "length": "50.0000", + "name": "tpx_tpx227653310c0", + "phases": "CS", + "to": "sx2746587c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897784b", + "length": "50.0000", + "name": "tpx_tpx247170b0", + "phases": "BS", + "to": "sx2897784b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3086002c", + "length": "50.0000", + "name": "tpx_tpx356794c0", + "phases": "CS", + "to": "sx3086002c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3029500a", + "length": "50.0000", + "name": "tpx_tpx391992a0", + "phases": "AS", + "to": "sx3029500a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2851933c", + "length": "50.0000", + "name": "tpx_tpx21393643c0", + "phases": "CS", + "to": "sx2851933c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841623a", + "length": "50.0000", + "name": "tpx_tpx294844a0", + "phases": "AS", + "to": "sx2841623a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3119793b", + "length": "50.0000", + "name": "tpx_tpx226024307b0", + "phases": "BS", + "to": "sx3119793b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3216370c", + "length": "50.0000", + "name": "tpx_tpx293521c0", + "phases": "CS", + "to": "sx3216370c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001310a", + "length": "50.0000", + "name": "tpx_tpx2001310a0", + "phases": "AS", + "to": "sx2001310a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122823b", + "length": "50.0000", + "name": "tpx_tpx302370b0", + "phases": "BS", + "to": "sx3122823b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860483b", + "length": "50.0000", + "name": "tpx_tpx21396699b0", + "phases": "BS", + "to": "sx2860483b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897805a", + "length": "50.0000", + "name": "tpx_tpx21471907a0", + "phases": "AS", + "to": "sx2897805a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2891575c", + "length": "50.0000", + "name": "tpx_tpx225533423c0", + "phases": "CS", + "to": "sx2891575c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2936212a", + "length": "50.0000", + "name": "tpx_tpx356815a0", + "phases": "AS", + "to": "sx2936212a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3048963b", + "length": "50.0000", + "name": "tpx_tpx260521b0", + "phases": "BS", + "to": "sx3048963b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235258a", + "length": "50.0000", + "name": "tpx_tpx293652a0", + "phases": "AS", + "to": "sx3235258a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673331b", + "length": "50.0000", + "name": "tpx_tpx338990b0", + "phases": "BS", + "to": "sx2673331b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710517a", + "length": "50.0000", + "name": "tpx_tpx310568a0", + "phases": "AS", + "to": "sx2710517a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235247a", + "length": "50.0000", + "name": "tpx_tpx321836a0", + "phases": "AS", + "to": "sx3235247a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991916b", + "length": "50.0000", + "name": "tpx_tpx337710b0", + "phases": "BS", + "to": "sx2991916b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822860b", + "length": "50.0000", + "name": "tpx_tpx323236b0", + "phases": "BS", + "to": "sx2822860b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104126c", + "length": "50.0000", + "name": "tpx_tpx138372c0", + "phases": "CS", + "to": "sx3104126c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2851933b", + "length": "50.0000", + "name": "tpx_tpx21393643b0", + "phases": "BS", + "to": "sx2851933b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766719a", + "length": "50.0000", + "name": "tpx_tpx21357865a0", + "phases": "AS", + "to": "sx2766719a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729405b", + "length": "50.0000", + "name": "tpx_tpx21393412b0", + "phases": "BS", + "to": "sx2729405b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3122848c", + "length": "50.0000", + "name": "tpx_tpx21397121c0", + "phases": "CS", + "to": "sx3122848c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973833b", + "length": "50.0000", + "name": "tpx_tpx260630b0", + "phases": "BS", + "to": "sx2973833b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897771b", + "length": "50.0000", + "name": "tpx_tpx21148701b0", + "phases": "BS", + "to": "sx2897771b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879054a", + "length": "50.0000", + "name": "tpx_tpx247061a0", + "phases": "AS", + "to": "sx2879054a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2952007c", + "length": "50.0000", + "name": "tpx_tpx251859c0", + "phases": "CS", + "to": "sx2952007c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104144a", + "length": "50.0000", + "name": "tpx_tpx339020a0", + "phases": "AS", + "to": "sx3104144a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197625c", + "length": "50.0000", + "name": "tpx_tpx339044c0", + "phases": "CS", + "to": "sx3197625c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3085395a", + "length": "50.0000", + "name": "tpx_tpx21391094a0", + "phases": "AS", + "to": "sx3085395a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766717c", + "length": "50.0000", + "name": "tpx_tpx138470c0", + "phases": "CS", + "to": "sx2766717c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649301a", + "length": "50.0000", + "name": "tpx_tpx2224237643a0", + "phases": "AS", + "to": "sx3649301a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897777c", + "length": "50.0000", + "name": "tpx_tpx338937c0", + "phases": "CS", + "to": "sx2897777c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2801896b", + "length": "50.0000", + "name": "tpx_tpx226191995b0", + "phases": "BS", + "to": "sx2801896b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160101a", + "length": "50.0000", + "name": "tpx_tpx337678a0", + "phases": "AS", + "to": "sx3160101a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001005b", + "length": "50.0000", + "name": "tpx_tpx2001005b0", + "phases": "BS", + "to": "sx2001005b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010570a", + "length": "50.0000", + "name": "tpx_tpx302392a0", + "phases": "AS", + "to": "sx3010570a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2936211c", + "length": "50.0000", + "name": "tpx_tpx260567c0", + "phases": "CS", + "to": "sx2936211c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2823544a", + "length": "50.0000", + "name": "tpx_tpx356804a0", + "phases": "AS", + "to": "sx2823544a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3139366a", + "length": "50.0000", + "name": "tpx_tpx226264795a0", + "phases": "AS", + "to": "sx3139366a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2973166c", + "length": "50.0000", + "name": "tpx_tpx293665c0", + "phases": "CS", + "to": "sx2973166c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2935553b", + "length": "50.0000", + "name": "tpx_tpx323247b0", + "phases": "BS", + "to": "sx2935553b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916625b", + "length": "50.0000", + "name": "tpx_tpx21467859b0", + "phases": "BS", + "to": "sx2916625b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897764b", + "length": "50.0000", + "name": "tpx_tpx391750b0", + "phases": "BS", + "to": "sx2897764b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2851933a", + "length": "50.0000", + "name": "tpx_tpx21393643a0", + "phases": "AS", + "to": "sx2851933a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3082988b", + "length": "50.0000", + "name": "tpx_tpx226195153b0", + "phases": "BS", + "to": "sx3082988b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216123a", + "length": "50.0000", + "name": "tpx_tpx338926a0", + "phases": "AS", + "to": "sx3216123a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766725c", + "length": "50.0000", + "name": "tpx_tpx21399220c0", + "phases": "CS", + "to": "sx2766725c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001212c", + "length": "50.0000", + "name": "tpx_tpx2001212c0", + "phases": "CS", + "to": "sx2001212c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841615a", + "length": "50.0000", + "name": "tpx_tpx356012a0", + "phases": "AS", + "to": "sx2841615a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2876798b", + "length": "50.0000", + "name": "tpx_tpx226193745b0", + "phases": "BS", + "to": "sx2876798b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104155c", + "length": "50.0000", + "name": "tpx_tpx21474587c0", + "phases": "CS", + "to": "sx3104155c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3214549a", + "length": "50.0000", + "name": "tpx_tpx226308731a0", + "phases": "AS", + "to": "sx3214549a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235258c", + "length": "50.0000", + "name": "tpx_tpx293652c0", + "phases": "CS", + "to": "sx3235258c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748152b", + "length": "50.0000", + "name": "tpx_tpx321849b0", + "phases": "BS", + "to": "sx2748152b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879081a", + "length": "50.0000", + "name": "tpx_tpx391981a0", + "phases": "AS", + "to": "sx2879081a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2916606c", + "length": "50.0000", + "name": "tpx_tpx275007c0", + "phases": "CS", + "to": "sx2916606c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160863c", + "length": "50.0000", + "name": "tpx_tpx223660c0", + "phases": "CS", + "to": "sx3160863c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122826a", + "length": "50.0000", + "name": "tpx_tpx302731a0", + "phases": "AS", + "to": "sx3122826a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000710b", + "length": "50.0000", + "name": "tpx_tpx2000710b0", + "phases": "BS", + "to": "sx2000710b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141411c", + "length": "50.0000", + "name": "tpx_tpx21197413c0", + "phases": "CS", + "to": "sx3141411c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2936270a", + "length": "50.0000", + "name": "tpx_tpx218472a0", + "phases": "AS", + "to": "sx2936270a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3085401a", + "length": "50.0000", + "name": "tpx_tpx28127253a0", + "phases": "AS", + "to": "sx3085401a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991905a", + "length": "50.0000", + "name": "tpx_tpx28148633a0", + "phases": "AS", + "to": "sx2991905a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897772a", + "length": "50.0000", + "name": "tpx_tpx302679a0", + "phases": "AS", + "to": "sx2897772a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2820531b", + "length": "50.0000", + "name": "tpx_tpx226192936b0", + "phases": "BS", + "to": "sx2820531b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3141394b", + "length": "50.0000", + "name": "tpx_tpx339042b0", + "phases": "BS", + "to": "sx3141394b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122824a", + "length": "50.0000", + "name": "tpx_tpx302402a0", + "phases": "AS", + "to": "sx3122824a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160868b", + "length": "50.0000", + "name": "tpx_tpx52107693b0", + "phases": "BS", + "to": "sx3160868b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2748126c", + "length": "50.0000", + "name": "tpx_tpx321891c0", + "phases": "CS", + "to": "sx2748126c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897768c", + "length": "50.0000", + "name": "tpx_tpx337634c0", + "phases": "CS", + "to": "sx2897768c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2936276b", + "length": "50.0000", + "name": "tpx_tpx260458b0", + "phases": "BS", + "to": "sx2936276b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216342b", + "length": "50.0000", + "name": "tpx_tpx337645b0", + "phases": "BS", + "to": "sx3216342b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2954345c", + "length": "50.0000", + "name": "tpx_tpx338915c0", + "phases": "CS", + "to": "sx2954345c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766720a", + "length": "50.0000", + "name": "tpx_tpx441311a0", + "phases": "AS", + "to": "sx2766720a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000403a", + "length": "50.0000", + "name": "tpx_tpx2000403a0", + "phases": "AS", + "to": "sx2000403a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2821087a", + "length": "50.0000", + "name": "tpx_tpx226308720a0", + "phases": "AS", + "to": "sx2821087a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3235258b", + "length": "50.0000", + "name": "tpx_tpx293652b0", + "phases": "BS", + "to": "sx3235258b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3140238a", + "length": "50.0000", + "name": "tpx_tpx227905262a0", + "phases": "AS", + "to": "sx3140238a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804252a", + "length": "50.0000", + "name": "tpx_tpx302473a0", + "phases": "AS", + "to": "sx2804252a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3235275b", + "length": "50.0000", + "name": "tpx_tpx302507b0", + "phases": "BS", + "to": "sx3235275b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085391b", + "length": "50.0000", + "name": "tpx_tpx21236413b0", + "phases": "BS", + "to": "sx3085391b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104120b", + "length": "50.0000", + "name": "tpx_tpx138645b0", + "phases": "BS", + "to": "sx3104120b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066821a", + "length": "50.0000", + "name": "tpx_tpx391994a0", + "phases": "AS", + "to": "sx3066821a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991927b", + "length": "50.0000", + "name": "tpx_tpx355607b0", + "phases": "BS", + "to": "sx2991927b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860501b", + "length": "50.0000", + "name": "tpx_tpx323265b0", + "phases": "BS", + "to": "sx2860501b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3215203b", + "length": "50.0000", + "name": "tpx_tpx227760024b0", + "phases": "BS", + "to": "sx3215203b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104129a", + "length": "50.0000", + "name": "tpx_tpx338969a0", + "phases": "AS", + "to": "sx3104129a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2711226b", + "length": "50.0000", + "name": "tpx_tpx260527b0", + "phases": "BS", + "to": "sx2711226b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3139103a", + "length": "50.0000", + "name": "tpx_tpx225767272a0", + "phases": "AS", + "to": "sx3139103a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066804a", + "length": "50.0000", + "name": "tpx_tpx21380599a0", + "phases": "AS", + "to": "sx3066804a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3047289a", + "length": "50.0000", + "name": "tpx_tpx228091193a0", + "phases": "AS", + "to": "sx3047289a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048212a", + "length": "50.0000", + "name": "tpx_tpx355934a0", + "phases": "AS", + "to": "sx3048212a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3727712a", + "length": "50.0000", + "name": "tpx_tpx2224386889a0", + "phases": "AS", + "to": "sx3727712a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2802481a", + "length": "50.0000", + "name": "tpx_tpx226308730a0", + "phases": "AS", + "to": "sx2802481a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235248c", + "length": "50.0000", + "name": "tpx_tpx321861c0", + "phases": "CS", + "to": "sx3235248c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2936275b", + "length": "50.0000", + "name": "tpx_tpx157715b0", + "phases": "BS", + "to": "sx2936275b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2805034a", + "length": "50.0000", + "name": "tpx_tpx260647a0", + "phases": "AS", + "to": "sx2805034a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3179607b", + "length": "50.0000", + "name": "tpx_tpx260591b0", + "phases": "BS", + "to": "sx3179607b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085389b", + "length": "50.0000", + "name": "tpx_tpx391765b0", + "phases": "BS", + "to": "sx3085389b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2954338b", + "length": "50.0000", + "name": "tpx_tpx355618b0", + "phases": "BS", + "to": "sx2954338b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3082983b", + "length": "50.0000", + "name": "tpx_tpx226193899b0", + "phases": "BS", + "to": "sx3082983b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048966c", + "length": "50.0000", + "name": "tpx_tpx260625c0", + "phases": "CS", + "to": "sx3048966c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3552667c", + "length": "50.0000", + "name": "tpx_tpx2224061203c0", + "phases": "CS", + "to": "sx3552667c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104145b", + "length": "50.0000", + "name": "tpx_tpx339011b0", + "phases": "BS", + "to": "sx3104145b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3215203a", + "length": "50.0000", + "name": "tpx_tpx227760024a0", + "phases": "AS", + "to": "sx3215203a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2691945c", + "length": "50.0000", + "name": "tpx_tpx302812c0", + "phases": "CS", + "to": "sx2691945c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2951995c", + "length": "50.0000", + "name": "tpx_tpx226192801c0", + "phases": "CS", + "to": "sx2951995c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3064514c", + "length": "50.0000", + "name": "tpx_tpx251857c0", + "phases": "CS", + "to": "sx3064514c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897776c", + "length": "50.0000", + "name": "tpx_tpx302858c0", + "phases": "CS", + "to": "sx2897776c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785546a", + "length": "50.0000", + "name": "tpx_tpx21399752a0", + "phases": "AS", + "to": "sx2785546a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235244a", + "length": "50.0000", + "name": "tpx_tpx337676a0", + "phases": "AS", + "to": "sx3235244a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001003b", + "length": "50.0000", + "name": "tpx_tpx2001003b0", + "phases": "BS", + "to": "sx2001003b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3120484c", + "length": "50.0000", + "name": "tpx_tpx226191772c0", + "phases": "CS", + "to": "sx3120484c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973178b", + "length": "50.0000", + "name": "tpx_tpx337665b0", + "phases": "BS", + "to": "sx2973178b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066809c", + "length": "50.0000", + "name": "tpx_tpx338958c0", + "phases": "CS", + "to": "sx3066809c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973146b", + "length": "50.0000", + "name": "tpx_tpx28118903b0", + "phases": "BS", + "to": "sx2973146b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066808c", + "length": "50.0000", + "name": "tpx_tpx337654c0", + "phases": "CS", + "to": "sx3066808c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804260b", + "length": "50.0000", + "name": "tpx_tpx391752b0", + "phases": "BS", + "to": "sx2804260b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160871c", + "length": "50.0000", + "name": "tpx_tpx260638c0", + "phases": "CS", + "to": "sx3160871c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2952014a", + "length": "50.0000", + "name": "tpx_tpx294809a0", + "phases": "AS", + "to": "sx2952014a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879078a", + "length": "50.0000", + "name": "tpx_tpx21399229a0", + "phases": "AS", + "to": "sx2879078a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3226771a", + "length": "50.0000", + "name": "tpx_tpx227100746a0", + "phases": "AS", + "to": "sx3226771a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048222c", + "length": "50.0000", + "name": "tpx_tpx355431c0", + "phases": "CS", + "to": "sx3048222c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2935552c", + "length": "50.0000", + "name": "tpx_tpx274903c0", + "phases": "CS", + "to": "sx2935552c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897789b", + "length": "50.0000", + "name": "tpx_tpx323287b0", + "phases": "BS", + "to": "sx2897789b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710508b", + "length": "50.0000", + "name": "tpx_tpx323241b0", + "phases": "BS", + "to": "sx2710508b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001014b", + "length": "50.0000", + "name": "tpx_tpx2001014b0", + "phases": "BS", + "to": "sx2001014b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2001210c", + "length": "50.0000", + "name": "tpx_tpx2001210c0", + "phases": "CS", + "to": "sx2001210c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000709b", + "length": "50.0000", + "name": "tpx_tpx2000709b0", + "phases": "BS", + "to": "sx2000709b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766741a", + "length": "50.0000", + "name": "tpx_tpx21386754a0", + "phases": "AS", + "to": "sx2766741a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254234b", + "length": "50.0000", + "name": "tpx_tpx355586b0", + "phases": "BS", + "to": "sx3254234b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748158a", + "length": "50.0000", + "name": "tpx_tpx293480a0", + "phases": "AS", + "to": "sx2748158a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3232301c", + "length": "50.0000", + "name": "tpx_tpx21458756c0", + "phases": "CS", + "to": "sx3232301c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216349b", + "length": "50.0000", + "name": "tpx_tpx337708b0", + "phases": "BS", + "to": "sx3216349b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3189188c", + "length": "50.0000", + "name": "tpx_tpx293658c0", + "phases": "CS", + "to": "sx3189188c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897806c", + "length": "50.0000", + "name": "tpx_tpx337643c0", + "phases": "CS", + "to": "sx2897806c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216336a", + "length": "50.0000", + "name": "tpx_tpx356010a0", + "phases": "AS", + "to": "sx3216336a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841629c", + "length": "50.0000", + "name": "tpx_tpx138405c0", + "phases": "CS", + "to": "sx2841629c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973162b", + "length": "50.0000", + "name": "tpx_tpx302375b0", + "phases": "BS", + "to": "sx2973162b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766732b", + "length": "50.0000", + "name": "tpx_tpx247164b0", + "phases": "BS", + "to": "sx2766732b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216339b", + "length": "50.0000", + "name": "tpx_tpx391741b0", + "phases": "BS", + "to": "sx3216339b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3254210c", + "length": "50.0000", + "name": "tpx_tpx138647c0", + "phases": "CS", + "to": "sx3254210c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2879073c", + "length": "50.0000", + "name": "tpx_tpx138371c0", + "phases": "CS", + "to": "sx2879073c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2786274c", + "length": "50.0000", + "name": "tpx_tpx207291c0", + "phases": "CS", + "to": "sx2786274c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000905c", + "length": "50.0000", + "name": "tpx_tpx2000905c0", + "phases": "CS", + "to": "sx2000905c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2916234a", + "length": "50.0000", + "name": "tpx_tpx228549643a0", + "phases": "AS", + "to": "sx2916234a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066812a", + "length": "50.0000", + "name": "tpx_tpx323263a0", + "phases": "AS", + "to": "sx3066812a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879066b", + "length": "50.0000", + "name": "tpx_tpx323252b0", + "phases": "BS", + "to": "sx2879066b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691949b", + "length": "50.0000", + "name": "tpx_tpx337689b0", + "phases": "BS", + "to": "sx2691949b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160109b", + "length": "50.0000", + "name": "tpx_tpx338947b0", + "phases": "BS", + "to": "sx3160109b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048208a", + "length": "50.0000", + "name": "tpx_tpx138260a0", + "phases": "AS", + "to": "sx3048208a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066815c", + "length": "50.0000", + "name": "tpx_tpx338936c0", + "phases": "CS", + "to": "sx3066815c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122820a", + "length": "50.0000", + "name": "tpx_tpx310561a0", + "phases": "AS", + "to": "sx3122820a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729401b", + "length": "50.0000", + "name": "tpx_tpx355597b0", + "phases": "BS", + "to": "sx2729401b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3233353a", + "length": "50.0000", + "name": "tpx_tpx21399630a0", + "phases": "AS", + "to": "sx3233353a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2726974b", + "length": "50.0000", + "name": "tpx_tpx226193395b0", + "phases": "BS", + "to": "sx2726974b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2861218c", + "length": "50.0000", + "name": "tpx_tpx260505c0", + "phases": "CS", + "to": "sx2861218c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2841620b", + "length": "50.0000", + "name": "tpx_tpx28147018b0", + "phases": "BS", + "to": "sx2841620b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673307c", + "length": "50.0000", + "name": "tpx_tpx337632c0", + "phases": "CS", + "to": "sx2673307c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141388c", + "length": "50.0000", + "name": "tpx_tpx138416c0", + "phases": "CS", + "to": "sx3141388c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3157708c", + "length": "50.0000", + "name": "tpx_tpx226192954c0", + "phases": "CS", + "to": "sx3157708c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804956a", + "length": "50.0000", + "name": "tpx_tpx356811a0", + "phases": "AS", + "to": "sx2804956a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3085402a", + "length": "50.0000", + "name": "tpx_tpx302471a0", + "phases": "AS", + "to": "sx3085402a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710514b", + "length": "50.0000", + "name": "tpx_tpx323267b0", + "phases": "BS", + "to": "sx2710514b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2763407c", + "length": "50.0000", + "name": "tpx_tpx225906836c0", + "phases": "CS", + "to": "sx2763407c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2821010a", + "length": "50.0000", + "name": "tpx_tpx294788a0", + "phases": "AS", + "to": "sx2821010a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160123a", + "length": "50.0000", + "name": "tpx_tpx21015706a0", + "phases": "AS", + "to": "sx3160123a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2804957c", + "length": "50.0000", + "name": "tpx_tpx356790c0", + "phases": "CS", + "to": "sx2804957c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3141412a", + "length": "50.0000", + "name": "tpx_tpx391996a0", + "phases": "AS", + "to": "sx3141412a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785536b", + "length": "50.0000", + "name": "tpx_tpx339002b0", + "phases": "BS", + "to": "sx2785536b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2842383a", + "length": "50.0000", + "name": "tpx_tpx260634a0", + "phases": "AS", + "to": "sx2842383a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2783231b", + "length": "50.0000", + "name": "tpx_tpx226193886b0", + "phases": "BS", + "to": "sx2783231b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2823592a", + "length": "50.0000", + "name": "tpx_tpx223658a0", + "phases": "AS", + "to": "sx2823592a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2803194c", + "length": "50.0000", + "name": "tpx_tpx227917130c0", + "phases": "CS", + "to": "sx2803194c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2935554a", + "length": "50.0000", + "name": "tpx_tpx338921a0", + "phases": "AS", + "to": "sx2935554a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2896685c", + "length": "50.0000", + "name": "tpx_tpx227187012c0", + "phases": "CS", + "to": "sx2896685c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3010566c", + "length": "50.0000", + "name": "tpx_tpx138776c0", + "phases": "CS", + "to": "sx3010566c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841635a", + "length": "50.0000", + "name": "tpx_tpx21399099a0", + "phases": "AS", + "to": "sx2841635a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2727795c", + "length": "50.0000", + "name": "tpx_tpx227678342c0", + "phases": "CS", + "to": "sx2727795c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2674047c", + "length": "50.0000", + "name": "tpx_tpx260514c0", + "phases": "CS", + "to": "sx2674047c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104157c", + "length": "50.0000", + "name": "tpx_tpx293427c0", + "phases": "CS", + "to": "sx3104157c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2763812c", + "length": "50.0000", + "name": "tpx_tpx21459651c0", + "phases": "CS", + "to": "sx2763812c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2970811a", + "length": "50.0000", + "name": "tpx_tpx321881a0", + "phases": "AS", + "to": "sx2970811a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2991922a", + "length": "50.0000", + "name": "tpx_tpx302734a0", + "phases": "AS", + "to": "sx2991922a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3235946a", + "length": "50.0000", + "name": "tpx_tpx356800a0", + "phases": "AS", + "to": "sx3235946a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748840b", + "length": "50.0000", + "name": "tpx_tpx157717b0", + "phases": "BS", + "to": "sx2748840b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3030199c", + "length": "50.0000", + "name": "tpx_tpx260480c0", + "phases": "CS", + "to": "sx3030199c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804270b", + "length": "50.0000", + "name": "tpx_tpx339013b0", + "phases": "BS", + "to": "sx2804270b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841621c", + "length": "50.0000", + "name": "tpx_tpx338910c0", + "phases": "CS", + "to": "sx2841621c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2685809a", + "length": "50.0000", + "name": "tpx_tpx225533162a0", + "phases": "AS", + "to": "sx2685809a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2730107c", + "length": "50.0000", + "name": "tpx_tpx251855c0", + "phases": "CS", + "to": "sx2730107c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3139598b", + "length": "50.0000", + "name": "tpx_tpx226311345b0", + "phases": "BS", + "to": "sx3139598b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3178977c", + "length": "50.0000", + "name": "tpx_tpx302810c0", + "phases": "CS", + "to": "sx3178977c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3066805a", + "length": "50.0000", + "name": "tpx_tpx337674a0", + "phases": "AS", + "to": "sx3066805a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2970258c", + "length": "50.0000", + "name": "tpx_tpx21459640c0", + "phases": "CS", + "to": "sx2970258c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841633a", + "length": "50.0000", + "name": "tpx_tpx293645a0", + "phases": "AS", + "to": "sx2841633a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3066829c", + "length": "50.0000", + "name": "tpx_tpx321894c0", + "phases": "CS", + "to": "sx3066829c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728041a", + "length": "50.0000", + "name": "tpx_tpx2224387074a0", + "phases": "AS", + "to": "sx3728041a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2991933c", + "length": "50.0000", + "name": "tpx_tpx355433c0", + "phases": "CS", + "to": "sx2991933c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235251c", + "length": "50.0000", + "name": "tpx_tpx21387206c0", + "phases": "CS", + "to": "sx3235251c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766729a", + "length": "50.0000", + "name": "tpx_tpx293523a0", + "phases": "AS", + "to": "sx2766729a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3235242c", + "length": "50.0000", + "name": "tpx_tpx21380500c0", + "phases": "CS", + "to": "sx3235242c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897765b", + "length": "50.0000", + "name": "tpx_tpx323243b0", + "phases": "BS", + "to": "sx2897765b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001012b", + "length": "50.0000", + "name": "tpx_tpx2001012b0", + "phases": "BS", + "to": "sx2001012b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2896685a", + "length": "50.0000", + "name": "tpx_tpx227187012a0", + "phases": "AS", + "to": "sx2896685a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3178972c", + "length": "50.0000", + "name": "tpx_tpx338923c0", + "phases": "CS", + "to": "sx3178972c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2690941b", + "length": "50.0000", + "name": "tpx_tpx323387b0", + "phases": "BS", + "to": "sx2690941b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973180b", + "length": "50.0000", + "name": "tpx_tpx21398646b0", + "phases": "BS", + "to": "sx2973180b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3082993a", + "length": "50.0000", + "name": "tpx_tpx226159329a0", + "phases": "AS", + "to": "sx3082993a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3235250b", + "length": "50.0000", + "name": "tpx_tpx337698b0", + "phases": "BS", + "to": "sx3235250b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879070b", + "length": "50.0000", + "name": "tpx_tpx338934b0", + "phases": "BS", + "to": "sx2879070b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2954353a", + "length": "50.0000", + "name": "tpx_tpx338945a0", + "phases": "AS", + "to": "sx2954353a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3727710a", + "length": "50.0000", + "name": "tpx_tpx2224386863a0", + "phases": "AS", + "to": "sx3727710a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x0247162b", + "length": "50.0000", + "name": "tpx_tpx247162b0", + "phases": "BS", + "to": "sx0247162b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2763153a", + "length": "50.0000", + "name": "tpx_tpx293425a0", + "phases": "AS", + "to": "sx2763153a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2804282c", + "length": "50.0000", + "name": "tpx_tpx337641c0", + "phases": "CS", + "to": "sx2804282c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991939b", + "length": "50.0000", + "name": "tpx_tpx337652b0", + "phases": "BS", + "to": "sx2991939b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766726b", + "length": "50.0000", + "name": "tpx_tpx302373b0", + "phases": "BS", + "to": "sx2766726b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3010564c", + "length": "50.0000", + "name": "tpx_tpx321883c0", + "phases": "CS", + "to": "sx3010564c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2917310b", + "length": "50.0000", + "name": "tpx_tpx260503b0", + "phases": "BS", + "to": "sx2917310b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000411a", + "length": "50.0000", + "name": "tpx_tpx2000411a0", + "phases": "AS", + "to": "sx2000411a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822857b", + "length": "50.0000", + "name": "tpx_tpx355588b0", + "phases": "BS", + "to": "sx2822857b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3342743c", + "length": "50.0000", + "name": "tpx_tpx2223703238c0", + "phases": "CS", + "to": "sx3342743c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785530a", + "length": "50.0000", + "name": "tpx_tpx391985a0", + "phases": "AS", + "to": "sx2785530a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785529c", + "length": "50.0000", + "name": "tpx_tpx355943c0", + "phases": "CS", + "to": "sx2785529c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3141390b", + "length": "50.0000", + "name": "tpx_tpx391743b0", + "phases": "BS", + "to": "sx3141390b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2875754c", + "length": "50.0000", + "name": "tpx_tpx225897943c0", + "phases": "CS", + "to": "sx2875754c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2763072b", + "length": "50.0000", + "name": "tpx_tpx226924200b0", + "phases": "BS", + "to": "sx2763072b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991929b", + "length": "50.0000", + "name": "tpx_tpx28147708b0", + "phases": "BS", + "to": "sx2991929b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973151a", + "length": "50.0000", + "name": "tpx_tpx138569a0", + "phases": "AS", + "to": "sx2973151a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048968c", + "length": "50.0000", + "name": "tpx_tpx350994c0", + "phases": "CS", + "to": "sx3048968c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3215203c", + "length": "50.0000", + "name": "tpx_tpx227760024c0", + "phases": "CS", + "to": "sx3215203c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3047058a", + "length": "50.0000", + "name": "tpx_tpx227902981a0", + "phases": "AS", + "to": "sx3047058a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2730149c", + "length": "50.0000", + "name": "tpx_tpx260601c0", + "phases": "CS", + "to": "sx2730149c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879068b", + "length": "50.0000", + "name": "tpx_tpx323254b0", + "phases": "BS", + "to": "sx2879068b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000907c", + "length": "50.0000", + "name": "tpx_tpx2000907c0", + "phases": "CS", + "to": "sx2000907c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2935547b", + "length": "50.0000", + "name": "tpx_tpx21383553b0", + "phases": "BS", + "to": "sx2935547b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2692655c", + "length": "50.0000", + "name": "tpx_tpx21389307c0", + "phases": "CS", + "to": "sx2692655c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841625c", + "length": "50.0000", + "name": "tpx_tpx302834c0", + "phases": "CS", + "to": "sx2841625c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2896685b", + "length": "50.0000", + "name": "tpx_tpx227187012b0", + "phases": "BS", + "to": "sx2896685b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2897790c", + "length": "50.0000", + "name": "tpx_tpx21357984c0", + "phases": "CS", + "to": "sx2897790c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710505b", + "length": "50.0000", + "name": "tpx_tpx323398b0", + "phases": "BS", + "to": "sx2710505b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2785511a", + "length": "50.0000", + "name": "tpx_tpx339046a0", + "phases": "AS", + "to": "sx2785511a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973156b", + "length": "50.0000", + "name": "tpx_tpx337687b0", + "phases": "BS", + "to": "sx2973156b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104119a", + "length": "50.0000", + "name": "tpx_tpx338956a0", + "phases": "AS", + "to": "sx3104119a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254212b", + "length": "50.0000", + "name": "tpx_tpx138754b0", + "phases": "BS", + "to": "sx3254212b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2879076c", + "length": "50.0000", + "name": "tpx_tpx138380c0", + "phases": "CS", + "to": "sx2879076c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2973167b", + "length": "50.0000", + "name": "tpx_tpx293656b0", + "phases": "BS", + "to": "sx2973167b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3727711a", + "length": "50.0000", + "name": "tpx_tpx2224386874a0", + "phases": "AS", + "to": "sx3727711a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860504a", + "length": "50.0000", + "name": "tpx_tpx293667a0", + "phases": "AS", + "to": "sx2860504a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3085392c", + "length": "50.0000", + "name": "tpx_tpx337630c0", + "phases": "CS", + "to": "sx3085392c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3216338b", + "length": "50.0000", + "name": "tpx_tpx355599b0", + "phases": "BS", + "to": "sx3216338b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2767340a", + "length": "50.0000", + "name": "tpx_tpx260595a0", + "phases": "AS", + "to": "sx2767340a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160896c", + "length": "50.0000", + "name": "tpx_tpx260573c0", + "phases": "CS", + "to": "sx3160896c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841631c", + "length": "50.0000", + "name": "tpx_tpx391976c0", + "phases": "CS", + "to": "sx2841631c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766721a", + "length": "50.0000", + "name": "tpx_tpx247059a0", + "phases": "AS", + "to": "sx2766721a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3046854b", + "length": "50.0000", + "name": "tpx_tpx227732939b0", + "phases": "BS", + "to": "sx3046854b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3085397b", + "length": "50.0000", + "name": "tpx_tpx323261b0", + "phases": "BS", + "to": "sx3085397b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2954351c", + "length": "50.0000", + "name": "tpx_tpx302805c0", + "phases": "CS", + "to": "sx2954351c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197653b", + "length": "50.0000", + "name": "tpx_tpx339004b0", + "phases": "BS", + "to": "sx3197653b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2990826b", + "length": "50.0000", + "name": "tpx_tpx337619b0", + "phases": "BS", + "to": "sx2990826b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160108b", + "length": "50.0000", + "name": "tpx_tpx355603b0", + "phases": "BS", + "to": "sx3160108b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3122812b", + "length": "50.0000", + "name": "tpx_tpx21031694b0", + "phases": "BS", + "to": "sx3122812b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2729410c", + "length": "50.0000", + "name": "tpx_tpx338943c0", + "phases": "CS", + "to": "sx2729410c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000912c", + "length": "50.0000", + "name": "tpx_tpx2000912c0", + "phases": "CS", + "to": "sx2000912c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010568a", + "length": "50.0000", + "name": "tpx_tpx338965a0", + "phases": "AS", + "to": "sx3010568a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785518c", + "length": "50.0000", + "name": "tpx_tpx138469c0", + "phases": "CS", + "to": "sx2785518c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822877b", + "length": "50.0000", + "name": "tpx_tpx337672b0", + "phases": "BS", + "to": "sx2822877b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2673317a", + "length": "50.0000", + "name": "tpx_tpx21397771a0", + "phases": "AS", + "to": "sx2673317a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673346c", + "length": "50.0000", + "name": "tpx_tpx293486c0", + "phases": "CS", + "to": "sx2673346c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729407b", + "length": "50.0000", + "name": "tpx_tpx247100b0", + "phases": "BS", + "to": "sx2729407b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2804262a", + "length": "50.0000", + "name": "tpx_tpx355938a0", + "phases": "AS", + "to": "sx2804262a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2973791a", + "length": "50.0000", + "name": "tpx_tpx260605a0", + "phases": "AS", + "to": "sx2973791a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2724120c", + "length": "50.0000", + "name": "tpx_tpx225577437c0", + "phases": "CS", + "to": "sx2724120c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3027132a", + "length": "50.0000", + "name": "tpx_tpx321876a0", + "phases": "AS", + "to": "sx3027132a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2990826a", + "length": "50.0000", + "name": "tpx_tpx337619a0", + "phases": "AS", + "to": "sx2990826a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2937757c", + "length": "50.0000", + "name": "tpx_tpx227411650c0", + "phases": "CS", + "to": "sx2937757c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766749b", + "length": "50.0000", + "name": "tpx_tpx337661b0", + "phases": "BS", + "to": "sx2766749b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2764399b", + "length": "50.0000", + "name": "tpx_tpx226192493b0", + "phases": "BS", + "to": "sx2764399b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029507b", + "length": "50.0000", + "name": "tpx_tpx302368b0", + "phases": "BS", + "to": "sx3029507b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2767340b", + "length": "50.0000", + "name": "tpx_tpx260595b0", + "phases": "BS", + "to": "sx2767340b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160872c", + "length": "50.0000", + "name": "tpx_tpx260551c0", + "phases": "CS", + "to": "sx3160872c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029055b", + "length": "50.0000", + "name": "tpx_tpx260607b0", + "phases": "BS", + "to": "sx3029055b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2879079b", + "length": "50.0000", + "name": "tpx_tpx391756b0", + "phases": "BS", + "to": "sx2879079b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710546b", + "length": "50.0000", + "name": "tpx_tpx337704b0", + "phases": "BS", + "to": "sx2710546b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2897780b", + "length": "50.0000", + "name": "tpx_tpx293518b0", + "phases": "BS", + "to": "sx2897780b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254204a", + "length": "50.0000", + "name": "tpx_tpx337715a0", + "phases": "AS", + "to": "sx3254204a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916618b", + "length": "50.0000", + "name": "tpx_tpx323283b0", + "phases": "BS", + "to": "sx2916618b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2879794a", + "length": "50.0000", + "name": "tpx_tpx260475a0", + "phases": "AS", + "to": "sx2879794a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254230a", + "length": "50.0000", + "name": "tpx_tpx338989a0", + "phases": "AS", + "to": "sx3254230a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000705b", + "length": "50.0000", + "name": "tpx_tpx2000705b0", + "phases": "BS", + "to": "sx2000705b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3254237a", + "length": "50.0000", + "name": "tpx_tpx21482181a0", + "phases": "AS", + "to": "sx3254237a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2001010b", + "length": "50.0000", + "name": "tpx_tpx2001010b0", + "phases": "BS", + "to": "sx2001010b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2673318c", + "length": "50.0000", + "name": "tpx_tpx338967c0", + "phases": "CS", + "to": "sx2673318c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197635b", + "length": "50.0000", + "name": "tpx_tpx337696b0", + "phases": "BS", + "to": "sx3197635b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3728038a", + "length": "50.0000", + "name": "tpx_tpx2224387019a0", + "phases": "AS", + "to": "sx3728038a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804257b", + "length": "50.0000", + "name": "tpx_tpx321854b0", + "phases": "BS", + "to": "sx2804257b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x1108407b", + "length": "50.0000", + "name": "tpx_tpx2221108407b0", + "phases": "BS", + "to": "sx1108407b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3197629b", + "length": "50.0000", + "name": "tpx_tpx247122b0", + "phases": "BS", + "to": "sx3197629b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2000409a", + "length": "50.0000", + "name": "tpx_tpx2000409a0", + "phases": "AS", + "to": "sx2000409a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104124b", + "length": "50.0000", + "name": "tpx_tpx356065b0", + "phases": "BS", + "to": "sx3104124b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673300b", + "length": "50.0000", + "name": "tpx_tpx391745b0", + "phases": "BS", + "to": "sx2673300b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122822a", + "length": "50.0000", + "name": "tpx_tpx391987a0", + "phases": "AS", + "to": "sx3122822a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3214055c", + "length": "50.0000", + "name": "tpx_tpx226192175c0", + "phases": "CS", + "to": "sx3214055c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2748129a", + "length": "50.0000", + "name": "tpx_tpx138567a0", + "phases": "AS", + "to": "sx2748129a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197654a", + "length": "50.0000", + "name": "tpx_tpx21382992a0", + "phases": "AS", + "to": "sx3197654a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3048221a", + "length": "50.0000", + "name": "tpx_tpx21399305a0", + "phases": "AS", + "to": "sx3048221a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010569a", + "length": "50.0000", + "name": "tpx_tpx302673a0", + "phases": "AS", + "to": "sx3010569a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2989432b", + "length": "50.0000", + "name": "tpx_tpx226163575b0", + "phases": "BS", + "to": "sx2989432b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x1108410b", + "length": "50.0000", + "name": "tpx_tpx2226061820b0", + "phases": "BS", + "to": "sx1108410b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3176661c", + "length": "50.0000", + "name": "tpx_tpx356788c0", + "phases": "CS", + "to": "sx3176661c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860482a", + "length": "50.0000", + "name": "tpx_tpx338954a0", + "phases": "AS", + "to": "sx2860482a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001308a", + "length": "50.0000", + "name": "tpx_tpx2001308a0", + "phases": "AS", + "to": "sx2001308a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3027670b", + "length": "50.0000", + "name": "tpx_tpx226308719b0", + "phases": "BS", + "to": "sx3027670b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3197661c", + "length": "50.0000", + "name": "tpx_tpx338932c0", + "phases": "CS", + "to": "sx3197661c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2785528b", + "length": "50.0000", + "name": "tpx_tpx138752b0", + "phases": "BS", + "to": "sx2785528b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3104859b", + "length": "50.0000", + "name": "tpx_tpx138798b0", + "phases": "BS", + "to": "sx3104859b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2766715b", + "length": "50.0000", + "name": "tpx_tpx355593b0", + "phases": "BS", + "to": "sx2766715b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2936214a", + "length": "50.0000", + "name": "tpx_tpx356809a0", + "phases": "AS", + "to": "sx2936214a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766738c", + "length": "50.0000", + "name": "tpx_tpx338978c0", + "phases": "CS", + "to": "sx2766738c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160098a", + "length": "50.0000", + "name": "tpx_tpx339048a0", + "phases": "AS", + "to": "sx3160098a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2841622a", + "length": "50.0000", + "name": "tpx_tpx21384215a0", + "phases": "AS", + "to": "sx2841622a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748124b", + "length": "50.0000", + "name": "tpx_tpx323392b0", + "phases": "BS", + "to": "sx2748124b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785523c", + "length": "50.0000", + "name": "tpx_tpx138412c0", + "phases": "CS", + "to": "sx2785523c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2822862c", + "length": "50.0000", + "name": "tpx_tpx275001c0", + "phases": "CS", + "to": "sx2822862c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010561a", + "length": "50.0000", + "name": "tpx_tpx337650a0", + "phases": "AS", + "to": "sx3010561a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2785524c", + "length": "50.0000", + "name": "tpx_tpx28044328c0", + "phases": "CS", + "to": "sx2785524c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3160103c", + "length": "50.0000", + "name": "tpx_tpx356063c0", + "phases": "CS", + "to": "sx3160103c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_cap_2c_PUZ_C", + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "q16483", + "length": "0.0033", + "name": "line_cap_2c", + "phases": "C", + "to": "q16483_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104128a", + "length": "50.0000", + "name": "tpx_tpx247057a0", + "phases": "AS", + "to": "sx3104128a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_cap_2b_PUZ_B", + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "q16483", + "length": "0.0033", + "name": "line_cap_2b", + "phases": "B", + "to": "q16483_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_cap_2a_PUZ_A", + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "q16483", + "length": "0.0033", + "name": "line_cap_2a", + "phases": "A", + "to": "q16483_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2916619b", + "length": "50.0000", + "name": "tpx_tpx339006b0", + "phases": "BS", + "to": "sx2916619b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3141402c", + "length": "50.0000", + "name": "tpx_tpx391978c0", + "phases": "CS", + "to": "sx3141402c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029495b", + "length": "50.0000", + "name": "tpx_tpx391736b0", + "phases": "BS", + "to": "sx3029495b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3235252b", + "length": "50.0000", + "name": "tpx_tpx21388572b0", + "phases": "BS", + "to": "sx3235252b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2729409b", + "length": "50.0000", + "name": "tpx_tpx355605b0", + "phases": "BS", + "to": "sx2729409b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000914c", + "length": "50.0000", + "name": "tpx_tpx2000914c0", + "phases": "CS", + "to": "sx2000914c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3085400c", + "length": "50.0000", + "name": "tpx_tpx302803c0", + "phases": "CS", + "to": "sx3085400c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3233412a", + "length": "50.0000", + "name": "tpx_tpx226308717a0", + "phases": "AS", + "to": "sx3233412a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3104853c", + "length": "50.0000", + "name": "tpx_tpx260518c0", + "phases": "CS", + "to": "sx3104853c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254229b", + "length": "50.0000", + "name": "tpx_tpx338998b0", + "phases": "BS", + "to": "sx3254229b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3645809c", + "length": "50.0000", + "name": "tpx_tpx2224230615c0", + "phases": "CS", + "to": "sx3645809c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2991914c", + "length": "50.0000", + "name": "tpx_tpx338941c0", + "phases": "CS", + "to": "sx2991914c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2954357a", + "length": "50.0000", + "name": "tpx_tpx355936a0", + "phases": "AS", + "to": "sx2954357a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3010557a", + "length": "50.0000", + "name": "tpx_tpx21380453a0", + "phases": "AS", + "to": "sx3010557a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691946b", + "length": "50.0000", + "name": "tpx_tpx28147974b0", + "phases": "BS", + "to": "sx2691946b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2821770a", + "length": "50.0000", + "name": "tpx_tpx227917119a0", + "phases": "AS", + "to": "sx2821770a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_cap_1c_PUZ_C", + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "l2823592", + "length": "0.0033", + "name": "line_cap_1c", + "phases": "C", + "to": "l2823592_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_cap_1b_PUZ_B", + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "l2823592", + "length": "0.0033", + "name": "line_cap_1b", + "phases": "B", + "to": "l2823592_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "lcon_cap_1a_PUZ_A", + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "l2823592", + "length": "0.0033", + "name": "line_cap_1a", + "phases": "A", + "to": "l2823592_cap" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3142078b", + "length": "50.0000", + "name": "tpx_tpx330121b0", + "phases": "BS", + "to": "sx3142078b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2991640c", + "length": "50.0000", + "name": "tpx_tpx229106135c0", + "phases": "CS", + "to": "sx2991640c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2822870c", + "length": "50.0000", + "name": "tpx_tpx21399171c0", + "phases": "CS", + "to": "sx2822870c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2710543c", + "length": "50.0000", + "name": "tpx_tpx21474614c0", + "phases": "CS", + "to": "sx2710543c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860500b", + "length": "50.0000", + "name": "tpx_tpx323274b0", + "phases": "BS", + "to": "sx2860500b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2767407b", + "length": "50.0000", + "name": "tpx_tpx260495b0", + "phases": "BS", + "to": "sx2767407b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3195315a", + "length": "50.0000", + "name": "tpx_tpx226193662a0", + "phases": "AS", + "to": "sx3195315a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3217053c", + "length": "50.0000", + "name": "tpx_tpx260529c0", + "phases": "CS", + "to": "sx3217053c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3010562b", + "length": "50.0000", + "name": "tpx_tpx325473b0", + "phases": "BS", + "to": "sx3010562b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3122813a", + "length": "50.0000", + "name": "tpx_tpx138685a0", + "phases": "AS", + "to": "sx3122813a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3048889c", + "length": "50.0000", + "name": "tpx_tpx28128464c0", + "phases": "CS", + "to": "sx3048889c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2764412a", + "length": "50.0000", + "name": "tpx_tpx321874a0", + "phases": "AS", + "to": "sx2764412a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2916608c", + "length": "50.0000", + "name": "tpx_tpx321852c0", + "phases": "CS", + "to": "sx2916608c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3103822c", + "length": "50.0000", + "name": "tpx_tpx228665517c0", + "phases": "CS", + "to": "sx3103822c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3649304a", + "length": "50.0000", + "name": "tpx_tpx2224237713a0", + "phases": "AS", + "to": "sx3649304a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x1108405c", + "length": "50.0000", + "name": "tpx_tpx2221108405c0", + "phases": "CS", + "to": "sx1108405c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2878848c", + "length": "50.0000", + "name": "tpx_tpx2212168887c0", + "phases": "CS", + "to": "sx2878848c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x_293471a", + "length": "50.0000", + "name": "tpx_tpx293471a0", + "phases": "AS", + "to": "sx_293471a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766724c", + "length": "50.0000", + "name": "tpx_tpx294786c0", + "phases": "CS", + "to": "sx2766724c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3157167a", + "length": "50.0000", + "name": "tpx_tpx226115278a0", + "phases": "AS", + "to": "sx3157167a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2766718c", + "length": "50.0000", + "name": "tpx_tpx138652c0", + "phases": "CS", + "to": "sx2766718c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2804269b", + "length": "50.0000", + "name": "tpx_tpx323285b0", + "phases": "BS", + "to": "sx2804269b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2841636b", + "length": "50.0000", + "name": "tpx_tpx391758b0", + "phases": "BS", + "to": "sx2841636b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3197641a", + "length": "50.0000", + "name": "tpx_tpx293591a0", + "phases": "AS", + "to": "sx3197641a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2860490a", + "length": "50.0000", + "name": "tpx_tpx138719a0", + "phases": "AS", + "to": "sx2860490a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2861222a", + "length": "50.0000", + "name": "tpx_tpx260473a0", + "phases": "AS", + "to": "sx2861222a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3029506b", + "length": "50.0000", + "name": "tpx_tpx338930b0", + "phases": "BS", + "to": "sx3029506b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2000707b", + "length": "50.0000", + "name": "tpx_tpx2000707b0", + "phases": "BS", + "to": "sx2000707b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3047289c", + "length": "50.0000", + "name": "tpx_tpx228091193c0", + "phases": "CS", + "to": "sx3047289c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3160106a", + "length": "50.0000", + "name": "tpx_tpx310570a0", + "phases": "AS", + "to": "sx3160106a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2691967b", + "length": "50.0000", + "name": "tpx_tpx338976b0", + "phases": "BS", + "to": "sx2691967b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2897793a", + "length": "50.0000", + "name": "tpx_tpx338987a0", + "phases": "AS", + "to": "sx2897793a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2729423c", + "length": "50.0000", + "name": "tpx_tpx339017c0", + "phases": "CS", + "to": "sx2729423c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2691941c", + "length": "50.0000", + "name": "tpx_tpx321887c0", + "phases": "CS", + "to": "sx2691941c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3254214b", + "length": "50.0000", + "name": "tpx_tpx337706b0", + "phases": "BS", + "to": "sx3254214b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3216348a", + "length": "50.0000", + "name": "tpx_tpx337717a0", + "phases": "AS", + "to": "sx3216348a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2991910b", + "length": "50.0000", + "name": "tpx_tpx337694b0", + "phases": "BS", + "to": "sx2991910b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710542b", + "length": "50.0000", + "name": "tpx_tpx355584b0", + "phases": "BS", + "to": "sx2710542b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x1108405b", + "length": "50.0000", + "name": "tpx_tpx2221108405b0", + "phases": "BS", + "to": "sx1108405b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2767340c", + "length": "50.0000", + "name": "tpx_tpx260595c0", + "phases": "CS", + "to": "sx2767340c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x_293471b", + "length": "50.0000", + "name": "tpx_tpx293471b0", + "phases": "BS", + "to": "sx_293471b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2992656a", + "length": "50.0000", + "name": "tpx_tpx260627a0", + "phases": "AS", + "to": "sx2992656a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2804261c", + "length": "50.0000", + "name": "tpx_tpx302509c0", + "phases": "CS", + "to": "sx2804261c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3104122a", + "length": "50.0000", + "name": "tpx_tpx138565a0", + "phases": "AS", + "to": "sx3104122a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2841638c", + "length": "50.0000", + "name": "tpx_tpx138641c0", + "phases": "CS", + "to": "sx2841638c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3160102b", + "length": "50.0000", + "name": "tpx_tpx355780b0", + "phases": "BS", + "to": "sx3160102b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3141398a", + "length": "50.0000", + "name": "tpx_tpx21386976a0", + "phases": "AS", + "to": "sx3141398a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2748131b", + "length": "50.0000", + "name": "tpx_tpx323250b0", + "phases": "BS", + "to": "sx2748131b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3172805a", + "length": "50.0000", + "name": "tpx_tpx226964880a0", + "phases": "AS", + "to": "sx3172805a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2990826c", + "length": "50.0000", + "name": "tpx_tpx337619c0", + "phases": "CS", + "to": "sx2990826c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2766747a", + "length": "50.0000", + "name": "tpx_tpx391989a0", + "phases": "AS", + "to": "sx2766747a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2822859b", + "length": "50.0000", + "name": "tpx_tpx391747b0", + "phases": "BS", + "to": "sx2822859b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2992624a", + "length": "50.0000", + "name": "tpx_tpx260484a0", + "phases": "AS", + "to": "sx2992624a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x3011298c", + "length": "50.0000", + "name": "tpx_tpx207286c0", + "phases": "CS", + "to": "sx3011298c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2000903c", + "length": "50.0000", + "name": "tpx_tpx2000903c0", + "phases": "CS", + "to": "sx2000903c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2001306a", + "length": "50.0000", + "name": "tpx_tpx2001306a0", + "phases": "AS", + "to": "sx2001306a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2898526c", + "length": "50.0000", + "name": "tpx_tpx21393486c0", + "phases": "CS", + "to": "sx2898526c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3027671a", + "length": "50.0000", + "name": "tpx_tpx226308728a0", + "phases": "AS", + "to": "sx3027671a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3047289b", + "length": "50.0000", + "name": "tpx_tpx228091193b0", + "phases": "BS", + "to": "sx3047289b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x3236011b", + "length": "50.0000", + "name": "tpx_tpx138796b0", + "phases": "BS", + "to": "sx3236011b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2954347b", + "length": "50.0000", + "name": "tpx_tpx321841b0", + "phases": "BS", + "to": "sx2954347b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x3082992a", + "length": "50.0000", + "name": "tpx_tpx337728a0", + "phases": "AS", + "to": "sx3082992a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x_293471c", + "length": "50.0000", + "name": "tpx_tpx293471c0", + "phases": "CS", + "to": "sx_293471c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2860479b", + "length": "50.0000", + "name": "tpx_tpx355595b0", + "phases": "BS", + "to": "sx2860479b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2673305b", + "length": "50.0000", + "name": "tpx_tpx138236b0", + "phases": "BS", + "to": "sx2673305b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_C": "156.00", + "emergency_rating_C": "195.00", + "from": "x2935551c", + "length": "50.0000", + "name": "tpx_tpx21387929c0", + "phases": "CS", + "to": "sx2935551c" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2710536a", + "length": "50.0000", + "name": "tpx_tpx21396867a0", + "phases": "AS", + "to": "sx2710536a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_B": "156.00", + "emergency_rating_B": "195.00", + "from": "x2710504b", + "length": "50.0000", + "name": "tpx_tpx323394b0", + "phases": "BS", + "to": "sx2710504b" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x1108405a", + "length": "50.0000", + "name": "tpx_tpx2221108405a0", + "phases": "AS", + "to": "sx1108405a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "tcon_4/0triplex_12", + "continuous_rating_A": "156.00", + "emergency_rating_A": "195.00", + "from": "x2689691a", + "length": "50.0000", + "name": "tpx_tpx355375a0", + "phases": "AS", + "to": "sx2689691a" + }, + "children": [], + "name": "triplex_line" + }, + { + "attributes": { + "configuration": "lcon_hvmv_sub_connector_ABC", + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv11sub1_lsb", + "length": "3.2808", + "name": "line_hvmv_sub_connector", + "phases": "ABC", + "to": "hvmv_sub1_48332" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "c11": "0.0000", + "c12": "0.0000", + "c13": "0.0000", + "c21": "0.0000", + "c22": "0.0000", + "c23": "0.0000", + "c31": "0.0000", + "c32": "0.0000", + "c33": "0.0000", + "name": "lcon_hvmv_sub_connector_ABC", + "z11": "1.00000e-06+1.00000e-05j", + "z12": "0.00000+0.00000j", + "z13": "0.00000+0.00000j", + "z21": "0.00000+0.00000j", + "z22": "1.00000e-06+1.00000e-05j", + "z23": "0.00000+0.00000j", + "z31": "0.00000+0.00000j", + "z32": "0.00000+0.00000j", + "z33": "1.00000e-06+1.00000e-05j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "configuration": "lcon_hvmv_sub_hsb_ABC", + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "400.00", + "emergency_rating_B": "400.00", + "emergency_rating_C": "400.00", + "from": "sourcebus", + "length": "3.2808", + "name": "line_hvmv_sub_hsb", + "phases": "ABC", + "to": "hvmv115_hsb1" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "c11": "0.0000", + "c12": "0.0000", + "c13": "0.0000", + "c21": "0.0000", + "c22": "0.0000", + "c23": "0.0000", + "c31": "0.0000", + "c32": "0.0000", + "c33": "0.0000", + "name": "lcon_hvmv_sub_hsb_ABC", + "z11": "0.00000+14.7983j", + "z12": "0.00000+0.00000j", + "z13": "0.00000+0.00000j", + "z21": "0.00000+0.00000j", + "z22": "0.00000+14.7983j", + "z23": "0.00000+0.00000j", + "z31": "0.00000+0.00000j", + "z32": "0.00000+0.00000j", + "z33": "0.00000+14.7983j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "configuration": "lcon_ln5513564-2_ABC", + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2823592_cap", + "length": "3.2808", + "name": "line_ln5513564-2", + "phases": "ABC", + "to": "r20185" + }, + "children": [], + "name": "overhead_line" + }, + { + "attributes": { + "c11": "0.0000", + "c12": "0.0000", + "c13": "0.0000", + "c21": "0.0000", + "c22": "0.0000", + "c23": "0.0000", + "c31": "0.0000", + "c32": "0.0000", + "c33": "0.0000", + "name": "lcon_ln5513564-2_ABC", + "z11": "0.00100000+0.00100000j", + "z12": "0.00000+0.00000j", + "z13": "0.00000+0.00000j", + "z21": "0.00000+0.00000j", + "z22": "0.00100000+0.00100000j", + "z23": "0.00000+0.00000j", + "z31": "0.00000+0.00000j", + "z32": "0.00000+0.00000j", + "z33": "0.00100000+0.00100000j" + }, + "children": [], + "name": "line_configuration" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5803273-1_int", + "name": "swt_tsw803273_sw", + "phases": "ABC", + "status": "OPEN", + "to": "m1069457" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "228-1353934-4_int", + "name": "swt_wf856_48332_sw", + "phases": "C", + "status": "OPEN", + "to": "193-103041" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "n1139546", + "name": "swt_ln0955074_sw", + "phases": "B", + "status": "CLOSED", + "to": "d5955074-2_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6413567-3_int", + "name": "swt_x8223_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e182724" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69sub1_lsb2", + "name": "swt_hvmv69s1b3_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv69s1s2_1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "d6140776-1_int", + "name": "swt_v9109_48332_sw", + "phases": "A", + "status": "CLOSED", + "to": "e182730" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5742811-3_int", + "name": "swt_ln0742811_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "n1137992" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der-2", + "name": "swt_ln2001mt2_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m2001-mt2" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "d6019477-1_int", + "name": "swt_v9287_48332_sw", + "phases": "C", + "status": "CLOSED", + "to": "e182727" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6049825-1_int", + "name": "swt_l5523_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e182748" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "d6049822-1_int", + "name": "swt_l5397_48332_sw", + "phases": "A", + "status": "CLOSED", + "to": "e182722" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2000100", + "name": "swt_ln2000001_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d2000100_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "m1047767", + "name": "swt_ln0623395_sw", + "phases": "B", + "status": "CLOSED", + "to": "d5623395-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5860450-1_int", + "name": "swt_ln4651075_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1047575" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5837361-8_int", + "name": "swt_v7995_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e182745" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5860423-3_int", + "name": "swt_ln4641075_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q14733" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s2s3_2", + "name": "swt_hvmv69s3b1_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv69sub3_hsb" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1009805", + "name": "swt_ln0621886_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5621886-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6198039-1_int", + "name": "swt_a8869_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e206217" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "n1136027", + "name": "swt_ln0409774_sw", + "phases": "A", + "status": "CLOSED", + "to": "d6409775-4_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5578300-1_int", + "name": "swt_ln5587300-1", + "phases": "ABC", + "status": "CLOSED", + "to": "l2692635" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "l2729430", + "name": "swt_ln0017316_sw", + "phases": "B", + "status": "CLOSED", + "to": "d6017316-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6023352-1_int", + "name": "swt_l9407_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e184626" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d6140778-1_int", + "name": "swt_l5565_48332_sw", + "phases": "B", + "status": "CLOSED", + "to": "e182731" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026chp-1", + "name": "swt_ln5001chp_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1026chp-2" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069der480-1", + "name": "swt_dg1069mt1_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1069-mt1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6138608-3_int", + "name": "swt_ln4586093_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q14404" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3085398", + "name": "swt_ln0653457_sw", + "phases": "ABC", + "status": "OPEN", + "to": "d5653457-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5534969-2_int", + "name": "swt_v7173_48332_sw", + "phases": "ABC", + "status": "OPEN", + "to": "e182729" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1209der480-1", + "name": "swt_dg1209dies_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1209-dies1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69s1s2_10", + "name": "swt_hvmv69s2b3_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv69sub2_lnb" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6290228-6_int", + "name": "swt_2002200004991174_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q16642" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089der480-2", + "name": "swt_dg1089dies_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1089-dies1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142818", + "name": "swt_ln0504876_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5504876-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d5472341-1_int", + "name": "swt_ln0247162_sw", + "phases": "B", + "status": "CLOSED", + "to": "f739842" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2858166", + "name": "swt_ln0863704_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5863704-2_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "n1139545", + "name": "swt_ln0712477_sw", + "phases": "C", + "status": "CLOSED", + "to": "d5712477-3_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "m2001201", + "name": "swt_ln2001201_sw", + "phases": "C", + "status": "CLOSED", + "to": "d2001201_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der-5", + "name": "swt_ln2001ess2_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m2001-ess2" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6108141-1_int", + "name": "swt_v9111_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e206209" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5926308-3_int", + "name": "swt_ln4625696_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q14412" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1142der480-1", + "name": "swt_dg1142lng_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1142-lng1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "n1138594", + "name": "swt_ln0774470_sw", + "phases": "A", + "status": "CLOSED", + "to": "d5774470-2_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5799561-2_int", + "name": "swt_a8611_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e193509" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69sub2_lnb", + "name": "swt_hvmv69s2b4_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv69s2s3_1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2879078", + "name": "swt_ln0108145_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d6108145-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1136670", + "name": "swt_ln0956471_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5956471-2_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1026915", + "name": "swt_ln0774458_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5774457-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "l3066818", + "name": "swt_ln0653469_sw", + "phases": "B", + "status": "CLOSED", + "to": "d5653469-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5867591-1_int", + "name": "swt_v7041_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e183472" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5710794-3_int", + "name": "swt_hvmv69s1b2_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e192860" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089174", + "name": "swt_ln05534967_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5534967-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m3032981", + "name": "swt_ln0504019_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d6504019-6_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "d5712486-1_int", + "name": "swt_x8271_48332_sw", + "phases": "C", + "status": "CLOSED", + "to": "e206210" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d5806920-1_int", + "name": "swt_v7313_48332_sw", + "phases": "B", + "status": "CLOSED", + "to": "e182726" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "n1137999", + "name": "swt_ln0440002_sw", + "phases": "A", + "status": "CLOSED", + "to": "d6440002-2_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1069230", + "name": "swt_tsw10691069_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1069300" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69sub2_lnb", + "name": "swt_hvmv69s2b1_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv69sub2_hsb" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv11sub3_lsb", + "name": "swt_hvmv69s3b2_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e203026" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5563942-4_int", + "name": "swt_2002200004868472_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q16483" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5502543-2_int", + "name": "swt_ln4625713_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q14413" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5587291-3_int", + "name": "swt_2002200004641085_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q14734" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5513564-1_int", + "name": "swt_xj171_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e192201" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5535139-1_int", + "name": "swt_l5437_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e183473" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "n1140519", + "name": "swt_ln0895780_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d5895780-3_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5956499-2_int", + "name": "swt_ln4625680_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q14411" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "m2000701", + "name": "swt_ln2000701_sw", + "phases": "B", + "status": "CLOSED", + "to": "d2000701_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "n1144667", + "name": "swt_ln0712587_sw", + "phases": "A", + "status": "CLOSED", + "to": "d5712587-2_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5682346-3_int", + "name": "swt_g9343_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e206211" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5534970-1_int", + "name": "swt_l9191_48332_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "e182732" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "l2692000", + "name": "swt_tsw568613_sw", + "phases": "A", + "status": "OPEN", + "to": "l2841000" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "228-961799-3_int", + "name": "swt_wg127_48332_sw", + "phases": "C", + "status": "OPEN", + "to": "193-46661" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv11sub2_lsb", + "name": "swt_hvmv69s2b2_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1047300" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d5565090-1_int", + "name": "swt_x8225_48332_sw", + "phases": "B", + "status": "CLOSED", + "to": "e182744" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l3047059", + "name": "swt_tsw30473047_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "l3047060" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1047pv-2", + "name": "swt_ln1047pvfrm_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1047pv-1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5861005-2_int", + "name": "swt_ln3693186_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q1301" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv115_hsb1", + "name": "swt_hvmv115b1_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv115_hsb2" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "regxfmr_hvmv69sub1_lsb1", + "name": "swt_hvmv69s1b4_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv69sub1_lsb2" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2990827", + "name": "swt_tsw10891089_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "l2990828" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der-4", + "name": "swt_ln2001ess1_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m2001-ess1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der-3", + "name": "swt_ln2001mt3_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m2001-mt3" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "n1136030", + "name": "swt_ln0804798_sw", + "phases": "B", + "status": "CLOSED", + "to": "d5804798-3_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5958866-1_int", + "name": "swt_a8645_48332_sw", + "phases": "ABC", + "status": "OPEN", + "to": "e183493" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "d6141147-1_int", + "name": "swt_ln0141147_sw", + "phases": "C", + "status": "CLOSED", + "to": "m1108317" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089der480-1", + "name": "swt_dg1089lng_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1089-lng1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1089112", + "name": "swt_ln0138609_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d6138609-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "p829957", + "name": "swt_ln0746703_sw", + "phases": "C", + "status": "CLOSED", + "to": "d5746703-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d6231996-1_int", + "name": "swt_l5659_48332_sw", + "phases": "B", + "status": "CLOSED", + "to": "e206614" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "d6320328-1_int", + "name": "swt_tsw320328_sw", + "phases": "C", + "status": "OPEN", + "to": "l2879062" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "hvmv69sub1_lsb2", + "name": "swt_hvmv69s1b1_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "hvmv69sub1_hsb" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_C": "400.00", + "emergency_rating_C": "600.00", + "from": "m2000901", + "name": "swt_ln2000901_sw", + "phases": "C", + "status": "CLOSED", + "to": "d2000901_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "m2000401", + "name": "swt_ln2000401_sw", + "phases": "A", + "status": "CLOSED", + "to": "d2000401_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5472350-1_int", + "name": "swt_ln5472335_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1089120" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6077791-3_int", + "name": "swt_ln0077781_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m1047522" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d6047588-1_int", + "name": "swt_ln247171_sw", + "phases": "B", + "status": "CLOSED", + "to": "f739844" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "emergency_rating_A": "600.00", + "from": "m2001301", + "name": "swt_ln2001301_sw", + "phases": "A", + "status": "CLOSED", + "to": "d2001301_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "m2001001", + "name": "swt_ln2001001_sw", + "phases": "B", + "status": "CLOSED", + "to": "d2001001_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d5865224-1_int", + "name": "swt_ln247160_sw", + "phases": "B", + "status": "CLOSED", + "to": "f739841" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5746546-1_int", + "name": "swt_a333_48332_sw", + "phases": "ABC", + "status": "OPEN", + "to": "e182723" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m1186072", + "name": "swt_ln0048634_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d6048634-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "l2973156", + "name": "swt_ln0017295_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "d6017295-1_int" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d6170302-1_int", + "name": "swt_ln0170302_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "l2879773" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5835167-6_int", + "name": "swt_ln4625876_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "q14414" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "d5686080-1_int", + "name": "swt_ln293471_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "f739845" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_A": "400.00", + "continuous_rating_B": "400.00", + "continuous_rating_C": "400.00", + "emergency_rating_A": "600.00", + "emergency_rating_B": "600.00", + "emergency_rating_C": "600.00", + "from": "m2001der-1", + "name": "swt_ln2001mt1_sw", + "phases": "ABC", + "status": "CLOSED", + "to": "m2001-mt1" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "continuous_rating_B": "400.00", + "emergency_rating_B": "600.00", + "from": "d5655682-1_int", + "name": "swt_l5491_48332_sw", + "phases": "B", + "status": "CLOSED", + "to": "e182725" + }, + "children": [], + "name": "switch" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_1089-dies1", + "power_rating": "750.000", + "primary_voltage": "12470.000", + "reactance": "0.057500", + "resistance": "0.004000", + "secondary_voltage": "480.000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_1089-dies1", + "continuous_rating_A": "38.19", + "continuous_rating_B": "38.19", + "continuous_rating_C": "38.19", + "emergency_rating_A": "52.08", + "emergency_rating_B": "52.08", + "emergency_rating_C": "52.08", + "from": "m1089220", + "name": "xf_1089-dies1", + "phases": "ABC", + "to": "m1089der480-2" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_1089-lng1", + "power_rating": "2000.000", + "primary_voltage": "12470.000", + "reactance": "0.057500", + "resistance": "0.004000", + "secondary_voltage": "480.000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_1089-lng1", + "continuous_rating_A": "101.86", + "continuous_rating_B": "101.86", + "continuous_rating_C": "101.86", + "emergency_rating_A": "138.90", + "emergency_rating_B": "138.90", + "emergency_rating_C": "138.90", + "from": "m1089186", + "name": "xf_1089-lng1", + "phases": "ABC", + "to": "m1089der480-1" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_hvmv69_11sub3", + "power_rating": "20000.000", + "primary_voltage": "69000.000", + "reactance": "0.079400", + "resistance": "0.013400", + "secondary_voltage": "12470.000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_hvmv69_11sub3", + "continuous_rating_A": "184.08", + "continuous_rating_B": "184.08", + "continuous_rating_C": "184.08", + "emergency_rating_A": "251.02", + "emergency_rating_B": "251.02", + "emergency_rating_C": "251.02", + "from": "hvmv69sub3_hsb", + "name": "xf_hvmv69_11sub3", + "phases": "ABC", + "to": "regxfmr_hvmv11sub3_lsb" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_hvmv69_11sub2", + "power_rating": "20000.000", + "primary_voltage": "69000.000", + "reactance": "0.079400", + "resistance": "0.013400", + "secondary_voltage": "12470.000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_hvmv69_11sub2", + "continuous_rating_A": "184.08", + "continuous_rating_B": "184.08", + "continuous_rating_C": "184.08", + "emergency_rating_A": "251.02", + "emergency_rating_B": "251.02", + "emergency_rating_C": "251.02", + "from": "hvmv69sub2_hsb", + "name": "xf_hvmv69_11sub2", + "phases": "ABC", + "to": "regxfmr_hvmv11sub2_lsb" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "DELTA_GWYE", + "name": "xcon_hvmv115_69sub", + "power_rating": "75000.000", + "primary_voltage": "115000.000", + "reactance": "0.070500", + "resistance": "0.013400", + "secondary_voltage": "69000.000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_hvmv115_69sub", + "continuous_rating_A": "414.19", + "continuous_rating_B": "414.19", + "continuous_rating_C": "414.19", + "emergency_rating_A": "564.80", + "emergency_rating_B": "564.80", + "emergency_rating_C": "564.80", + "from": "hvmv115_hsb2", + "name": "xf_hvmv115_69sub", + "phases": "ABC", + "to": "regxfmr_hvmv69sub1_lsb1" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_hvmv69_11sub1", + "power_rating": "20000.000", + "primary_voltage": "69000.000", + "reactance": "0.079400", + "resistance": "0.013400", + "secondary_voltage": "12470.000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_hvmv69_11sub1", + "continuous_rating_A": "184.08", + "continuous_rating_B": "184.08", + "continuous_rating_C": "184.08", + "emergency_rating_A": "251.02", + "emergency_rating_B": "251.02", + "emergency_rating_C": "251.02", + "from": "hvmv69sub1_hsb", + "name": "xf_hvmv69_11sub1", + "phases": "ABC", + "to": "regxfmr_hvmv11sub1_lsb" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_2001-mt123", + "power_rating": "750.000", + "primary_voltage": "12470.000", + "reactance": "0.057500", + "resistance": "0.004000", + "secondary_voltage": "480.000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_2001-mt123", + "continuous_rating_A": "38.19", + "continuous_rating_B": "38.19", + "continuous_rating_C": "38.19", + "emergency_rating_A": "52.08", + "emergency_rating_B": "52.08", + "emergency_rating_C": "52.08", + "from": "m2001500", + "name": "xf_2001-mt123", + "phases": "ABC", + "to": "m2001der480-1" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_1069-mt1", + "power_rating": "300.000", + "primary_voltage": "12470.000", + "reactance": "0.057500", + "resistance": "0.004000", + "secondary_voltage": "480.000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_1069-mt1", + "continuous_rating_A": "15.28", + "continuous_rating_B": "15.28", + "continuous_rating_C": "15.28", + "emergency_rating_A": "20.83", + "emergency_rating_B": "20.83", + "emergency_rating_C": "20.83", + "from": "m1069215", + "name": "xf_1069-mt1", + "phases": "ABC", + "to": "m1069der480-1" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_1142-lng1", + "power_rating": "150.000", + "primary_voltage": "12470.000", + "reactance": "0.057500", + "resistance": "0.004000", + "secondary_voltage": "480.000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_1142-lng1", + "continuous_rating_A": "7.64", + "continuous_rating_B": "7.64", + "continuous_rating_C": "7.64", + "emergency_rating_A": "10.42", + "emergency_rating_B": "10.42", + "emergency_rating_C": "10.42", + "from": "m1142813", + "name": "xf_1142-lng1", + "phases": "ABC", + "to": "m1142der480-1" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_2001-ess12", + "power_rating": "750.000", + "primary_voltage": "12470.000", + "reactance": "0.057500", + "resistance": "0.004000", + "secondary_voltage": "480.000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_2001-ess12", + "continuous_rating_A": "38.19", + "continuous_rating_B": "38.19", + "continuous_rating_C": "38.19", + "emergency_rating_A": "52.08", + "emergency_rating_B": "52.08", + "emergency_rating_C": "52.08", + "from": "m2001500", + "name": "xf_2001-ess12", + "phases": "ABC", + "to": "m2001der480-2" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "connect_type": "WYE_WYE", + "name": "xcon_1209-dies1", + "power_rating": "750.000", + "primary_voltage": "12470.000", + "reactance": "0.057500", + "resistance": "0.004000", + "secondary_voltage": "480.000" + }, + "children": [], + "name": "transformer_configuration" + }, + { + "attributes": { + "configuration": "xcon_1209-dies1", + "continuous_rating_A": "38.19", + "continuous_rating_B": "38.19", + "continuous_rating_C": "38.19", + "emergency_rating_A": "52.08", + "emergency_rating_B": "52.08", + "emergency_rating_C": "52.08", + "from": "e192258", + "name": "xf_1209-dies1", + "phases": "ABC", + "to": "m1209der480-1" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3235945", + "name": "xf_t5356796c", + "phases": "CS", + "to": "x3235945c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2955077", + "name": "xf_t5260543c", + "phases": "CS", + "to": "x2955077c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2916627", + "name": "xf_t5138563a", + "phases": "AS", + "to": "x2916627a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2936211", + "name": "xf_t5260567c", + "phases": "CS", + "to": "x2936211c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3122819", + "name": "xf_t5302860c", + "phases": "CS", + "to": "x3122819c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2691936", + "name": "xf_t5356009a", + "phases": "AS", + "to": "x2691936a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2673305", + "name": "xf_t5138236b", + "phases": "BS", + "to": "x2673305b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3217056", + "name": "xf_t5218474a", + "phases": "AS", + "to": "x3217056a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2748152", + "name": "xf_t5321849b", + "phases": "BS", + "to": "x2748152b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2936276", + "name": "xf_t5260458b", + "phases": "BS", + "to": "x2936276b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2879773", + "name": "xf_t5207290a", + "phases": "AS", + "to": "x2879773a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3119793", + "name": "xf_t226024307b", + "phases": "BS", + "to": "x3119793b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3172805", + "name": "xf_t226964880a", + "phases": "AS", + "to": "x3172805a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2729401", + "name": "xf_t5355597b", + "phases": "BS", + "to": "x2729401b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000711", + "name": "xf_t2000711b", + "phases": "BS", + "to": "x2000711b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2691946", + "name": "xf_t28147974b", + "phases": "BS", + "to": "x2691946b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2860484", + "name": "xf_t5323255b", + "phases": "BS", + "to": "x2860484b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3234185", + "name": "xf_t5323388b", + "phases": "BS", + "to": "x3234185b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3108449", + "name": "xf_t228622562a", + "phases": "AS", + "to": "x3108449a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2748143", + "name": "xf_t28121368a", + "phases": "AS", + "to": "x2748143a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3048889", + "name": "xf_t28128464c", + "phases": "CS", + "to": "x3048889c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3235246", + "name": "xf_t5323279b", + "phases": "BS", + "to": "x3235246b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3104135", + "name": "xf_t21399508a", + "phases": "AS", + "to": "x3104135a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3197653", + "name": "xf_t5339004b", + "phases": "BS", + "to": "x3197653b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000408", + "name": "xf_t2000408a", + "phases": "AS", + "to": "x2000408a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3197642", + "name": "xf_t5391979c", + "phases": "CS", + "to": "x3197642c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3216349", + "name": "xf_t5337708b", + "phases": "BS", + "to": "x3216349b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2804247", + "name": "xf_t5391737b", + "phases": "BS", + "to": "x2804247b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2673310", + "name": "xf_t5138562a", + "phases": "AS", + "to": "x2673310a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2860487", + "name": "xf_t5138586c", + "phases": "CS", + "to": "x2860487c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2955078", + "name": "xf_t5260542a", + "phases": "AS", + "to": "x2955078a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3197618", + "name": "xf_t5356008a", + "phases": "AS", + "to": "x3197618a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3178980", + "name": "xf_t5302510c", + "phases": "CS", + "to": "x3178980c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2955006", + "name": "xf_t5356797c", + "phases": "CS", + "to": "x2955006c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2748133", + "name": "xf_t5302861c", + "phases": "CS", + "to": "x2748133c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2973158", + "name": "xf_t5138259c", + "phases": "CS", + "to": "x2973158c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3082993", + "name": "xf_t226159329a", + "phases": "AS", + "to": "x3082993a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3086078", + "name": "xf_t5218473a", + "phases": "AS", + "to": "x3086078a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3066804", + "name": "xf_t21380599a", + "phases": "AS", + "to": "x3066804a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3086079", + "name": "xf_t5260457b", + "phases": "BS", + "to": "x3086079b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2786274", + "name": "xf_t5207291c", + "phases": "CS", + "to": "x2786274c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3235243", + "name": "xf_t5275008c", + "phases": "CS", + "to": "x3235243c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3176656", + "name": "xf_t226193170a", + "phases": "AS", + "to": "x3176656a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3178969", + "name": "xf_t5355596b", + "phases": "BS", + "to": "x3178969b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000712", + "name": "xf_t2000712b", + "phases": "BS", + "to": "x2000712b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2879068", + "name": "xf_t5323254b", + "phases": "BS", + "to": "x2879068b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l2690187", + "name": "xf_t226308716b", + "phases": "BS", + "to": "x2690187b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2690941", + "name": "xf_t5323387b", + "phases": "BS", + "to": "x2690941b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2860477", + "name": "xf_t28121587a", + "phases": "AS", + "to": "x2860477a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2973169", + "name": "xf_t21397304a", + "phases": "AS", + "to": "x2973169a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3066826", + "name": "xf_t5339003b", + "phases": "BS", + "to": "x3066826b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l0247171", + "name": "xf_t5247171b", + "phases": "BS", + "to": "x0247171b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000409", + "name": "xf_t2000409a", + "phases": "AS", + "to": "x2000409a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2860483", + "name": "xf_t21396699b", + "phases": "BS", + "to": "x2860483b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3160104", + "name": "xf_t5337707b", + "phases": "BS", + "to": "x3160104b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3104115", + "name": "xf_t5391738b", + "phases": "BS", + "to": "x3104115b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3010565", + "name": "xf_t5138343c", + "phases": "CS", + "to": "x3010565c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2692661", + "name": "xf_t5260650a", + "phases": "AS", + "to": "x2692661a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3122824", + "name": "xf_t5302402a", + "phases": "AS", + "to": "x3122824a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104121", + "name": "xf_t5138561a", + "phases": "AS", + "to": "x3104121a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3197637", + "name": "xf_t5138585c", + "phases": "CS", + "to": "x3197637c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2954339", + "name": "xf_t5391739b", + "phases": "BS", + "to": "x2954339b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2692600", + "name": "xf_t5356798c", + "phases": "CS", + "to": "x2692600c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3141389", + "name": "xf_t5356007a", + "phases": "AS", + "to": "x3141389a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2991911", + "name": "xf_t5138258c", + "phases": "CS", + "to": "x2991911c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2841623", + "name": "xf_t5294844a", + "phases": "AS", + "to": "x2841623a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3181545", + "name": "xf_t226193702c", + "phases": "CS", + "to": "x3181545c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2936270", + "name": "xf_t5218472a", + "phases": "AS", + "to": "x2936270a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3103822", + "name": "xf_t228665517c", + "phases": "CS", + "to": "x3103822c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2955005", + "name": "xf_t5260589b", + "phases": "BS", + "to": "x2955005b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2860481", + "name": "xf_t5338908c", + "phases": "CS", + "to": "x2860481c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3160123", + "name": "xf_t21015706a", + "phases": "AS", + "to": "x3160123a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3253570", + "name": "xf_t228314460c", + "phases": "CS", + "to": "x3253570c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3179682", + "name": "xf_t5207292c", + "phases": "CS", + "to": "x3179682c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2916606", + "name": "xf_t5275007c", + "phases": "CS", + "to": "x2916606c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2860479", + "name": "xf_t5355595b", + "phases": "BS", + "to": "x2860479b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000406", + "name": "xf_t2000406a", + "phases": "AS", + "to": "x2000406a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3254203", + "name": "xf_t5323233b", + "phases": "BS", + "to": "x3254203b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2710530", + "name": "xf_t21381118b", + "phases": "BS", + "to": "x2710530b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2991943", + "name": "xf_t21399619c", + "phases": "CS", + "to": "x2991943c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2879054", + "name": "xf_t5247061a", + "phases": "AS", + "to": "x2879054a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2916619", + "name": "xf_t5339006b", + "phases": "BS", + "to": "x2916619b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2897784", + "name": "xf_t5247170b", + "phases": "BS", + "to": "x2897784b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2745806", + "name": "xf_t226194262c", + "phases": "CS", + "to": "x2745806c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104113", + "name": "xf_t5138560a", + "phases": "AS", + "to": "x3104113a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2897775", + "name": "xf_t5138342c", + "phases": "CS", + "to": "x2897775c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2804259", + "name": "xf_t28127372a", + "phases": "AS", + "to": "x2804259a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3010563", + "name": "xf_t5294845a", + "phases": "AS", + "to": "x3010563a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3178976", + "name": "xf_t21397721a", + "phases": "AS", + "to": "x3178976a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2729430", + "name": "xf_t21248901b", + "phases": "BS", + "to": "x2729430b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3448661", + "name": "xf_t2223878647b", + "phases": "BS", + "to": "x3448661b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2955074", + "name": "xf_t5260479a", + "phases": "AS", + "to": "x2955074a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2805036", + "name": "xf_t5275248b", + "phases": "BS", + "to": "x2805036b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000710", + "name": "xf_t2000710b", + "phases": "BS", + "to": "x2000710b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2914323", + "name": "xf_t5355376b", + "phases": "BS", + "to": "x2914323b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000407", + "name": "xf_t2000407a", + "phases": "AS", + "to": "x2000407a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3065750", + "name": "xf_t5323389b", + "phases": "BS", + "to": "x3065750b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2991906", + "name": "xf_t5247060a", + "phases": "AS", + "to": "x2991906a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2785535", + "name": "xf_t5339005b", + "phases": "BS", + "to": "x2785535b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254211", + "name": "xf_t5247084b", + "phases": "BS", + "to": "x3254211b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3141395", + "name": "xf_t28149184c", + "phases": "CS", + "to": "x3141395c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2991919", + "name": "xf_t5302400a", + "phases": "AS", + "to": "x2991919a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2879077", + "name": "xf_t5337709b", + "phases": "BS", + "to": "x2879077b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2879752", + "name": "xf_t5330122b", + "phases": "BS", + "to": "x2879752b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3122826", + "name": "xf_t5302731a", + "phases": "AS", + "to": "x3122826a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2688693", + "name": "xf_t225918936c", + "phases": "CS", + "to": "x2688693c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2685809", + "name": "xf_t225533162a", + "phases": "AS", + "to": "x2685809a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2814529", + "name": "xf_t28120126a", + "phases": "AS", + "to": "x2814529a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3101789", + "name": "xf_t5294842a", + "phases": "AS", + "to": "x3101789a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2674051", + "name": "xf_t21389831a", + "phases": "AS", + "to": "x2674051a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2814529", + "name": "xf_t28120126c", + "phases": "CS", + "to": "x2814529c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2814529", + "name": "xf_t28120126b", + "phases": "BS", + "to": "x2814529b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3178975", + "name": "xf_t5321845b", + "phases": "BS", + "to": "x3178975b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2917333", + "name": "xf_t5260632a", + "phases": "AS", + "to": "x2917333a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l2708744", + "name": "xf_t226308710b", + "phases": "BS", + "to": "x2708744b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3216123", + "name": "xf_t5338926a", + "phases": "AS", + "to": "x3216123a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3085403", + "name": "xf_t5293668a", + "phases": "AS", + "to": "x3085403a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2689691", + "name": "xf_t5355375a", + "phases": "AS", + "to": "x2689691a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3649300", + "name": "xf_t2224237546a", + "phases": "AS", + "to": "x3649300a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2729429", + "name": "xf_t5293644a", + "phases": "AS", + "to": "x2729429a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3081380", + "name": "xf_t225700953a", + "phases": "AS", + "to": "x3081380a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3197660", + "name": "xf_t5323275b", + "phases": "BS", + "to": "x3197660b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000404", + "name": "xf_t2000404a", + "phases": "AS", + "to": "x2000404a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2766715", + "name": "xf_t5355593b", + "phases": "BS", + "to": "x2766715b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3160098", + "name": "xf_t5339048a", + "phases": "AS", + "to": "x3160098a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2710546", + "name": "xf_t5337704b", + "phases": "BS", + "to": "x2710546b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2990826", + "name": "xf_t5337619a", + "phases": "AS", + "to": "x2990826a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3082992", + "name": "xf_t5337728a", + "phases": "AS", + "to": "x3082992a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2973164", + "name": "xf_t5302514a", + "phases": "AS", + "to": "x2973164a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2991917", + "name": "xf_t5391757b", + "phases": "BS", + "to": "x2991917b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2691953", + "name": "xf_t5302732a", + "phases": "AS", + "to": "x2691953a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2990826", + "name": "xf_t5337619c", + "phases": "CS", + "to": "x2990826c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2990826", + "name": "xf_t5337619b", + "phases": "BS", + "to": "x2990826b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2786266", + "name": "xf_t5260631a", + "phases": "AS", + "to": "x2786266a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2785522", + "name": "xf_t28127681b", + "phases": "BS", + "to": "x2785522b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3178982", + "name": "xf_t5294843a", + "phases": "AS", + "to": "x3178982a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2803194", + "name": "xf_t227917130c", + "phases": "CS", + "to": "x2803194c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2973153", + "name": "xf_t5338925a", + "phases": "AS", + "to": "x2973153a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3011293", + "name": "xf_t28129466b", + "phases": "BS", + "to": "x3011293b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3011293", + "name": "xf_t28129466c", + "phases": "CS", + "to": "x3011293c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3011293", + "name": "xf_t28129466a", + "phases": "AS", + "to": "x3011293a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3104136", + "name": "xf_t5338949b", + "phases": "BS", + "to": "x3104136b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2860500", + "name": "xf_t5323274b", + "phases": "BS", + "to": "x2860500b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2841633", + "name": "xf_t5293645a", + "phases": "AS", + "to": "x2841633a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254206", + "name": "xf_t5355592b", + "phases": "BS", + "to": "x3254206b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104157", + "name": "xf_t5293427c", + "phases": "CS", + "to": "x3104157c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000405", + "name": "xf_t2000405a", + "phases": "AS", + "to": "x2000405a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2691948", + "name": "xf_t5337703b", + "phases": "BS", + "to": "x2691948b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2973148", + "name": "xf_t5339047a", + "phases": "AS", + "to": "x2973148a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2841631", + "name": "xf_t5391976c", + "phases": "CS", + "to": "x2841631c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3008237", + "name": "xf_t226193838c", + "phases": "CS", + "to": "x3008237c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2841636", + "name": "xf_t5391758b", + "phases": "BS", + "to": "x2841636b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3141403", + "name": "xf_t21399707a", + "phases": "AS", + "to": "x3141403a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2860491", + "name": "xf_t5302733b", + "phases": "BS", + "to": "x2860491b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2748131", + "name": "xf_t5323250b", + "phases": "BS", + "to": "x2748131b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2897766", + "name": "xf_t28128007c", + "phases": "CS", + "to": "x2897766c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2860491", + "name": "xf_t5302733a", + "phases": "AS", + "to": "x2860491a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2973833", + "name": "xf_t5260630b", + "phases": "BS", + "to": "x2973833b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3048963", + "name": "xf_t5260521b", + "phases": "BS", + "to": "x3048963b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3085399", + "name": "xf_t5302862c", + "phases": "CS", + "to": "x3085399c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3160100", + "name": "xf_t5321847b", + "phases": "BS", + "to": "x3160100b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2804249", + "name": "xf_t21389962c", + "phases": "CS", + "to": "x2804249c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2710511", + "name": "xf_t21357515a", + "phases": "AS", + "to": "x2710511a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3085395", + "name": "xf_t21391094a", + "phases": "AS", + "to": "x3085395a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2764411", + "name": "xf_t226010605c", + "phases": "CS", + "to": "x2764411c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104796", + "name": "xf_t5260569c", + "phases": "CS", + "to": "x3104796c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2673309", + "name": "xf_t5138472c", + "phases": "CS", + "to": "x2673309c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2879064", + "name": "xf_t5138581a", + "phases": "AS", + "to": "x2879064a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000402", + "name": "xf_t2000402a", + "phases": "AS", + "to": "x2000402a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2935566", + "name": "xf_t5441854c", + "phases": "CS", + "to": "x2935566c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2973152", + "name": "xf_t5323253b", + "phases": "BS", + "to": "x2973152b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2822858", + "name": "xf_t5355591b", + "phases": "BS", + "to": "x2822858b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2897800", + "name": "xf_t5323277b", + "phases": "BS", + "to": "x2897800b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2785536", + "name": "xf_t5339002b", + "phases": "BS", + "to": "x2785536b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3047073", + "name": "xf_t227917133c", + "phases": "CS", + "to": "x3047073c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2897801", + "name": "xf_t21470405a", + "phases": "AS", + "to": "x2897801a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2766750", + "name": "xf_t5293424c", + "phases": "CS", + "to": "x2766750c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2710532", + "name": "xf_t5293666c", + "phases": "CS", + "to": "x2710532c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254214", + "name": "xf_t5337706b", + "phases": "BS", + "to": "x3254214b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3216350", + "name": "xf_t5391977a", + "phases": "AS", + "to": "x3216350a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5", + "from": "l3254915", + "name": "xf_t5260520b", + "phases": "BS", + "to": "x3254915b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3142078", + "name": "xf_t5330121b", + "phases": "BS", + "to": "x3142078b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2766719", + "name": "xf_t21357865a", + "phases": "AS", + "to": "x2766719a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2860489", + "name": "xf_t5302405a", + "phases": "AS", + "to": "x2860489a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2878848", + "name": "xf_t22112168887c", + "phases": "CS", + "to": "x2878848c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3217057", + "name": "xf_t5218475a", + "phases": "AS", + "to": "x3217057a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3085390", + "name": "xf_t5321848b", + "phases": "BS", + "to": "x3085390b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2692655", + "name": "xf_t21389307c", + "phases": "CS", + "to": "x2692655c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2842329", + "name": "xf_t5260568c", + "phases": "CS", + "to": "x2842329c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2726974", + "name": "xf_t226193395b", + "phases": "BS", + "to": "x2726974b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2972930", + "name": "xf_t5338927a", + "phases": "AS", + "to": "x2972930a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2879066", + "name": "xf_t5323252b", + "phases": "BS", + "to": "x2879066b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000403", + "name": "xf_t2000403a", + "phases": "AS", + "to": "x2000403a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2860504", + "name": "xf_t5293667a", + "phases": "AS", + "to": "x2860504a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2763153", + "name": "xf_t5293425a", + "phases": "AS", + "to": "x2763153a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3178988", + "name": "xf_t5339001b", + "phases": "BS", + "to": "x3178988b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3226771", + "name": "xf_t227100746a", + "phases": "AS", + "to": "x3226771a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2916234", + "name": "xf_t228549643a", + "phases": "AS", + "to": "x2916234a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3048211", + "name": "xf_t21396015a", + "phases": "AS", + "to": "x3048211a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2785547", + "name": "xf_t5337705b", + "phases": "BS", + "to": "x2785547b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2916602", + "name": "xf_t5339049a", + "phases": "AS", + "to": "x2916602a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2860478", + "name": "xf_t5355590b", + "phases": "BS", + "to": "x2860478b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2728247", + "name": "xf_t5337729b", + "phases": "BS", + "to": "x2728247b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3029495", + "name": "xf_t5391736b", + "phases": "BS", + "to": "x3029495b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3141402", + "name": "xf_t5391978c", + "phases": "CS", + "to": "x3141402c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2728247", + "name": "xf_t5337729c", + "phases": "CS", + "to": "x2728247c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2728247", + "name": "xf_t5337729a", + "phases": "AS", + "to": "x2728247a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2841634", + "name": "xf_t5392038b", + "phases": "BS", + "to": "x2841634b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2711226", + "name": "xf_t5260527b", + "phases": "BS", + "to": "x2711226b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2989565", + "name": "xf_t21389237a", + "phases": "AS", + "to": "x2989565a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l2802481", + "name": "xf_t226308730a", + "phases": "AS", + "to": "x2802481a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2917310", + "name": "xf_t5260503b", + "phases": "BS", + "to": "x2917310b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3027124", + "name": "xf_t226195194c", + "phases": "CS", + "to": "x3027124c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3342743", + "name": "xf_t2223703238c", + "phases": "CS", + "to": "x3342743c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2821770", + "name": "xf_t227917119a", + "phases": "AS", + "to": "x2821770a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000913", + "name": "xf_t2000913c", + "phases": "CS", + "to": "x2000913c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3048205", + "name": "xf_t5274994c", + "phases": "CS", + "to": "x3048205c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3178997", + "name": "xf_t5293422c", + "phases": "CS", + "to": "x3178997c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001011", + "name": "xf_t2001011b", + "phases": "BS", + "to": "x2001011b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3207907", + "name": "xf_t5293664a", + "phases": "AS", + "to": "x3207907a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l3207907", + "name": "xf_t5293664b", + "phases": "BS", + "to": "x3207907b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3207907", + "name": "xf_t5293664c", + "phases": "CS", + "to": "x3207907c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3150961", + "name": "xf_t223400157c", + "phases": "CS", + "to": "x3150961c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct250", + "from": "l3234149", + "name": "xf_t227944551c", + "phases": "CS", + "to": "x3234149c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3216347", + "name": "xf_t5138413c", + "phases": "CS", + "to": "x3216347c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3010556", + "name": "xf_t5138655a", + "phases": "AS", + "to": "x3010556a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct250", + "from": "l3234149", + "name": "xf_t227944551a", + "phases": "AS", + "to": "x3234149a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct250", + "from": "l3234149", + "name": "xf_t227944551b", + "phases": "BS", + "to": "x3234149b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2748839", + "name": "xf_t5260502b", + "phases": "BS", + "to": "x2748839b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3179699", + "name": "xf_t21393454b", + "phases": "BS", + "to": "x3179699b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3214549", + "name": "xf_t226308731a", + "phases": "AS", + "to": "x3214549a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000914", + "name": "xf_t2000914c", + "phases": "CS", + "to": "x2000914c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254237", + "name": "xf_t21482181a", + "phases": "AS", + "to": "x3254237a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2983432", + "name": "xf_t225534325a", + "phases": "AS", + "to": "x2983432a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3139103", + "name": "xf_t225767272a", + "phases": "AS", + "to": "x3139103a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3122849", + "name": "xf_t5293423b", + "phases": "BS", + "to": "x3122849b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l3645811", + "name": "xf_t2224230689c", + "phases": "CS", + "to": "x3645811c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001012", + "name": "xf_t2001012b", + "phases": "BS", + "to": "x2001012b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2973166", + "name": "xf_t5293665c", + "phases": "CS", + "to": "x2973166c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104155", + "name": "xf_t21474587c", + "phases": "CS", + "to": "x3104155c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3159448", + "name": "xf_t5337684a", + "phases": "AS", + "to": "x3159448a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2785523", + "name": "xf_t5138412c", + "phases": "CS", + "to": "x2785523c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3082983", + "name": "xf_t226193899b", + "phases": "BS", + "to": "x3082983b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2841628", + "name": "xf_t28120786a", + "phases": "AS", + "to": "x2841628a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2798067", + "name": "xf_t225533237b", + "phases": "BS", + "to": "x2798067b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3142098", + "name": "xf_t5260501b", + "phases": "BS", + "to": "x3142098b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2897769", + "name": "xf_t5337660c", + "phases": "CS", + "to": "x2897769c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2842383", + "name": "xf_t5260634a", + "phases": "AS", + "to": "x2842383a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5", + "from": "l2689678", + "name": "xf_t226192762b", + "phases": "BS", + "to": "x2689678b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000911", + "name": "xf_t2000911c", + "phases": "CS", + "to": "x2000911c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2804250", + "name": "xf_t5274992c", + "phases": "CS", + "to": "x2804250c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3649302", + "name": "xf_t2224237653a", + "phases": "AS", + "to": "x3649302a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2710520", + "name": "xf_t5138679a", + "phases": "AS", + "to": "x2710520a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2711224", + "name": "xf_t5260500b", + "phases": "BS", + "to": "x2711224b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3197654", + "name": "xf_t21382992a", + "phases": "AS", + "to": "x3197654a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3235268", + "name": "xf_t28099529c", + "phases": "CS", + "to": "x3235268c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3214071", + "name": "xf_t226194419c", + "phases": "CS", + "to": "x3214071c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2935559", + "name": "xf_t21400185a", + "phases": "AS", + "to": "x2935559a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000912", + "name": "xf_t2000912c", + "phases": "CS", + "to": "x2000912c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2897771", + "name": "xf_t21148701b", + "phases": "BS", + "to": "x2897771b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3047058", + "name": "xf_t227902981a", + "phases": "AS", + "to": "x3047058a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2973151", + "name": "xf_t5138569a", + "phases": "AS", + "to": "x2973151a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2673331", + "name": "xf_t5338990b", + "phases": "BS", + "to": "x2673331b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001010", + "name": "xf_t2001010b", + "phases": "BS", + "to": "x2001010b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3216368", + "name": "xf_t5293663c", + "phases": "CS", + "to": "x3216368c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2767414", + "name": "xf_t5351019c", + "phases": "CS", + "to": "x2767414c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2766718", + "name": "xf_t5138652c", + "phases": "CS", + "to": "x2766718c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2748135", + "name": "xf_t28150172a", + "phases": "AS", + "to": "x2748135a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2748129", + "name": "xf_t5138567a", + "phases": "AS", + "to": "x2748129a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2822868", + "name": "xf_t21397544a", + "phases": "AS", + "to": "x2822868a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2766499", + "name": "xf_t22112168880c", + "phases": "CS", + "to": "x2766499c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2786204", + "name": "xf_t5223662c", + "phases": "CS", + "to": "x2786204c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3066830", + "name": "xf_t21469960b", + "phases": "BS", + "to": "x3066830b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000715", + "name": "xf_t2000715b", + "phases": "BS", + "to": "x2000715b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5", + "from": "l3197624", + "name": "xf_t5323235b", + "phases": "BS", + "to": "x3197624b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2916610", + "name": "xf_t5293660b", + "phases": "BS", + "to": "x2916610b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3122835", + "name": "xf_t5339008b", + "phases": "BS", + "to": "x3122835b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3104132", + "name": "xf_t5302469a", + "phases": "AS", + "to": "x3104132a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3197628", + "name": "xf_t5138651c", + "phases": "CS", + "to": "x3197628c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2954338", + "name": "xf_t5355618b", + "phases": "BS", + "to": "x2954338b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2785519", + "name": "xf_t5138566a", + "phases": "AS", + "to": "x2785519a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2876798", + "name": "xf_t226193745b", + "phases": "BS", + "to": "x2876798b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3030203", + "name": "xf_t5260639c", + "phases": "CS", + "to": "x3030203c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2936216", + "name": "xf_t5223663c", + "phases": "CS", + "to": "x2936216c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3048228", + "name": "xf_t5274997c", + "phases": "CS", + "to": "x3048228c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000910", + "name": "xf_t2000910c", + "phases": "CS", + "to": "x2000910c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2860480", + "name": "xf_t5323234b", + "phases": "BS", + "to": "x2860480b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3251854", + "name": "xf_t226881700a", + "phases": "AS", + "to": "x3251854a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2861219", + "name": "xf_t21389761b", + "phases": "BS", + "to": "x2861219b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2916617", + "name": "xf_t5339007b", + "phases": "BS", + "to": "x2916617b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3141393", + "name": "xf_t5442373c", + "phases": "CS", + "to": "x3141393c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3645812", + "name": "xf_t2224230754c", + "phases": "CS", + "to": "x3645812c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2710510", + "name": "xf_t5138650c", + "phases": "CS", + "to": "x2710510c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3102793", + "name": "xf_t227734175b", + "phases": "BS", + "to": "x3102793b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2973146", + "name": "xf_t28118903b", + "phases": "BS", + "to": "x2973146b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2991915", + "name": "xf_t5392036b", + "phases": "BS", + "to": "x2991915b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104122", + "name": "xf_t5138565a", + "phases": "AS", + "to": "x3104122a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3160871", + "name": "xf_t5260638c", + "phases": "CS", + "to": "x3160871c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3217053", + "name": "xf_t5260529c", + "phases": "CS", + "to": "x3217053c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3270814", + "name": "xf_t226191850a", + "phases": "AS", + "to": "x3270814a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2861218", + "name": "xf_t5260505c", + "phases": "CS", + "to": "x2861218c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3197646", + "name": "xf_t5355944b", + "phases": "BS", + "to": "x3197646b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3082988", + "name": "xf_t226195153b", + "phases": "BS", + "to": "x3082988b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000713", + "name": "xf_t2000713b", + "phases": "BS", + "to": "x2000713b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3160863", + "name": "xf_t5223660c", + "phases": "CS", + "to": "x3160863c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3235946", + "name": "xf_t5356800a", + "phases": "AS", + "to": "x3235946a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2673320", + "name": "xf_t5392037b", + "phases": "BS", + "to": "x2673320b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2822870", + "name": "xf_t21399171c", + "phases": "CS", + "to": "x2822870c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3728038", + "name": "xf_t2224387019a", + "phases": "AS", + "to": "x3728038a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3195318", + "name": "xf_t226194280b", + "phases": "BS", + "to": "x3195318b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3048196", + "name": "xf_t5138237b", + "phases": "BS", + "to": "x3048196b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2804283", + "name": "xf_t5138564a", + "phases": "AS", + "to": "x2804283a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2916609", + "name": "xf_t5138346c", + "phases": "CS", + "to": "x2916609c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3217052", + "name": "xf_t5260528c", + "phases": "CS", + "to": "x3217052c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3048199", + "name": "xf_t5323237b", + "phases": "BS", + "to": "x3048199b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2785529", + "name": "xf_t5355943c", + "phases": "CS", + "to": "x2785529c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3160862", + "name": "xf_t21386143c", + "phases": "CS", + "to": "x3160862c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2842384", + "name": "xf_t5260637c", + "phases": "CS", + "to": "x2842384c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3215385", + "name": "xf_t21384099c", + "phases": "CS", + "to": "x3215385c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3215385", + "name": "xf_t21384099b", + "phases": "BS", + "to": "x3215385b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3215385", + "name": "xf_t21384099a", + "phases": "AS", + "to": "x3215385a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000714", + "name": "xf_t2000714b", + "phases": "BS", + "to": "x2000714b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2730108", + "name": "xf_t5223661c", + "phases": "CS", + "to": "x2730108c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2822860", + "name": "xf_t5323236b", + "phases": "BS", + "to": "x2822860b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3104124", + "name": "xf_t5356065b", + "phases": "BS", + "to": "x3104124b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3011229", + "name": "xf_t5356801a", + "phases": "AS", + "to": "x3011229a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2897778", + "name": "xf_t5302468a", + "phases": "AS", + "to": "x2897778a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2851933", + "name": "xf_t21393643c", + "phases": "CS", + "to": "x2851933c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3104154", + "name": "xf_t5337642c", + "phases": "CS", + "to": "x3104154c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3029518", + "name": "xf_t5337666b", + "phases": "BS", + "to": "x3029518b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2973165", + "name": "xf_t5355942a", + "phases": "AS", + "to": "x2973165a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2766744", + "name": "xf_t28127319b", + "phases": "BS", + "to": "x2766744b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2820556", + "name": "xf_t226196648a", + "phases": "AS", + "to": "x2820556a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2851933", + "name": "xf_t21393643a", + "phases": "AS", + "to": "x2851933a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2851933", + "name": "xf_t21393643b", + "phases": "BS", + "to": "x2851933b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct100", + "from": "l2691959", + "name": "xf_t21400253b", + "phases": "BS", + "to": "x2691959b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3197638", + "name": "xf_t21396959a", + "phases": "AS", + "to": "x3197638a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3122823", + "name": "xf_t5302370b", + "phases": "BS", + "to": "x3122823b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2748157", + "name": "xf_t5338973a", + "phases": "AS", + "to": "x2748157a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2860499", + "name": "xf_t5338997b", + "phases": "BS", + "to": "x2860499b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001213", + "name": "xf_t2001213c", + "phases": "CS", + "to": "x2001213c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2767342", + "name": "xf_t5356802a", + "phases": "AS", + "to": "x2767342a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2823611", + "name": "xf_t21386877a", + "phases": "AS", + "to": "x2823611a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2935556", + "name": "xf_t5356064b", + "phases": "BS", + "to": "x2935556b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3048890", + "name": "xf_t28128517c", + "phases": "CS", + "to": "x3048890c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2876812", + "name": "xf_t5321880a", + "phases": "AS", + "to": "x2876812a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2804282", + "name": "xf_t5337641c", + "phases": "CS", + "to": "x2804282c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2691949", + "name": "xf_t5337689b", + "phases": "BS", + "to": "x2691949b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2973178", + "name": "xf_t5337665b", + "phases": "BS", + "to": "x2973178b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3728039", + "name": "xf_t2224387053a", + "phases": "AS", + "to": "x3728039a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3010580", + "name": "xf_t21451973b", + "phases": "BS", + "to": "x3010580b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2955047", + "name": "xf_t21469911a", + "phases": "AS", + "to": "x2955047a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2841632", + "name": "xf_t5338972b", + "phases": "BS", + "to": "x2841632b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2673316", + "name": "xf_t28120855a", + "phases": "AS", + "to": "x2673316a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3160103", + "name": "xf_t5356063c", + "phases": "CS", + "to": "x3160103c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2841622", + "name": "xf_t21384215a", + "phases": "AS", + "to": "x2841622a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3214069", + "name": "xf_t226194421c", + "phases": "CS", + "to": "x3214069c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001214", + "name": "xf_t2001214c", + "phases": "CS", + "to": "x2001214c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2748780", + "name": "xf_t5356803a", + "phases": "AS", + "to": "x2748780a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2970811", + "name": "xf_t5321881a", + "phases": "AS", + "to": "x2970811a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2955055", + "name": "xf_t21249647b", + "phases": "BS", + "to": "x2955055b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "293471", + "name": "xf_t5293471c", + "phases": "CS", + "to": "x_293471c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2935549", + "name": "xf_t5337668b", + "phases": "BS", + "to": "x2935549b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2954352", + "name": "xf_t28127090c", + "phases": "CS", + "to": "x2954352c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3085394", + "name": "xf_t5274988c", + "phases": "CS", + "to": "x3085394c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2785537", + "name": "xf_t5338975a", + "phases": "AS", + "to": "x2785537a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2822873", + "name": "xf_t5338999b", + "phases": "BS", + "to": "x2822873b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2785525", + "name": "xf_t21396606c", + "phases": "CS", + "to": "x2785525c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3122816", + "name": "xf_t5356062b", + "phases": "BS", + "to": "x3122816b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2991901", + "name": "xf_t5354851b", + "phases": "BS", + "to": "x2991901b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2823544", + "name": "xf_t5356804a", + "phases": "AS", + "to": "x2823544a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3122811", + "name": "xf_t5337669a", + "phases": "AS", + "to": "x3122811a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001211", + "name": "xf_t2001211c", + "phases": "CS", + "to": "x2001211c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2916607", + "name": "xf_t5321882c", + "phases": "CS", + "to": "x2916607c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254216", + "name": "xf_t21398563a", + "phases": "AS", + "to": "x3254216a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3215340", + "name": "xf_t228057846a", + "phases": "AS", + "to": "x3215340a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2897806", + "name": "xf_t5337643c", + "phases": "CS", + "to": "x2897806c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3216361", + "name": "xf_t21452406b", + "phases": "BS", + "to": "x3216361b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3195315", + "name": "xf_t226193662a", + "phases": "AS", + "to": "x3195315a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2822872", + "name": "xf_t5338950b", + "phases": "BS", + "to": "x2822872b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3312692", + "name": "xf_t2223661373a", + "phases": "AS", + "to": "x3312692a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2916605", + "name": "xf_t5274987c", + "phases": "CS", + "to": "x2916605c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3085410", + "name": "xf_t5339097b", + "phases": "BS", + "to": "x3085410b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2955081", + "name": "xf_t5260508a", + "phases": "AS", + "to": "x2955081a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254229", + "name": "xf_t5338998b", + "phases": "BS", + "to": "x3254229b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2858163", + "name": "xf_t5391990a", + "phases": "AS", + "to": "x2858163a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3195321", + "name": "xf_t5356805a", + "phases": "AS", + "to": "x3195321a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001212", + "name": "xf_t2001212c", + "phases": "CS", + "to": "x2001212c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3104830", + "name": "xf_t5328367c", + "phases": "CS", + "to": "x3104830c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3010564", + "name": "xf_t5321883c", + "phases": "CS", + "to": "x3010564c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2767409", + "name": "xf_t21391242b", + "phases": "BS", + "to": "x2767409b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2729408", + "name": "xf_t5355768b", + "phases": "BS", + "to": "x2729408b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3120376", + "name": "xf_t226163467a", + "phases": "AS", + "to": "x3120376a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2879087", + "name": "xf_t21399762a", + "phases": "AS", + "to": "x2879087a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2929261", + "name": "xf_t225533337a", + "phases": "AS", + "to": "x2929261a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2804272", + "name": "xf_t5338993b", + "phases": "BS", + "to": "x2804272b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2879092", + "name": "xf_t21399326c", + "phases": "CS", + "to": "x2879092c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2992556", + "name": "xf_t5346639c", + "phases": "CS", + "to": "x2992556c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001015", + "name": "xf_t2001015b", + "phases": "BS", + "to": "x2001015b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2875754", + "name": "xf_t225897943c", + "phases": "CS", + "to": "x2875754c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2785526", + "name": "xf_t5302374b", + "phases": "BS", + "to": "x2785526b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3216988", + "name": "xf_t5260590b", + "phases": "BS", + "to": "x3216988b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2730163", + "name": "xf_t5260481c", + "phases": "CS", + "to": "x2730163c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3048206", + "name": "xf_t5138649a", + "phases": "AS", + "to": "x3048206a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2861157", + "name": "xf_t5251867c", + "phases": "CS", + "to": "x2861157c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2766749", + "name": "xf_t5337661b", + "phases": "BS", + "to": "x2766749b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2726975", + "name": "xf_t226193422b", + "phases": "BS", + "to": "x2726975b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2859391", + "name": "xf_t227989724b", + "phases": "BS", + "to": "x2859391b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3140238", + "name": "xf_t227905262a", + "phases": "AS", + "to": "x3140238a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2685805", + "name": "xf_t225533531a", + "phases": "AS", + "to": "x2685805a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2989432", + "name": "xf_t226163575b", + "phases": "BS", + "to": "x2989432b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3048209", + "name": "xf_t28120195b", + "phases": "BS", + "to": "x3048209b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3197634", + "name": "xf_t5355767b", + "phases": "BS", + "to": "x3197634b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3027116", + "name": "xf_t226192684a", + "phases": "AS", + "to": "x3027116a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2935567", + "name": "xf_t5338992b", + "phases": "BS", + "to": "x2935567b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3233353", + "name": "xf_t21399630a", + "phases": "AS", + "to": "x3233353a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3179646", + "name": "xf_t5328365b", + "phases": "BS", + "to": "x3179646b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2691943", + "name": "xf_t5323400b", + "phases": "BS", + "to": "x2691943b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2823545", + "name": "xf_t5356807a", + "phases": "AS", + "to": "x2823545a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3030199", + "name": "xf_t5260480c", + "phases": "CS", + "to": "x3030199c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2766726", + "name": "xf_t5302373b", + "phases": "BS", + "to": "x2766726b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "293471", + "name": "xf_t5293471b", + "phases": "BS", + "to": "x_293471b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "293471", + "name": "xf_t5293471a", + "phases": "AS", + "to": "x_293471a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001210", + "name": "xf_t2001210c", + "phases": "CS", + "to": "x2001210c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2917359", + "name": "xf_t21482431a", + "phases": "AS", + "to": "x2917359a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2876796", + "name": "xf_t226193338a", + "phases": "AS", + "to": "x2876796a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2841630", + "name": "xf_t5138404c", + "phases": "CS", + "to": "x2841630c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3029501", + "name": "xf_t5337688b", + "phases": "BS", + "to": "x3029501b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2785520", + "name": "xf_t5138755b", + "phases": "BS", + "to": "x2785520b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2891575", + "name": "xf_t225533423c", + "phases": "CS", + "to": "x2891575c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3254227", + "name": "xf_t5338995b", + "phases": "BS", + "to": "x3254227b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2673343", + "name": "xf_t21470122b", + "phases": "BS", + "to": "x2673343b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2841616", + "name": "xf_t21031684a", + "phases": "AS", + "to": "x2841616a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3101782", + "name": "xf_t5356808a", + "phases": "AS", + "to": "x3101782a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000915", + "name": "xf_t2000915c", + "phases": "CS", + "to": "x2000915c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2692633", + "name": "xf_t5328364c", + "phases": "CS", + "to": "x2692633c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3254210", + "name": "xf_t5138647c", + "phases": "CS", + "to": "x3254210c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2841629", + "name": "xf_t5138405c", + "phases": "CS", + "to": "x2841629c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001013", + "name": "xf_t2001013b", + "phases": "BS", + "to": "x2001013b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2879062", + "name": "xf_t21385192c", + "phases": "CS", + "to": "x2879062c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2841637", + "name": "xf_t5293492c", + "phases": "CS", + "to": "x2841637c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3066816", + "name": "xf_t21398676a", + "phases": "AS", + "to": "x3066816a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2973156", + "name": "xf_t5337687b", + "phases": "BS", + "to": "x2973156b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3104120", + "name": "xf_t5138645b", + "phases": "BS", + "to": "x3104120b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2991929", + "name": "xf_t28147708b", + "phases": "BS", + "to": "x2991929b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3254212", + "name": "xf_t5138754b", + "phases": "BS", + "to": "x3254212b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2916603", + "name": "xf_t5323403b", + "phases": "BS", + "to": "x2916603b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3142050", + "name": "xf_t5251865c", + "phases": "CS", + "to": "x3142050c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2673323", + "name": "xf_t5355438c", + "phases": "CS", + "to": "x2673323c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3160115", + "name": "xf_t5338994b", + "phases": "BS", + "to": "x3160115b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2936214", + "name": "xf_t5356809a", + "phases": "AS", + "to": "x2936214a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3048221", + "name": "xf_t21399305a", + "phases": "AS", + "to": "x3048221a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3141401", + "name": "xf_t5338970a", + "phases": "AS", + "to": "x3141401a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2710536", + "name": "xf_t21396867a", + "phases": "AS", + "to": "x2710536a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2936213", + "name": "xf_t5328363b", + "phases": "BS", + "to": "x2936213b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2804251", + "name": "xf_t5138646a", + "phases": "AS", + "to": "x2804251a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2973162", + "name": "xf_t5302375b", + "phases": "BS", + "to": "x2973162b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001014", + "name": "xf_t2001014b", + "phases": "BS", + "to": "x2001014b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2952014", + "name": "xf_t5294809a", + "phases": "AS", + "to": "x2952014a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l2767340", + "name": "xf_t5260595a", + "phases": "AS", + "to": "x2767340a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001307", + "name": "xf_t2001307a", + "phases": "AS", + "to": "x2001307a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2954347", + "name": "xf_t5321841b", + "phases": "BS", + "to": "x2954347b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3157167", + "name": "xf_t226115278a", + "phases": "AS", + "to": "x3157167a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l2767340", + "name": "xf_t5260595c", + "phases": "CS", + "to": "x2767340c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l2767340", + "name": "xf_t5260595b", + "phases": "BS", + "to": "x2767340b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2879070", + "name": "xf_t5338934b", + "phases": "BS", + "to": "x2879070b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3066809", + "name": "xf_t5338958c", + "phases": "CS", + "to": "x3066809c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2766717", + "name": "xf_t5138470c", + "phases": "CS", + "to": "x2766717c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3029520", + "name": "xf_t21486213b", + "phases": "BS", + "to": "x3029520b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2710525", + "name": "xf_t5355437c", + "phases": "CS", + "to": "x2710525c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254228", + "name": "xf_t5325474b", + "phases": "BS", + "to": "x3254228b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000412", + "name": "xf_t2000412a", + "phases": "AS", + "to": "x2000412a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2710518", + "name": "xf_t21209868a", + "phases": "AS", + "to": "x2710518a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2673306", + "name": "xf_t5293608c", + "phases": "CS", + "to": "x2673306c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2801909", + "name": "xf_t226195333c", + "phases": "CS", + "to": "x2801909c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3216345", + "name": "xf_t5338933b", + "phases": "BS", + "to": "x3216345b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2710509", + "name": "xf_t5275000c", + "phases": "CS", + "to": "x2710509c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2973163", + "name": "xf_t5391753b", + "phases": "BS", + "to": "x2973163b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2748140", + "name": "xf_t5391995a", + "phases": "AS", + "to": "x2748140a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2879074", + "name": "xf_t5310560a", + "phases": "AS", + "to": "x2879074a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3085393", + "name": "xf_t5337627c", + "phases": "CS", + "to": "x3085393c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3048230", + "name": "xf_t5293490c", + "phases": "CS", + "to": "x3048230c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001308", + "name": "xf_t2001308a", + "phases": "AS", + "to": "x2001308a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2861223", + "name": "xf_t5260461b", + "phases": "BS", + "to": "x2861223b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2991916", + "name": "xf_t5337710b", + "phases": "BS", + "to": "x2991916b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2801902", + "name": "xf_t226194002b", + "phases": "BS", + "to": "x2801902b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3197627", + "name": "xf_t5337625c", + "phases": "CS", + "to": "x3197627c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2876814", + "name": "xf_t225806974a", + "phases": "AS", + "to": "x2876814a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2898457", + "name": "xf_t5260594a", + "phases": "AS", + "to": "x2898457a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2785517", + "name": "xf_t5338957c", + "phases": "CS", + "to": "x2785517c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2785515", + "name": "xf_t5293609c", + "phases": "CS", + "to": "x2785515c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3649299", + "name": "xf_t2224237391a", + "phases": "AS", + "to": "x3649299a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2803199", + "name": "xf_t227760021c", + "phases": "CS", + "to": "x2803199c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2803199", + "name": "xf_t227760021a", + "phases": "AS", + "to": "x2803199a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2803199", + "name": "xf_t227760021b", + "phases": "BS", + "to": "x2803199b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000413", + "name": "xf_t2000413a", + "phases": "AS", + "to": "x2000413a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3197661", + "name": "xf_t5338932c", + "phases": "CS", + "to": "x3197661c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l2763812", + "name": "xf_t21459651c", + "phases": "CS", + "to": "x2763812c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3235275", + "name": "xf_t5302507b", + "phases": "BS", + "to": "x3235275b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3216343", + "name": "xf_t5337626c", + "phases": "CS", + "to": "x3216343c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3141412", + "name": "xf_t5391996a", + "phases": "AS", + "to": "x3141412a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3122820", + "name": "xf_t5310561a", + "phases": "AS", + "to": "x3122820a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2897776", + "name": "xf_t5302858c", + "phases": "CS", + "to": "x2897776c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3214055", + "name": "xf_t226192175c", + "phases": "CS", + "to": "x3214055c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2841625", + "name": "xf_t5302834c", + "phases": "CS", + "to": "x2841625c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3626914", + "name": "xf_t2224179616c", + "phases": "CS", + "to": "x3626914c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2785524", + "name": "xf_t28044328c", + "phases": "CS", + "to": "x2785524c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3179650", + "name": "xf_t5251828b", + "phases": "BS", + "to": "x3179650b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2729206", + "name": "xf_t22112168866c", + "phases": "CS", + "to": "x2729206c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2992624", + "name": "xf_t5260484a", + "phases": "AS", + "to": "x2992624a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2766716", + "name": "xf_t5337713c", + "phases": "CS", + "to": "x2766716c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001305", + "name": "xf_t2001305a", + "phases": "AS", + "to": "x2001305a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5", + "from": "l2914324", + "name": "xf_t226196642a", + "phases": "AS", + "to": "x2914324a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3048231", + "name": "xf_t21400215b", + "phases": "BS", + "to": "x3048231b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3066815", + "name": "xf_t5338936c", + "phases": "CS", + "to": "x3066815c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3048203", + "name": "xf_t5323273b", + "phases": "BS", + "to": "x3048203b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2691966", + "name": "xf_t5339010b", + "phases": "BS", + "to": "x2691966b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3178973", + "name": "xf_t21149420a", + "phases": "AS", + "to": "x3178973a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2673319", + "name": "xf_t5391973c", + "phases": "CS", + "to": "x2673319c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2748128", + "name": "xf_t5337629c", + "phases": "CS", + "to": "x2748128c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3254209", + "name": "xf_t5337714c", + "phases": "CS", + "to": "x3254209c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3727710", + "name": "xf_t2224386863a", + "phases": "AS", + "to": "x3727710a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2806553", + "name": "xf_t227411655c", + "phases": "CS", + "to": "x2806553c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2748132", + "name": "xf_t5302637a", + "phases": "AS", + "to": "x2748132a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104130", + "name": "xf_t5391755b", + "phases": "BS", + "to": "x3104130b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2954361", + "name": "xf_t21383494b", + "phases": "BS", + "to": "x2954361b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2804253", + "name": "xf_t21396254a", + "phases": "AS", + "to": "x2804253a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2973149", + "name": "xf_t5325472b", + "phases": "BS", + "to": "x2973149b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2785531", + "name": "xf_t21399809a", + "phases": "AS", + "to": "x2785531a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001306", + "name": "xf_t2001306a", + "phases": "AS", + "to": "x2001306a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3251807", + "name": "xf_t225673440a", + "phases": "AS", + "to": "x3251807a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3235245", + "name": "xf_t5337712c", + "phases": "CS", + "to": "x3235245c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2954344", + "name": "xf_t5338959c", + "phases": "CS", + "to": "x2954344c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2973160", + "name": "xf_t5338935b", + "phases": "BS", + "to": "x2973160b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000410", + "name": "xf_t2000410a", + "phases": "AS", + "to": "x2000410a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3159645", + "name": "xf_t228446184a", + "phases": "AS", + "to": "x3159645a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3215203", + "name": "xf_t227760024b", + "phases": "BS", + "to": "x3215203b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2860490", + "name": "xf_t5138719a", + "phases": "AS", + "to": "x2860490a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3215203", + "name": "xf_t227760024c", + "phases": "CS", + "to": "x3215203c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000411", + "name": "xf_t2000411a", + "phases": "AS", + "to": "x2000411a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3215203", + "name": "xf_t227760024a", + "phases": "AS", + "to": "x3215203a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3010562", + "name": "xf_t5325473b", + "phases": "BS", + "to": "x3010562b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2991933", + "name": "xf_t5355433c", + "phases": "CS", + "to": "x2991933c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3029183", + "name": "xf_t228580047b", + "phases": "BS", + "to": "x3029183b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2841621", + "name": "xf_t5338910c", + "phases": "CS", + "to": "x2841621c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2897770", + "name": "xf_t5337628c", + "phases": "CS", + "to": "x2897770c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2879079", + "name": "xf_t5391756b", + "phases": "BS", + "to": "x2879079b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2710543", + "name": "xf_t21474614c", + "phases": "CS", + "to": "x2710543c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3179607", + "name": "xf_t5260591b", + "phases": "BS", + "to": "x3179607b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3254869", + "name": "xf_t5260575b", + "phases": "BS", + "to": "x3254869b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2710544", + "name": "xf_t21482279a", + "phases": "AS", + "to": "x2710544a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001303", + "name": "xf_t2001303a", + "phases": "AS", + "to": "x2001303a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2879063", + "name": "xf_t5337646b", + "phases": "BS", + "to": "x2879063b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3160872", + "name": "xf_t5260551c", + "phases": "CS", + "to": "x3160872c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2786273", + "name": "xf_t5275247b", + "phases": "BS", + "to": "x2786273b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2726973", + "name": "xf_t226192926a", + "phases": "AS", + "to": "x2726973a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2895449", + "name": "xf_t226193134c", + "phases": "CS", + "to": "x2895449c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2748139", + "name": "xf_t21400108b", + "phases": "BS", + "to": "x2748139b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2933135", + "name": "xf_t226197070a", + "phases": "AS", + "to": "x2933135a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3122837", + "name": "xf_t5355432c", + "phases": "CS", + "to": "x3122837c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3118855", + "name": "xf_t5339052c", + "phases": "CS", + "to": "x3118855c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5", + "from": "l3235255", + "name": "xf_t5293519b", + "phases": "BS", + "to": "x3235255b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2684420", + "name": "xf_t225498968b", + "phases": "BS", + "to": "x2684420b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2916620", + "name": "xf_t5338977c", + "phases": "CS", + "to": "x2916620c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2916620", + "name": "xf_t5338977b", + "phases": "BS", + "to": "x2916620b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3216346", + "name": "xf_t5391991a", + "phases": "AS", + "to": "x3216346a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3728041", + "name": "xf_t2224387074a", + "phases": "AS", + "to": "x3728041a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3122821", + "name": "xf_t5338953b", + "phases": "BS", + "to": "x3122821b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3048227", + "name": "xf_t5337647a", + "phases": "AS", + "to": "x3048227a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3010567", + "name": "xf_t5302813c", + "phases": "CS", + "to": "x3010567c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2785543", + "name": "xf_t5321860b", + "phases": "BS", + "to": "x2785543b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104134", + "name": "xf_t5138718c", + "phases": "CS", + "to": "x3104134c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2710515", + "name": "xf_t5321884c", + "phases": "CS", + "to": "x2710515c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3727712", + "name": "xf_t2224386889a", + "phases": "AS", + "to": "x3727712a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3067478", + "name": "xf_t5260598a", + "phases": "AS", + "to": "x3067478a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2766746", + "name": "xf_t5321886c", + "phases": "CS", + "to": "x2766746c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3216342", + "name": "xf_t5337645b", + "phases": "BS", + "to": "x3216342b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001304", + "name": "xf_t2001304a", + "phases": "AS", + "to": "x2001304a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3123452", + "name": "xf_t5260574c", + "phases": "CS", + "to": "x3123452c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3047289", + "name": "xf_t228091193b", + "phases": "BS", + "to": "x3047289b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2916620", + "name": "xf_t5338977a", + "phases": "AS", + "to": "x2916620a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3047289", + "name": "xf_t228091193a", + "phases": "AS", + "to": "x3047289a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2879076", + "name": "xf_t5138380c", + "phases": "CS", + "to": "x2879076c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3047289", + "name": "xf_t228091193c", + "phases": "CS", + "to": "x3047289c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2691939", + "name": "xf_t5355589b", + "phases": "BS", + "to": "x2691939b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3231255", + "name": "xf_t5339051c", + "phases": "CS", + "to": "x3231255c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3048222", + "name": "xf_t5355431c", + "phases": "CS", + "to": "x3048222c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3315860", + "name": "xf_t2223664050b", + "phases": "BS", + "to": "x3315860b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2691967", + "name": "xf_t5338976b", + "phases": "BS", + "to": "x2691967b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2897764", + "name": "xf_t5391750b", + "phases": "BS", + "to": "x2897764b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3029500", + "name": "xf_t5391992a", + "phases": "AS", + "to": "x3029500a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3727709", + "name": "xf_t2224386842a", + "phases": "AS", + "to": "x3727709a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254220", + "name": "xf_t5138717c", + "phases": "CS", + "to": "x3254220c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3235248", + "name": "xf_t5321861c", + "phases": "CS", + "to": "x3235248c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2730187", + "name": "xf_t5260464a", + "phases": "AS", + "to": "x2730187a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2691941", + "name": "xf_t5321887c", + "phases": "CS", + "to": "x2691941c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2991640", + "name": "xf_t229106135c", + "phases": "CS", + "to": "x2991640c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3178977", + "name": "xf_t5302810c", + "phases": "CS", + "to": "x3178977c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2842379", + "name": "xf_t5260488a", + "phases": "AS", + "to": "x2842379a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3066807", + "name": "xf_t5337624c", + "phases": "CS", + "to": "x3066807c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3160896", + "name": "xf_t5260573c", + "phases": "CS", + "to": "x3160896c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2937757", + "name": "xf_t227411650c", + "phases": "CS", + "to": "x2937757c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2915542", + "name": "xf_t227921427c", + "phases": "CS", + "to": "x2915542c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2915542", + "name": "xf_t227921427b", + "phases": "BS", + "to": "x2915542b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2915542", + "name": "xf_t227921427a", + "phases": "AS", + "to": "x2915542a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104119", + "name": "xf_t5338956a", + "phases": "AS", + "to": "x3104119a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2822857", + "name": "xf_t5355588b", + "phases": "BS", + "to": "x2822857b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3122848", + "name": "xf_t21397121c", + "phases": "CS", + "to": "x3122848c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2785516", + "name": "xf_t5138294b", + "phases": "BS", + "to": "x2785516b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104114", + "name": "xf_t5355587b", + "phases": "BS", + "to": "x3104114b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3066806", + "name": "xf_t5275002c", + "phases": "CS", + "to": "x3066806c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3010560", + "name": "xf_t5338955b", + "phases": "BS", + "to": "x3010560b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l3102286", + "name": "xf_t226308729b", + "phases": "BS", + "to": "x3102286b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3010570", + "name": "xf_t5302392a", + "phases": "AS", + "to": "x3010570a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2785521", + "name": "xf_t5338931c", + "phases": "CS", + "to": "x2785521c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2860488", + "name": "xf_t5391751b", + "phases": "BS", + "to": "x2860488b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3156034", + "name": "xf_t5391993a", + "phases": "AS", + "to": "x3156034a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001215", + "name": "xf_t2001215c", + "phases": "CS", + "to": "x2001215c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2897779", + "name": "xf_t5302508c", + "phases": "CS", + "to": "x2897779c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3254215", + "name": "xf_t5302859c", + "phases": "CS", + "to": "x3254215c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254219", + "name": "xf_t5138716c", + "phases": "CS", + "to": "x3254219c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3160105", + "name": "xf_t5302811c", + "phases": "CS", + "to": "x3160105c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3235241", + "name": "xf_t5321888c", + "phases": "CS", + "to": "x3235241c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2804256", + "name": "xf_t5321840b", + "phases": "BS", + "to": "x2804256b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2692654", + "name": "xf_t5260487a", + "phases": "AS", + "to": "x2692654a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001302", + "name": "xf_t2001302a", + "phases": "AS", + "to": "x2001302a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3236004", + "name": "xf_t5260572c", + "phases": "CS", + "to": "x3236004c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3086075", + "name": "xf_t5260463b", + "phases": "BS", + "to": "x3086075b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2879089", + "name": "xf_t21455388c", + "phases": "CS", + "to": "x2879089c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3197626", + "name": "xf_t5337623c", + "phases": "CS", + "to": "x3197626c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3066814", + "name": "xf_t5338979b", + "phases": "BS", + "to": "x3066814b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2897780", + "name": "xf_t5293518b", + "phases": "BS", + "to": "x2897780b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254234", + "name": "xf_t5355586b", + "phases": "BS", + "to": "x3254234b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2822862", + "name": "xf_t5275001c", + "phases": "CS", + "to": "x2822862c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2860482", + "name": "xf_t5338954a", + "phases": "AS", + "to": "x2860482a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2766738", + "name": "xf_t5338978c", + "phases": "CS", + "to": "x2766738c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3029506", + "name": "xf_t5338930b", + "phases": "BS", + "to": "x3029506b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3160102", + "name": "xf_t5355780b", + "phases": "BS", + "to": "x3160102b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2804260", + "name": "xf_t5391752b", + "phases": "BS", + "to": "x2804260b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3066821", + "name": "xf_t5391994a", + "phases": "AS", + "to": "x3066821a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2804261", + "name": "xf_t5302509c", + "phases": "CS", + "to": "x2804261c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3216367", + "name": "xf_t5337648b", + "phases": "BS", + "to": "x3216367b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2935552", + "name": "xf_t5274903c", + "phases": "CS", + "to": "x2935552c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2691945", + "name": "xf_t5302812c", + "phases": "CS", + "to": "x2691945c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2973144", + "name": "xf_t5138466c", + "phases": "CS", + "to": "x2973144c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3085396", + "name": "xf_t5138684a", + "phases": "AS", + "to": "x3085396a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3197639", + "name": "xf_t5310569a", + "phases": "AS", + "to": "x3197639a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3010585", + "name": "xf_t5294810a", + "phases": "AS", + "to": "x3010585a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3179673", + "name": "xf_t5260640c", + "phases": "CS", + "to": "x3179673c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2860493", + "name": "xf_t21397645a", + "phases": "AS", + "to": "x2860493a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2841635", + "name": "xf_t21399099a", + "phases": "AS", + "to": "x2841635a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2673312", + "name": "xf_t5321837a", + "phases": "AS", + "to": "x2673312a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3048962", + "name": "xf_t5260555a", + "phases": "AS", + "to": "x3048962a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3232902", + "name": "xf_t226194826a", + "phases": "AS", + "to": "x3232902a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2897773", + "name": "xf_t5338918a", + "phases": "AS", + "to": "x2897773a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2766742", + "name": "xf_t5355585b", + "phases": "BS", + "to": "x2766742b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2897765", + "name": "xf_t5323243b", + "phases": "BS", + "to": "x2897765b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3233413", + "name": "xf_t226308727b", + "phases": "BS", + "to": "x3233413b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2710514", + "name": "xf_t5323267b", + "phases": "BS", + "to": "x2710514b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2936279", + "name": "xf_t5247184c", + "phases": "CS", + "to": "x2936279c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l0247160", + "name": "xf_t5247160b", + "phases": "BS", + "to": "x0247160b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3235273", + "name": "xf_t5339016b", + "phases": "BS", + "to": "x3235273b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2766748", + "name": "xf_t21470326a", + "phases": "AS", + "to": "x2766748a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2897772", + "name": "xf_t5302679a", + "phases": "AS", + "to": "x2897772a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2991918", + "name": "xf_t5391749b", + "phases": "BS", + "to": "x2991918b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3030200", + "name": "xf_t5260554c", + "phases": "CS", + "to": "x3030200c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3065665", + "name": "xf_t227895952a", + "phases": "AS", + "to": "x3065665a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2879055", + "name": "xf_t5138465c", + "phases": "CS", + "to": "x2879055c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2991907", + "name": "xf_t5138574a", + "phases": "AS", + "to": "x2991907a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3082981", + "name": "xf_t226193737c", + "phases": "CS", + "to": "x3082981c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3085401", + "name": "xf_t28127253a", + "phases": "AS", + "to": "x3085401a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2691944", + "name": "xf_t5321838a", + "phases": "AS", + "to": "x2691944a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2935555", + "name": "xf_t5338917a", + "phases": "AS", + "to": "x2935555a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2710542", + "name": "xf_t5355584b", + "phases": "BS", + "to": "x2710542b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3122810", + "name": "xf_t5323242b", + "phases": "BS", + "to": "x3122810b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3197632", + "name": "xf_t5323266b", + "phases": "BS", + "to": "x3197632b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3178974", + "name": "xf_t5323399b", + "phases": "BS", + "to": "x3178974b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3027671", + "name": "xf_t226308728a", + "phases": "AS", + "to": "x3027671a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2763072", + "name": "xf_t226924200b", + "phases": "BS", + "to": "x2763072b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3067447", + "name": "xf_t21386157a", + "phases": "AS", + "to": "x3067447a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3141397", + "name": "xf_t21396796b", + "phases": "BS", + "to": "x3141397b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2915534", + "name": "xf_t227917122a", + "phases": "AS", + "to": "x2915534a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104131", + "name": "xf_t5302410a", + "phases": "AS", + "to": "x3104131a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3066801", + "name": "xf_t5138464c", + "phases": "CS", + "to": "x3066801c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2711225", + "name": "xf_t5260553c", + "phases": "CS", + "to": "x2711225c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2710519", + "name": "xf_t5302676a", + "phases": "AS", + "to": "x2710519a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2897554", + "name": "xf_t22112168870c", + "phases": "CS", + "to": "x2897554c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3235253", + "name": "xf_t5138573a", + "phases": "AS", + "to": "x3235253a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2767341", + "name": "xf_t5260577c", + "phases": "CS", + "to": "x2767341c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2691951", + "name": "xf_t5138379c", + "phases": "CS", + "to": "x2691951c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2710516", + "name": "xf_t5321839a", + "phases": "AS", + "to": "x2710516a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3010557", + "name": "xf_t21380453a", + "phases": "AS", + "to": "x3010557a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3160793", + "name": "xf_t28147899c", + "phases": "CS", + "to": "x3160793c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3189188", + "name": "xf_t5293658c", + "phases": "CS", + "to": "x3189188c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2785512", + "name": "xf_t5323245b", + "phases": "BS", + "to": "x2785512b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3066817", + "name": "xf_t21373784a", + "phases": "AS", + "to": "x3066817a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2729424", + "name": "xf_t5339018a", + "phases": "AS", + "to": "x2729424a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3066819", + "name": "xf_t5302677a", + "phases": "AS", + "to": "x3066819a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3120484", + "name": "xf_t226191772c", + "phases": "CS", + "to": "x3120484c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3198348", + "name": "xf_t5260552a", + "phases": "AS", + "to": "x3198348a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3030126", + "name": "xf_t5260576c", + "phases": "CS", + "to": "x3030126c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2710517", + "name": "xf_t5310568a", + "phases": "AS", + "to": "x2710517a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2748127", + "name": "xf_t5338919a", + "phases": "AS", + "to": "x2748127a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2970804", + "name": "xf_t5356787c", + "phases": "CS", + "to": "x2970804c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2729412", + "name": "xf_t28150189a", + "phases": "AS", + "to": "x2729412a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3632979", + "name": "xf_t2224192013a", + "phases": "AS", + "to": "x3632979a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l2802480", + "name": "xf_t226308725b", + "phases": "BS", + "to": "x2802480b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2991940", + "name": "xf_t28148060c", + "phases": "CS", + "to": "x2991940c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3104856", + "name": "xf_t5260467a", + "phases": "AS", + "to": "x3104856a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2935560", + "name": "xf_t5293659c", + "phases": "CS", + "to": "x2935560c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2804248", + "name": "xf_t5323244b", + "phases": "BS", + "to": "x2804248b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2857591", + "name": "xf_t226101460a", + "phases": "AS", + "to": "x2857591a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2729423", + "name": "xf_t5339017c", + "phases": "CS", + "to": "x2729423c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3216358", + "name": "xf_t21399826a", + "phases": "AS", + "to": "x3216358a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3176661", + "name": "xf_t5356788c", + "phases": "CS", + "to": "x3176661c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3029499", + "name": "xf_t5302678a", + "phases": "AS", + "to": "x3029499a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3048210", + "name": "xf_t5302412a", + "phases": "AS", + "to": "x3048210a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2991913", + "name": "xf_t5138571a", + "phases": "AS", + "to": "x2991913a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3067506", + "name": "xf_t5260620c", + "phases": "CS", + "to": "x3067506c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3160878", + "name": "xf_t5260511c", + "phases": "CS", + "to": "x3160878c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "m1108404", + "name": "xf_t1108404c", + "phases": "CS", + "to": "x1108404c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "m1108404", + "name": "xf_t1108404b", + "phases": "BS", + "to": "x1108404b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "m1108404", + "name": "xf_t1108404a", + "phases": "AS", + "to": "x1108404a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l3101194", + "name": "xf_t21459660c", + "phases": "CS", + "to": "x3101194c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2989571", + "name": "xf_t225991691a", + "phases": "AS", + "to": "x2989571a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3067507", + "name": "xf_t5260535c", + "phases": "CS", + "to": "x3067507c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2710521", + "name": "xf_t5138680a", + "phases": "AS", + "to": "x2710521a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2973167", + "name": "xf_t5293656b", + "phases": "BS", + "to": "x2973167b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2897789", + "name": "xf_t5323287b", + "phases": "BS", + "to": "x2897789b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3066812", + "name": "xf_t5323263a", + "phases": "AS", + "to": "x3066812a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3157708", + "name": "xf_t226192954c", + "phases": "CS", + "to": "x3157708c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2766732", + "name": "xf_t5247164b", + "phases": "BS", + "to": "x2766732b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2766729", + "name": "xf_t5293523a", + "phases": "AS", + "to": "x2766729a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2973171", + "name": "xf_t5339012b", + "phases": "BS", + "to": "x2973171b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3649301", + "name": "xf_t2224237643a", + "phases": "AS", + "to": "x3649301a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2936275", + "name": "xf_t5157715b", + "phases": "BS", + "to": "x2936275b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2673300", + "name": "xf_t5391745b", + "phases": "BS", + "to": "x2673300b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3048937", + "name": "xf_t5356789c", + "phases": "CS", + "to": "x3048937c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3122822", + "name": "xf_t5391987a", + "phases": "AS", + "to": "x3122822a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2746587", + "name": "xf_t227653310c", + "phases": "CS", + "to": "x2746587c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2841627", + "name": "xf_t5337716a", + "phases": "AS", + "to": "x2841627a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3139598", + "name": "xf_t226311345b", + "phases": "BS", + "to": "x3139598b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "m1108405", + "name": "xf_t1108405c", + "phases": "CS", + "to": "x1108405c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3122815", + "name": "xf_t5321858b", + "phases": "BS", + "to": "x3122815b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "m1108405", + "name": "xf_t1108405b", + "phases": "BS", + "to": "x1108405b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "m1108405", + "name": "xf_t1108405a", + "phases": "AS", + "to": "x1108405a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2764403", + "name": "xf_t226193078a", + "phases": "AS", + "to": "x2764403a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3252336", + "name": "xf_t226308723b", + "phases": "BS", + "to": "x3252336b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3215549", + "name": "xf_t228219458b", + "phases": "BS", + "to": "x3215549b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2897777", + "name": "xf_t5338937c", + "phases": "CS", + "to": "x2897777c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2804255", + "name": "xf_t5338913b", + "phases": "BS", + "to": "x2804255b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2692660", + "name": "xf_t5260643a", + "phases": "AS", + "to": "x2692660a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3160861", + "name": "xf_t5260558c", + "phases": "CS", + "to": "x3160861c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2748146", + "name": "xf_t5138570a", + "phases": "AS", + "to": "x2748146a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3189189", + "name": "xf_t5293657b", + "phases": "BS", + "to": "x3189189b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2989564", + "name": "xf_t5323286b", + "phases": "BS", + "to": "x2989564b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3214112", + "name": "xf_t226881057b", + "phases": "BS", + "to": "x3214112b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3104145", + "name": "xf_t5339011b", + "phases": "BS", + "to": "x3104145b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3139086", + "name": "xf_t226192846b", + "phases": "BS", + "to": "x3139086b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3139366", + "name": "xf_t226264795a", + "phases": "AS", + "to": "x3139366a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3254204", + "name": "xf_t5337715a", + "phases": "AS", + "to": "x3254204a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3179674", + "name": "xf_t5157716b", + "phases": "BS", + "to": "x3179674b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3085388", + "name": "xf_t5391746b", + "phases": "BS", + "to": "x3085388b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2897790", + "name": "xf_t21357984c", + "phases": "CS", + "to": "x2897790c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2916599", + "name": "xf_t5356015a", + "phases": "AS", + "to": "x2916599a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2688692", + "name": "xf_t225918926b", + "phases": "BS", + "to": "x2688692b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001309", + "name": "xf_t2001309a", + "phases": "AS", + "to": "x2001309a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2991920", + "name": "xf_t28118822a", + "phases": "AS", + "to": "x2991920a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2729207", + "name": "xf_t22112168874c", + "phases": "CS", + "to": "x2729207c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254213", + "name": "xf_t5321859b", + "phases": "BS", + "to": "x3254213b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l2821087", + "name": "xf_t226308720a", + "phases": "AS", + "to": "x2821087a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2710508", + "name": "xf_t5323241b", + "phases": "BS", + "to": "x2710508b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000414", + "name": "xf_t2000414a", + "phases": "AS", + "to": "x2000414a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2860501", + "name": "xf_t5323265b", + "phases": "BS", + "to": "x2860501b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3048968", + "name": "xf_t5350994c", + "phases": "CS", + "to": "x3048968c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2822867", + "name": "xf_t21386552b", + "phases": "BS", + "to": "x2822867b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2710505", + "name": "xf_t5323398b", + "phases": "BS", + "to": "x2710505b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3727707", + "name": "xf_t2224386750a", + "phases": "AS", + "to": "x3727707a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3216370", + "name": "xf_t5293521c", + "phases": "CS", + "to": "x3216370c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3216370", + "name": "xf_t5293521b", + "phases": "BS", + "to": "x3216370b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l0247162", + "name": "xf_t5247162b", + "phases": "BS", + "to": "x0247162b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3216370", + "name": "xf_t5293521a", + "phases": "AS", + "to": "x3216370a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2822859", + "name": "xf_t5391747b", + "phases": "BS", + "to": "x2822859b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2766747", + "name": "xf_t5391989a", + "phases": "AS", + "to": "x2766747a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3178981", + "name": "xf_t21396331b", + "phases": "BS", + "to": "x3178981b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2691947", + "name": "xf_t5337718a", + "phases": "AS", + "to": "x2691947a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3235249", + "name": "xf_t5356014a", + "phases": "AS", + "to": "x3235249a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3160107", + "name": "xf_t5138265a", + "phases": "AS", + "to": "x3160107a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2972704", + "name": "xf_t228445756c", + "phases": "CS", + "to": "x2972704c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3086074", + "name": "xf_t5260532c", + "phases": "CS", + "to": "x3086074c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3048965", + "name": "xf_t5260641b", + "phases": "BS", + "to": "x3048965b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3160864", + "name": "xf_t28127146b", + "phases": "BS", + "to": "x3160864b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "m1108403", + "name": "xf_t1108403b", + "phases": "BS", + "to": "x1108403b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2991905", + "name": "xf_t28148633a", + "phases": "AS", + "to": "x2991905a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "m1108403", + "name": "xf_t1108403a", + "phases": "AS", + "to": "x1108403a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5", + "from": "l2823592", + "name": "xf_t5223658a", + "phases": "AS", + "to": "x2823592a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2954345", + "name": "xf_t5338915c", + "phases": "CS", + "to": "x2954345c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3235247", + "name": "xf_t5321836a", + "phases": "AS", + "to": "x3235247a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "m1108403", + "name": "xf_t1108403c", + "phases": "CS", + "to": "x1108403c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2820533", + "name": "xf_t226193298a", + "phases": "AS", + "to": "x2820533a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2691950", + "name": "xf_t5138374c", + "phases": "CS", + "to": "x2691950c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2691954", + "name": "xf_t21399361b", + "phases": "BS", + "to": "x2691954b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2990098", + "name": "xf_t226308721a", + "phases": "AS", + "to": "x2990098a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3030204", + "name": "xf_t0107636a", + "phases": "AS", + "to": "x3030204a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3179637", + "name": "xf_t21386442c", + "phases": "CS", + "to": "x3179637c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2729414", + "name": "xf_t5293655a", + "phases": "AS", + "to": "x2729414a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2729414", + "name": "xf_t5293655b", + "phases": "BS", + "to": "x2729414b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3216344", + "name": "xf_t5323264b", + "phases": "BS", + "to": "x3216344b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2954346", + "name": "xf_t5323397b", + "phases": "BS", + "to": "x2954346b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3198356", + "name": "xf_t5350993c", + "phases": "CS", + "to": "x3198356c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2785527", + "name": "xf_t5293522a", + "phases": "AS", + "to": "x2785527a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000415", + "name": "xf_t2000415a", + "phases": "AS", + "to": "x2000415a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2804270", + "name": "xf_t5339013b", + "phases": "BS", + "to": "x2804270b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3195310", + "name": "xf_t226192185a", + "phases": "AS", + "to": "x3195310a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3179678", + "name": "xf_t5247185b", + "phases": "BS", + "to": "x3179678b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3645809", + "name": "xf_t2224230615c", + "phases": "CS", + "to": "x3645809c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2729414", + "name": "xf_t5293655c", + "phases": "CS", + "to": "x2729414c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3216348", + "name": "xf_t5337717a", + "phases": "AS", + "to": "x3216348a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2954348", + "name": "xf_t5356013a", + "phases": "AS", + "to": "x2954348a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2917328", + "name": "xf_t21389092b", + "phases": "BS", + "to": "x2917328b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2991902", + "name": "xf_t5391748b", + "phases": "BS", + "to": "x2991902b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2991910", + "name": "xf_t5337694b", + "phases": "BS", + "to": "x2991910b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2804262", + "name": "xf_t5355938a", + "phases": "AS", + "to": "x2804262a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2895461", + "name": "xf_t5294789a", + "phases": "AS", + "to": "x2895461a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3197630", + "name": "xf_t5138644a", + "phases": "AS", + "to": "x3197630a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3160865", + "name": "xf_t5260515a", + "phases": "AS", + "to": "x3160865a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2917255", + "name": "xf_t21386065c", + "phases": "CS", + "to": "x2917255c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3254873", + "name": "xf_t5251862c", + "phases": "CS", + "to": "x3254873c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2898522", + "name": "xf_t5260648a", + "phases": "AS", + "to": "x2898522a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2748130", + "name": "xf_t5138753b", + "phases": "BS", + "to": "x2748130b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "m1108410", + "name": "xf_t6061820b", + "phases": "BS", + "to": "x1108410b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2936268", + "name": "xf_t5223655c", + "phases": "CS", + "to": "x2936268c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3048946", + "name": "xf_t5260624c", + "phases": "CS", + "to": "x3048946c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3235242", + "name": "xf_t21380500c", + "phases": "CS", + "to": "x3235242c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3011298", + "name": "xf_t5207286c", + "phases": "CS", + "to": "x3011298c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000707", + "name": "xf_t2000707b", + "phases": "BS", + "to": "x2000707b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3235258", + "name": "xf_t5293652a", + "phases": "AS", + "to": "x3235258a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2841615", + "name": "xf_t5356012a", + "phases": "AS", + "to": "x2841615a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3235258", + "name": "xf_t5293652b", + "phases": "BS", + "to": "x3235258b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3235258", + "name": "xf_t5293652c", + "phases": "CS", + "to": "x3235258c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2783231", + "name": "xf_t226193886b", + "phases": "BS", + "to": "x2783231b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2841639", + "name": "xf_t5355937a", + "phases": "AS", + "to": "x2841639a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3008248", + "name": "xf_t5321159a", + "phases": "AS", + "to": "x3008248a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2805034", + "name": "xf_t5260647a", + "phases": "AS", + "to": "x2805034a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3010566", + "name": "xf_t5138776c", + "phases": "CS", + "to": "x3010566c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3235252", + "name": "xf_t21388572b", + "phases": "BS", + "to": "x3235252b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2785528", + "name": "xf_t5138752b", + "phases": "BS", + "to": "x2785528b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2674047", + "name": "xf_t5260514c", + "phases": "CS", + "to": "x2674047c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2745811", + "name": "xf_t5251863c", + "phases": "CS", + "to": "x2745811c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3066813", + "name": "xf_t5337693b", + "phases": "BS", + "to": "x3066813b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2673317", + "name": "xf_t21397771a", + "phases": "AS", + "to": "x2673317a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000902", + "name": "xf_t2000902c", + "phases": "CS", + "to": "x2000902c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3027122", + "name": "xf_t226194865a", + "phases": "AS", + "to": "x3027122a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2711234", + "name": "xf_t5207287b", + "phases": "BS", + "to": "x2711234b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3216337", + "name": "xf_t5356011a", + "phases": "AS", + "to": "x3216337a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000708", + "name": "xf_t2000708b", + "phases": "BS", + "to": "x2000708b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2955076", + "name": "xf_t21243817a", + "phases": "AS", + "to": "x2955076a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3157718", + "name": "xf_t226194093a", + "phases": "AS", + "to": "x3157718a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "m1108406", + "name": "xf_t1108406a", + "phases": "AS", + "to": "x1108406a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2822877", + "name": "xf_t5337672b", + "phases": "BS", + "to": "x2822877b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3198347", + "name": "xf_t5260622c", + "phases": "CS", + "to": "x3198347c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3197635", + "name": "xf_t5337696b", + "phases": "BS", + "to": "x3197635b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2954357", + "name": "xf_t5355936a", + "phases": "AS", + "to": "x2954357a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3197647", + "name": "xf_t5294787a", + "phases": "AS", + "to": "x3197647a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3048214", + "name": "xf_t5302474a", + "phases": "AS", + "to": "x3048214a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3235256", + "name": "xf_t5138642a", + "phases": "AS", + "to": "x3235256a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "m1108406", + "name": "xf_t1108406b", + "phases": "BS", + "to": "x1108406b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3231269", + "name": "xf_t225684682b", + "phases": "BS", + "to": "x3231269b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3066818", + "name": "xf_t5138751b", + "phases": "BS", + "to": "x3066818b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2917336", + "name": "xf_t5260513c", + "phases": "CS", + "to": "x2917336c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3728042", + "name": "xf_t2224387113a", + "phases": "AS", + "to": "x3728042a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2801895", + "name": "xf_t226191951b", + "phases": "BS", + "to": "x2801895b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2879069", + "name": "xf_t5338894a", + "phases": "AS", + "to": "x2879069a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2748840", + "name": "xf_t5157717b", + "phases": "BS", + "to": "x2748840b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3729297", + "name": "xf_t2224386592a", + "phases": "AS", + "to": "x3729297a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000705", + "name": "xf_t2000705b", + "phases": "BS", + "to": "x2000705b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3198355", + "name": "xf_t5207288b", + "phases": "BS", + "to": "x3198355b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3216336", + "name": "xf_t5356010a", + "phases": "AS", + "to": "x3216336a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3029507", + "name": "xf_t5302368b", + "phases": "BS", + "to": "x3029507b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "m1108407", + "name": "xf_t1108407b", + "phases": "BS", + "to": "x1108407b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2879072", + "name": "xf_t5337695b", + "phases": "BS", + "to": "x2879072b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2841638", + "name": "xf_t5138641c", + "phases": "CS", + "to": "x2841638c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2898515", + "name": "xf_t5260621c", + "phases": "CS", + "to": "x2898515c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3254207", + "name": "xf_t5337671a", + "phases": "AS", + "to": "x3254207a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2729428", + "name": "xf_t21398402a", + "phases": "AS", + "to": "x2729428a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2821010", + "name": "xf_t5294788a", + "phases": "AS", + "to": "x2821010a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2724120", + "name": "xf_t225577437c", + "phases": "CS", + "to": "x2724120c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3104859", + "name": "xf_t5138798b", + "phases": "BS", + "to": "x3104859b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2691973", + "name": "xf_t5355935a", + "phases": "AS", + "to": "x2691973a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3195327", + "name": "xf_t225901711a", + "phases": "AS", + "to": "x3195327a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l3645810", + "name": "xf_t2224230651c", + "phases": "CS", + "to": "x3645810c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3197633", + "name": "xf_t5338893a", + "phases": "AS", + "to": "x3197633a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3142099", + "name": "xf_t5157718b", + "phases": "BS", + "to": "x3142099b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000706", + "name": "xf_t2000706b", + "phases": "BS", + "to": "x2000706b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l3141411", + "name": "xf_t21197413c", + "phases": "CS", + "to": "x3141411c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3091052", + "name": "xf_t228532641a", + "phases": "AS", + "to": "x3091052a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2766727", + "name": "xf_t5302367b", + "phases": "BS", + "to": "x2766727b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2673321", + "name": "xf_t5302674a", + "phases": "AS", + "to": "x2673321a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2991927", + "name": "xf_t5355607b", + "phases": "BS", + "to": "x2991927b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2973159", + "name": "xf_t21398536a", + "phases": "AS", + "to": "x2973159a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2674052", + "name": "xf_t21393570c", + "phases": "CS", + "to": "x2674052c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3141400", + "name": "xf_t5138313a", + "phases": "AS", + "to": "x3141400a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2745799", + "name": "xf_t226191779c", + "phases": "CS", + "to": "x2745799c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3048207", + "name": "xf_t5323248b", + "phases": "BS", + "to": "x3048207b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3198358", + "name": "xf_t5138797b", + "phases": "BS", + "to": "x3198358b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104127", + "name": "xf_t5337690b", + "phases": "BS", + "to": "x3104127b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3048212", + "name": "xf_t5355934a", + "phases": "AS", + "to": "x3048212a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2822861", + "name": "xf_t21015829a", + "phases": "AS", + "to": "x2822861a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2822865", + "name": "xf_t5274986c", + "phases": "CS", + "to": "x2822865c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2858166", + "name": "xf_t226192994a", + "phases": "AS", + "to": "x2858166a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000703", + "name": "xf_t2000703b", + "phases": "BS", + "to": "x2000703b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3189190", + "name": "xf_t227100753a", + "phases": "AS", + "to": "x3189190a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2935553", + "name": "xf_t5323247b", + "phases": "BS", + "to": "x2935553b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3142049", + "name": "xf_t5356810c", + "phases": "CS", + "to": "x3142049c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2690868", + "name": "xf_t227917127c", + "phases": "CS", + "to": "x2690868c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2954355", + "name": "xf_t5293672a", + "phases": "AS", + "to": "x2954355a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2954354", + "name": "xf_t5302675a", + "phases": "AS", + "to": "x2954354a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2973180", + "name": "xf_t21398646b", + "phases": "BS", + "to": "x2973180b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2785518", + "name": "xf_t5138469c", + "phases": "CS", + "to": "x2785518c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104853", + "name": "xf_t5260518c", + "phases": "CS", + "to": "x3104853c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2766724", + "name": "xf_t5294786c", + "phases": "CS", + "to": "x2766724c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2820528", + "name": "xf_t226191778c", + "phases": "CS", + "to": "x2820528c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2992656", + "name": "xf_t5260627a", + "phases": "AS", + "to": "x2992656a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3236011", + "name": "xf_t5138796b", + "phases": "BS", + "to": "x3236011b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3029510", + "name": "xf_t5355606b", + "phases": "BS", + "to": "x3029510b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2674027", + "name": "xf_t21380325b", + "phases": "BS", + "to": "x2674027b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2898526", + "name": "xf_t21393486c", + "phases": "CS", + "to": "x2898526c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2839305", + "name": "xf_t28150292a", + "phases": "AS", + "to": "x2839305a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2916598", + "name": "xf_t5355933a", + "phases": "AS", + "to": "x2916598a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3728043", + "name": "xf_t2224387138a", + "phases": "AS", + "to": "x3728043a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2948732", + "name": "xf_t225571845b", + "phases": "BS", + "to": "x2948732b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2822864", + "name": "xf_t5274985c", + "phases": "CS", + "to": "x2822864c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2841620", + "name": "xf_t28147018b", + "phases": "BS", + "to": "x2841620b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000704", + "name": "xf_t2000704b", + "phases": "BS", + "to": "x2000704b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3067448", + "name": "xf_t5262075c", + "phases": "CS", + "to": "x3067448c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3217064", + "name": "xf_t21391390b", + "phases": "BS", + "to": "x3217064b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3122827", + "name": "xf_t5293673a", + "phases": "AS", + "to": "x3122827a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3160114", + "name": "xf_t5339019a", + "phases": "AS", + "to": "x3160114a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2804956", + "name": "xf_t5356811a", + "phases": "AS", + "to": "x2804956a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3197643", + "name": "xf_t5302369b", + "phases": "BS", + "to": "x3197643b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254205", + "name": "xf_t5302672c", + "phases": "CS", + "to": "x3254205c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2767408", + "name": "xf_t5260517c", + "phases": "CS", + "to": "x2767408c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2729409", + "name": "xf_t5355605b", + "phases": "BS", + "to": "x2729409b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2801896", + "name": "xf_t226191995b", + "phases": "BS", + "to": "x2801896b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3197644", + "name": "xf_t5138771a", + "phases": "AS", + "to": "x3197644a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2989566", + "name": "xf_t5260602b", + "phases": "BS", + "to": "x2989566b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2935551", + "name": "xf_t21387929c", + "phases": "CS", + "to": "x2935551c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2879061", + "name": "xf_t5337692b", + "phases": "BS", + "to": "x2879061b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3142079", + "name": "xf_t21249626b", + "phases": "BS", + "to": "x3142079b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3010569", + "name": "xf_t5302673a", + "phases": "AS", + "to": "x3010569a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3122813", + "name": "xf_t5138685a", + "phases": "AS", + "to": "x3122813a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2729427", + "name": "xf_t5323249b", + "phases": "BS", + "to": "x2729427b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2841624", + "name": "xf_t5355604b", + "phases": "BS", + "to": "x2841624b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2730149", + "name": "xf_t5260601c", + "phases": "CS", + "to": "x2730149c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2897774", + "name": "xf_t5337691b", + "phases": "BS", + "to": "x2897774b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2897781", + "name": "xf_t5138770a", + "phases": "AS", + "to": "x2897781a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3048966", + "name": "xf_t5260625c", + "phases": "CS", + "to": "x3048966c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000702", + "name": "xf_t2000702b", + "phases": "BS", + "to": "x2000702b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3122825", + "name": "xf_t28118808a", + "phases": "AS", + "to": "x3122825a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3177665", + "name": "xf_t227731863a", + "phases": "AS", + "to": "x3177665a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2861158", + "name": "xf_t5251858c", + "phases": "CS", + "to": "x2861158c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3066808", + "name": "xf_t5337654c", + "phases": "CS", + "to": "x3066808c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3085392", + "name": "xf_t5337630c", + "phases": "CS", + "to": "x3085392c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001008", + "name": "xf_t2001008b", + "phases": "BS", + "to": "x2001008b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3160117", + "name": "xf_t21357901b", + "phases": "BS", + "to": "x3160117b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3160101", + "name": "xf_t5337678a", + "phases": "AS", + "to": "x3160101a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3160108", + "name": "xf_t5355603b", + "phases": "BS", + "to": "x3160108b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2727795", + "name": "xf_t227678342c", + "phases": "CS", + "to": "x2727795c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3784018", + "name": "xf_t2224500658a", + "phases": "AS", + "to": "x3784018a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2804254", + "name": "xf_t5323418a", + "phases": "AS", + "to": "x2804254a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254208", + "name": "xf_t5338961c", + "phases": "CS", + "to": "x3254208c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2731712", + "name": "xf_t21426205b", + "phases": "BS", + "to": "x2731712b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2766720", + "name": "xf_t5441311a", + "phases": "AS", + "to": "x2766720a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2897792", + "name": "xf_t5338985a", + "phases": "AS", + "to": "x2897792a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001310", + "name": "xf_t2001310a", + "phases": "AS", + "to": "x2001310a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2730106", + "name": "xf_t5356814c", + "phases": "CS", + "to": "x2730106c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3010559", + "name": "xf_t5337679a", + "phases": "AS", + "to": "x3010559a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2858175", + "name": "xf_t225668688a", + "phases": "AS", + "to": "x2858175a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2954351", + "name": "xf_t5302805c", + "phases": "CS", + "to": "x2954351c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000909", + "name": "xf_t2000909c", + "phases": "CS", + "to": "x2000909c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3235267", + "name": "xf_t5321892c", + "phases": "CS", + "to": "x3235267c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2673346", + "name": "xf_t5293486c", + "phases": "CS", + "to": "x2673346c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2952007", + "name": "xf_t5251859c", + "phases": "CS", + "to": "x2952007c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2673308", + "name": "xf_t5337653b", + "phases": "BS", + "to": "x2673308b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2876797", + "name": "xf_t226193345a", + "phases": "AS", + "to": "x2876797a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3143999", + "name": "xf_t226193696a", + "phases": "AS", + "to": "x3143999a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2785513", + "name": "xf_t5337677a", + "phases": "AS", + "to": "x2785513a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001009", + "name": "xf_t2001009b", + "phases": "BS", + "to": "x2001009b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2992657", + "name": "xf_t21475841a", + "phases": "AS", + "to": "x2992657a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3029055", + "name": "xf_t5260607b", + "phases": "BS", + "to": "x3029055b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3123509", + "name": "xf_t28129923c", + "phases": "CS", + "to": "x3123509c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3251806", + "name": "xf_t5355602b", + "phases": "BS", + "to": "x3251806b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2897767", + "name": "xf_t5338960c", + "phases": "CS", + "to": "x2897767c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2748144", + "name": "xf_t5338984a", + "phases": "AS", + "to": "x2748144a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3122814", + "name": "xf_t5338899c", + "phases": "CS", + "to": "x3122814c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001202", + "name": "xf_t2001202c", + "phases": "CS", + "to": "x2001202c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254238", + "name": "xf_t5293487b", + "phases": "BS", + "to": "x3254238b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3195751", + "name": "xf_t5293681a", + "phases": "AS", + "to": "x3195751a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001311", + "name": "xf_t2001311a", + "phases": "AS", + "to": "x2001311a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2936212", + "name": "xf_t5356815a", + "phases": "AS", + "to": "x2936212a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2841645", + "name": "xf_t5321893c", + "phases": "CS", + "to": "x2841645c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2673307", + "name": "xf_t5337632c", + "phases": "CS", + "to": "x2673307c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3048888", + "name": "xf_t5251856c", + "phases": "CS", + "to": "x3048888c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001006", + "name": "xf_t2001006b", + "phases": "BS", + "to": "x2001006b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2952013", + "name": "xf_t5355843a", + "phases": "AS", + "to": "x2952013a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3251808", + "name": "xf_t226029836a", + "phases": "AS", + "to": "x3251808a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3254231", + "name": "xf_t5338988a", + "phases": "AS", + "to": "x3254231a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2673326", + "name": "xf_t5355601b", + "phases": "BS", + "to": "x2673326b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2673303", + "name": "xf_t5338963c", + "phases": "CS", + "to": "x2673303c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2879065", + "name": "xf_t5247126b", + "phases": "BS", + "to": "x2879065b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2897793", + "name": "xf_t5338987a", + "phases": "AS", + "to": "x2897793a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2879067", + "name": "xf_t21380616a", + "phases": "AS", + "to": "x2879067a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3141398", + "name": "xf_t21386976a", + "phases": "AS", + "to": "x3141398a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001005", + "name": "xf_t2001005b", + "phases": "BS", + "to": "x2001005b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000907", + "name": "xf_t2000907c", + "phases": "CS", + "to": "x2000907c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3086098", + "name": "xf_t21474556a", + "phases": "AS", + "to": "x3086098a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3729298", + "name": "xf_t2224386617a", + "phases": "AS", + "to": "x3729298a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3066829", + "name": "xf_t5321894c", + "phases": "CS", + "to": "x3066829c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3085400", + "name": "xf_t5302803c", + "phases": "CS", + "to": "x3085400c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2729405", + "name": "xf_t21393412b", + "phases": "BS", + "to": "x2729405b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3029497", + "name": "xf_t5337631c", + "phases": "CS", + "to": "x3029497c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3064514", + "name": "xf_t5251857c", + "phases": "CS", + "to": "x3064514c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3125349", + "name": "xf_t226193698c", + "phases": "CS", + "to": "x3125349c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3141396", + "name": "xf_t5337655c", + "phases": "CS", + "to": "x3141396c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001007", + "name": "xf_t2001007b", + "phases": "BS", + "to": "x2001007b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2876813", + "name": "xf_t5355842a", + "phases": "AS", + "to": "x2876813a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3235254", + "name": "xf_t5441331c", + "phases": "CS", + "to": "x3235254c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l2973791", + "name": "xf_t5260605a", + "phases": "AS", + "to": "x2973791a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2691938", + "name": "xf_t5355600b", + "phases": "BS", + "to": "x2691938b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3176660", + "name": "xf_t226193892b", + "phases": "BS", + "to": "x3176660b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2729413", + "name": "xf_t21397067a", + "phases": "AS", + "to": "x2729413a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2748125", + "name": "xf_t5338962c", + "phases": "CS", + "to": "x2748125c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2935550", + "name": "xf_t5274999c", + "phases": "CS", + "to": "x2935550c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2785538", + "name": "xf_t5338986a", + "phases": "AS", + "to": "x2785538a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2897805", + "name": "xf_t21471907a", + "phases": "AS", + "to": "x2897805a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3141399", + "name": "xf_t5302804c", + "phases": "CS", + "to": "x3141399c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000908", + "name": "xf_t2000908c", + "phases": "CS", + "to": "x2000908c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3030205", + "name": "xf_t21390038c", + "phases": "CS", + "to": "x3030205c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2842390", + "name": "xf_t21325725c", + "phases": "CS", + "to": "x2842390c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3066805", + "name": "xf_t5337674a", + "phases": "AS", + "to": "x3066805a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3010561", + "name": "xf_t5337650a", + "phases": "AS", + "to": "x3010561a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3068944", + "name": "xf_t5260494b", + "phases": "BS", + "to": "x3068944b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3235250", + "name": "xf_t5337698b", + "phases": "BS", + "to": "x3235250b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3649298", + "name": "xf_t2224237384a", + "phases": "AS", + "to": "x3649298a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3225319", + "name": "xf_t225533675b", + "phases": "BS", + "to": "x3225319b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3097861", + "name": "xf_t225533215c", + "phases": "CS", + "to": "x3097861c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3122812", + "name": "xf_t21031694b", + "phases": "BS", + "to": "x3122812b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2820535", + "name": "xf_t5338981b", + "phases": "BS", + "to": "x2820535b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2879078", + "name": "xf_t21399229a", + "phases": "AS", + "to": "x2879078a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2822871", + "name": "xf_t5355840b", + "phases": "BS", + "to": "x2822871b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3178971", + "name": "xf_t5338896a", + "phases": "AS", + "to": "x3178971a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2954350", + "name": "xf_t5302809c", + "phases": "CS", + "to": "x2954350c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000905", + "name": "xf_t2000905c", + "phases": "CS", + "to": "x2000905c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2935547", + "name": "xf_t21383553b", + "phases": "BS", + "to": "x2935547b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3066811", + "name": "xf_t28126875b", + "phases": "BS", + "to": "x3066811b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3160868", + "name": "xf_t0107693b", + "phases": "BS", + "to": "x3160868b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001003", + "name": "xf_t2001003b", + "phases": "BS", + "to": "x2001003b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3197641", + "name": "xf_t5293591a", + "phases": "AS", + "to": "x3197641a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3728037", + "name": "xf_t2224386946a", + "phases": "AS", + "to": "x3728037a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2841618", + "name": "xf_t5337673a", + "phases": "AS", + "to": "x2841618a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2804258", + "name": "xf_t5337697b", + "phases": "BS", + "to": "x2804258b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2804252", + "name": "xf_t5302473a", + "phases": "AS", + "to": "x2804252a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254218", + "name": "xf_t5138720a", + "phases": "AS", + "to": "x3254218a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3122818", + "name": "xf_t28120183c", + "phases": "CS", + "to": "x3122818c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3120504", + "name": "xf_t225897846a", + "phases": "AS", + "to": "x3120504a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l3232301", + "name": "xf_t21458756c", + "phases": "CS", + "to": "x3232301c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2730107", + "name": "xf_t5251855c", + "phases": "CS", + "to": "x2730107c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3197645", + "name": "xf_t21395962a", + "phases": "AS", + "to": "x3197645a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2860492", + "name": "xf_t21395720c", + "phases": "CS", + "to": "x2860492c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3122817", + "name": "xf_t5355779c", + "phases": "CS", + "to": "x3122817c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2763407", + "name": "xf_t225906836c", + "phases": "CS", + "to": "x2763407c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2729411", + "name": "xf_t5138769a", + "phases": "AS", + "to": "x2729411a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2973150", + "name": "xf_t21380528a", + "phases": "AS", + "to": "x2973150a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001004", + "name": "xf_t2001004b", + "phases": "BS", + "to": "x2001004b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000906", + "name": "xf_t2000906c", + "phases": "CS", + "to": "x2000906c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2933120", + "name": "xf_t226192890c", + "phases": "CS", + "to": "x2933120c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2973161", + "name": "xf_t5293592a", + "phases": "AS", + "to": "x2973161a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2692664", + "name": "xf_t5351021c", + "phases": "CS", + "to": "x2692664c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l2862616", + "name": "xf_t227447984c", + "phases": "CS", + "to": "x2862616c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104133", + "name": "xf_t5293483a", + "phases": "AS", + "to": "x3104133a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2991939", + "name": "xf_t5337652b", + "phases": "BS", + "to": "x2991939b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3235244", + "name": "xf_t5337676a", + "phases": "AS", + "to": "x3235244a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2673314", + "name": "xf_t5355778c", + "phases": "CS", + "to": "x2673314c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2785546", + "name": "xf_t21399752a", + "phases": "AS", + "to": "x2785546a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5", + "from": "l2691965", + "name": "xf_t5338983b", + "phases": "BS", + "to": "x2691965b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2973155", + "name": "xf_t5338898a", + "phases": "AS", + "to": "x2973155a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000903", + "name": "xf_t2000903c", + "phases": "CS", + "to": "x2000903c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2805031", + "name": "xf_t5260491c", + "phases": "CS", + "to": "x2805031c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3104118", + "name": "xf_t5321890c", + "phases": "CS", + "to": "x3104118c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3235266", + "name": "xf_t5302807c", + "phases": "CS", + "to": "x3235266c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000709", + "name": "xf_t2000709b", + "phases": "BS", + "to": "x2000709b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3727708", + "name": "xf_t2224386815a", + "phases": "AS", + "to": "x3727708a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3027133", + "name": "xf_t226101449a", + "phases": "AS", + "to": "x3027133a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2748158", + "name": "xf_t5293480a", + "phases": "AS", + "to": "x2748158a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l2763811", + "name": "xf_t21459629c", + "phases": "CS", + "to": "x2763811c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2954349", + "name": "xf_t5337699b", + "phases": "BS", + "to": "x2954349b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2785514", + "name": "xf_t5337675a", + "phases": "AS", + "to": "x2785514a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3085402", + "name": "xf_t5302471a", + "phases": "AS", + "to": "x3085402a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3085398", + "name": "xf_t5355777b", + "phases": "BS", + "to": "x3085398b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3197636", + "name": "xf_t28148580b", + "phases": "BS", + "to": "x3197636b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2691942", + "name": "xf_t5247105b", + "phases": "BS", + "to": "x2691942b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2785534", + "name": "xf_t5338982b", + "phases": "BS", + "to": "x2785534b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3177881", + "name": "xf_t227896008c", + "phases": "CS", + "to": "x3177881c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3120503", + "name": "xf_t225869139a", + "phases": "AS", + "to": "x3120503a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2841626", + "name": "xf_t5302808c", + "phases": "CS", + "to": "x2841626c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2000904", + "name": "xf_t2000904c", + "phases": "CS", + "to": "x2000904c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2973154", + "name": "xf_t5338897a", + "phases": "AS", + "to": "x2973154a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2911069", + "name": "xf_t225571871b", + "phases": "BS", + "to": "x2911069b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3141388", + "name": "xf_t5138416c", + "phases": "CS", + "to": "x3141388c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2748126", + "name": "xf_t5321891c", + "phases": "CS", + "to": "x2748126c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001002", + "name": "xf_t2001002b", + "phases": "BS", + "to": "x2001002b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2673313", + "name": "xf_t5321853b", + "phases": "BS", + "to": "x2673313b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3177894", + "name": "xf_t227903012a", + "phases": "AS", + "to": "x3177894a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2917330", + "name": "xf_t5260474a", + "phases": "AS", + "to": "x2917330a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104125", + "name": "xf_t5138264b", + "phases": "BS", + "to": "x3104125b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3101787", + "name": "xf_t5321877a", + "phases": "AS", + "to": "x3101787a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3216351", + "name": "xf_t21398815a", + "phases": "AS", + "to": "x3216351a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3649297", + "name": "xf_t2224237380a", + "phases": "AS", + "to": "x3649297a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2841641", + "name": "xf_t21380156b", + "phases": "BS", + "to": "x2841641b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3029503", + "name": "xf_t5138373c", + "phases": "CS", + "to": "x3029503c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2766721", + "name": "xf_t5247059a", + "phases": "AS", + "to": "x2766721a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l2951995", + "name": "xf_t226192801c", + "phases": "CS", + "to": "x2951995c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3104144", + "name": "xf_t5339020a", + "phases": "AS", + "to": "x3104144a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3197625", + "name": "xf_t5339044c", + "phases": "CS", + "to": "x3197625c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2935554", + "name": "xf_t5338921a", + "phases": "AS", + "to": "x2935554a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3216339", + "name": "xf_t5391741b", + "phases": "BS", + "to": "x3216339b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3649306", + "name": "xf_t2224238167a", + "phases": "AS", + "to": "x3649306a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2879075", + "name": "xf_t5337724a", + "phases": "AS", + "to": "x2879075a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3085389", + "name": "xf_t5391765b", + "phases": "BS", + "to": "x3085389b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2970258", + "name": "xf_t21459640c", + "phases": "CS", + "to": "x2970258c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2916618", + "name": "xf_t5323283b", + "phases": "BS", + "to": "x2916618b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2748124", + "name": "xf_t5323392b", + "phases": "BS", + "to": "x2748124b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2804257", + "name": "xf_t5321854b", + "phases": "BS", + "to": "x2804257b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3101788", + "name": "xf_t5321878a", + "phases": "AS", + "to": "x3101788a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2861222", + "name": "xf_t5260473a", + "phases": "AS", + "to": "x2861222a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2973157", + "name": "xf_t5337722a", + "phases": "AS", + "to": "x2973157a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2748781", + "name": "xf_t21382813a", + "phases": "AS", + "to": "x2748781a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3104129", + "name": "xf_t5338969a", + "phases": "AS", + "to": "x3104129a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2954353", + "name": "xf_t5338945a", + "phases": "AS", + "to": "x2954353a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3104126", + "name": "xf_t5138372c", + "phases": "CS", + "to": "x3104126c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3157710", + "name": "xf_t226193361b", + "phases": "BS", + "to": "x3157710b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2897807", + "name": "xf_t21386771b", + "phases": "BS", + "to": "x2897807b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2673315", + "name": "xf_t5247058a", + "phases": "AS", + "to": "x2673315a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2804277", + "name": "xf_t5339043c", + "phases": "CS", + "to": "x2804277c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2935557", + "name": "xf_t21397005a", + "phases": "AS", + "to": "x2935557a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3197631", + "name": "xf_t5338920a", + "phases": "AS", + "to": "x3197631a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3197640", + "name": "xf_t5338944c", + "phases": "CS", + "to": "x3197640c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2673311", + "name": "xf_t21397029a", + "phases": "AS", + "to": "x2673311a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2935568", + "name": "xf_t28119958b", + "phases": "BS", + "to": "x2935568b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2710513", + "name": "xf_t5325245b", + "phases": "BS", + "to": "x2710513b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3178978", + "name": "xf_t5337723a", + "phases": "AS", + "to": "x3178978a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3048201", + "name": "xf_t5391742b", + "phases": "BS", + "to": "x3048201b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3727711", + "name": "xf_t2224386874a", + "phases": "AS", + "to": "x3727711a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2952003", + "name": "xf_t5337614b", + "phases": "BS", + "to": "x2952003b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254870", + "name": "xf_t5260581c", + "phases": "CS", + "to": "x3254870c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2860486", + "name": "xf_t28127390c", + "phases": "CS", + "to": "x2860486c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3159037", + "name": "xf_t5323391b", + "phases": "BS", + "to": "x3159037b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2897791", + "name": "xf_t5323282b", + "phases": "BS", + "to": "x2897791b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3235251", + "name": "xf_t21387206c", + "phases": "CS", + "to": "x3235251c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001208", + "name": "xf_t2001208c", + "phases": "CS", + "to": "x2001208c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3046854", + "name": "xf_t227732939b", + "phases": "BS", + "to": "x3046854b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2879767", + "name": "xf_t5260496b", + "phases": "BS", + "to": "x2879767b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2860485", + "name": "xf_t5321855b", + "phases": "BS", + "to": "x2860485b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2879071", + "name": "xf_t5337701b", + "phases": "BS", + "to": "x2879071b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2820531", + "name": "xf_t226192936b", + "phases": "BS", + "to": "x2820531b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2991908", + "name": "xf_t5338900a", + "phases": "AS", + "to": "x2991908a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3104123", + "name": "xf_t5338924c", + "phases": "CS", + "to": "x3104123c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2804957", + "name": "xf_t5356790c", + "phases": "CS", + "to": "x2804957c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2726983", + "name": "xf_t226109079a", + "phases": "AS", + "to": "x2726983a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3029502", + "name": "xf_t5138262a", + "phases": "AS", + "to": "x3029502a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2879073", + "name": "xf_t5138371c", + "phases": "CS", + "to": "x2879073c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2804269", + "name": "xf_t5323285b", + "phases": "BS", + "to": "x2804269b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2710504", + "name": "xf_t5323394b", + "phases": "BS", + "to": "x2710504b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3104128", + "name": "xf_t5247057a", + "phases": "AS", + "to": "x3104128a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2925506", + "name": "xf_t225533703c", + "phases": "CS", + "to": "x2925506c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2991909", + "name": "xf_t5355773a", + "phases": "AS", + "to": "x2991909a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3178972", + "name": "xf_t5338923c", + "phases": "CS", + "to": "x3178972c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2785511", + "name": "xf_t5339046a", + "phases": "AS", + "to": "x2785511a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3141390", + "name": "xf_t5391743b", + "phases": "BS", + "to": "x3141390b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3029504", + "name": "xf_t5337702b", + "phases": "BS", + "to": "x3029504b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2785530", + "name": "xf_t5391985a", + "phases": "AS", + "to": "x2785530a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3045895", + "name": "xf_t5351020c", + "phases": "CS", + "to": "x3045895c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2991922", + "name": "xf_t5302734a", + "phases": "AS", + "to": "x2991922a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3160106", + "name": "xf_t5310570a", + "phases": "AS", + "to": "x3160106a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3085397", + "name": "xf_t5323261b", + "phases": "BS", + "to": "x3085397b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3649305", + "name": "xf_t2224237718a", + "phases": "AS", + "to": "x3649305a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001209", + "name": "xf_t2001209c", + "phases": "CS", + "to": "x2001209c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2767343", + "name": "xf_t5356791c", + "phases": "CS", + "to": "x2767343c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2767407", + "name": "xf_t5260495b", + "phases": "BS", + "to": "x2767407b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2860506", + "name": "xf_t5321856b", + "phases": "BS", + "to": "x2860506b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2766722", + "name": "xf_t5337700b", + "phases": "BS", + "to": "x2766722b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2766725", + "name": "xf_t21399220c", + "phases": "CS", + "to": "x2766725c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3160109", + "name": "xf_t5338947b", + "phases": "BS", + "to": "x3160109b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2859403", + "name": "xf_t228001810a", + "phases": "AS", + "to": "x2859403a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3160113", + "name": "xf_t5323284b", + "phases": "BS", + "to": "x3160113b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2991912", + "name": "xf_t5247056a", + "phases": "AS", + "to": "x2991912a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2822866", + "name": "xf_t5338922b", + "phases": "BS", + "to": "x2822866b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3197652", + "name": "xf_t5339021a", + "phases": "AS", + "to": "x3197652a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2861197", + "name": "xf_t21474711c", + "phases": "CS", + "to": "x2861197c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3008232", + "name": "xf_t226192492b", + "phases": "BS", + "to": "x3008232b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2710537", + "name": "xf_t5391744b", + "phases": "BS", + "to": "x2710537b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2766723", + "name": "xf_t5391986a", + "phases": "AS", + "to": "x2766723a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2879753", + "name": "xf_t21249674b", + "phases": "BS", + "to": "x2879753b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2991923", + "name": "xf_t5302735a", + "phases": "AS", + "to": "x2991923a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3085391", + "name": "xf_t21236413b", + "phases": "BS", + "to": "x3085391b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001206", + "name": "xf_t2001206c", + "phases": "CS", + "to": "x2001206c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001315", + "name": "xf_t2001315a", + "phases": "AS", + "to": "x2001315a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2897768", + "name": "xf_t5337634c", + "phases": "CS", + "to": "x2897768c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3254217", + "name": "xf_t21399112c", + "phases": "CS", + "to": "x3254217c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3048208", + "name": "xf_t5138260a", + "phases": "AS", + "to": "x3048208a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3122847", + "name": "xf_t21483138a", + "phases": "AS", + "to": "x3122847a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2991914", + "name": "xf_t5338941c", + "phases": "CS", + "to": "x2991914c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3010568", + "name": "xf_t5338965a", + "phases": "AS", + "to": "x3010568a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3728040", + "name": "xf_t2224387062a", + "phases": "AS", + "to": "x3728040a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "l3027670", + "name": "xf_t226308719b", + "phases": "BS", + "to": "x3027670b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2729407", + "name": "xf_t5247100b", + "phases": "BS", + "to": "x2729407b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2764399", + "name": "xf_t226192493b", + "phases": "BS", + "to": "x2764399b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3066810", + "name": "xf_t5337659c", + "phases": "CS", + "to": "x3066810c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3251799", + "name": "xf_t5260562a", + "phases": "AS", + "to": "x3251799a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2764412", + "name": "xf_t5321874a", + "phases": "AS", + "to": "x2764412a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2916625", + "name": "xf_t21467859b", + "phases": "BS", + "to": "x2916625b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3778577", + "name": "xf_t2224490448c", + "phases": "CS", + "to": "x3778577c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3048887", + "name": "xf_t5260586b", + "phases": "BS", + "to": "x3048887b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2729406", + "name": "xf_t5337633c", + "phases": "CS", + "to": "x2729406c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001207", + "name": "xf_t2001207c", + "phases": "CS", + "to": "x2001207c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3179608", + "name": "xf_t5356793c", + "phases": "CS", + "to": "x3179608c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct5", + "from": "l3254230", + "name": "xf_t5338989a", + "phases": "AS", + "to": "x3254230a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2913406", + "name": "xf_t225940756b", + "phases": "BS", + "to": "x2913406b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2766730", + "name": "xf_t5355359b", + "phases": "BS", + "to": "x2766730b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3552667", + "name": "xf_t2224061203c", + "phases": "CS", + "to": "x3552667c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2691952", + "name": "xf_t5391980a", + "phases": "AS", + "to": "x2691952a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3104117", + "name": "xf_t5338964c", + "phases": "CS", + "to": "x3104117c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct75", + "from": "m2001400", + "name": "xf_t2001400c", + "phases": "CS", + "to": "x2001400c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3263051", + "name": "xf_t22112371533c", + "phases": "CS", + "to": "x3263051c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2729434", + "name": "xf_t5321851b", + "phases": "BS", + "to": "x2729434b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2936271", + "name": "xf_t5260476a", + "phases": "AS", + "to": "x2936271a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001313", + "name": "xf_t2001313a", + "phases": "AS", + "to": "x2001313a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3104850", + "name": "xf_t5260561c", + "phases": "CS", + "to": "x3104850c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2841619", + "name": "xf_t5337636c", + "phases": "CS", + "to": "x2841619c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3086002", + "name": "xf_t5356794c", + "phases": "CS", + "to": "x3086002c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3120502", + "name": "xf_t5294812a", + "phases": "AS", + "to": "x3120502a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2896685", + "name": "xf_t227187012a", + "phases": "AS", + "to": "x2896685a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2896685", + "name": "xf_t227187012c", + "phases": "CS", + "to": "x2896685c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3178979", + "name": "xf_t5338968c", + "phases": "CS", + "to": "x3178979c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2896685", + "name": "xf_t227187012b", + "phases": "BS", + "to": "x2896685b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2673322", + "name": "xf_t5355358b", + "phases": "BS", + "to": "x2673322b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3141394", + "name": "xf_t5339042b", + "phases": "BS", + "to": "x3141394b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2673318", + "name": "xf_t5338967c", + "phases": "CS", + "to": "x2673318c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct50", + "from": "l3233412", + "name": "xf_t226308717a", + "phases": "AS", + "to": "x3233412a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2879081", + "name": "xf_t5391981a", + "phases": "AS", + "to": "x2879081a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2766741", + "name": "xf_t21386754a", + "phases": "AS", + "to": "x2766741a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3197629", + "name": "xf_t5247122b", + "phases": "BS", + "to": "x3197629b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2729410", + "name": "xf_t5338943c", + "phases": "CS", + "to": "x2729410c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001203", + "name": "xf_t2001203c", + "phases": "CS", + "to": "x2001203c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001312", + "name": "xf_t2001312a", + "phases": "AS", + "to": "x2001312a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l2879794", + "name": "xf_t5260475a", + "phases": "AS", + "to": "x2879794a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2842330", + "name": "xf_t5356795c", + "phases": "CS", + "to": "x2842330c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2916608", + "name": "xf_t5321852c", + "phases": "CS", + "to": "x2916608c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l2822863", + "name": "xf_t5337635c", + "phases": "CS", + "to": "x2822863c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l2841648", + "name": "xf_t5337720a", + "phases": "AS", + "to": "x2841648a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001205", + "name": "xf_t2001205c", + "phases": "CS", + "to": "x2001205c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001314", + "name": "xf_t2001314a", + "phases": "AS", + "to": "x2001314a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3027132", + "name": "xf_t5321876a", + "phases": "AS", + "to": "x3027132a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3065696", + "name": "xf_t227921416a", + "phases": "AS", + "to": "x3065696a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2991921", + "name": "xf_t28129399c", + "phases": "CS", + "to": "x2991921c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3216338", + "name": "xf_t5355599b", + "phases": "BS", + "to": "x3216338b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2804245", + "name": "xf_t5355598b", + "phases": "BS", + "to": "x2804245b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct37", + "from": "l3649304", + "name": "xf_t2224237713a", + "phases": "AS", + "to": "x3649304a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2822869", + "name": "xf_t5338942a", + "phases": "AS", + "to": "x2822869a" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l3029505", + "name": "xf_t5338966c", + "phases": "CS", + "to": "x3029505c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3029498", + "name": "xf_t5247036c", + "phases": "CS", + "to": "x3029498c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct15", + "from": "l3253995", + "name": "xf_t21396815c", + "phases": "CS", + "to": "x3253995c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct10", + "from": "l3048200", + "name": "xf_t5391740b", + "phases": "BS", + "to": "x3048200b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "m2001204", + "name": "xf_t2001204c", + "phases": "CS", + "to": "x2001204c" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "configuration": "xcon_ct25", + "from": "l2710512", + "name": "xf_t5323280b", + "phases": "BS", + "to": "x2710512b" + }, + "children": [], + "name": "transformer" + }, + { + "attributes": { + "name": "d5653469-1_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2952007c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_251859c0", + "nominal_voltage": "120.09", + "parent": "sx2952007c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3029510b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2691939b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2727795c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2879773a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254217c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254218a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026920", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000913c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000913c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000913c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6459.77", + "base_power_2": "ieeezipload.value*6459.77", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000913c0", + "nominal_voltage": "120.09", + "parent": "sx2000913c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3122816b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026925", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026926", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000708b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026927", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001013b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001013b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001013b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10091.95", + "base_power_2": "ieeezipload.value*10091.95", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001013b0", + "nominal_voltage": "120.09", + "parent": "sx2001013b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2804957c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356790c0", + "nominal_voltage": "120.09", + "parent": "sx2804957c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2711234b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2860490a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3181545c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3125349c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226193698c0", + "nominal_voltage": "120.09", + "parent": "sx3125349c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d6023352-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691938b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2935560c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048966", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048968", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122815b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254219c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048962", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048963", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000914c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000914c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000914c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6459.77", + "base_power_2": "ieeezipload.value*6459.77", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000914c0", + "nominal_voltage": "120.09", + "parent": "sx2000914c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3048965", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026915", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841641b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973178b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026916", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000707b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3235275b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001012b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001012b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001012b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7902.30", + "base_power_2": "ieeezipload.value*7902.30", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001012b0", + "nominal_voltage": "120.09", + "parent": "sx2001012b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2731712b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21426205b0", + "nominal_voltage": "120.09", + "parent": "sx2731712b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3045895c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3045895c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3045895c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_351020c0", + "nominal_voltage": "120.09", + "parent": "sx3045895c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2801896b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254215c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026940", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3101782a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026941", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000911c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000911c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000911c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6459.77", + "base_power_2": "ieeezipload.value*6459.77", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000911c0", + "nominal_voltage": "120.09", + "parent": "sx2000911c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x1108406a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026942", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122818c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2897779c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2841000", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026947", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2821010a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_294788a0", + "nominal_voltage": "120.09", + "parent": "sx2821010a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026948", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2842330", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026949", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000706b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x1108406b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160868b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026946", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001011b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001011b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001011b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4287.36", + "base_power_2": "ieeezipload.value*4287.36", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001011b0", + "nominal_voltage": "120.09", + "parent": "sx2001011b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2955055", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3179699b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21393454b0", + "nominal_voltage": "120.09", + "parent": "sx3179699b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2801895b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254216a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3027116a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2842329", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x1108407b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026931", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000912c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000912c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000912c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6459.77", + "base_power_2": "ieeezipload.value*6459.77", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000912c0", + "nominal_voltage": "120.09", + "parent": "sx2000912c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3122817c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "hvmv69sub3_hsb", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026939", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000705b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3235273b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d6049822-1_int", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2955047", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001010b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001010b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001010b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*9706.90", + "base_power_2": "ieeezipload.value*9706.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001010b0", + "nominal_voltage": "120.09", + "parent": "sx2001010b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026935", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2804956a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356811a0", + "nominal_voltage": "120.09", + "parent": "sx2804956a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2820528c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2860493a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3010570a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302392a0", + "nominal_voltage": "120.09", + "parent": "sx3010570a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2955081", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048937", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2952003b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337614b0", + "nominal_voltage": "120.09", + "parent": "sx2952003b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2804261c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047821", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897777c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3159037", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047824", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047825", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047826", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000704b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3140238a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227905262a0", + "nominal_voltage": "120.09", + "parent": "sx3140238a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047828", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2842390", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2955078", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2955076", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2803194c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2955077", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2955074", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p859694", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p1197121", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "221-242079", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3045895", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104796", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000910c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000910c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000910c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6459.77", + "base_power_2": "ieeezipload.value*6459.77", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000910c0", + "nominal_voltage": "120.09", + "parent": "sx2000910c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2897778a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047831", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2823592a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3122819c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p850401", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047834", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047835", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p850400", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047836", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047837", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2804262a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000703b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160865a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2860491b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2916610b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293660b0", + "nominal_voltage": "120.09", + "parent": "sx2916610b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047809", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3252336b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3252336b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3252336b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226308723b0", + "nominal_voltage": "120.09", + "parent": "sx3252336b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2860491a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2842383", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026907", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2842384", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3195310a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2992556c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2861157c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_251867c0", + "nominal_voltage": "120.09", + "parent": "sx2861157c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3048230c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5712486-1_int", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3160864b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026905", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897775c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026906", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2858175a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2842379", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026902", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000702b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2860492c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047819", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048231b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2691936a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2861158c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_251858c0", + "nominal_voltage": "120.09", + "parent": "sx2861158c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2804260b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048946", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "221-306687", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2917255c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2897776c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047812", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "221-306686", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047813", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3160863c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2801895", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166394", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166393", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2673316a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1166396", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2801896", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166395", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166398", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2767414", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160872", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160871", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166399", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691967b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338976b0", + "nominal_voltage": "120.09", + "parent": "sx2691967b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2786266a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2710516", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710517", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710514", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710515", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235275", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710518", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710519", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235273", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3101788a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "e183493", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2973791a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2710512", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160878", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710513", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710510", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710511", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2673315a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1166387", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691966b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10025.77", + "base_power_2": "ieeezipload.value*10025.77", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_339010b0", + "nominal_voltage": "120.09", + "parent": "sx2691966b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1166386", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2767409", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2767408", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2767407", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710525", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3195318b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3101787a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3214549a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*9144.33", + "base_power_2": "ieeezipload.value*9144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226308731a0", + "nominal_voltage": "120.09", + "parent": "sx3214549a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2710520", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973791", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2685805", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2936276b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2842390c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21325725c0", + "nominal_voltage": "120.09", + "parent": "sx2842390c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2685809", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710521", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166391", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3178980c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302510c0", + "nominal_voltage": "120.09", + "parent": "sx3178980c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673314c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104796c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260569c0", + "nominal_voltage": "120.09", + "parent": "sx3104796c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160896c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260573c0", + "nominal_voltage": "120.09", + "parent": "sx3160896c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2690941b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323387b0", + "nominal_voltage": "120.09", + "parent": "sx2690941b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108489", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710536", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108499", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710537", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108493", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3195315a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108492", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710530", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160896", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108490", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3178981b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3178981b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3178981b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21396331b0", + "nominal_voltage": "120.09", + "parent": "sx3178981b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2936275b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2710532", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2730149", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710519a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2673313b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3195751a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3207907c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3207907b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5535139-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3101789a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2710542", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2730163c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260481c0", + "nominal_voltage": "120.09", + "parent": "sx2730163c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3178982a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_294843a0", + "nominal_voltage": "120.09", + "parent": "sx3178982a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d5623395-1_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710546", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710543", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710544", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710518a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p903490", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166356", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3122848c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21397121c0", + "nominal_voltage": "120.09", + "parent": "sx3122848c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1166355", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166358", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2954355a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293672a0", + "nominal_voltage": "120.09", + "parent": "sx2954355a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3207907a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3068944b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3081380a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879061b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337692b0", + "nominal_voltage": "120.09", + "parent": "sx2879061b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3027157", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3027156", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x1108404a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x1108404c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x1108404b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2673319c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2710517a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3122847a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21483138a0", + "nominal_voltage": "120.09", + "parent": "sx3122847a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2916619b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_339006b0", + "nominal_voltage": "120.09", + "parent": "sx2916619b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3085389b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2954354a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302675a0", + "nominal_voltage": "120.09", + "parent": "sx2954354a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2766729a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293523a0", + "nominal_voltage": "120.09", + "parent": "sx2766729a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x1108405b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x1108405a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x1108405c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2673318c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1166374", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2954357a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355936a0", + "nominal_voltage": "120.09", + "parent": "sx2954357a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1166373", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710516a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1166376", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166375", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691965b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1005.15", + "base_power_2": "ieeezipload.value*1005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338983b0", + "nominal_voltage": "120.09", + "parent": "sx2691965b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1166377", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916618b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323283b0", + "nominal_voltage": "120.09", + "parent": "sx2916618b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "e183473", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000915c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000915c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000915c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6459.77", + "base_power_2": "ieeezipload.value*6459.77", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000915c0", + "nominal_voltage": "120.09", + "parent": "sx2000915c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "e183472", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2798067b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2936279c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001015b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001015b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001015b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*13879.31", + "base_power_2": "ieeezipload.value*13879.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001015b0", + "nominal_voltage": "120.09", + "parent": "sx2001015b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2730107", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x_293471c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2730108", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x_293471a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2730106", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x_293471b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1166361", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2673317a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2767414c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1166362", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3122849b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293423b0", + "nominal_voltage": "120.09", + "parent": "sx3122849b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1166364", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804956", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160861", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710515c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2804957", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166366", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166369", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916617b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_339007b0", + "nominal_voltage": "120.09", + "parent": "sx2916617b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1166368", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2745799c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5958866-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710505", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710504", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3120376a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2710509", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2710508", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160863", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216123", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160862", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x1108403c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3160865", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001014b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001014b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001014b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*16235.63", + "base_power_2": "ieeezipload.value*16235.63", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001014b0", + "nominal_voltage": "120.09", + "parent": "sx2001014b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3160864", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3253995", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166370", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x1108403b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3160868", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x1108403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p829796", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p829797", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879054a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_247061a0", + "nominal_voltage": "120.09", + "parent": "sx2879054a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3632979a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p829798", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766726b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302373b0", + "nominal_voltage": "120.09", + "parent": "sx2766726b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2954351c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302805c0", + "nominal_voltage": "120.09", + "parent": "sx2954351c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x0247160b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2954350c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2954350c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2954350c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302809c0", + "nominal_voltage": "120.09", + "parent": "sx2954350c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2929261a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_225533337a0", + "nominal_voltage": "120.09", + "parent": "sx2929261a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3215385a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21384099a0", + "nominal_voltage": "120.09", + "parent": "sx3215385a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3215385c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21384099c0", + "nominal_voltage": "120.09", + "parent": "sx3215385c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3215385b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10025.77", + "base_power_2": "ieeezipload.value*10025.77", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21384099b0", + "nominal_voltage": "120.09", + "parent": "sx3215385b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "e206614", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3178988b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_339001b0", + "nominal_voltage": "120.09", + "parent": "sx3178988b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2710525c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d6017295-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766725c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21399220c0", + "nominal_voltage": "120.09", + "parent": "sx2766725c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2857591a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3101194c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3101194c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3101194c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*15731.96", + "base_power_2": "ieeezipload.value*15731.96", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21459660c0", + "nominal_voltage": "120.09", + "parent": "sx3101194c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2802481a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5710794-3_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2708293", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3216123a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3066829", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066826", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139551", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139550", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139552", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108527", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108526", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108529", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x0247162b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3085388b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2954353a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338945a0", + "nominal_voltage": "120.09", + "parent": "sx2954353a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069199", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108524", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2876797a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108532", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104145b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048199", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139544", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066821", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139543", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139546", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139545", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048196", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139547", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1186052", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139549", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3172805", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d6413567-3_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766727b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302367b0", + "nominal_voltage": "120.09", + "parent": "sx2766727b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2954352c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2127090c0", + "nominal_voltage": "120.09", + "parent": "sx2954352c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069187", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108534", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069189", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108535", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2876798b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108540", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069192", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2786204c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_223662c0", + "nominal_voltage": "120.09", + "parent": "sx2786204c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069191", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3157167a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3066830", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3029495b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391736b0", + "nominal_voltage": "120.09", + "parent": "sx3029495b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3066808", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066807", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066806", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066805", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3097861c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3066804", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2673312a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "198-5320", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066801", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710546b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337704b0", + "nominal_voltage": "120.09", + "parent": "sx2710546b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "hvmv_sub1_48332", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069175", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766722b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337700b0", + "nominal_voltage": "120.09", + "parent": "sx2766722b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3066809", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991911c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138258c0", + "nominal_voltage": "120.09", + "parent": "sx2991911c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3177665", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2820531b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069184", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2730163", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069181", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3178997", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125929", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2952007", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3312692a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2223661373a0", + "nominal_voltage": "120.09", + "parent": "sx3312692a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3159037b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323391b0", + "nominal_voltage": "120.09", + "parent": "sx3159037b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3160123a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2952003", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066819", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066818", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125911", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066817", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066816", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125913", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066815", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125914", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001315a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001315a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001315a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*11431.03", + "base_power_2": "ieeezipload.value*11431.03", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001315a0", + "nominal_voltage": "120.09", + "parent": "sx2001315a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3066814", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066813", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125916", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2673311a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3066812", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125917", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069169", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710521a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3315860", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766721a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2766721a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2766721a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_247059a0", + "nominal_voltage": "120.09", + "parent": "sx2766721a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2991910b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337694b0", + "nominal_voltage": "120.09", + "parent": "sx2991910b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069174", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001500", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104144a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3066811", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3251854a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5799561-2_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3066810", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125919", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125902", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125903", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125904", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001314a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001314a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001314a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*12270.12", + "base_power_2": "ieeezipload.value*12270.12", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001314a0", + "nominal_voltage": "120.09", + "parent": "sx2001314a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254915b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1005.15", + "base_power_2": "ieeezipload.value*1005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260520b0", + "nominal_voltage": "120.09", + "parent": "sx3254915b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1125905", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2673310a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2767409b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2710520a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710544a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710544a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2710544a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21482279a0", + "nominal_voltage": "120.09", + "parent": "sx2710544a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069154", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3214055c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226192175c0", + "nominal_voltage": "120.09", + "parent": "sx3214055c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069156", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069155", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766724c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_294786c0", + "nominal_voltage": "120.09", + "parent": "sx2766724c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3142078b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2730187", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "f739845", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879055c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138465c0", + "nominal_voltage": "120.09", + "parent": "sx2879055c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "f739844", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2936271a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "f739842", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "f739841", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2764399", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166400", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069147", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1166402", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766723a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391986a0", + "nominal_voltage": "120.09", + "parent": "sx2766723a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069149", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069148", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3232902a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226194826a0", + "nominal_voltage": "120.09", + "parent": "sx3232902a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1166407", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785543b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3142079b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2936270a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2726983a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226109079a0", + "nominal_voltage": "120.09", + "parent": "sx2726983a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2841639a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001313a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001313a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001313a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*12856.32", + "base_power_2": "ieeezipload.value*12856.32", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001313a0", + "nominal_voltage": "120.09", + "parent": "sx2001313a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2763072", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2952014", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3029055b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260607b0", + "nominal_voltage": "120.09", + "parent": "sx3029055b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2952013", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916620b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338977b0", + "nominal_voltage": "120.09", + "parent": "sx2916620b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2916620a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338977a0", + "nominal_voltage": "120.09", + "parent": "sx2916620a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197660b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2860485b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069136", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991915b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_392036b0", + "nominal_voltage": "120.09", + "parent": "sx2991915b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2803199b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069135", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2803199c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026890", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2803199a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3029518b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069131", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069133", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841638c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2935555a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026886", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026880", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3141388c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138416c0", + "nominal_voltage": "120.09", + "parent": "sx3141388c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3233413b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026883", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2820535b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160872c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3254869b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260575b0", + "nominal_voltage": "120.09", + "parent": "sx3254869b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2860486c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3141389a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356007a0", + "nominal_voltage": "120.09", + "parent": "sx3141389a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3178969", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991914c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338941c0", + "nominal_voltage": "120.09", + "parent": "sx2991914c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2917330a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260474a0", + "nominal_voltage": "120.09", + "parent": "sx2917330a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2973833b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026874", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2935556b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991640", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069130", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026876", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2823545a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356807a0", + "nominal_voltage": "120.09", + "parent": "sx2823545a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026872", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841637c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026877", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2973171b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160871c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2860483b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d2001301_int", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3178979", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991913a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138571a0", + "nominal_voltage": "120.09", + "parent": "sx2991913a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2935553b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2766720a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_441311a0", + "nominal_voltage": "120.09", + "parent": "sx2766720a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3178974", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2763407c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3178973", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3178972", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3178971", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2820533a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3178978", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3011298c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_207286c0", + "nominal_voltage": "120.09", + "parent": "sx3011298c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3178977", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3178976", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3178975", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841636b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2000200", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785546a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2690868c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2860484b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254220c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2991912a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_247056a0", + "nominal_voltage": "120.09", + "parent": "sx2991912a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026895", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026896", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2935554a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3178982", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026898", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026891", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3178988", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3233412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2841635a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2897784b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3178981", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785547b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3178980", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108508", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991919a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302400a0", + "nominal_voltage": "120.09", + "parent": "sx2991919a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2804269b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108505", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140522", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3141400a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1140521", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108507", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140520", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2860489a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108506", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108501", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140526", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2917333a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260632a0", + "nominal_voltage": "120.09", + "parent": "sx2917333a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108500", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140525", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140524", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140523", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047780", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122812b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1140528", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140527", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841634b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2935559a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047786", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047787", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3141401a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3119793", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026848", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026849", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026844", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897781a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026847", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3029498c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_247036c0", + "nominal_voltage": "120.09", + "parent": "sx3029498c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1139540", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139542", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5895780-3_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139541", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991918b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391749b0", + "nominal_voltage": "120.09", + "parent": "sx2991918b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2726975", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2726974", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2726973", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108514", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122810b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1140519", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026830", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047792", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140518", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3729298a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224386617a0", + "nominal_voltage": "120.09", + "parent": "sx3729298a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3122811a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047793", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140517", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047794", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108520", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140516", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2876796a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2726983", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047795", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047796", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841633a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3011293a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*9144.33", + "base_power_2": "ieeezipload.value*9144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2129466a0", + "nominal_voltage": "120.09", + "parent": "sx3011293a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3011293b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10025.77", + "base_power_2": "ieeezipload.value*10025.77", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2129466b0", + "nominal_voltage": "120.09", + "parent": "sx3011293b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3011293c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3011293c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3011293c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10484.54", + "base_power_2": "ieeezipload.value*10484.54", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2129466c0", + "nominal_voltage": "120.09", + "parent": "sx3011293c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1139537", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3029497c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337631c0", + "nominal_voltage": "120.09", + "parent": "sx3029497c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026834", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139539", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139538", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3086098a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2991917b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391757b0", + "nominal_voltage": "120.09", + "parent": "sx2991917b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2860487c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3141402c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2674027b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "193-51796", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3729297a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224386592a0", + "nominal_voltage": "120.09", + "parent": "sx3729297a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3122814c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3552667c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224061203c0", + "nominal_voltage": "120.09", + "parent": "sx3552667c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2917336c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260513c0", + "nominal_voltage": "120.09", + "parent": "sx2917336c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047763", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3141403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026861", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2935557a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047766", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047767", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047768", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047769", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2823544a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356804a0", + "nominal_voltage": "120.09", + "parent": "sx2823544a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3008248a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321159a0", + "nominal_voltage": "120.09", + "parent": "sx3008248a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2802480b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2841632b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026866", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069der480-1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3139366", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3197661c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2746587", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2860488b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2991916b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337710b0", + "nominal_voltage": "120.09", + "parent": "sx2991916b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m1209-dies1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209-dies1_dgmtr", + "nominal_voltage": "277.13", + "parent": "m1209-dies1", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "m1026851", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3029499a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302678a0", + "nominal_voltage": "120.09", + "parent": "sx3029499a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026852", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026854", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122813a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047773", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p862322", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026859", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047777", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000709b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2841631c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026855", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026857", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026858", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897780b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3251807a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_225673440a0", + "nominal_voltage": "120.09", + "parent": "sx3251807a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3027670b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2822870", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879767", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026808", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160113", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048199b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2972704c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_228445756c0", + "nominal_voltage": "120.09", + "parent": "sx2972704c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2805031c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254205c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2684420", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2859391b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227989724b0", + "nominal_voltage": "120.09", + "parent": "sx2859391b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2822868", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822869", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822866", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879773", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160115", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047744", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841630c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2822867", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160114", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026805", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822864", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160117", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822865", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026807", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822862", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026800", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822863", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822860", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822861", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2804282c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337641c0", + "nominal_voltage": "120.09", + "parent": "sx2804282c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2764412", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916603b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323403b0", + "nominal_voltage": "120.09", + "parent": "sx2916603b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2879753", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3251806b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355602b0", + "nominal_voltage": "120.09", + "parent": "sx3251806b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3027671a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2764411", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879752", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160123", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2801949", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3254206b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3160098a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_339048a0", + "nominal_voltage": "120.09", + "parent": "sx3160098a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104856a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260467a0", + "nominal_voltage": "120.09", + "parent": "sx3104856a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2804270b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254207a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047750", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047751", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000902c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000902c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000902c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6459.77", + "base_power_2": "ieeezipload.value*6459.77", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000902c0", + "nominal_voltage": "120.09", + "parent": "sx2000902c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3122827a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047752", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822877", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047755", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047756", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822873", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822871", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822872", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254873c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_251862c0", + "nominal_voltage": "120.09", + "parent": "sx3254873c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3217052c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260528c0", + "nominal_voltage": "120.09", + "parent": "sx3217052c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3029500a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3082993", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3649298", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3649297", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916602a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_339049a0", + "nominal_voltage": "120.09", + "parent": "sx2916602a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197654a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3649299", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2764403", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104853c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260518c0", + "nominal_voltage": "120.09", + "parent": "sx3104853c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3254203b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3179673c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026820", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3066809c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338958c0", + "nominal_voltage": "120.09", + "parent": "sx3066809c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047720", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047721", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026826", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047722", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254870c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260581c0", + "nominal_voltage": "120.09", + "parent": "sx3254870c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2879794", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047723", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047724", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026829", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047725", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3082992", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026823", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3216988b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026824", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047728", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047729", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3217053c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260529c0", + "nominal_voltage": "120.09", + "parent": "sx3217053c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3082983", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3251808a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226029836a0", + "nominal_voltage": "120.09", + "parent": "sx3251808a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3082988", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3197653b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254204a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3067478a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3067478a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3067478a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260598a0", + "nominal_voltage": "120.09", + "parent": "sx3067478a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026810", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822859", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2748839b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2822857", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2822858", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047732", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047733", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "196-29521", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047737", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p873800", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3082981", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026812", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p873801", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "196-29520", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3179674b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3197625c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_339044c0", + "nominal_voltage": "120.09", + "parent": "sx3197625c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2786274c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3102793b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3150961c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2748124b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323392b0", + "nominal_voltage": "120.09", + "parent": "sx2748124b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2897789b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047702", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047707", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "regxfmr_hvmv11sub3_lsb", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3160878c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3029055", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2955081a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260508a0", + "nominal_voltage": "120.09", + "parent": "sx2955081a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2805036b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3197624b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1005.15", + "base_power_2": "ieeezipload.value*1005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323235b0", + "nominal_voltage": "120.09", + "parent": "sx3197624b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2915534a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227917122a0", + "nominal_voltage": "120.09", + "parent": "sx2915534a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2786273b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5578300-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5867591-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047711", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047713", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000715b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047718", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2801950", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2804283a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2804283a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2804283a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138564a0", + "nominal_voltage": "120.09", + "parent": "sx2804283a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3010580b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21451973b0", + "nominal_voltage": "120.09", + "parent": "sx3010580b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3235946a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3139598b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3102286", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3254208c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3235945c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2933120c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226192890c0", + "nominal_voltage": "120.09", + "parent": "sx2933120c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2000714b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000712b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3552667", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160100", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160102", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2805034a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3160101", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2989564b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323286b0", + "nominal_voltage": "120.09", + "parent": "sx2989564b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104850c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260561c0", + "nominal_voltage": "120.09", + "parent": "sx3104850c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d5863704-2_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089der480-2", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089der480-1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3254209c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3645809c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10484.54", + "base_power_2": "ieeezipload.value*10484.54", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224230615c0", + "nominal_voltage": "120.09", + "parent": "sx3645809c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3160104", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160103", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160106", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160105", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3179678b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3160108", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160107", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "221-311905", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3160109", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000713b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2804272b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1125966", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000711b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1125968", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125969", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001009b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001009b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001009b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*8022.99", + "base_power_2": "ieeezipload.value*8022.99", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001009b0", + "nominal_voltage": "120.09", + "parent": "sx2001009b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2000408a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2806553c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227411655c0", + "nominal_voltage": "120.09", + "parent": "sx2806553c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2000905", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000904", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000903", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125960", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000902", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125961", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000909", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125962", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000908", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000907", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000906", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2767407b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2748128c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337629c0", + "nominal_voltage": "120.09", + "parent": "sx2748128c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2000901", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000900", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000909c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000909c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000909c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6459.77", + "base_power_2": "ieeezipload.value*6459.77", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000909c0", + "nominal_voltage": "120.09", + "parent": "sx2000909c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001312a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001312a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001312a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*8350.57", + "base_power_2": "ieeezipload.value*8350.57", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001312a0", + "nominal_voltage": "120.09", + "parent": "sx2001312a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1125955", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710509c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000710b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1125957", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3010585a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_294810a0", + "nominal_voltage": "120.09", + "parent": "sx3010585a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1125959", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000409a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001008b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001008b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001008b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7304.60", + "base_power_2": "ieeezipload.value*7304.60", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001008b0", + "nominal_voltage": "120.09", + "parent": "sx2001008b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1125952", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2767408c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2748127a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338919a0", + "nominal_voltage": "120.09", + "parent": "sx2748127a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2857591", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3066804a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21380599a0", + "nominal_voltage": "120.09", + "parent": "sx3066804a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001311a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001311a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001311a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*9218.39", + "base_power_2": "ieeezipload.value*9218.39", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001311a0", + "nominal_voltage": "120.09", + "parent": "sx2001311a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2763153", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125943", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125944", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710508b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000406a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2673326b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3232902", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125947", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001007b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001007b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001007b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5379.31", + "base_power_2": "ieeezipload.value*5379.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001007b0", + "nominal_voltage": "120.09", + "parent": "sx2001007b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3118855c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2729206c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2212168866c0", + "nominal_voltage": "120.09", + "parent": "sx2729206c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1125940", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2952013a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355843a0", + "nominal_voltage": "120.09", + "parent": "sx2952013a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3728043a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2748126c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321891c0", + "nominal_voltage": "120.09", + "parent": "sx2748126c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000907c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000907c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000907c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6459.77", + "base_power_2": "ieeezipload.value*6459.77", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000907c0", + "nominal_voltage": "120.09", + "parent": "sx2000907c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001310a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001310a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001310a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10425.29", + "base_power_2": "ieeezipload.value*10425.29", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001310a0", + "nominal_voltage": "120.09", + "parent": "sx2001310a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2990098a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3066801c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138464c0", + "nominal_voltage": "120.09", + "parent": "sx3066801c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2952014a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_294809a0", + "nominal_voltage": "120.09", + "parent": "sx2952014a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1125934", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000407a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2875754c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2822870c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2916609c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138346c0", + "nominal_voltage": "120.09", + "parent": "sx2916609c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729207c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10484.54", + "base_power_2": "ieeezipload.value*10484.54", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2212168874c0", + "nominal_voltage": "120.09", + "parent": "sx2729207c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3728042a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3101782", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2948732b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2748125c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338962c0", + "nominal_voltage": "120.09", + "parent": "sx2748125c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3101789", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5860450-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3101788", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001006b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001006b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001006b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5609.20", + "base_power_2": "ieeezipload.value*5609.20", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001006b0", + "nominal_voltage": "120.09", + "parent": "sx2001006b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000908c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000908c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000908c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6459.77", + "base_power_2": "ieeezipload.value*6459.77", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000908c0", + "nominal_voltage": "120.09", + "parent": "sx2000908c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3101787", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000404a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2814529b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10025.77", + "base_power_2": "ieeezipload.value*10025.77", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2120126b0", + "nominal_voltage": "120.09", + "parent": "sx2814529b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2814529c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2814529c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2814529c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10484.54", + "base_power_2": "ieeezipload.value*10484.54", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2120126c0", + "nominal_voltage": "120.09", + "parent": "sx2814529c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2916608c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321852c0", + "nominal_voltage": "120.09", + "parent": "sx2916608c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3215340a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2814529a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2814529a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2814529a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*9144.33", + "base_power_2": "ieeezipload.value*9144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2120126a0", + "nominal_voltage": "120.09", + "parent": "sx2814529a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2692000", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3728041a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2745806c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226194262c0", + "nominal_voltage": "120.09", + "parent": "sx2745806c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000905c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000905c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000905c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6459.77", + "base_power_2": "ieeezipload.value*6459.77", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000905c0", + "nominal_voltage": "120.09", + "parent": "sx2000905c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3066807c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337624c0", + "nominal_voltage": "120.09", + "parent": "sx3066807c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001005b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001005b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001005b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6362.07", + "base_power_2": "ieeezipload.value*6362.07", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001005b0", + "nominal_voltage": "120.09", + "parent": "sx2001005b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2879073c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138371c0", + "nominal_voltage": "120.09", + "parent": "sx2879073c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1186078", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1186072", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3216368c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000405a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2710505b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3122835b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_339008b0", + "nominal_voltage": "120.09", + "parent": "sx3122835b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1125990", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916607c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321882c0", + "nominal_voltage": "120.09", + "parent": "sx2916607c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2729206", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125994", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729207", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048196b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1125997", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "regxfmr_hvmv69sub1_lsb1", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104830", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3728040a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3066808c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337654c0", + "nominal_voltage": "120.09", + "parent": "sx3066808c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3214071c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226194419c0", + "nominal_voltage": "120.09", + "parent": "sx3214071c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3156034", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000906c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000906c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000906c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6459.77", + "base_power_2": "ieeezipload.value*6459.77", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000906c0", + "nominal_voltage": "120.09", + "parent": "sx2000906c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1186065", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879072b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337695b0", + "nominal_voltage": "120.09", + "parent": "sx2879072b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3232933", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1186067", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001004b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001004b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001004b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5580.46", + "base_power_2": "ieeezipload.value*5580.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001004b0", + "nominal_voltage": "120.09", + "parent": "sx2001004b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2917310b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1186061", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1186064", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3008232b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1186063", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125987", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125988", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125989", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710504b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2916606c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_275007c0", + "nominal_voltage": "120.09", + "parent": "sx2916606c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1125982", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897792a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2897792a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2897792a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338985a0", + "nominal_voltage": "120.09", + "parent": "sx2897792a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000903c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000903c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000903c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7212.64", + "base_power_2": "ieeezipload.value*7212.64", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000903c0", + "nominal_voltage": "120.09", + "parent": "sx2000903c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3066805a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337674a0", + "nominal_voltage": "120.09", + "parent": "sx3066805a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2879071b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337701b0", + "nominal_voltage": "120.09", + "parent": "sx2879071b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3178997c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3178997c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3178997c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293422c0", + "nominal_voltage": "120.09", + "parent": "sx3178997c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3217057a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_218475a0", + "nominal_voltage": "120.09", + "parent": "sx3217057a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001003b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001003b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001003b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7212.64", + "base_power_2": "ieeezipload.value*7212.64", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001003b0", + "nominal_voltage": "120.09", + "parent": "sx2001003b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1125976", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125978", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125979", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916605c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_274987c0", + "nominal_voltage": "120.09", + "parent": "sx2916605c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3122837c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355432c0", + "nominal_voltage": "120.09", + "parent": "sx3122837c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d5513564-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000915", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2764436", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000914", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000913", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1125974", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104850", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000912", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000911", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000910", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000904c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000904c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000904c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5580.46", + "base_power_2": "ieeezipload.value*5580.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000904c0", + "nominal_voltage": "120.09", + "parent": "sx2000904c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3066806c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_275002c0", + "nominal_voltage": "120.09", + "parent": "sx3066806c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897793a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338987a0", + "nominal_voltage": "120.09", + "parent": "sx2897793a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3104859", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3251799a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3217056a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*9144.33", + "base_power_2": "ieeezipload.value*9144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_218474a0", + "nominal_voltage": "120.09", + "parent": "sx3217056a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2879070b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338934b0", + "nominal_voltage": "120.09", + "parent": "sx2879070b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3189190a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3104856", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748129a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138567a0", + "nominal_voltage": "120.09", + "parent": "sx2748129a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2916234", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001002b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001002b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001002b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6459.77", + "base_power_2": "ieeezipload.value*6459.77", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001002b0", + "nominal_voltage": "120.09", + "parent": "sx2001002b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2000402a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3104853", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001308a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001308a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001308a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*8419.54", + "base_power_2": "ieeezipload.value*8419.54", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001308a0", + "nominal_voltage": "120.09", + "parent": "sx2001308a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2879066b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323252b0", + "nominal_voltage": "120.09", + "parent": "sx2879066b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m3037449", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710514b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2673320b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2766738c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338978c0", + "nominal_voltage": "120.09", + "parent": "sx2766738c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m3037441", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001308a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000412a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000412a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*11264.37", + "base_power_2": "ieeezipload.value*11264.37", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000412a0", + "nominal_voltage": "120.09", + "parent": "sx2000412a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2692600c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356798c0", + "nominal_voltage": "120.09", + "parent": "sx2692600c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104135a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000411a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879065b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_247126b0", + "nominal_voltage": "120.09", + "parent": "sx2879065b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001307a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001307a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001307a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*8034.48", + "base_power_2": "ieeezipload.value*8034.48", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001307a0", + "nominal_voltage": "120.09", + "parent": "sx2001307a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2897790c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2710513b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m3037455", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d6140778-1_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3037453", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv11sub1_lsb", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3037452", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2730149c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2730149c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2730149c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260601c0", + "nominal_voltage": "120.09", + "parent": "sx2730149c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001307a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000413a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000413a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000413a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6103.45", + "base_power_2": "ieeezipload.value*6103.45", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000413a0", + "nominal_voltage": "120.09", + "parent": "sx2000413a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3141393c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_442373c0", + "nominal_voltage": "120.09", + "parent": "sx3141393c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104136b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3008237c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226193838c0", + "nominal_voltage": "120.09", + "parent": "sx3008237c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2879064a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138581a0", + "nominal_voltage": "120.09", + "parent": "sx2879064a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3270814a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226191850a0", + "nominal_voltage": "120.09", + "parent": "sx3270814a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2000412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3086002c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power": "12MVA", + "bustype": "SWING", + "name": "sourcebus", + "nominal_voltage": "66395.28", + "phases": "ABCN", + "positive_sequence_voltage": "${VSOURCE}", + "power_convergence_value": "100VA" + }, + "children": [], + "name": "substation" + }, + { + "attributes": { + "name": "sx2691973a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355935a0", + "nominal_voltage": "120.09", + "parent": "sx2691973a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p828362", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001306a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001306a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001306a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5442.53", + "base_power_2": "ieeezipload.value*5442.53", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001306a0", + "nominal_voltage": "120.09", + "parent": "sx2001306a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2710512b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2861218c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260505c0", + "nominal_voltage": "120.09", + "parent": "sx2861218c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2891575c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2891575c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2891575c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_225533423c0", + "nominal_voltage": "120.09", + "parent": "sx2891575c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000410a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000410a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000410a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*8327.59", + "base_power_2": "ieeezipload.value*8327.59", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000410a0", + "nominal_voltage": "120.09", + "parent": "sx2000410a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001305a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2822877b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3141394b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_339042b0", + "nominal_voltage": "120.09", + "parent": "sx3141394b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001306a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2917328b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21389092b0", + "nominal_voltage": "120.09", + "parent": "sx2917328b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104133a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1137002", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137003", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137005", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879063b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337646b0", + "nominal_voltage": "120.09", + "parent": "sx2879063b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001305a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001305a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001305a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6235.63", + "base_power_2": "ieeezipload.value*6235.63", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001305a0", + "nominal_voltage": "120.09", + "parent": "sx2001305a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2710511a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2842379a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3177894a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227903012a0", + "nominal_voltage": "120.09", + "parent": "sx3177894a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p828359", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000411a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000411a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000411a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5735.63", + "base_power_2": "ieeezipload.value*5735.63", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000411a0", + "nominal_voltage": "120.09", + "parent": "sx2000411a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001304a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2726975b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226193422b0", + "nominal_voltage": "120.09", + "parent": "sx2726975b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3141395c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2149184c0", + "nominal_voltage": "120.09", + "parent": "sx3141395c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p1121283", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3177881c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3104134c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p1121282", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2861219b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21389761b0", + "nominal_voltage": "120.09", + "parent": "sx2861219b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2879062c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21385192c0", + "nominal_voltage": "120.09", + "parent": "sx2879062c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p828360", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000410a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3214069c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226194421c0", + "nominal_voltage": "120.09", + "parent": "sx3214069c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2842384c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260637c0", + "nominal_voltage": "120.09", + "parent": "sx2842384c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001304a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001304a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001304a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5528.74", + "base_power_2": "ieeezipload.value*5528.74", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001304a0", + "nominal_voltage": "120.09", + "parent": "sx2001304a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2991923a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302735a0", + "nominal_voltage": "120.09", + "parent": "sx2991923a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2710510c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001303a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3104131a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2726974b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226193395b0", + "nominal_voltage": "120.09", + "parent": "sx2726974b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m1142-lng1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142-lng1_dgmtr", + "nominal_voltage": "277.13", + "parent": "m1142-lng1", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "x2822871b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3066811b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2126875b0", + "nominal_voltage": "120.09", + "parent": "sx3066811b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2842383a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260634a0", + "nominal_voltage": "120.09", + "parent": "sx2842383a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001303a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001303a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001303a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7419.54", + "base_power_2": "ieeezipload.value*7419.54", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001303a0", + "nominal_voltage": "120.09", + "parent": "sx2001303a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2879069a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338894a0", + "nominal_voltage": "120.09", + "parent": "sx2879069a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673323c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2991922a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302734a0", + "nominal_voltage": "120.09", + "parent": "sx2991922a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001302a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3235245", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026796", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235246", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026797", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235243", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026798", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841629c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3235244", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2726973a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226192926a0", + "nominal_voltage": "120.09", + "parent": "sx2726973a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3235241", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026792", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235242", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2822872b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3104132a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026795", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3066812a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323263a0", + "nominal_voltage": "120.09", + "parent": "sx3066812a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3235249", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235247", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2860500b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323274b0", + "nominal_voltage": "120.09", + "parent": "sx2860500b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3235248", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879068b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323254b0", + "nominal_voltage": "120.09", + "parent": "sx2879068b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673322b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2764412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2954361b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21383494b0", + "nominal_voltage": "120.09", + "parent": "sx2954361b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2991921c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2129399c0", + "nominal_voltage": "120.09", + "parent": "sx2991921c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2730149c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3235256", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235257", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235254", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235255", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841628a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3235252", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2822873b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3235253", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235250", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235251", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001302a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001302a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001302a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5063.22", + "base_power_2": "ieeezipload.value*5063.22", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001302a0", + "nominal_voltage": "120.09", + "parent": "sx2001302a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3139086b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226192846b0", + "nominal_voltage": "120.09", + "parent": "sx3139086b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3141390b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391743b0", + "nominal_voltage": "120.09", + "parent": "sx3141390b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3235258", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2692633c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2913406b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879067a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21380616a0", + "nominal_voltage": "120.09", + "parent": "sx2879067a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2973180b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2673321a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2764411c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2991920a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2118822a0", + "nominal_voltage": "120.09", + "parent": "sx2991920a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3235267", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3234149a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*45711.34", + "base_power_2": "ieeezipload.value*45711.34", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227944551a0", + "nominal_voltage": "120.09", + "parent": "sx3234149a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3235268", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3234149b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*50134.02", + "base_power_2": "ieeezipload.value*50134.02", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227944551b0", + "nominal_voltage": "120.09", + "parent": "sx3234149b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3234149c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*52422.68", + "base_power_2": "ieeezipload.value*52422.68", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227944551c0", + "nominal_voltage": "120.09", + "parent": "sx3234149c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2841627a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3235266", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104130b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3066810c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337659c0", + "nominal_voltage": "120.09", + "parent": "sx3066810c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3216337a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356011a0", + "nominal_voltage": "120.09", + "parent": "sx3216337a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2989565a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21389237a0", + "nominal_voltage": "120.09", + "parent": "sx2989565a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3047058a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227902981a0", + "nominal_voltage": "120.09", + "parent": "sx3047058a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2748781a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2766730b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355359b0", + "nominal_voltage": "120.09", + "parent": "sx2766730b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2989432b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226163575b0", + "nominal_voltage": "120.09", + "parent": "sx2989432b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2991927b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355607b0", + "nominal_voltage": "120.09", + "parent": "sx2991927b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p895102", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3029506b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026764", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895107", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2915542c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10484.54", + "base_power_2": "ieeezipload.value*10484.54", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227921427c0", + "nominal_voltage": "120.09", + "parent": "sx2915542c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2935567b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048214", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895104", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026760", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895106", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895105", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841626c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048210", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048211", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048212", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2804277c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026767", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000100", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3233413", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026769", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3233412", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216338b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355599b0", + "nominal_voltage": "120.09", + "parent": "sx3216338b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2860504a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293667a0", + "nominal_voltage": "120.09", + "parent": "sx2860504a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2989566b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260602b0", + "nominal_voltage": "120.09", + "parent": "sx2989566b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2748780a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047pv-3", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047pv-3_pvmtr", + "nominal_voltage": "7199.56", + "parent": "m1047pv-3", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "x3254210c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047pv-2", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047pv-1", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895111", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895113", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895112", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3029505c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2915542b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10025.77", + "base_power_2": "ieeezipload.value*10025.77", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227921427b0", + "nominal_voltage": "120.09", + "parent": "sx2915542b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2915542a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*9144.33", + "base_power_2": "ieeezipload.value*9144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227921427a0", + "nominal_voltage": "120.09", + "parent": "sx2915542a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3048207", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p901894", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2935568b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048208", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3108449a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048209", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216988", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048203", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895114", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048205", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895117", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841625c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048206", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048200", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048201", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p873787", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216339b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391741b0", + "nominal_voltage": "120.09", + "parent": "sx3216339b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3160098", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3216370a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3216370c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3216370b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2766732b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_247164b0", + "nominal_voltage": "120.09", + "parent": "sx2766732b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3122821b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026785", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026786", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122822a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3008232b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226192492b0", + "nominal_voltage": "120.09", + "parent": "sx3008232b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026783", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841624b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026784", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047688", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2860501b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323265b0", + "nominal_voltage": "120.09", + "parent": "sx2860501b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3159645a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_228446184a0", + "nominal_voltage": "120.09", + "parent": "sx3159645a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3048230", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048231", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3103822c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_228665517c0", + "nominal_voltage": "120.09", + "parent": "sx3103822c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "221-312488", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026780", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3029507b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3065696a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227921416a0", + "nominal_voltage": "120.09", + "parent": "sx3065696a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3122820a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026774", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3091052", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026777", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001400", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2821770a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227917119a0", + "nominal_voltage": "120.09", + "parent": "sx2821770a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2935566c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048227", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841623a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3048228", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026773", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047699", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048221", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048222", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2951995c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*15731.96", + "base_power_2": "ieeezipload.value*15731.96", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226192801c0", + "nominal_voltage": "120.09", + "parent": "sx2951995c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026778", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026779", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729206c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "196-29518", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "196-29519", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897554", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3197652a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254213b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3029502a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026722", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122824a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2970258c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21459640c0", + "nominal_voltage": "120.09", + "parent": "sx2970258c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2841622a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3141396c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337655c0", + "nominal_voltage": "120.09", + "parent": "sx3141396c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047669", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729207c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2897793a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026724", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2955077c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2955077c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2955077c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260543c0", + "nominal_voltage": "120.09", + "parent": "sx2955077c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026726", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2895449c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226193134c0", + "nominal_voltage": "120.09", + "parent": "sx2895449c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3029501b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2711226b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1137001", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5534967-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2801902", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2801909", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3254214b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047671", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122823b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047672", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3141397b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21396796b0", + "nominal_voltage": "120.09", + "parent": "sx3141397b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2841621c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026713", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2955078a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260542a0", + "nominal_voltage": "120.09", + "parent": "sx2955078a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3214112b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226881057b0", + "nominal_voltage": "120.09", + "parent": "sx3214112b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2955074a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260479a0", + "nominal_voltage": "120.09", + "parent": "sx2955074a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2991929b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2147708b0", + "nominal_voltage": "120.09", + "parent": "sx2991929b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2711225c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2860499b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2879767b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3141398a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21386976a0", + "nominal_voltage": "120.09", + "parent": "sx3141398a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3254211b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2916602a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3029504b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2948732", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000414a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000414a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000414a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6080.46", + "base_power_2": "ieeezipload.value*6080.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000414a0", + "nominal_voltage": "120.09", + "parent": "sx2000414a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026744", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122826a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2841620b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026745", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047649", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897791b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2860506b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321856b0", + "nominal_voltage": "120.09", + "parent": "sx2860506b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001309a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001309a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001309a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4735.63", + "base_power_2": "ieeezipload.value*4735.63", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001309a0", + "nominal_voltage": "120.09", + "parent": "sx2001309a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197618a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356008a0", + "nominal_voltage": "120.09", + "parent": "sx3197618a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3216336a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356010a0", + "nominal_voltage": "120.09", + "parent": "sx3216336a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2711224b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254212b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x0247171b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2916603b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3029503c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000415a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000415a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000415a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6189.66", + "base_power_2": "ieeezipload.value*6189.66", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000415a0", + "nominal_voltage": "120.09", + "parent": "sx2000415a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026732", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122825a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3141399c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302804c0", + "nominal_voltage": "120.09", + "parent": "sx3141399c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2689691a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2955005", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026734", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2955076a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21243817a0", + "nominal_voltage": "120.09", + "parent": "sx2955076a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2955006", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897792a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026736", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766723", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216361", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766722", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766721", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766720", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3046854b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227732939b0", + "nominal_voltage": "120.09", + "parent": "sx3046854b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2766727", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766726", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766725", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748131b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323250b0", + "nominal_voltage": "120.09", + "parent": "sx2748131b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2766724", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "q16642_cap", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766729", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766728", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197633a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338893a0", + "nominal_voltage": "120.09", + "parent": "sx3197633a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2748132a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302637a0", + "nominal_voltage": "120.09", + "parent": "sx2748132a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2805031c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260491c0", + "nominal_voltage": "120.09", + "parent": "sx2805031c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047623", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785517c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338957c0", + "nominal_voltage": "120.09", + "parent": "sx2785517c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2785528b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3143999a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3216358", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3649304a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2804270b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_339013b0", + "nominal_voltage": "120.09", + "parent": "sx2804270b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "r18242", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2674052c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "r18241", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216350", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2972704c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3216351", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766716", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104830c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2766715", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748130b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138753b0", + "nominal_voltage": "120.09", + "parent": "sx2748130b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2766719", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "r18243", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197632b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323266b0", + "nominal_voltage": "120.09", + "parent": "sx3197632b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2766718", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766717", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "r18245", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2804282c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3216349", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047633", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216343", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785518c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138469c0", + "nominal_voltage": "120.09", + "parent": "sx2785518c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3216344", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785529c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3216342", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216347", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216348", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216345", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216346", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2674051a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026709", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2989571a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_225991691a0", + "nominal_voltage": "120.09", + "parent": "sx2989571a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3632979", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3141411c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*15731.96", + "base_power_2": "ieeezipload.value*15731.96", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21197413c0", + "nominal_voltage": "120.09", + "parent": "sx3141411c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197631a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338920a0", + "nominal_voltage": "120.09", + "parent": "sx3197631a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3216338", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3067478", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216339", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026700", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2991909a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3215549b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_228219458b0", + "nominal_voltage": "120.09", + "parent": "sx3215549b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2763153a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293425a0", + "nominal_voltage": "120.09", + "parent": "sx2763153a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026705", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026706", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2876814a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026708", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3649302a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3216336", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3778577", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026701", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216337", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026702", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785519a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138566a0", + "nominal_voltage": "120.09", + "parent": "sx2785519a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026703", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026704", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d6138608-3_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3141412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391996a0", + "nominal_voltage": "120.09", + "parent": "sx3141412a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2842329c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260568c0", + "nominal_voltage": "120.09", + "parent": "sx2842329c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197630a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138644a0", + "nominal_voltage": "120.09", + "parent": "sx3197630a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2879752b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2991908a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047612", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047613", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3649301a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047615", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3010567", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3215203a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3010568", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2954339b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391739b0", + "nominal_voltage": "120.09", + "parent": "sx2954339b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3027133a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3010565", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2992656a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260627a0", + "nominal_voltage": "120.09", + "parent": "sx2992656a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3010566", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3010563", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160878c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260511c0", + "nominal_voltage": "120.09", + "parent": "sx3160878c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3010564", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3008248", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3010561", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3010562", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2821087a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3010560", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197637c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3197637c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3197637c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138585c0", + "nominal_voltage": "120.09", + "parent": "sx3197637c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2691959b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1134480", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2805036b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2805036b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2805036b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_275248b0", + "nominal_voltage": "120.09", + "parent": "sx2805036b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3123452c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260574c0", + "nominal_voltage": "120.09", + "parent": "sx3123452c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3215203c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3215203b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1134479", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1134478", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d2000100_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1134477", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1134476", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3067447a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21386157a0", + "nominal_voltage": "120.09", + "parent": "sx3067447a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1134475", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1134474", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1134472", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2915534a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3010569", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1142099", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2954338b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355618b0", + "nominal_voltage": "120.09", + "parent": "sx2954338b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2763811c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*15731.96", + "base_power_2": "ieeezipload.value*15731.96", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21459629c0", + "nominal_voltage": "120.09", + "parent": "sx2763811c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1142098", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3010570", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197636b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2148580b0", + "nominal_voltage": "120.09", + "parent": "sx3197636b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3085410b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3067448c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_262075c0", + "nominal_voltage": "120.09", + "parent": "sx3067448c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m3021569", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2745811c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_251863c0", + "nominal_voltage": "120.09", + "parent": "sx2745811c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m3019248", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748135a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2150172a0", + "nominal_voltage": "120.09", + "parent": "sx2748135a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3029183", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2763812c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*15731.96", + "base_power_2": "ieeezipload.value*15731.96", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21459651c0", + "nominal_voltage": "120.09", + "parent": "sx2763812c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3030199", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3030197", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3010585", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l0247171", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197635b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337696b0", + "nominal_voltage": "120.09", + "parent": "sx3197635b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3010580", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748133c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302861c0", + "nominal_voltage": "120.09", + "parent": "sx2748133c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1089093", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089094", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p860892", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2783231", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2914324", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2914323", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3235946a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356800a0", + "nominal_voltage": "120.09", + "parent": "sx3235946a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2804283a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3649306a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3008279", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2804272b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2804272b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2804272b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338993b0", + "nominal_voltage": "120.09", + "parent": "sx2804272b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l0247160", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089097", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1134471", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089096", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1134470", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l0247162", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197634b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355767b0", + "nominal_voltage": "120.09", + "parent": "sx3197634b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2766499c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2805034a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260647a0", + "nominal_voltage": "120.09", + "parent": "sx2805034a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3067447", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3067448", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897789b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2897789b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2897789b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323287b0", + "nominal_voltage": "120.09", + "parent": "sx2897789b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3235945c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356796c0", + "nominal_voltage": "120.09", + "parent": "sx3235945c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3649305a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1134469", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2804277c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_339043c0", + "nominal_voltage": "120.09", + "parent": "sx2804277c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2710530b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21381118b0", + "nominal_voltage": "120.09", + "parent": "sx2710530b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3234185", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001der-4", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001der-5", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001215c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001215c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001215c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*12258.62", + "base_power_2": "ieeezipload.value*12258.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001215c0", + "nominal_voltage": "120.09", + "parent": "sx2001215c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "q14413", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001der-1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "q14414", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001der-2", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "q14411", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2841615a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356012a0", + "nominal_voltage": "120.09", + "parent": "sx2841615a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2001der-3", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "q14412", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3030126", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3011229a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356801a0", + "nominal_voltage": "120.09", + "parent": "sx3011229a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2748139b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21400108b0", + "nominal_voltage": "120.09", + "parent": "sx2748139b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001214c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001214c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001214c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*9701.15", + "base_power_2": "ieeezipload.value*9701.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001214c0", + "nominal_voltage": "120.09", + "parent": "sx2001214c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m4362181", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2991902b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3233412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3233412a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3233412a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*9144.33", + "base_power_2": "ieeezipload.value*9144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226308717a0", + "nominal_voltage": "120.09", + "parent": "sx3233412a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2785511a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_339046a0", + "nominal_voltage": "120.09", + "parent": "sx2785511a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104118c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321890c0", + "nominal_voltage": "120.09", + "parent": "sx3104118c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d5504876-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3645810c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*15731.96", + "base_power_2": "ieeezipload.value*15731.96", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224230651c0", + "nominal_voltage": "120.09", + "parent": "sx3645810c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2685809a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2745848", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2851933", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1145954", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1145956", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160872c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260551c0", + "nominal_voltage": "120.09", + "parent": "sx3160872c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1145955", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897784b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_247170b0", + "nominal_voltage": "120.09", + "parent": "sx2897784b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001213c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001213c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001213c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10385.06", + "base_power_2": "ieeezipload.value*10385.06", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001213c0", + "nominal_voltage": "120.09", + "parent": "sx2001213c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3195751", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3065696", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3198348a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*9144.33", + "base_power_2": "ieeezipload.value*9144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260552a0", + "nominal_voltage": "120.09", + "parent": "sx3198348a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991901b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3010556", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3027132a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3010557", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3008232", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2992657a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2992657a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2992657a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21475841a0", + "nominal_voltage": "120.09", + "parent": "sx2992657a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3233413b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10025.77", + "base_power_2": "ieeezipload.value*10025.77", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226308727b0", + "nominal_voltage": "120.09", + "parent": "sx3233413b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2785512b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323245b0", + "nominal_voltage": "120.09", + "parent": "sx2785512b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3008237", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5956471-2_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160871c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260638c0", + "nominal_voltage": "120.09", + "parent": "sx3160871c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2970258c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2990098", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104119a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338956a0", + "nominal_voltage": "120.09", + "parent": "sx3104119a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3048200b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391740b0", + "nominal_voltage": "120.09", + "parent": "sx3048200b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001212c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001212c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001212c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10275.86", + "base_power_2": "ieeezipload.value*10275.86", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001212c0", + "nominal_voltage": "120.09", + "parent": "sx2001212c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3010559", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3198347c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3198347c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3198347c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260622c0", + "nominal_voltage": "120.09", + "parent": "sx3198347c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m2001-ess1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001-ess1_stmtr", + "nominal_voltage": "277.13", + "parent": "m2001-ess1", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m2001-ess2", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001-ess2_stmtr", + "nominal_voltage": "277.13", + "parent": "m2001-ess2", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "sx2785513a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2785513a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2785513a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337677a0", + "nominal_voltage": "120.09", + "parent": "sx2785513a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2724120c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_225577437c0", + "nominal_voltage": "120.09", + "parent": "sx2724120c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3645812c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224230754c0", + "nominal_voltage": "120.09", + "parent": "sx3645812c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3727711a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3048201b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391742b0", + "nominal_voltage": "120.09", + "parent": "sx3048201b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2895449c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2991907a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2876812a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3179682", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001211c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001211c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001211c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*13408.05", + "base_power_2": "ieeezipload.value*13408.05", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001211c0", + "nominal_voltage": "120.09", + "parent": "sx2001211c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p860847", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766750", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785514a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337675a0", + "nominal_voltage": "120.09", + "parent": "sx2785514a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3552667c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104117c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338964c0", + "nominal_voltage": "120.09", + "parent": "sx3104117c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3645811c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*15731.96", + "base_power_2": "ieeezipload.value*15731.96", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224230689c0", + "nominal_voltage": "120.09", + "parent": "sx3645811c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p860843", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3179699", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3226771a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227100746a0", + "nominal_voltage": "120.09", + "parent": "sx3226771a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3727712a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d6290228-6_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027123", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3142049c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3179637c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21386442c0", + "nominal_voltage": "120.09", + "parent": "sx3179637c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991906a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "regxfmr_190-8581", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001210c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001210c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001210c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7718.39", + "base_power_2": "ieeezipload.value*7718.39", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001210c0", + "nominal_voltage": "120.09", + "parent": "sx2001210c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2876813a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2766741", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1144663", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1144665", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1144664", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766744", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766742", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785515c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293609c0", + "nominal_voltage": "120.09", + "parent": "sx2785515c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2766749", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766748", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2745806", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766747", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766746", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1144667", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1144666", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104114b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355587b0", + "nominal_voltage": "120.09", + "parent": "sx3104114b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1144668", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m4362177", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897780b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293518b0", + "nominal_voltage": "120.09", + "parent": "sx2897780b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3048203b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323273b0", + "nominal_voltage": "120.09", + "parent": "sx3048203b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3216358a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3120484c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2991905a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2745811", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766730", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3160098a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3157710b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226193361b0", + "nominal_voltage": "120.09", + "parent": "sx3157710b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2766732", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216370", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2766738", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv69sub2_hsb", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104115b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391738b0", + "nominal_voltage": "120.09", + "parent": "sx3104115b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3179682c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2897781a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138770a0", + "nominal_voltage": "120.09", + "parent": "sx2897781a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3727710a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2785516b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138294b0", + "nominal_voltage": "120.09", + "parent": "sx2785516b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3065665", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "q14404", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216367", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3216368", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916599a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356015a0", + "nominal_voltage": "120.09", + "parent": "sx2916599a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3101814", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138000", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216123a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338926a0", + "nominal_voltage": "120.09", + "parent": "sx3216123a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897790c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21357984c0", + "nominal_voltage": "120.09", + "parent": "sx2897790c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3066830b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3179646", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3008237c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3065750", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3108449", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916598a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355933a0", + "nominal_voltage": "120.09", + "parent": "sx2916598a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2895461", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2673331b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2802481a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*13711.34", + "base_power_2": "ieeezipload.value*13711.34", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226308730a0", + "nominal_voltage": "120.09", + "parent": "sx2802481a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2766749b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337661b0", + "nominal_voltage": "120.09", + "parent": "sx2766749b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3010557a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104113a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138560a0", + "nominal_voltage": "120.09", + "parent": "sx3104113a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897791b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323282b0", + "nominal_voltage": "120.09", + "parent": "sx2897791b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3047073", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2891575c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3179650", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2876798b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226193745b0", + "nominal_voltage": "120.09", + "parent": "sx2876798b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001209c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001209c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001209c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*8011.49", + "base_power_2": "ieeezipload.value*8011.49", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001209c0", + "nominal_voltage": "120.09", + "parent": "sx2001209c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3029495b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3102286b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*15041.24", + "base_power_2": "ieeezipload.value*15041.24", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226308729b0", + "nominal_voltage": "120.09", + "parent": "sx3102286b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3010556a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1027121", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3772794", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027114", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2861219", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026chp-2", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2861218", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m1026chp-3", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026chp-3_dgmtr", + "nominal_voltage": "7199.56", + "parent": "m1026chp-3", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "x2766715b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3177894a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d2001201_int", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3101827", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001208c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001208c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001208c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6827.59", + "base_power_2": "ieeezipload.value*6827.59", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001208c0", + "nominal_voltage": "120.09", + "parent": "sx2001208c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2895449", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710525c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355437c0", + "nominal_voltage": "120.09", + "parent": "sx2710525c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1027110", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2861222", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3179678", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2861223", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027100", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027101", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3179674", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3179673", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027109", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3216367b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2991910b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001207c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001207c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001207c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5080.46", + "base_power_2": "ieeezipload.value*5080.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001207c0", + "nominal_voltage": "120.09", + "parent": "sx2001207c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3225319", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3179608", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026690", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3179607", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3030199c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260480c0", + "nominal_voltage": "120.09", + "parent": "sx3030199c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001400c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3177881c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227896008c0", + "nominal_voltage": "120.09", + "parent": "sx3177881c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2839305", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766746c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321886c0", + "nominal_voltage": "120.09", + "parent": "sx2766746c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2841624", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841623", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841626", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841625", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841628", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026682", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2823611a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21386877a0", + "nominal_voltage": "120.09", + "parent": "sx2823611a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2841627", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841629", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841620", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2841619c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337636c0", + "nominal_voltage": "120.09", + "parent": "sx2841619c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2841622", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841621", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3142078b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_330121b0", + "nominal_voltage": "120.09", + "parent": "sx3142078b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001206c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001206c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001206c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6051.72", + "base_power_2": "ieeezipload.value*6051.72", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001206c0", + "nominal_voltage": "120.09", + "parent": "sx2001206c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3216361b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026681", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000413", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000412", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841615", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000411", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000410", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841616", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841619", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000415", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841618", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000414", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026679", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2841618a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337673a0", + "nominal_voltage": "120.09", + "parent": "sx2841618a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3234149a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3142079b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21249626b0", + "nominal_voltage": "120.09", + "parent": "sx3142079b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3234149b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3234149c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2000409", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710520a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138679a0", + "nominal_voltage": "120.09", + "parent": "sx2710520a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3029055b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2000408", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000407", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766748a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21470326a0", + "nominal_voltage": "120.09", + "parent": "sx2766748a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2991933c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10484.54", + "base_power_2": "ieeezipload.value*10484.54", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355433c0", + "nominal_voltage": "120.09", + "parent": "sx2991933c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2000402", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000401", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000400", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000406", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000405", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000404", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3178969b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2000403", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2955047a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21469911a0", + "nominal_voltage": "120.09", + "parent": "sx2955047a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001205c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001205c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001205c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4913.79", + "base_power_2": "ieeezipload.value*4913.79", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001205c0", + "nominal_voltage": "120.09", + "parent": "sx2001205c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2748840b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3048962a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3047060", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m4277837", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710521a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710521a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2710521a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138680a0", + "nominal_voltage": "120.09", + "parent": "sx2710521a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3010559a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2766747a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391989a0", + "nominal_voltage": "120.09", + "parent": "sx2766747a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026697", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973180b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21398646b0", + "nominal_voltage": "120.09", + "parent": "sx2973180b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026699", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3047059", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026693", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3179637", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026695", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3157718a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226194093a0", + "nominal_voltage": "120.09", + "parent": "sx3157718a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001204c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001204c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001204c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7436.78", + "base_power_2": "ieeezipload.value*7436.78", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001204c0", + "nominal_voltage": "120.09", + "parent": "sx2001204c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3047058", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2841616a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841616a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2841616a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21031684a0", + "nominal_voltage": "120.09", + "parent": "sx2841616a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197629b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_247122b0", + "nominal_voltage": "120.09", + "parent": "sx3197629b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2991939b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337652b0", + "nominal_voltage": "120.09", + "parent": "sx2991939b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3139598", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3123509c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p829957", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766742b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355585b0", + "nominal_voltage": "120.09", + "parent": "sx2766742b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047592", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p829956", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785520b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2806553c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2861223b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5534970-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3086079b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3082992a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026646", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026647", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026648", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3156034a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391993a0", + "nominal_voltage": "120.09", + "parent": "sx3156034a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197628c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138651c0", + "nominal_voltage": "120.09", + "parent": "sx3197628c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2766741a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21386754a0", + "nominal_voltage": "120.09", + "parent": "sx2766741a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2691954b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3253995c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21396815c0", + "nominal_voltage": "120.09", + "parent": "sx3253995c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047593", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785521c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2724120", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3768670", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2937757c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3082993a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3086078a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p829974", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2674047c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p829979", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197627c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337625c0", + "nominal_voltage": "120.09", + "parent": "sx3197627c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3048210a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026670", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p829975", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p829976", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p829977", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766744b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2127319b0", + "nominal_voltage": "120.09", + "parent": "sx2766744b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p829978", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841645", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026665", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5861005-2_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841648", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2925506c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_225533703c0", + "nominal_voltage": "120.09", + "parent": "sx2925506c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026667", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026660", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3225319b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_225533675b0", + "nominal_voltage": "120.09", + "parent": "sx3225319b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2839332", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026661", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2839331", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026662", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047566", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047568", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3142050c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160896c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3177881", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841641", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785522b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p829960", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p829961", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2763072b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p829962", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p829963", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197626c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337623c0", + "nominal_voltage": "120.09", + "parent": "sx3197626c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3048211a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p829965", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047580", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841635", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841634", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047572", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841637", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3177894", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026655", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841636", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026656", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047574", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2861222a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2933135a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2841639", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047575", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841638", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3029183b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047577", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2814529c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2814529a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2814529b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2841631", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026657", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2820556a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2841630", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026658", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841633", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2841632", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785523c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2895496", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048212a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2898522", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2898526", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089103", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879753b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1089102", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3065665a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227895952a0", + "nominal_voltage": "120.09", + "parent": "sx3065665a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104859b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138798b0", + "nominal_voltage": "120.09", + "parent": "sx3104859b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2691950c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3649300a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047548", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3086075b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2766717c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2785524c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1089115", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089118", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089119", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1149225", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026chp-1", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089112", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p829986", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089113", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5565090-1_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2917359a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21482431a0", + "nominal_voltage": "120.09", + "parent": "sx2917359a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047550", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047552", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3086074c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047558", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2766716c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5774470-2_int", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785525c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2842330c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356795c0", + "nominal_voltage": "120.09", + "parent": "sx2842330c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1149235", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1149236", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1149233", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048214a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3048946c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260624c0", + "nominal_voltage": "120.09", + "parent": "sx3048946c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1089120", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5587291-3_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089122", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691953a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047520", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047521", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047522", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047526", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879092c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2785526b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047528", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089138", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2983432a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2766719a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1149249", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2895489", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089132", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2898515", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089131", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691952a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2992624a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2691951c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047534", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785527a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2766718c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1089148", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5746546-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2804956a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3197639", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197638", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197637", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197636", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197635", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3120504a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_225897846a0", + "nominal_voltage": "120.09", + "parent": "sx3120504a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1089141", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973178b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337665b0", + "nominal_voltage": "120.09", + "parent": "sx2973178b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197645a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21395962a0", + "nominal_voltage": "120.09", + "parent": "sx3197645a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1089143", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5472341-1_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089145", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089144", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748144a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338984a0", + "nominal_voltage": "120.09", + "parent": "sx2748144a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3197634", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197633", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047503", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197632", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197631", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197630", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2936214a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2936214a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2936214a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356809a0", + "nominal_voltage": "120.09", + "parent": "sx2936214a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047507", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1147865", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1147866", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2804957c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3197629", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1147863", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197628", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1147864", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197627", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1147861", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197626", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1147862", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2801895b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226191951b0", + "nominal_voltage": "120.09", + "parent": "sx2801895b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3197625", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197624", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1147860", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916627a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138563a0", + "nominal_voltage": "120.09", + "parent": "sx2916627a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3048937c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3048937c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3048937c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356789c0", + "nominal_voltage": "120.09", + "parent": "sx3048937c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2727795c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227678342c0", + "nominal_voltage": "120.09", + "parent": "sx2727795c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3195321a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1089155", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089158", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1147867", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2690187b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*15041.24", + "base_power_2": "ieeezipload.value*15041.24", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226308716b0", + "nominal_voltage": "120.09", + "parent": "sx2690187b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3047073c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227917133c0", + "nominal_voltage": "120.09", + "parent": "sx3047073c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197644a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138771a0", + "nominal_voltage": "120.09", + "parent": "sx3197644a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3085403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2748143a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2748143a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2748143a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2121368a0", + "nominal_voltage": "120.09", + "parent": "sx2748143a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1089160", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047513", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047515", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2936213b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_328363b0", + "nominal_voltage": "120.09", + "parent": "sx2936213b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047518", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2937757", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2801896b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226191995b0", + "nominal_voltage": "120.09", + "parent": "sx2801896b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160868b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_20107693b0", + "nominal_voltage": "120.09", + "parent": "sx3160868b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2936211c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260567c0", + "nominal_voltage": "120.09", + "parent": "sx2936211c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1089163", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2851933a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21393643a0", + "nominal_voltage": "120.09", + "parent": "sx2851933a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1089162", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089165", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2764399b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1147858", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1147859", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197643b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302369b0", + "nominal_voltage": "120.09", + "parent": "sx3197643b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3254227b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1147857", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3217064b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1089170", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2851933c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21393643c0", + "nominal_voltage": "120.09", + "parent": "sx2851933c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3235275b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302507b0", + "nominal_voltage": "120.09", + "parent": "sx3235275b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2851933b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21393643b0", + "nominal_voltage": "120.09", + "parent": "sx2851933b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3197654", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2936212a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356815a0", + "nominal_voltage": "120.09", + "parent": "sx2936212a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3197653", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3727709a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3197652", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895409", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2916625b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21467859b0", + "nominal_voltage": "120.09", + "parent": "sx2916625b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3197647", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197646", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089174", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089173", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748140a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391995a0", + "nominal_voltage": "120.09", + "parent": "sx2748140a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1089176", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3254228b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1089177", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089179", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197642c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391979c0", + "nominal_voltage": "120.09", + "parent": "sx3197642c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3254229b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5955074-2_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089183", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3139366a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226264795a0", + "nominal_voltage": "120.09", + "parent": "sx3139366a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3197645", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197644", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197643", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197642", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5682346-3_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197641", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197640", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2731712b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2992556", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069738", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2860481c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3118855", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2804261c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302509c0", + "nominal_voltage": "120.09", + "parent": "sx2804261c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3030204a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069730", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089185", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691947a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2748139", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089187", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2914324a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069731", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089186", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089189", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089188", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2935551c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2748140", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2748143", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2748144", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3235273b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_339016b0", + "nominal_voltage": "120.09", + "parent": "sx3235273b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2748146", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897778a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302468a0", + "nominal_voltage": "120.09", + "parent": "sx2897778a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3179699b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879794a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260475a0", + "nominal_voltage": "120.09", + "parent": "sx2879794a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3727707a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3030203c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3030205c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3027122a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1027091", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2804262a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355938a0", + "nominal_voltage": "120.09", + "parent": "sx2804262a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160865a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260515a0", + "nominal_voltage": "120.09", + "parent": "sx3160865a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2860482a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1089196", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089195", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089198", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991640c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_229106135c0", + "nominal_voltage": "120.09", + "parent": "sx2991640c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1089197", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691946b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1027092", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089199", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2935552c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2748152", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2914323b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2748157", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2748158", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3727708a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2803194c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227917130c0", + "nominal_voltage": "120.09", + "parent": "sx2803194c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897779c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302508c0", + "nominal_voltage": "120.09", + "parent": "sx2897779c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3197618", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3029520b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2691949b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3160864b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2127146b0", + "nominal_voltage": "120.09", + "parent": "sx3160864b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197647a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_294787a0", + "nominal_voltage": "120.09", + "parent": "sx3197647a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2684420b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3085402a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3101194", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2748124", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3139103a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_225767272a0", + "nominal_voltage": "120.09", + "parent": "sx3139103a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2748125", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748146a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138570a0", + "nominal_voltage": "120.09", + "parent": "sx2748146a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897776c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302858c0", + "nominal_voltage": "120.09", + "parent": "sx2897776c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2915534", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2936216c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_223663c0", + "nominal_voltage": "120.09", + "parent": "sx2936216c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2858163a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3232301", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2860480b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3027124c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2804260b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391752b0", + "nominal_voltage": "120.09", + "parent": "sx2804260b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2748126", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973791a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*9144.33", + "base_power_2": "ieeezipload.value*9144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260605a0", + "nominal_voltage": "120.09", + "parent": "sx2973791a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160863c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_223660c0", + "nominal_voltage": "120.09", + "parent": "sx3160863c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197646b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355944b0", + "nominal_voltage": "120.09", + "parent": "sx3197646b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2935550c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2748127", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691948b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2748128", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2748129", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3085400c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2911069b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_225571871b0", + "nominal_voltage": "120.09", + "parent": "sx2911069b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2748130", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2748131", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2748132", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3085401a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2748133", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2748135", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d6170302-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2915542", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897777c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338937c0", + "nominal_voltage": "120.09", + "parent": "sx2897777c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2916620c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338977c0", + "nominal_voltage": "120.09", + "parent": "sx2916620c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1142100", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973833b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260630b0", + "nominal_voltage": "120.09", + "parent": "sx2973833b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1142101", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2954347b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321841b0", + "nominal_voltage": "120.09", + "parent": "sx2954347b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1142102", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048963b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710542b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355584b0", + "nominal_voltage": "120.09", + "parent": "sx2710542b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1142107", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1142108", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1142109", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027066", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1142103", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1142104", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1142105", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1142106", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160862c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3160862c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3160862c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21386143c0", + "nominal_voltage": "120.09", + "parent": "sx3160862c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3342743c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2223703238c0", + "nominal_voltage": "120.09", + "parent": "sx3342743c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3216348a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1027056", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2767343c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356791c0", + "nominal_voltage": "120.09", + "parent": "sx2767343c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2001203c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001203c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001203c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*9206.90", + "base_power_2": "ieeezipload.value*9206.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001203c0", + "nominal_voltage": "120.09", + "parent": "sx2001203c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2803199c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10484.54", + "base_power_2": "ieeezipload.value*10484.54", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227760021c0", + "nominal_voltage": "120.09", + "parent": "sx2803199c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897774b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337691b0", + "nominal_voltage": "120.09", + "parent": "sx2897774b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3085391b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10025.77", + "base_power_2": "ieeezipload.value*10025.77", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21236413b0", + "nominal_voltage": "120.09", + "parent": "sx3085391b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2710543c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710543c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2710543c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21474614c0", + "nominal_voltage": "120.09", + "parent": "sx2710543c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2803199a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*9144.33", + "base_power_2": "ieeezipload.value*9144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227760021a0", + "nominal_voltage": "120.09", + "parent": "sx2803199a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3142098b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260501b0", + "nominal_voltage": "120.09", + "parent": "sx3142098b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2803199b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2803199b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2803199b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10025.77", + "base_power_2": "ieeezipload.value*10025.77", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227760021b0", + "nominal_voltage": "120.09", + "parent": "sx2803199b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2990826b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2990826c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1027055", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2954346b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323397b0", + "nominal_voltage": "120.09", + "parent": "sx2954346b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160861c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260558c0", + "nominal_voltage": "120.09", + "parent": "sx3160861c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973171b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_339012b0", + "nominal_voltage": "120.09", + "parent": "sx2973171b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2990826a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d6017316-1_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3216349b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3778577c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224490448c0", + "nominal_voltage": "120.09", + "parent": "sx3778577c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p893610", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2001202c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001202c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001202c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7137.93", + "base_power_2": "ieeezipload.value*7137.93", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001202c0", + "nominal_voltage": "120.09", + "parent": "sx2001202c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897775c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138342c0", + "nominal_voltage": "120.09", + "parent": "sx2897775c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2858166a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3085390b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321848b0", + "nominal_voltage": "120.09", + "parent": "sx3085390b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3064514c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_251857c0", + "nominal_voltage": "120.09", + "parent": "sx3064514c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2954349b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337699b0", + "nominal_voltage": "120.09", + "parent": "sx2954349b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3142099b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_157718b0", + "nominal_voltage": "120.09", + "parent": "sx3142099b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1027080", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048965b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1027087", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3195327a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2767341c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260577c0", + "nominal_voltage": "120.09", + "parent": "sx2767341c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897772a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2897772a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2897772a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302679a0", + "nominal_voltage": "120.09", + "parent": "sx2897772a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3179646b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_328365b0", + "nominal_voltage": "120.09", + "parent": "sx3179646b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x1108410b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3085393c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337627c0", + "nominal_voltage": "120.09", + "parent": "sx3085393c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2954348a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356013a0", + "nominal_voltage": "120.09", + "parent": "sx2954348a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3048966c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1027071", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3189189", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3189188", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027073", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2767342a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356802a0", + "nominal_voltage": "120.09", + "parent": "sx2767342a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3189190", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027068", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3030126c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260576c0", + "nominal_voltage": "120.09", + "parent": "sx3030126c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897773a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338918a0", + "nominal_voltage": "120.09", + "parent": "sx2897773a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2692664c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3085392c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337630c0", + "nominal_voltage": "120.09", + "parent": "sx3085392c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3048890c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2128517c0", + "nominal_voltage": "120.09", + "parent": "sx3048890c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m3763623", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3763624", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104128a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_247057a0", + "nominal_voltage": "120.09", + "parent": "sx3104128a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197641a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3197641a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3197641a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293591a0", + "nominal_voltage": "120.09", + "parent": "sx3197641a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3097861c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_225533215c0", + "nominal_voltage": "120.09", + "parent": "sx3097861c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m3763620", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897770c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337628c0", + "nominal_voltage": "120.09", + "parent": "sx2897770c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1027019", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027013", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027014", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1008733", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p903360", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3216344b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p830058", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3065750b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3030203", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2822857b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355588b0", + "nominal_voltage": "120.09", + "parent": "sx2822857b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3030200", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3763618", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048968c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3067506", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3067507", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027011", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104129a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338969a0", + "nominal_voltage": "120.09", + "parent": "sx3104129a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1027005", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197640c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338944c0", + "nominal_voltage": "120.09", + "parent": "sx3197640c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3085393", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027001", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897771b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21148701b0", + "nominal_voltage": "120.09", + "parent": "sx2897771b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3085392", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027002", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2767340a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*13711.34", + "base_power_2": "ieeezipload.value*13711.34", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260595a0", + "nominal_voltage": "120.09", + "parent": "sx2767340a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3085391", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m4122658", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2767340b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*15041.24", + "base_power_2": "ieeezipload.value*15041.24", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260595b0", + "nominal_voltage": "120.09", + "parent": "sx2767340b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3085390", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027004", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m4122657", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2767340c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*15731.96", + "base_power_2": "ieeezipload.value*15731.96", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260595c0", + "nominal_voltage": "120.09", + "parent": "sx2767340c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3085397", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2936268c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3085396", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1008742", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3763619", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3030204", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3085395", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1008743", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3030205", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3085394", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p903354", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1008746", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3085399", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3085398", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3216345b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2822858b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355591b0", + "nominal_voltage": "120.09", + "parent": "sx2822858b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3120502a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_294812a0", + "nominal_voltage": "120.09", + "parent": "sx3120502a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1027041", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2802480b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*15041.24", + "base_power_2": "ieeezipload.value*15041.24", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226308725b0", + "nominal_voltage": "120.09", + "parent": "sx2802480b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160117b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21357901b0", + "nominal_voltage": "120.09", + "parent": "sx3160117b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1027042", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142der480-1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027043", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104126c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104126c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3104126c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138372c0", + "nominal_voltage": "120.09", + "parent": "sx3104126c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2954345c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338915c0", + "nominal_voltage": "120.09", + "parent": "sx2954345c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1027038", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027039", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3150961", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027036", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1008752", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2692661a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1008753", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3231269b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_225684682b0", + "nominal_voltage": "120.09", + "parent": "sx3231269b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "q1301", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3085389", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3216346a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2917310", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3085388", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1008758", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1142110", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1142111", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1142112", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3120503a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_225869139a0", + "nominal_voltage": "120.09", + "parent": "sx3120503a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2822859b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391747b0", + "nominal_voltage": "120.09", + "parent": "sx2822859b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104127b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337690b0", + "nominal_voltage": "120.09", + "parent": "sx3104127b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2954344c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338959c0", + "nominal_voltage": "120.09", + "parent": "sx2954344c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1027027", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1027023", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2861197c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2804269b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323285b0", + "nominal_voltage": "120.09", + "parent": "sx2804269b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2692660a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3216347c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3085399c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302862c0", + "nominal_voltage": "120.09", + "parent": "sx3085399c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2917328", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048228c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3178974b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104124b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356065b0", + "nominal_voltage": "120.09", + "parent": "sx3104124b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2822864c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_274985c0", + "nominal_voltage": "120.09", + "parent": "sx2822864c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2991943c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2991943c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2991943c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21399619c0", + "nominal_voltage": "120.09", + "parent": "sx2991943c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2917330", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2688693c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2917336", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2917333", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3082988b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2822865c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_274986c0", + "nominal_voltage": "120.09", + "parent": "sx2822865c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3085398b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355777b0", + "nominal_voltage": "120.09", + "parent": "sx3085398b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d2000901_int", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2673343b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2955005b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3010569a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3649299a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224237391a0", + "nominal_voltage": "120.09", + "parent": "sx3649299a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3178975b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2764403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226193078a0", + "nominal_voltage": "120.09", + "parent": "sx2764403a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2916234a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104125b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138264b0", + "nominal_voltage": "120.09", + "parent": "sx3104125b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d5926308-3_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d6320328-1_int", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3008248a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3157708c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226192954c0", + "nominal_voltage": "120.09", + "parent": "sx3157708c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2746587c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2990828", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2822866b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338922b0", + "nominal_voltage": "120.09", + "parent": "sx2822866b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2990826", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2990827", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3649298a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224237384a0", + "nominal_voltage": "120.09", + "parent": "sx3649298a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3091052a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2860479b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1027000", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3010568a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3178976a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710536a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21396867a0", + "nominal_voltage": "120.09", + "parent": "sx2710536a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104122a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138565a0", + "nominal_voltage": "120.09", + "parent": "sx3104122a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3010567c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5865224-1_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3067506c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260620c0", + "nominal_voltage": "120.09", + "parent": "sx3067506c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2935549b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3104157c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2917359", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5835167-6_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2822867b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2822867b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2822867b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21386552b0", + "nominal_voltage": "120.09", + "parent": "sx2822867b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2767343", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104123c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338924c0", + "nominal_voltage": "120.09", + "parent": "sx3104123c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3179607b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3178977c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3649297a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224237380a0", + "nominal_voltage": "120.09", + "parent": "sx3649297a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2710537b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391744b0", + "nominal_voltage": "120.09", + "parent": "sx2710537b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2688692b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2991940c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2148060c0", + "nominal_voltage": "120.09", + "parent": "sx2991940c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3067507c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260535c0", + "nominal_voltage": "120.09", + "parent": "sx3067507c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3178978a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3010566c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104120b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138645b0", + "nominal_voltage": "120.09", + "parent": "sx3104120b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3179608c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2862616c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673300b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391745b0", + "nominal_voltage": "120.09", + "parent": "sx2673300b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160123a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21015706a0", + "nominal_voltage": "120.09", + "parent": "sx3160123a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2822860b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323236b0", + "nominal_voltage": "120.09", + "parent": "sx2822860b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104155c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2000300", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2970804c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3178979c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5746703-1_int", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048887b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260586b0", + "nominal_voltage": "120.09", + "parent": "sx3048887b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3085395a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21391094a0", + "nominal_voltage": "120.09", + "parent": "sx3085395a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2767342", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3234149", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2767341", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2767340", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3189188c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10484.54", + "base_power_2": "ieeezipload.value*10484.54", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293658c0", + "nominal_voltage": "120.09", + "parent": "sx3189188c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3198358b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138797b0", + "nominal_voltage": "120.09", + "parent": "sx3198358b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2692655c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104121a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138561a0", + "nominal_voltage": "120.09", + "parent": "sx3104121a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3254230a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3064514", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142798", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3312692a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1142799", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2822861a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21015829a0", + "nominal_voltage": "120.09", + "parent": "sx2822861a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2879087a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3048888c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_251856c0", + "nominal_voltage": "120.09", + "parent": "sx3048888c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2862616", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2689678b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1005.15", + "base_power_2": "ieeezipload.value*1005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226192762b0", + "nominal_voltage": "120.09", + "parent": "sx2689678b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3189189b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293657b0", + "nominal_voltage": "120.09", + "parent": "sx3189189b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2692654a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3085394c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_274988c0", + "nominal_voltage": "120.09", + "parent": "sx3085394c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3198356c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_350993c0", + "nominal_voltage": "120.09", + "parent": "sx3198356c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2710532c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293666c0", + "nominal_voltage": "120.09", + "parent": "sx2710532c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673346c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d6198039-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047490", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2822862c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_275001c0", + "nominal_voltage": "120.09", + "parent": "sx2822862c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3066821a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2685805a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047483", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047484", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785530a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047485", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3047289b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047486", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3047289a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3048889c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2128464c0", + "nominal_voltage": "120.09", + "parent": "sx3048889c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3216350a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3085397b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323261b0", + "nominal_voltage": "120.09", + "parent": "sx3085397b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3047289c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3198355b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_207288b0", + "nominal_voltage": "120.09", + "parent": "sx3198355b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2822863c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337635c0", + "nominal_voltage": "120.09", + "parent": "sx2822863c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2785531a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3104154c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2879089c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047497", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2859403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3232902a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d6440002-2_int", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3085396a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138684a0", + "nominal_voltage": "120.09", + "parent": "sx3085396a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3216351a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3085410", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "q16483_cap", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954352", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954353", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954350", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3085403", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954351", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3085402", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2730163c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2691943b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047471", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104125", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3010561a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3104126", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104123", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104124", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104121", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3176656", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104122", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104120", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "221-311359", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2806553", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954349", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "228-1048090-1_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2992624", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3263051c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2954347", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954348", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954345", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3085401", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104129", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954346", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3085400", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104127", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954344", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104128", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2895461a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254234b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3048221a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047480", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691942b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3104114", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3448661b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3104115", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2673305b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138236b0", + "nominal_voltage": "120.09", + "parent": "sx2673305b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2691941c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3176661", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3010560b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3104113", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047478", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954338", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954339", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3159448a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337684a0", + "nominal_voltage": "120.09", + "parent": "sx3159448a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3104118", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104119", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3176660", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3030200c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3104117", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089204", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089203", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089205", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089207", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197639a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_310569a0", + "nominal_voltage": "120.09", + "parent": "sx3197639a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3082981c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3048222c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254231a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1089200", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691945c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1089202", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089201", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2783231b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226193886b0", + "nominal_voltage": "120.09", + "parent": "sx2783231b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2841648a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3104145", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047441", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047442", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104144", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047444", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047447", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2955055b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21249647b0", + "nominal_voltage": "120.09", + "parent": "sx2955055b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2785534b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1089215", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954361", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5804798-3_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197638a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21396959a0", + "nominal_voltage": "120.09", + "parent": "sx3197638a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2897554c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d2000701_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3066826b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "221-559681", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2673303c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338963c0", + "nominal_voltage": "120.09", + "parent": "sx2673303c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2691944a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "221-559682", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089213", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104136", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104134", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104135", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047453", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104132", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104133", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3214549", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104130", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104131", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047457", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3082983b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2954357", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785535b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2954354", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2954355", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122837", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766750c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2766750c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2766750c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293424c0", + "nominal_voltage": "120.09", + "parent": "sx2766750c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3122835", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729401b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2763811", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2763812", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089220", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5837361-8_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2860477a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254237a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673308b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673308b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2673308b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337653b0", + "nominal_voltage": "120.09", + "parent": "sx2673308b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047420", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047423", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3010565c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047424", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2935547b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2785536b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3122848", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122849", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122847", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2860478b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254238b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3178971a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3010564c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047430", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2673309c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138472c0", + "nominal_voltage": "120.09", + "parent": "sx2673309c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3104157", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3104154", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3342743", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047432", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841645c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3104155", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047433", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047434", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047435", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv11sub2_lsb", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2992657", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785537a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2992656", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5803273-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122815", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122816", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122813", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122814", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122819", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136360", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136361", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122817", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136362", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122818", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136363", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2955006c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3066829c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2708744b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3178972c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673306c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293608c0", + "nominal_voltage": "120.09", + "parent": "sx2673306c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047400", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047401", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3010563a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "193-48013", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3727707", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047403", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136353", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047404", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136354", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785538a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3727709", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136355", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3727708", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047406", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136356", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122811", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136357", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122812", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136358", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047409", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136359", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122810", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122826", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048227a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3122827", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122824", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122825", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p875742", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3178973a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069662", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3727710", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2673307c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337632c0", + "nominal_voltage": "120.09", + "parent": "sx2673307c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3010562b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3727712", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3727711", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047410", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879081a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1136365", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136366", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136367", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122822", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136368", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122823", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047419", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122820", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3122821", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2841631c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391976c0", + "nominal_voltage": "120.09", + "parent": "sx2841631c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254206b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355592b0", + "nominal_voltage": "120.09", + "parent": "sx3254206b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973166c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293665c0", + "nominal_voltage": "120.09", + "parent": "sx2973166c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3120504a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3251807a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2711224b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260500b0", + "nominal_voltage": "120.09", + "parent": "sx2711224b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3027671a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226308728a0", + "nominal_voltage": "120.09", + "parent": "sx3027671a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3254870", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254873", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3047073c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2729405b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3254207a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337671a0", + "nominal_voltage": "120.09", + "parent": "sx3254207a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3067478a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3254869", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216988b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260590b0", + "nominal_voltage": "120.09", + "parent": "sx3216988b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973167b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293656b0", + "nominal_voltage": "120.09", + "parent": "sx2973167b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841630c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138404c0", + "nominal_voltage": "120.09", + "parent": "sx2841630c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069640", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3251806b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3139598b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226311345b0", + "nominal_voltage": "120.09", + "parent": "sx3139598b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3048937c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3011229", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729406c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3179650b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3179650b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3179650b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_251828b0", + "nominal_voltage": "120.09", + "parent": "sx3179650b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254204a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337715a0", + "nominal_voltage": "120.09", + "parent": "sx3254204a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3066809c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3086098a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*9144.33", + "base_power_2": "ieeezipload.value*9144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21474556a0", + "nominal_voltage": "120.09", + "parent": "sx3086098a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104853c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3784018a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224500658a0", + "nominal_voltage": "120.09", + "parent": "sx3784018a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d6077791-3_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069632", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142801", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142800", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3448661", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3217052c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3029501b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337688b0", + "nominal_voltage": "120.09", + "parent": "sx3029501b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2001015", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142808", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001010", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729407b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2001014", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001013", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897768c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2897768c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2897768c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337634c0", + "nominal_voltage": "120.09", + "parent": "sx2897768c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2001012", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001011", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069627", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069629", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973169a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21397304a0", + "nominal_voltage": "120.09", + "parent": "sx2973169a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254205c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302672c0", + "nominal_voltage": "120.09", + "parent": "sx3254205c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3254870c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069620", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748152b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321849b0", + "nominal_voltage": "120.09", + "parent": "sx2748152b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1142813", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142811", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3197654a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21382992a0", + "nominal_voltage": "120.09", + "parent": "sx3197654a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1142810", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001007", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001006", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3251808a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1142815", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001005", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3029500a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391992a0", + "nominal_voltage": "120.09", + "parent": "sx3029500a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1142814", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001004", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d6138609-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3159448", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142819", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001009", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142818", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001008", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729408b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2820556", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001003", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897769c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337660c0", + "nominal_voltage": "120.09", + "parent": "sx2897769c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2001002", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001001", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001000", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069619", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069613", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2935552c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_274903c0", + "nominal_voltage": "120.09", + "parent": "sx2935552c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069610", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2952014a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2860482a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338954a0", + "nominal_voltage": "120.09", + "parent": "sx2860482a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935551c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2935551c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2935551c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21387929c0", + "nominal_voltage": "120.09", + "parent": "sx2935551c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2729409b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2897766c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2128007c0", + "nominal_voltage": "120.09", + "parent": "sx2897766c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197625c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3645809c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3150961c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_223400157c0", + "nominal_voltage": "120.09", + "parent": "sx3150961c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069607", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2804250c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_274992c0", + "nominal_voltage": "120.09", + "parent": "sx2804250c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935553b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323247b0", + "nominal_voltage": "120.09", + "parent": "sx2935553b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069600", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104850c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2763407", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138606", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138608", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138607", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2955081a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3253570", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2860483b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21396699b0", + "nominal_voltage": "120.09", + "parent": "sx2860483b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2727795", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897767c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2897767c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2897767c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338960c0", + "nominal_voltage": "120.09", + "parent": "sx2897767c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197624b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3010580b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1138604", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138603", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2820590", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254208c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338961c0", + "nominal_voltage": "120.09", + "parent": "sx3254208c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2858163a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391990a0", + "nominal_voltage": "120.09", + "parent": "sx2858163a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3254873c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2933120c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2898526c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21393486c0", + "nominal_voltage": "120.09", + "parent": "sx2898526c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2748158a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293480a0", + "nominal_voltage": "120.09", + "parent": "sx2748158a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2911069b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2860480b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323234b0", + "nominal_voltage": "120.09", + "parent": "sx2860480b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897764b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391750b0", + "nominal_voltage": "120.09", + "parent": "sx2897764b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3215203", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2820583", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2823611", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254209c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337714c0", + "nominal_voltage": "120.09", + "parent": "sx3254209c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3027670b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*15041.24", + "base_power_2": "ieeezipload.value*15041.24", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226308719b0", + "nominal_voltage": "120.09", + "parent": "sx3027670b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3102793b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227734175b0", + "nominal_voltage": "120.09", + "parent": "sx3102793b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2748157a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338973a0", + "nominal_voltage": "120.09", + "parent": "sx2748157a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2860481c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338908c0", + "nominal_voltage": "120.09", + "parent": "sx2860481c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897765b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323243b0", + "nominal_voltage": "120.09", + "parent": "sx2897765b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935550c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_274999c0", + "nominal_voltage": "120.09", + "parent": "sx2935550c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935556b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356064b0", + "nominal_voltage": "120.09", + "parent": "sx2935556b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2911069", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3141399c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3217053", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2804253a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21396254a0", + "nominal_voltage": "120.09", + "parent": "sx2804253a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3217052", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3065696a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5742811-3_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3029507b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302368b0", + "nominal_voltage": "120.09", + "parent": "sx3029507b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729434b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321851b0", + "nominal_voltage": "120.09", + "parent": "sx2729434b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2989564b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3216336a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2689691a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355375a0", + "nominal_voltage": "120.09", + "parent": "sx2689691a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "r20703", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048221a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21399305a0", + "nominal_voltage": "120.09", + "parent": "sx3048221a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2766741a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2991927b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2804254a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323418a0", + "nominal_voltage": "120.09", + "parent": "sx2804254a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2951995", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2860486c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2127390c0", + "nominal_voltage": "120.09", + "parent": "sx2860486c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841639a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355937a0", + "nominal_voltage": "120.09", + "parent": "sx2841639a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197629b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841638c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841638c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2841638c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138641c0", + "nominal_voltage": "120.09", + "parent": "sx2841638c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935557a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21397005a0", + "nominal_voltage": "120.09", + "parent": "sx2935557a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2785534b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338982b0", + "nominal_voltage": "120.09", + "parent": "sx2785534b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3728037", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216370b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293521b0", + "nominal_voltage": "120.09", + "parent": "sx3216370b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3728038", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216370a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293521a0", + "nominal_voltage": "120.09", + "parent": "sx3216370a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "228-961799-3_int", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2989565a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2783231b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2989432b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3216337a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3123452", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048222c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355431c0", + "nominal_voltage": "120.09", + "parent": "sx3048222c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3029506b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338930b0", + "nominal_voltage": "120.09", + "parent": "sx3029506b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2804255b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338913b0", + "nominal_voltage": "120.09", + "parent": "sx2804255b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2860487c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138586c0", + "nominal_voltage": "120.09", + "parent": "sx2860487c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3103822", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3197628c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841637c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293492c0", + "nominal_voltage": "120.09", + "parent": "sx2841637c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935554a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338921a0", + "nominal_voltage": "120.09", + "parent": "sx2935554a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3728040", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785535b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_339005b0", + "nominal_voltage": "120.09", + "parent": "sx2785535b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2804251a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138646a0", + "nominal_voltage": "120.09", + "parent": "sx2804251a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3728041", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160109b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338947b0", + "nominal_voltage": "120.09", + "parent": "sx3160109b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3728042", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3253570c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_228314460c0", + "nominal_voltage": "120.09", + "parent": "sx3253570c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3728043", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2898522a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260648a0", + "nominal_voltage": "120.09", + "parent": "sx2898522a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973160b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338935b0", + "nominal_voltage": "120.09", + "parent": "sx2973160b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2989566b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2970258", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3728039", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216370c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293521c0", + "nominal_voltage": "120.09", + "parent": "sx3216370c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3216338b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3197627c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2860484b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323255b0", + "nominal_voltage": "120.09", + "parent": "sx2860484b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841636b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841636b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2841636b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391758b0", + "nominal_voltage": "120.09", + "parent": "sx2841636b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935555a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338917a0", + "nominal_voltage": "120.09", + "parent": "sx2935555a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "hvmv69sub1_hsb", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2821010", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3011298c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3160108b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355603b0", + "nominal_voltage": "120.09", + "parent": "sx3160108b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2785536b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_339002b0", + "nominal_voltage": "120.09", + "parent": "sx2785536b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2804252a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2804252a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2804252a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302473a0", + "nominal_voltage": "120.09", + "parent": "sx2804252a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973161a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293592a0", + "nominal_voltage": "120.09", + "parent": "sx2973161a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3216339b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3214069c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2766742b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3197626c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2860485b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321855b0", + "nominal_voltage": "120.09", + "parent": "sx2860485b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841635a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21399099a0", + "nominal_voltage": "120.09", + "parent": "sx2841635a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104859b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3141395c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2822868a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21397544a0", + "nominal_voltage": "120.09", + "parent": "sx2822868a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3231255c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_339051c0", + "nominal_voltage": "120.09", + "parent": "sx3231255c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160107a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138265a0", + "nominal_voltage": "120.09", + "parent": "sx3160107a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197653b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_339004b0", + "nominal_voltage": "120.09", + "parent": "sx3197653b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973162b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302375b0", + "nominal_voltage": "120.09", + "parent": "sx2973162b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3029503c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138373c0", + "nominal_voltage": "120.09", + "parent": "sx3029503c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3068944", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2972930a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338927a0", + "nominal_voltage": "120.09", + "parent": "sx2972930a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2785537a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338975a0", + "nominal_voltage": "120.09", + "parent": "sx2785537a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2804258b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337697b0", + "nominal_voltage": "120.09", + "parent": "sx2804258b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3729298a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3251799", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3141396c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841634b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_392038b0", + "nominal_voltage": "120.09", + "parent": "sx2841634b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2822869a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338942a0", + "nominal_voltage": "120.09", + "parent": "sx2822869a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160106a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3160106a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3160106a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_310570a0", + "nominal_voltage": "120.09", + "parent": "sx3160106a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973163b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391753b0", + "nominal_voltage": "120.09", + "parent": "sx2973163b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3197652a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_339021a0", + "nominal_voltage": "120.09", + "parent": "sx3197652a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "221-311609", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3214112b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3029502a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*9144.33", + "base_power_2": "ieeezipload.value*9144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138262a0", + "nominal_voltage": "120.09", + "parent": "sx3029502a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2728247", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879767b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260496b0", + "nominal_voltage": "120.09", + "parent": "sx2879767b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2785538a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2785538a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2785538a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338986a0", + "nominal_voltage": "120.09", + "parent": "sx2785538a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254203b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323233b0", + "nominal_voltage": "120.09", + "parent": "sx3254203b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2804259a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2127372a0", + "nominal_voltage": "120.09", + "parent": "sx2804259a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841633a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293645a0", + "nominal_voltage": "120.09", + "parent": "sx2841633a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3141397b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3729297a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3011293a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3011293b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2973164a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302514a0", + "nominal_voltage": "120.09", + "parent": "sx2973164a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160105c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302811c0", + "nominal_voltage": "120.09", + "parent": "sx3160105c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3011293c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3048227a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337647a0", + "nominal_voltage": "120.09", + "parent": "sx3048227a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3029505c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338966c0", + "nominal_voltage": "120.09", + "parent": "sx3029505c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2804256b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321840b0", + "nominal_voltage": "120.09", + "parent": "sx2804256b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991929b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2711226b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260527b0", + "nominal_voltage": "120.09", + "parent": "sx2711226b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2860488b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391751b0", + "nominal_voltage": "120.09", + "parent": "sx2860488b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104856a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841632b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338972b0", + "nominal_voltage": "120.09", + "parent": "sx2841632b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3141398a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2973165a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355942a0", + "nominal_voltage": "120.09", + "parent": "sx2973165a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160104b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337707b0", + "nominal_voltage": "120.09", + "parent": "sx3160104b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935559a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21400185a0", + "nominal_voltage": "120.09", + "parent": "sx2935559a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3048228c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_274997c0", + "nominal_voltage": "120.09", + "parent": "sx3048228c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2711225c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260553c0", + "nominal_voltage": "120.09", + "parent": "sx2711225c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3029504b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337702b0", + "nominal_voltage": "120.09", + "parent": "sx3029504b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2674027b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21380325b0", + "nominal_voltage": "120.09", + "parent": "sx2674027b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2804257b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321854b0", + "nominal_voltage": "120.09", + "parent": "sx2804257b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d5653457-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2860489a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302405a0", + "nominal_voltage": "120.09", + "parent": "sx2860489a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3251806", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3251808", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3251807", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160115b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10025.77", + "base_power_2": "ieeezipload.value*10025.77", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338994b0", + "nominal_voltage": "120.09", + "parent": "sx3160115b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026492", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104136b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338949b0", + "nominal_voltage": "120.09", + "parent": "sx3104136b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026487", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879078a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026486", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026485", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "228-1353934-4_int", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026488", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx0247160b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_247160b0", + "nominal_voltage": "120.09", + "parent": "sx0247160b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2822877b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337672b0", + "nominal_voltage": "120.09", + "parent": "sx2822877b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx0247162b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_247162b0", + "nominal_voltage": "120.09", + "parent": "sx0247162b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2954361b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3160114a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_339019a0", + "nominal_voltage": "120.09", + "parent": "sx3160114a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2879079b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104134c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104134c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3104134c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138718c0", + "nominal_voltage": "120.09", + "parent": "sx3104134c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3216367b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337648b0", + "nominal_voltage": "120.09", + "parent": "sx3216367b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3085389b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391765b0", + "nominal_voltage": "120.09", + "parent": "sx3085389b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3178988b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3160113b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3160113b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3160113b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323284b0", + "nominal_voltage": "120.09", + "parent": "sx3160113b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001208c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2000600", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001209c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3216342b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3157167a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226115278a0", + "nominal_voltage": "120.09", + "parent": "sx3157167a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2804248b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323244b0", + "nominal_voltage": "120.09", + "parent": "sx2804248b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3176661c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356788c0", + "nominal_voltage": "120.09", + "parent": "sx3176661c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3216368c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3216368c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3216368c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293663c0", + "nominal_voltage": "120.09", + "parent": "sx3216368c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3085388b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391746b0", + "nominal_voltage": "120.09", + "parent": "sx3085388b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m1069-mt1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069-mt1_dgmtr", + "nominal_voltage": "277.13", + "parent": "m1069-mt1", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "x2001207c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104135a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21399508a0", + "nominal_voltage": "120.09", + "parent": "sx3104135a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026496", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "regxfmr_hvmv11sub1_lsb", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3216343c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2766738c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2804249c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21389962c0", + "nominal_voltage": "120.09", + "parent": "sx2804249c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3176660b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226193892b0", + "nominal_voltage": "120.09", + "parent": "sx3176660b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3215340a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_228057846a0", + "nominal_voltage": "120.09", + "parent": "sx3215340a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2692600c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104132a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104132a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3104132a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302469a0", + "nominal_voltage": "120.09", + "parent": "sx3104132a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2821770a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3233353a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21399630a0", + "nominal_voltage": "120.09", + "parent": "sx3233353a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2673312a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321837a0", + "nominal_voltage": "120.09", + "parent": "sx2673312a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2822872b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338950b0", + "nominal_voltage": "120.09", + "parent": "sx2822872b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3066811b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3216361b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21452406b0", + "nominal_voltage": "120.09", + "parent": "sx3216361b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001206c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047386", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3066810c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047388", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879074a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2951995c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3120376", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3047289", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3027671", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3027670", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2917255", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785530a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391985a0", + "nominal_voltage": "120.09", + "parent": "sx2785530a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991933c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2801902b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2764411c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226010605c0", + "nominal_voltage": "120.09", + "parent": "sx2764411c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2673313b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321853b0", + "nominal_voltage": "120.09", + "parent": "sx2673313b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104133a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293483a0", + "nominal_voltage": "120.09", + "parent": "sx3104133a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3066812a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2822873b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338999b0", + "nominal_voltage": "120.09", + "parent": "sx2822873b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001205c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2878848c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2879075a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2766732b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001400c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2001400c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2001400c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*23281.61", + "base_power_2": "ieeezipload.value*23281.61", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2001400c0", + "nominal_voltage": "120.09", + "parent": "sx2001400c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2990098a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2990098a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2990098a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*9144.33", + "base_power_2": "ieeezipload.value*9144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226308721a0", + "nominal_voltage": "120.09", + "parent": "sx2990098a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3251830", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104130b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391755b0", + "nominal_voltage": "120.09", + "parent": "sx3104130b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2785531a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21399809a0", + "nominal_voltage": "120.09", + "parent": "sx2785531a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2936271a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260476a0", + "nominal_voltage": "120.09", + "parent": "sx2936271a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2726983a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001204c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673310a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138562a0", + "nominal_voltage": "120.09", + "parent": "sx2673310a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2764412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321874a0", + "nominal_voltage": "120.09", + "parent": "sx2764412a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026472", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047371", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2859403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_228001810a0", + "nominal_voltage": "120.09", + "parent": "sx2859403a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026463", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879076c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026468", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047368", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048962a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260555a0", + "nominal_voltage": "120.09", + "parent": "sx3048962a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026466", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3315860b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3047289a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*9144.33", + "base_power_2": "ieeezipload.value*9144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_228091193a0", + "nominal_voltage": "120.09", + "parent": "sx3047289a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3251854", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2936270a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_218472a0", + "nominal_voltage": "120.09", + "parent": "sx2936270a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104131a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302410a0", + "nominal_voltage": "120.09", + "parent": "sx3104131a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3159037b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2929261", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3217064", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3047289c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10484.54", + "base_power_2": "ieeezipload.value*10484.54", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_228091193c0", + "nominal_voltage": "120.09", + "parent": "sx3047289c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3047289b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10025.77", + "base_power_2": "ieeezipload.value*10025.77", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_228091193b0", + "nominal_voltage": "120.09", + "parent": "sx3047289b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d2001001_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001203c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673311a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21397029a0", + "nominal_voltage": "120.09", + "parent": "sx2673311a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d6108141-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047374", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879077b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3139086b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2692633c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_328364c0", + "nominal_voltage": "120.09", + "parent": "sx2692633c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047379", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048963b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260521b0", + "nominal_voltage": "120.09", + "parent": "sx3048963b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1209der480-1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3217057", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3217056", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2728247c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337729c0", + "nominal_voltage": "120.09", + "parent": "sx2728247c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2728247a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337729a0", + "nominal_voltage": "120.09", + "parent": "sx2728247a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2728247b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337729b0", + "nominal_voltage": "120.09", + "parent": "sx2728247b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1142860", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827532", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827531", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3011298", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827530", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2948732b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_225571845b0", + "nominal_voltage": "120.09", + "parent": "sx2948732b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p827536", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142863", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827534", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001202c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2970811a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p827533", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142868", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3011293", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142865", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827537", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3066815c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047340", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2673316a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2120855a0", + "nominal_voltage": "120.09", + "parent": "sx2673316a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047342", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142869", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047344", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047345", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047346", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879070b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "e206217", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3232301c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1142871", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827521", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827520", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2689726", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2689727", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2936276b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260458b0", + "nominal_voltage": "120.09", + "parent": "sx2936276b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2729410c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1142875", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827525", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142874", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p859135", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142873", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827523", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3066816a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p827522", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827529", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827528", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827527", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3217057a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673317a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673317a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2673317a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21397771a0", + "nominal_voltage": "120.09", + "parent": "sx2673317a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3048965b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3048965b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3048965b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260641b0", + "nominal_voltage": "120.09", + "parent": "sx3048965b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047358", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879071b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2729411a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3178980c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p827554", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827553", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142880", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2936275b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_157715b0", + "nominal_voltage": "120.09", + "parent": "sx2936275b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069597", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827555", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2822870c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21399171c0", + "nominal_voltage": "120.09", + "parent": "sx2822870c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2673314c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355778c0", + "nominal_voltage": "120.09", + "parent": "sx2673314c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "e206209", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3066813b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069595", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710508b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323241b0", + "nominal_voltage": "120.09", + "parent": "sx2710508b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047322", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048966c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260625c0", + "nominal_voltage": "120.09", + "parent": "sx3048966c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047323", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047324", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047325", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879072b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047326", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e206211", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e206210", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2875754c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10484.54", + "base_power_2": "ieeezipload.value*10484.54", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_225897943c0", + "nominal_voltage": "120.09", + "parent": "sx2875754c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2729412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p827542", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069588", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3178981b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069582", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2822871b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355840b0", + "nominal_voltage": "120.09", + "parent": "sx2822871b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p827549", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5621886-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827548", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3066814b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069590", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710509c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_275000c0", + "nominal_voltage": "120.09", + "parent": "sx2710509c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2673315a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_247058a0", + "nominal_voltage": "120.09", + "parent": "sx2673315a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2952013a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3010570a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047335", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879073c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047338", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047339", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3207907c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10484.54", + "base_power_2": "ieeezipload.value*10484.54", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293664c0", + "nominal_voltage": "120.09", + "parent": "sx3207907c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3207907b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*15041.24", + "base_power_2": "ieeezipload.value*15041.24", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293664b0", + "nominal_voltage": "120.09", + "parent": "sx3207907b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3207907a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*9144.33", + "base_power_2": "ieeezipload.value*9144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293664a0", + "nominal_voltage": "120.09", + "parent": "sx3207907a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p827576", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108405b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*14632.71", + "base_power_2": "ieeezipload.value*14632.71", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2221108405b0", + "nominal_voltage": "120.09", + "parent": "sx1108405b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p827575", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108405c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*14367.05", + "base_power_2": "ieeezipload.value*14367.05", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2221108405c0", + "nominal_voltage": "120.09", + "parent": "sx1108405c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3066819a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p827574", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827573", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108405a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*12800.51", + "base_power_2": "ieeezipload.value*12800.51", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2221108405a0", + "nominal_voltage": "120.09", + "parent": "sx1108405a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3048968c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_350994c0", + "nominal_voltage": "120.09", + "parent": "sx3048968c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3048890c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2823592_cap", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069572", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "196-36167", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069574", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3178982a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1142821", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142828", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2972930", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2748780", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142826", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2748781", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047300", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2820528", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047303", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d6231996-1_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729413a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047309", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827561", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827560", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3081380a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_225700953a0", + "nominal_voltage": "120.09", + "parent": "sx3081380a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2729414c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1010013", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136030", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136031", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827564", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2842329c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1010011", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136032", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827563", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108406a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10301.41", + "base_power_2": "ieeezipload.value*10301.41", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2221108406a0", + "nominal_voltage": "120.09", + "parent": "sx1108406a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx1108406b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*11586.56", + "base_power_2": "ieeezipload.value*11586.56", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2221108406b0", + "nominal_voltage": "120.09", + "parent": "sx1108406b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1010017", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069565", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1010016", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069564", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1010015", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069567", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2851933b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1010014", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2851933a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3214071c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5712477-3_int", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142835", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069560", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2851933c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069563", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142833", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142832", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142839", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691973a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3217053c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1047311", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047312", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047314", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2820533", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047316", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2820535", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3120484c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226191772c0", + "nominal_voltage": "120.09", + "parent": "sx3120484c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047318", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3235268c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2099529c0", + "nominal_voltage": "120.09", + "parent": "sx3235268c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1047319", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136027", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729414b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1136028", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729414a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2820531", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197661", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001100", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136029", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3197660", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3172805a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069558", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069557", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*14940.13", + "base_power_2": "ieeezipload.value*14940.13", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2221108403a0", + "nominal_voltage": "120.09", + "parent": "sx1108403a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069554", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069556", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108403b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*12024.66", + "base_power_2": "ieeezipload.value*12024.66", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2221108403b0", + "nominal_voltage": "120.09", + "parent": "sx1108403b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069555", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108403c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*11005.03", + "base_power_2": "ieeezipload.value*11005.03", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2221108403c0", + "nominal_voltage": "120.09", + "parent": "sx1108403c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3066817a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069550", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710504b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323394b0", + "nominal_voltage": "120.09", + "parent": "sx2710504b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3120502a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069551", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1142843", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3217056a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673318c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673318c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2673318c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338967c0", + "nominal_voltage": "120.09", + "parent": "sx2673318c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2839305a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2839305a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2839305a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2150292a0", + "nominal_voltage": "120.09", + "parent": "sx2839305a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2745799c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226191779c0", + "nominal_voltage": "120.09", + "parent": "sx2745799c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3189190a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227100753a0", + "nominal_voltage": "120.09", + "parent": "sx3189190a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3235267c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321892c0", + "nominal_voltage": "120.09", + "parent": "sx3235267c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "e192860", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827580", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108404a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*18543.76", + "base_power_2": "ieeezipload.value*18543.76", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2221108404a0", + "nominal_voltage": "120.09", + "parent": "sx1108404a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "190-7361", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108404b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*20244.65", + "base_power_2": "ieeezipload.value*20244.65", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2221108404b0", + "nominal_voltage": "120.09", + "parent": "sx1108404b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069549", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069548", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069543", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3251799a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260562a0", + "nominal_voltage": "120.09", + "parent": "sx3251799a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2798067b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_225533237b0", + "nominal_voltage": "120.09", + "parent": "sx2798067b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1142851", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108404c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*16462.68", + "base_power_2": "ieeezipload.value*16462.68", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2221108404c0", + "nominal_voltage": "120.09", + "parent": "sx1108404c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069544", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3066818b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3200222", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3120503a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710505b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323398b0", + "nominal_voltage": "120.09", + "parent": "sx2710505b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2673319c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673319c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2673319c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391973c0", + "nominal_voltage": "120.09", + "parent": "sx2673319c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2803194", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2898457a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2936279c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2936279c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2936279c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_247184c0", + "nominal_voltage": "120.09", + "parent": "sx2936279c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3235266c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302807c0", + "nominal_voltage": "120.09", + "parent": "sx3235266c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d6019477-1_int", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2803199", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2933135", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254218a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138720a0", + "nominal_voltage": "120.09", + "parent": "sx3254218a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069535", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069532", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973154a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338897a0", + "nominal_voltage": "120.09", + "parent": "sx2973154a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2691939b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355589b0", + "nominal_voltage": "120.09", + "parent": "sx2691939b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069533", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069530", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv115_hsb2", + "nominal_voltage": "66395.28", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2925506", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv115_hsb1", + "nominal_voltage": "66395.28", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2860490a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138719a0", + "nominal_voltage": "120.09", + "parent": "sx2860490a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2786204", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3125349", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785529c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355943c0", + "nominal_voltage": "120.09", + "parent": "sx2785529c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3235253a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138573a0", + "nominal_voltage": "120.09", + "parent": "sx3235253a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2748131b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2785516b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069524", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254219c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138716c0", + "nominal_voltage": "120.09", + "parent": "sx3254219c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069526", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069521", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m4118755", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973155a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338898a0", + "nominal_voltage": "120.09", + "parent": "sx2973155a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3195310a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226192185a0", + "nominal_voltage": "120.09", + "parent": "sx3195310a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m4118754", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691938b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355600b0", + "nominal_voltage": "120.09", + "parent": "sx2691938b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3029510b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355606b0", + "nominal_voltage": "120.09", + "parent": "sx3029510b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3181545c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226193702c0", + "nominal_voltage": "120.09", + "parent": "sx3181545c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2952007c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2860491a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302733a0", + "nominal_voltage": "120.09", + "parent": "sx2860491a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2860491b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302733b0", + "nominal_voltage": "120.09", + "parent": "sx2860491b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3235252b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21388572b0", + "nominal_voltage": "120.09", + "parent": "sx3235252b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935560c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293659c0", + "nominal_voltage": "120.09", + "parent": "sx2935560c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2748130b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2785517c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069518", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069517", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069519", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069514", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069513", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069516", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785519a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069515", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254216a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21398563a0", + "nominal_voltage": "120.09", + "parent": "sx3254216a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973156b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337687b0", + "nominal_voltage": "120.09", + "parent": "sx2973156b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2727019", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1010004", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673309", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1010003", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1010008", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1010007", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673303", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2708744", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2711234b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_207287b0", + "nominal_voltage": "120.09", + "parent": "sx2711234b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2673308", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673307", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3235251c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21387206c0", + "nominal_voltage": "120.09", + "parent": "sx3235251c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2673306", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673305", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2785518c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3027116a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226192684a0", + "nominal_voltage": "120.09", + "parent": "sx3027116a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2673300", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2933165", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2933164", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3101782a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356808a0", + "nominal_voltage": "120.09", + "parent": "sx3101782a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069509", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069503", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254217c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21399112c0", + "nominal_voltage": "120.09", + "parent": "sx3254217c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069505", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973157a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337722a0", + "nominal_voltage": "120.09", + "parent": "sx2973157a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069504", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3141400a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138313a0", + "nominal_voltage": "120.09", + "parent": "sx3141400a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2821010a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2727008", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069500", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3235250b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337698b0", + "nominal_voltage": "120.09", + "parent": "sx3235250b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3728039a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224387053a0", + "nominal_voltage": "120.09", + "parent": "sx3728039a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3234185b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323388b0", + "nominal_voltage": "120.09", + "parent": "sx3234185b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2973144c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2983432", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2748135a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3236011b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138796b0", + "nominal_voltage": "120.09", + "parent": "sx3236011b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3140238a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2973158c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138259c0", + "nominal_voltage": "120.09", + "parent": "sx2973158c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2673326", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "221-308718", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673323", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2861197", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3728038a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224387019a0", + "nominal_voltage": "120.09", + "parent": "sx3728038a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3086098", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673322", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2898495", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2936213", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673321", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2936214", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673320", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2936211", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2936212", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916608", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916609", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916606", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916607", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5655682-1_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973159a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21398536a0", + "nominal_voltage": "120.09", + "parent": "sx2973159a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2916605", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916602", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916603", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3159645a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2925506c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2673315", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673314", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673313", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2952003b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2673312", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673319", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673318", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673317", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673316", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2973146b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2916610", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3270814", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673311", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673310", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3728037a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224386946a0", + "nominal_voltage": "120.09", + "parent": "sx3728037a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2916619", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916617", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916618", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209748", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209749", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3729298", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827514", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827512", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3729297", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827511", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827515", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136999", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d6504019-6_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673346", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3016088", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3086075", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3086074", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2860492c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21395720c0", + "nominal_voltage": "120.09", + "parent": "sx2860492c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3086079", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3086078", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209750", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916620", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136993", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136994", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209753", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136995", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2673343", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136996", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209751", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136997", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2748133c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1209752", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136998", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209758", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2936216", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916627", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916625", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827503", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691936a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356009a0", + "nominal_voltage": "120.09", + "parent": "sx2691936a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p827502", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827501", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827500", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827507", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827506", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827505", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827504", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2898515c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260621c0", + "nominal_voltage": "120.09", + "parent": "sx2898515c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p827509", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827508", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3123452c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2860493a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21397645a0", + "nominal_voltage": "120.09", + "parent": "sx2860493a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2973148a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879773a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_207290a0", + "nominal_voltage": "120.09", + "parent": "sx2879773a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2673331", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209763", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2992556c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2992556c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2992556c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_346639c0", + "nominal_voltage": "120.09", + "parent": "sx2992556c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2748132a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2785521c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338931c0", + "nominal_voltage": "120.09", + "parent": "sx2785521c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2915542c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2915542b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2915542a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2935568b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2119958b0", + "nominal_voltage": "120.09", + "parent": "sx2935568b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3108449a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_228622562a0", + "nominal_voltage": "120.09", + "parent": "sx3108449a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2823545a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3197661c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338932c0", + "nominal_voltage": "120.09", + "parent": "sx3197661c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3236004", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3123509c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2129923c0", + "nominal_voltage": "120.09", + "parent": "sx3123509c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2973149b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2896685a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227187012a0", + "nominal_voltage": "120.09", + "parent": "sx2896685a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3103822c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2896685b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227187012b0", + "nominal_voltage": "120.09", + "parent": "sx2896685b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3235248c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2896685c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227187012c0", + "nominal_voltage": "120.09", + "parent": "sx2896685c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841627a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841627a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2841627a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337716a0", + "nominal_voltage": "120.09", + "parent": "sx2841627a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254210c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138647c0", + "nominal_voltage": "120.09", + "parent": "sx3254210c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991915b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3029495", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2841626c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302808c0", + "nominal_voltage": "120.09", + "parent": "sx2841626c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3029497", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1141480", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785522b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2127681b0", + "nominal_voltage": "120.09", + "parent": "sx2785522b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2913406b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_225940756b0", + "nominal_voltage": "120.09", + "parent": "sx2913406b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3029498", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3029499", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3141388c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3029518b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337666b0", + "nominal_voltage": "120.09", + "parent": "sx3029518b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m3729981", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2729423c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_339017c0", + "nominal_voltage": "120.09", + "parent": "sx2729423c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2748780a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356803a0", + "nominal_voltage": "120.09", + "parent": "sx2748780a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2823544a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3197660b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323275b0", + "nominal_voltage": "120.09", + "parent": "sx3197660b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3252336b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2748781a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21382813a0", + "nominal_voltage": "120.09", + "parent": "sx2748781a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3254869b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3235247a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3236011", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048210a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302412a0", + "nominal_voltage": "120.09", + "parent": "sx3048210a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254211b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_247084b0", + "nominal_voltage": "120.09", + "parent": "sx3254211b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991914c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2786274", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2763407c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_225906836c0", + "nominal_voltage": "120.09", + "parent": "sx2763407c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2860499b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10025.77", + "base_power_2": "ieeezipload.value*10025.77", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338997b0", + "nominal_voltage": "120.09", + "parent": "sx2860499b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2786273", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2801909c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2785523c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2785523c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2785523c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138412c0", + "nominal_voltage": "120.09", + "parent": "sx2785523c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841625c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302834c0", + "nominal_voltage": "120.09", + "parent": "sx2841625c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1141475", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1141474", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1141473", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2935566c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_441854c0", + "nominal_voltage": "120.09", + "parent": "sx2935566c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "196-35813", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3141389a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1141479", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1141478", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2690868c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10484.54", + "base_power_2": "ieeezipload.value*10484.54", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227917127c0", + "nominal_voltage": "120.09", + "parent": "sx2690868c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1141477", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1141476", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2860500b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2955078a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2729424a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_339018a0", + "nominal_voltage": "120.09", + "parent": "sx2729424a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2936271", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048211a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21396015a0", + "nominal_voltage": "120.09", + "parent": "sx3048211a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3235246b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2936270", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3046854", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2936275", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2936276", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2786266", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2936279", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3032977", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2823592a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*912.37", + "base_power_2": "ieeezipload.value*912.37", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_223658a0", + "nominal_voltage": "120.09", + "parent": "sx2823592a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991913a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2935567b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338992b0", + "nominal_voltage": "120.09", + "parent": "sx2935567b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991911c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841624b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355604b0", + "nominal_voltage": "120.09", + "parent": "sx2841624b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m3032980", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3032981", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785524c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2044328c0", + "nominal_voltage": "120.09", + "parent": "sx2785524c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3176656a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226193170a0", + "nominal_voltage": "120.09", + "parent": "sx3176656a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2860501b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5472350-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048212a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355934a0", + "nominal_voltage": "120.09", + "parent": "sx3048212a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2766730b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3235245c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2936268", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2991912a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2876796a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226193338a0", + "nominal_voltage": "120.09", + "parent": "sx2876796a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841623a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_294844a0", + "nominal_voltage": "120.09", + "parent": "sx2841623a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2785525c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21396606c0", + "nominal_voltage": "120.09", + "parent": "sx2785525c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3029497c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3119793b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226024307b0", + "nominal_voltage": "120.09", + "parent": "sx3119793b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2820528c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226191778c0", + "nominal_voltage": "120.09", + "parent": "sx2820528c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3141401a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338970a0", + "nominal_voltage": "120.09", + "parent": "sx3141401a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973150a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21380528a0", + "nominal_voltage": "120.09", + "parent": "sx2973150a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1009828", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1009827", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "regxfmr_190-7361", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2991919a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2955076a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1009820", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p904451", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3235244a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "q14734", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254214b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3254214b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3254214b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337706b0", + "nominal_voltage": "120.09", + "parent": "sx3254214b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1009824", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "q14733", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p904452", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2876797a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226193345a0", + "nominal_voltage": "120.09", + "parent": "sx2876797a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841622a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21384215a0", + "nominal_voltage": "120.09", + "parent": "sx2841622a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1009840", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785526b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302374b0", + "nominal_voltage": "120.09", + "parent": "sx2785526b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3141402c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391978c0", + "nominal_voltage": "120.09", + "parent": "sx3141402c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729427b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323249b0", + "nominal_voltage": "120.09", + "parent": "sx2729427b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973151a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138569a0", + "nominal_voltage": "120.09", + "parent": "sx2973151a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1009839", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1009838", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048214a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302474a0", + "nominal_voltage": "120.09", + "parent": "sx3048214a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2955077c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3086002", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2804247b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391737b0", + "nominal_voltage": "120.09", + "parent": "sx2804247b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254215c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302859c0", + "nominal_voltage": "120.09", + "parent": "sx3254215c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991918b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3235243c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1009832", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1009834", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3029499a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2917359a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5563942-4_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2841621c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338910c0", + "nominal_voltage": "120.09", + "parent": "sx2841621c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729428a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2729428a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2729428a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21398402a0", + "nominal_voltage": "120.09", + "parent": "sx2729428a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973152b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323253b0", + "nominal_voltage": "120.09", + "parent": "sx2973152b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2860504a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3141403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21399707a0", + "nominal_voltage": "120.09", + "parent": "sx3141403a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2955074a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3236004c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2785527a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293522a0", + "nominal_voltage": "120.09", + "parent": "sx2785527a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254212b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138754b0", + "nominal_voltage": "120.09", + "parent": "sx3254212b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991917b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1009843", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3235242c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3029498c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2729429a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293644a0", + "nominal_voltage": "120.09", + "parent": "sx2729429a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841620b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2147018b0", + "nominal_voltage": "120.09", + "parent": "sx2841620b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3048946c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3046854b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2973153a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338925a0", + "nominal_voltage": "120.09", + "parent": "sx2973153a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3784018", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2916598a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2860506b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2785528b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138752b0", + "nominal_voltage": "120.09", + "parent": "sx2785528b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2804245b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355598b0", + "nominal_voltage": "120.09", + "parent": "sx2804245b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991916b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1009855", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx0247171b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_247171b0", + "nominal_voltage": "120.09", + "parent": "sx0247171b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254213b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321859b0", + "nominal_voltage": "120.09", + "parent": "sx3254213b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3235241c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3197618a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p827495", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991939", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3141399", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3141397", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827499", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2954350c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3141398", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827498", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3141395", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3141396", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p827496", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3141393", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2673320b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_392037b0", + "nominal_voltage": "120.09", + "parent": "sx2673320b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3141394", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2689678", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1230123", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160103c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356063c0", + "nominal_voltage": "120.09", + "parent": "sx3160103c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3141390", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710514b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323267b0", + "nominal_voltage": "120.09", + "parent": "sx2710514b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1230121", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1230122", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026366", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000500", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2916599a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026364", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879066b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026363", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048205c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_274994c0", + "nominal_voltage": "120.09", + "parent": "sx3048205c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2861219b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991933", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2766725c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3139086", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3101194c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991929", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3141388", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3141389", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991927", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048205c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2989600", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2673321a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302674a0", + "nominal_voltage": "120.09", + "parent": "sx2673321a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3160102b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355780b0", + "nominal_voltage": "120.09", + "parent": "sx3160102b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026361", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710515c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321884c0", + "nominal_voltage": "120.09", + "parent": "sx2710515c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3632979a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224192013a0", + "nominal_voltage": "120.09", + "parent": "sx3632979a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3048206a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138649a0", + "nominal_voltage": "120.09", + "parent": "sx3048206a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m2001-mt2", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001-mt2_dgmtr", + "nominal_voltage": "277.13", + "parent": "m2001-mt2", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "x2879067a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2689691", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026354", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m2001-mt3", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001-mt3_dgmtr", + "nominal_voltage": "277.13", + "parent": "m2001-mt3", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m2001-mt1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001-mt1_dgmtr", + "nominal_voltage": "277.13", + "parent": "m2001-mt1", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "m1026357", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026356", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991921", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991920", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991923", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2766724c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991922", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3177665a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991918", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3626914c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2748839", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991917", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048206a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2821087", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991919", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991914", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991913", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991916", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2954352c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991915", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2726975b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710512b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323280b0", + "nominal_voltage": "120.09", + "parent": "sx2710512b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3157718", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047292", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160101a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337678a0", + "nominal_voltage": "120.09", + "parent": "sx3160101a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026394", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047293", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026393", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048207b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323248b0", + "nominal_voltage": "120.09", + "parent": "sx3048207b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3141393c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2842330c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2879068b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1009805", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026387", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1009807", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3157710", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1009809", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2748840", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991910", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991912", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691973", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991911", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "regxfmr_190-8593", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2766727b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991907", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3141394b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991906", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048207b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991909", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991908", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991902", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2954351c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991905", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2726974b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710513b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_325245b0", + "nominal_voltage": "120.09", + "parent": "sx2710513b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3048208a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138260a0", + "nominal_voltage": "120.09", + "parent": "sx3048208a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3157708", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160100b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321847b0", + "nominal_voltage": "120.09", + "parent": "sx3160100b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2879069a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026377", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1047299", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026378", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2861218c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2766726b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2991901", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139250", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139252", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139251", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897807b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21386771b0", + "nominal_voltage": "120.09", + "parent": "sx2897807b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3048208a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1139254", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3029500", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3029501", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139256", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710510c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710510c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2710510c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138650c0", + "nominal_voltage": "120.09", + "parent": "sx2710510c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2726973a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3029502", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139255", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d6409775-4_int", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3029503", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3029504", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3029505", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3029506", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3029507", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048209b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2120195b0", + "nominal_voltage": "120.09", + "parent": "sx3048209b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104144a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104144a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3104144a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_339020a0", + "nominal_voltage": "120.09", + "parent": "sx3104144a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026320", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2766721a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026324", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026323", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879062c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026329", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026328", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026327", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2991923a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1139260", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2820531b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226192936b0", + "nominal_voltage": "120.09", + "parent": "sx2820531b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991921c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1139263", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2745799", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048209b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1139264", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3083019", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3251854a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226881700a0", + "nominal_voltage": "120.09", + "parent": "sx3251854a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3226771", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710511a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21357515a0", + "nominal_voltage": "120.09", + "parent": "sx2710511a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104145b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_339011b0", + "nominal_voltage": "120.09", + "parent": "sx3104145b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729430b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21248901b0", + "nominal_voltage": "120.09", + "parent": "sx2729430b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2766720a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2879063b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026312", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139258", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139257", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1139259", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2991922a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "221-311583", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3123509", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5502543-2_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897805a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21471907a0", + "nominal_voltage": "120.09", + "parent": "sx2897805a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991920a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3029520", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3086002c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356794c0", + "nominal_voltage": "120.09", + "parent": "sx3086002c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2673322b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355358b0", + "nominal_voltage": "120.09", + "parent": "sx2673322b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026344", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026343", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026341", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879064a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3254915b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026347", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3270814a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2766723a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2841629c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138405c0", + "nominal_voltage": "120.09", + "parent": "sx2841629c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2785520b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138755b0", + "nominal_voltage": "120.09", + "parent": "sx2785520b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d6140776-1_int", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897806c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337643c0", + "nominal_voltage": "120.09", + "parent": "sx2897806c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "221-311595", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3029510", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001215c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673323c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355438c0", + "nominal_voltage": "120.09", + "parent": "sx2673323c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3029518", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3141390b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026333", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026331", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3235249a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026330", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879065b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2766722b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026335", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2991943", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3120484", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026339", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2841628a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2120786a0", + "nominal_voltage": "120.09", + "parent": "sx2841628a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2991940", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2748127a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2730187a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069499", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069498", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001214c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "226-23745", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069495", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1126016", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691967b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069494", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1126017", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069497", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069496", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "226-23751", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2861158", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2861157", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2730108c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_223661c0", + "nominal_voltage": "120.09", + "parent": "sx2730108c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1126020", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3010585a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2767408c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260517c0", + "nominal_voltage": "120.09", + "parent": "sx2767408c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3214549a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2748126c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2898457", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069488", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2896685b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069487", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2896685c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3066804a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001213c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069489", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2896685a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069484", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1126005", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069483", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2691966b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3626914", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2767409b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2767409b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2767409b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21391242b0", + "nominal_voltage": "120.09", + "parent": "sx2767409b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2954357a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3270853", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3270854", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729423c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3728043a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3728043a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3728043a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224387138a0", + "nominal_voltage": "120.09", + "parent": "sx3728043a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104796c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001212c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3066801c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "hvmv11sub3_lsb", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2673326b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355601b0", + "nominal_voltage": "120.09", + "parent": "sx2673326b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069481", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2730106c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356814c0", + "nominal_voltage": "120.09", + "parent": "sx2730106c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026308", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026307", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3231255", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2690941b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2748125c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m4350438", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897801a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21470405a0", + "nominal_voltage": "120.09", + "parent": "sx2897801a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1026309", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3728042a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224387113a0", + "nominal_voltage": "120.09", + "parent": "sx3728042a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001211c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069469", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069466", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069465", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069468", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069467", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069462", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069461", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2878848", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069464", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069463", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2730107c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_251855c0", + "nominal_voltage": "120.09", + "parent": "sx2730107c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2879061b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3231269", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2767407b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260495b0", + "nominal_voltage": "120.09", + "parent": "sx2767407b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3235258c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293652c0", + "nominal_voltage": "120.09", + "parent": "sx3235258c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3235258a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293652a0", + "nominal_voltage": "120.09", + "parent": "sx3235258a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2729424a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3235258b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293652b0", + "nominal_voltage": "120.09", + "parent": "sx3235258b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2748124b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2785511a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3728041a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224387074a0", + "nominal_voltage": "120.09", + "parent": "sx3728041a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "190-8581", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691959", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001210c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2691954", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "q16483", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069457", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048200b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3066807c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069456", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069451", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710518a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21209868a0", + "nominal_voltage": "120.09", + "parent": "sx2710518a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2691952", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691953", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691950", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2954354a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2691951", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748839b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260502b0", + "nominal_voltage": "120.09", + "parent": "sx2748839b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2766729a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2785512b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "e203026", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2875754", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3068944b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260494b0", + "nominal_voltage": "120.09", + "parent": "sx3068944b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2691967", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "190-8593", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2745806c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2691965", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3728040a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224387062a0", + "nominal_voltage": "120.09", + "parent": "sx3728040a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2691966", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048201b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3066808c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710519a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302676a0", + "nominal_voltage": "120.09", + "parent": "sx2710519a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2805031", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3119793b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2805035", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2805034", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2954353a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3235256a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138642a0", + "nominal_voltage": "120.09", + "parent": "sx3235256a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2897800b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323277b0", + "nominal_voltage": "120.09", + "parent": "sx2897800b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2785513a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2805037", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2805036", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691938", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691939", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx_293471a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293471a0", + "nominal_voltage": "120.09", + "parent": "sx_293471a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2691936", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx_293471b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293471b0", + "nominal_voltage": "120.09", + "parent": "sx_293471b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx_293471c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293471c0", + "nominal_voltage": "120.09", + "parent": "sx_293471c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069437", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2896685", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069438", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2748129a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3066805a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2710516a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321839a0", + "nominal_voltage": "120.09", + "parent": "sx2710516a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2691965b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3235255b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1005.15", + "base_power_2": "ieeezipload.value*1005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293519b0", + "nominal_voltage": "120.09", + "parent": "sx3235255b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2785514a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2729427b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3143999", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691949", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2748128c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2691947", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691948", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691945", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691946", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048203b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d6049825-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691943", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069428", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2691944", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3160793c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1126023", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3178997c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3066806c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069424", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1126025", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069420", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2710517a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_310568a0", + "nominal_voltage": "120.09", + "parent": "sx2710517a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1126031", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3235254c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_441331c0", + "nominal_voltage": "120.09", + "parent": "sx3235254c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2691941", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729428a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2691942", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2954355a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2785515c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2913406", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069419", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069418", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209800", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209805", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "221-703009", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069417", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069411", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3195321a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356805a0", + "nominal_voltage": "120.09", + "parent": "sx3195321a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3139366a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1209807", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069412", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2859391b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3235241c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321888c0", + "nominal_voltage": "120.09", + "parent": "sx3235241c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2729429a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2936213b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3197645a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3235252b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000902c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2748143a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973153a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069408", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3179673c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260640c0", + "nominal_voltage": "120.09", + "parent": "sx3179673c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3085403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293668a0", + "nominal_voltage": "120.09", + "parent": "sx3085403a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1209811", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3195327", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3197643b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1209817", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209814", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209819", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3122827a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293673a0", + "nominal_voltage": "120.09", + "parent": "sx3122827a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2916605c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3645811", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137956", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3645812", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137957", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137958", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2936212a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3195321", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3197644a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973154a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3645810", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3235251c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1209823", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209824", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3086074c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260532c0", + "nominal_voltage": "120.09", + "parent": "sx3086074c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3179674b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_157716b0", + "nominal_voltage": "120.09", + "parent": "sx3179674b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1209822", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209828", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3197642c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3254228b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_325474b0", + "nominal_voltage": "120.09", + "parent": "sx3254228b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3645809", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3728039a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2764399b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226192493b0", + "nominal_voltage": "120.09", + "parent": "sx2764399b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2973144c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138466c0", + "nominal_voltage": "120.09", + "parent": "sx2973144c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2916606c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3234185b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3195356", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2973155a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2690187b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2936211c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2786273b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_275247b0", + "nominal_voltage": "120.09", + "parent": "sx2786273b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3235250b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3254229b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338998b0", + "nominal_voltage": "120.09", + "parent": "sx3254229b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197641a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3728038a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2916607c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3236011b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2748140a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973156b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3217064b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3217064b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3217064b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21391390b0", + "nominal_voltage": "120.09", + "parent": "sx3217064b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "q16642", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3085400c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302803c0", + "nominal_voltage": "120.09", + "parent": "sx3085400c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1136660", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137991", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973146b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2118903b0", + "nominal_voltage": "120.09", + "parent": "sx2973146b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3727708a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224386815a0", + "nominal_voltage": "120.09", + "parent": "sx3727708a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2691947a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337718a0", + "nominal_voltage": "120.09", + "parent": "sx2691947a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2916608c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3728037a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1136658", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137989", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136659", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3030204a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_20107636a0", + "nominal_voltage": "120.09", + "parent": "sx3030204a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000715b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000715b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000715b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6459.77", + "base_power_2": "ieeezipload.value*6459.77", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000715b0", + "nominal_voltage": "120.09", + "parent": "sx2000715b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2898515c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973157a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1137985", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137986", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137987", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3027122a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226194865a0", + "nominal_voltage": "120.09", + "parent": "sx3027122a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1136657", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137988", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2748146a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1136670", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691946b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2691946b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2691946b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2147974b0", + "nominal_voltage": "120.09", + "parent": "sx2691946b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1136671", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2936216c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2916609c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2879794a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1136669", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3030205c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21390038c0", + "nominal_voltage": "120.09", + "parent": "sx3030205c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1136661", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137992", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3727709a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224386842a0", + "nominal_voltage": "120.09", + "parent": "sx3727709a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2973158c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1137993", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136663", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137994", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2914324a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*912.37", + "base_power_2": "ieeezipload.value*912.37", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226196642a0", + "nominal_voltage": "120.09", + "parent": "sx2914324a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1136664", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137995", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136665", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137996", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136666", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136667", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137998", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136668", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137999", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2786274c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2786274c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2786274c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_207291c0", + "nominal_voltage": "120.09", + "parent": "sx2786274c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2954349b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3085402a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302471a0", + "nominal_voltage": "120.09", + "parent": "sx3085402a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "193-103041", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3195318", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254219", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973148a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2973148a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2973148a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_339047a0", + "nominal_voltage": "120.09", + "parent": "sx2973148a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3179678b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_247185b0", + "nominal_voltage": "120.09", + "parent": "sx3179678b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3195315", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691949b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337689b0", + "nominal_voltage": "120.09", + "parent": "sx2691949b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000713b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000713b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000713b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7344.83", + "base_power_2": "ieeezipload.value*7344.83", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000713b0", + "nominal_voltage": "120.09", + "parent": "sx2000713b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3254210", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2973159a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3254213", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254214", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137960", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3197647a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3195310", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254211", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1137961", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254212", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254217", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2914323b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355376b0", + "nominal_voltage": "120.09", + "parent": "sx2914323b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3214112", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254218", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254215", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3027124c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226195194c0", + "nominal_voltage": "120.09", + "parent": "sx3027124c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3254216", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3085401a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2127253a0", + "nominal_voltage": "120.09", + "parent": "sx3085401a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3254208", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254209", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2973149b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_325472b0", + "nominal_voltage": "120.09", + "parent": "sx2973149b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3727707a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224386750a0", + "nominal_voltage": "120.09", + "parent": "sx3727707a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2936214a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2691948b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337703b0", + "nominal_voltage": "120.09", + "parent": "sx2691948b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3139103a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2684420b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_225498968b0", + "nominal_voltage": "120.09", + "parent": "sx2684420b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000714b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000714b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000714b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5195.40", + "base_power_2": "ieeezipload.value*5195.40", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000714b0", + "nominal_voltage": "120.09", + "parent": "sx2000714b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3030203c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260639c0", + "nominal_voltage": "120.09", + "parent": "sx3030203c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3235946", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254203", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3235945", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3197646b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3254206", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2748144a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3254207", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254204", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254205", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3029520b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21486213b0", + "nominal_voltage": "120.09", + "parent": "sx3029520b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3122820a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_310561a0", + "nominal_voltage": "120.09", + "parent": "sx3122820a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2691943b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323400b0", + "nominal_voltage": "120.09", + "parent": "sx2691943b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2933135a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226197070a0", + "nominal_voltage": "120.09", + "parent": "sx2933135a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3082992a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3082992a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3082992a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337728a0", + "nominal_voltage": "120.09", + "parent": "sx3082992a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3030200c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260554c0", + "nominal_voltage": "120.09", + "parent": "sx3030200c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108269", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2730107c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108276", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108278", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108274", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3232301c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*15731.96", + "base_power_2": "ieeezipload.value*15731.96", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21458756c0", + "nominal_voltage": "120.09", + "parent": "sx3232301c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3066815c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338936c0", + "nominal_voltage": "120.09", + "parent": "sx3066815c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1009742", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108270", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879081a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391981a0", + "nominal_voltage": "120.09", + "parent": "sx2879081a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2691942b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_247105b0", + "nominal_voltage": "120.09", + "parent": "sx2691942b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2839305a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1009763", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3086079b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260457b0", + "nominal_voltage": "120.09", + "parent": "sx3086079b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3263051c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2212371533c0", + "nominal_voltage": "120.09", + "parent": "sx3263051c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3082993a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226159329a0", + "nominal_voltage": "120.09", + "parent": "sx3082993a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2859403", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2730108c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2820535b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338981b0", + "nominal_voltage": "120.09", + "parent": "sx2820535b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729411a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138769a0", + "nominal_voltage": "120.09", + "parent": "sx2729411a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729410c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338943c0", + "nominal_voltage": "120.09", + "parent": "sx2729410c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108286", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3066816a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21398676a0", + "nominal_voltage": "120.09", + "parent": "sx3066816a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3122822a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391987a0", + "nominal_voltage": "120.09", + "parent": "sx3122822a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1009770", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691945c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2691945c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2691945c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302812c0", + "nominal_voltage": "120.09", + "parent": "sx2691945c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1009771", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2729412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2150189a0", + "nominal_voltage": "120.09", + "parent": "sx2729412a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2861222a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260473a0", + "nominal_voltage": "120.09", + "parent": "sx2861222a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2937757c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227411650c0", + "nominal_voltage": "120.09", + "parent": "sx2937757c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108257", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3235258a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3235258c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2897800b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3235258b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3066813b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337693b0", + "nominal_voltage": "120.09", + "parent": "sx3066813b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254220c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138717c0", + "nominal_voltage": "120.09", + "parent": "sx3254220c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3122821b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338953b0", + "nominal_voltage": "120.09", + "parent": "sx3122821b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1009784", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691944a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321838a0", + "nominal_voltage": "120.09", + "parent": "sx2691944a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108259", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2820533a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226193298a0", + "nominal_voltage": "120.09", + "parent": "sx2820533a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2861223b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260461b0", + "nominal_voltage": "120.09", + "parent": "sx2861223b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108258", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2729413a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21397067a0", + "nominal_voltage": "120.09", + "parent": "sx2729413a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2730106c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3312692", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2842383a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108266", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108265", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108268", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108267", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108262", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108261", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897801a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108264", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108263", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3066814b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338979b0", + "nominal_voltage": "120.09", + "parent": "sx3066814b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108260", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2674047c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260514c0", + "nominal_voltage": "120.09", + "parent": "sx2674047c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2730187a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260464a0", + "nominal_voltage": "120.09", + "parent": "sx2730187a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3122824a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302402a0", + "nominal_voltage": "120.09", + "parent": "sx3122824a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2891575", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2729414a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293655a0", + "nominal_voltage": "120.09", + "parent": "sx2729414a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729414c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293655c0", + "nominal_voltage": "120.09", + "parent": "sx2729414c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729414b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293655b0", + "nominal_voltage": "120.09", + "parent": "sx2729414b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2842384c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3066819a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302677a0", + "nominal_voltage": "120.09", + "parent": "sx3066819a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3235256a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2814529", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3649302", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3649301", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3649304", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2690187", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3649306", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3649305", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1009705", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv69s1s2_5", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3122823b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302370b0", + "nominal_voltage": "120.09", + "parent": "sx3122823b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "hvmv69s1s2_4", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv69s1s2_7", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv69s1s2_6", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3086075b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260463b0", + "nominal_voltage": "120.09", + "parent": "sx3086075b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "hvmv69s1s2_1", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254227b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338995b0", + "nominal_voltage": "120.09", + "parent": "sx3254227b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "228-979371-2_int", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv69s1s2_3", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3649300", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv69s1s2_2", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3036169", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3036167", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3036164", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3036165", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3036162", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3036172", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3036170", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "193-46661", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3235255b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "hvmv69s1s2_9", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv69s1s2_8", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3225319b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1009715", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691941c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321887c0", + "nominal_voltage": "120.09", + "parent": "sx2691941c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3122826a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302731a0", + "nominal_voltage": "120.09", + "parent": "sx3122826a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3086078a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_218473a0", + "nominal_voltage": "120.09", + "parent": "sx3086078a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2898457a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260594a0", + "nominal_voltage": "120.09", + "parent": "sx2898457a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108299", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108298", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2983432a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_225534325a0", + "nominal_voltage": "120.09", + "parent": "sx2983432a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108295", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3066817a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*9144.33", + "base_power_2": "ieeezipload.value*9144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21373784a0", + "nominal_voltage": "120.09", + "parent": "sx3066817a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2000800", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1009720", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3235254c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1009724", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000413a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1009726", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000415a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3122825a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2118808a0", + "nominal_voltage": "120.09", + "parent": "sx3122825a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3156034a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "221-240988", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001309a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "221-240991", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3102793", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3066818b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138751b0", + "nominal_voltage": "120.09", + "parent": "sx3066818b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3181545", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3159645", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916598", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2916599", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3235253a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000414a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879078a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879078a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2879078a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21399229a0", + "nominal_voltage": "120.09", + "parent": "sx2879078a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2973150", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2929261a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2973152", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2804249c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "hvmv69s1s2_10", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973151", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p901946", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p901945", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5956499-2_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3160793c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2147899c0", + "nominal_voltage": "120.09", + "parent": "sx3160793c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108302", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "196-31070", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2879054a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108311", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2822863c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p901941", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104123c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3649299a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2674052", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973144", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2955005b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2955005b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2955005b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260589b0", + "nominal_voltage": "120.09", + "parent": "sx2955005b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "e192258", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973146", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3160103c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2973149", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973148", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879077b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337709b0", + "nominal_voltage": "120.09", + "parent": "sx2879077b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2674051", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973161", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973160", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973163", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973162", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3649298a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108317", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p901934", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216342b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337645b0", + "nominal_voltage": "120.09", + "parent": "sx3216342b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3215385c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3215385b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p901936", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3215385a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108316", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108315", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895075", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e184626", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2822864c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2879055c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p901931", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104124b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p901933", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p901932", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2802481", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973154", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3010557a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21380453a0", + "nominal_voltage": "120.09", + "parent": "sx3010557a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2802480", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973153", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973156", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973155", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2857591a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226101460a0", + "nominal_voltage": "120.09", + "parent": "sx2857591a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2955006c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356797c0", + "nominal_voltage": "120.09", + "parent": "sx2955006c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2973158", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2674047", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973157", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3160102b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2973159", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879076c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879076c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2879076c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138380c0", + "nominal_voltage": "120.09", + "parent": "sx2879076c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p895080", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p895082", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3160100b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3649297a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2804247b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3226771a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p895089", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216343c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337626c0", + "nominal_voltage": "120.09", + "parent": "sx3216343c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3189189b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p895087", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2822865c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2688692", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3177665a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227731863a0", + "nominal_voltage": "120.09", + "parent": "sx3177665a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104121a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2711224", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3067507c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160101a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2711225", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879075a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337724a0", + "nominal_voltage": "120.09", + "parent": "sx2879075a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2711226", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3010556a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138655a0", + "nominal_voltage": "120.09", + "parent": "sx3010556a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2917328b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2764403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2804248b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673331b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673331b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2673331b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10025.77", + "base_power_2": "ieeezipload.value*10025.77", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338990b0", + "nominal_voltage": "120.09", + "parent": "sx2673331b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2688693", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216344b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10025.77", + "base_power_2": "ieeezipload.value*10025.77", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323264b0", + "nominal_voltage": "120.09", + "parent": "sx3216344b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2801902b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226194002b0", + "nominal_voltage": "120.09", + "parent": "sx2801902b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2822866b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p901951", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108300", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841619c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3626914c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224179616c0", + "nominal_voltage": "120.09", + "parent": "sx3626914c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104122a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2711234", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2859391", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3067506c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879074a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_310560a0", + "nominal_voltage": "120.09", + "parent": "sx2879074a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p901909", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710546b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108347", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p901905", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001315a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2897807b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108354", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897806c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108353", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108356", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108355", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108350", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108352", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254230a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*912.37", + "base_power_2": "ieeezipload.value*912.37", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338989a0", + "nominal_voltage": "120.09", + "parent": "sx3254230a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3189188c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "e192201", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3037538", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3037537", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729430b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104157c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293427c0", + "nominal_voltage": "120.09", + "parent": "sx3104157c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2841618a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001314a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3104120b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108364", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108361", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2692655c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21389307c0", + "nominal_voltage": "120.09", + "parent": "sx2692655c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108360", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3214055c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2822860b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3198356c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3198358", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3198356", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3198355", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254231a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3254231a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3254231a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338988a0", + "nominal_voltage": "120.09", + "parent": "sx3254231a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2878848c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2212168887c0", + "nominal_voltage": "120.09", + "parent": "sx2878848c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m3949154", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3104154c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337642c0", + "nominal_voltage": "120.09", + "parent": "sx3104154c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m3949157", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3178969b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355596b0", + "nominal_voltage": "120.09", + "parent": "sx3178969b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2973171", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108329", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710544a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108328", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m3037540", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p901927", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069398", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001313a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108331", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108334", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841616a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2822861a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3198355b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2973165", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973164", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973167", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973166", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973169", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3066821a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391994a0", + "nominal_voltage": "120.09", + "parent": "sx3066821a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3104155c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104155c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3104155c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21474587c0", + "nominal_voltage": "120.09", + "parent": "sx3104155c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2973180", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879079b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391756b0", + "nominal_voltage": "120.09", + "parent": "sx2879079b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p901913", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001312a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p901912", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3157718a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001009b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2710543c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069384", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108335", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "regxfmr_hvmv11sub2_lsb", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2841615a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2897805a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108345", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2748840b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_157717b0", + "nominal_voltage": "120.09", + "parent": "sx2748840b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3047058a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069393", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108344", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2822862c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069390", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108340", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p901910", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973178", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3010559a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337679a0", + "nominal_voltage": "120.09", + "parent": "sx3010559a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3216349b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337708b0", + "nominal_voltage": "120.09", + "parent": "sx3216349b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2748139b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2804248", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804249", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2767342a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001311a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001008b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2710542b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069376", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785519", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001315", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000711b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000711b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000711b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4045.98", + "base_power_2": "ieeezipload.value*4045.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000711b0", + "nominal_voltage": "120.09", + "parent": "sx2000711b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2785518", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3215549", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001314", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785517", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001313", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785516", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069382", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001312", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785515", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254231", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785514", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804250", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000408a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000408a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000408a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7143.68", + "base_power_2": "ieeezipload.value*7143.68", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000408a0", + "nominal_voltage": "120.09", + "parent": "sx2000408a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "e193509", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785513", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3157710b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2785512", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254230", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785511", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804253", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2690941", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804254", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209772", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3101789a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_294842a0", + "nominal_voltage": "120.09", + "parent": "sx3101789a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2804251", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804252", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254234", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804257", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209775", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001311", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2954346b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2804258", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209776", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001310", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3030126c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2804255", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254237", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3235249a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356014a0", + "nominal_voltage": "120.09", + "parent": "sx3235249a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2804256", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254238", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209774", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3120504", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3120503", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3195318b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226194280b0", + "nominal_voltage": "120.09", + "parent": "sx3195318b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2804259", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2729434b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5712587-2_int", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2767343c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3139103", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001007b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2989565", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001310a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2989566", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001309", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d6141147-1_int", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069363", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069365", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069364", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001304", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2989571", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001303", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001302", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001301", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000712b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000712b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000712b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6431.03", + "base_power_2": "ieeezipload.value*6431.03", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000712b0", + "nominal_voltage": "120.09", + "parent": "sx2000712b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2804260", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254220", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001308", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2786266a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260631a0", + "nominal_voltage": "120.09", + "parent": "sx2786266a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2804261", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001307", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001306", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000909c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2001305", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209782", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2990826c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337619c0", + "nominal_voltage": "120.09", + "parent": "sx2990826c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2804262", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000409a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000409a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000409a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7459.77", + "base_power_2": "ieeezipload.value*7459.77", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000409a0", + "nominal_voltage": "120.09", + "parent": "sx2000409a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2990826a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337619a0", + "nominal_voltage": "120.09", + "parent": "sx2990826a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3101788a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321878a0", + "nominal_voltage": "120.09", + "parent": "sx3101788a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2954345c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2990826b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337619b0", + "nominal_voltage": "120.09", + "parent": "sx2990826b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3254228", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001300", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804269", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254229", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209787", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3235248c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321861c0", + "nominal_voltage": "120.09", + "parent": "sx3235248c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3120502", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3254227", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3011229a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3141412", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "hvmv69sub2_lnb", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2876797", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209788", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2876798", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3141411", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3207907", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2876796", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3085410b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3085410b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3085410b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_339097b0", + "nominal_voltage": "120.09", + "parent": "sx3085410b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3195751a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293681a0", + "nominal_voltage": "120.09", + "parent": "sx3195751a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069356", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001006b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "293471", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3195315a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226193662a0", + "nominal_voltage": "120.09", + "parent": "sx3195315a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2745811c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2916610b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2801909c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226195333c0", + "nominal_voltage": "120.09", + "parent": "sx2801909c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3142098b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2989564", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209790", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2692654a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260487a0", + "nominal_voltage": "120.09", + "parent": "sx2692654a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000406a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000406a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000406a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7235.63", + "base_power_2": "ieeezipload.value*7235.63", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000406a0", + "nominal_voltage": "120.09", + "parent": "sx2000406a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3081380", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1136672", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2767340c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3198348", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000908c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3198347", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209791", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2767340a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160109b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m1089-dies1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089-dies1_dgmtr", + "nominal_voltage": "277.13", + "parent": "m1089-dies1", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "x2767340b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d6108145-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1209797", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p1164481", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3235247a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321836a0", + "nominal_voltage": "120.09", + "parent": "sx3235247a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1209795", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104129a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2954348a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3141401", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3141402", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3141400", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069348", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2991640c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001005b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000710b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000710b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000710b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6000.00", + "base_power_2": "ieeezipload.value*6000.00", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000710b0", + "nominal_voltage": "120.09", + "parent": "sx2000710b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3176656a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069350", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3142099b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3198358b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000407a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000407a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000407a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6844.83", + "base_power_2": "ieeezipload.value*6844.83", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000407a0", + "nominal_voltage": "120.09", + "parent": "sx2000407a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2898522a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000907c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3235246b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323279b0", + "nominal_voltage": "120.09", + "parent": "sx3235246b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2767341c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160108b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2804247", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2954347b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3141403", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804245", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3727712a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224386889a0", + "nominal_voltage": "120.09", + "parent": "sx3727712a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197640c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3216345b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338933b0", + "nominal_voltage": "120.09", + "parent": "sx3216345b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069335", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5860423-3_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001004b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000404a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000404a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000404a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5580.46", + "base_power_2": "ieeezipload.value*5580.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000404a0", + "nominal_voltage": "120.09", + "parent": "sx2000404a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3065750b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323389b0", + "nominal_voltage": "120.09", + "parent": "sx3065750b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3235245c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337712c0", + "nominal_voltage": "120.09", + "parent": "sx3235245c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2724120c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2804245b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3048196b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138237b0", + "nominal_voltage": "120.09", + "parent": "sx3048196b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2000906c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3104127b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160107a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3120534", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2822867b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973150a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3216346a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391991a0", + "nominal_voltage": "120.09", + "parent": "sx3216346a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069328", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2842379a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260488a0", + "nominal_voltage": "120.09", + "parent": "sx2842379a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001003b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2917310b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260503b0", + "nominal_voltage": "120.09", + "parent": "sx2917310b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3122835b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p901972", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2972704", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3253570c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000405a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000405a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000405a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*8574.71", + "base_power_2": "ieeezipload.value*8574.71", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000405a0", + "nominal_voltage": "120.09", + "parent": "sx2000405a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d5774457-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3160106a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3104128a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000905c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3235244a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337676a0", + "nominal_voltage": "120.09", + "parent": "sx3235244a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2822868a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3118855c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_339052c0", + "nominal_voltage": "120.09", + "parent": "sx3118855c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3216347c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3216347c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3216347c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138413c0", + "nominal_voltage": "120.09", + "parent": "sx3216347c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069312", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069311", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001002b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069310", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3179682c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_207292c0", + "nominal_voltage": "120.09", + "parent": "sx3179682c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3727710a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224386863a0", + "nominal_voltage": "120.09", + "parent": "sx3727710a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3233353", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000402a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000402a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000402a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6459.77", + "base_power_2": "ieeezipload.value*6459.77", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000402a0", + "nominal_voltage": "120.09", + "parent": "sx2000402a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2804271", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804272", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104125b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3235243c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3235243c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3235243c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_275008c0", + "nominal_voltage": "120.09", + "parent": "sx3235243c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2804270", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2954344c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3179637c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3101787a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321877a0", + "nominal_voltage": "120.09", + "parent": "sx3101787a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2822869a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2933120", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3120376a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226163467a0", + "nominal_voltage": "120.09", + "parent": "sx3120376a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2000904c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973151a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2804277", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2767414c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_351019c0", + "nominal_voltage": "120.09", + "parent": "sx2767414c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3160105c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3216348a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3216348a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3216348a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337717a0", + "nominal_voltage": "120.09", + "parent": "sx3216348a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "r20185", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3139121", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069300", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3236004c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260572c0", + "nominal_voltage": "120.09", + "parent": "sx3236004c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3727711a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224386874a0", + "nominal_voltage": "120.09", + "parent": "sx3727711a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000403a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000403a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000403a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7212.64", + "base_power_2": "ieeezipload.value*7212.64", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000403a0", + "nominal_voltage": "120.09", + "parent": "sx2000403a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2674027", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122837c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2804282", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2989596", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2804283", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104126c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3048199b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323237b0", + "nominal_voltage": "120.09", + "parent": "sx3048199b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3235242c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21380500c0", + "nominal_voltage": "120.09", + "parent": "sx3235242c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2000903c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973152b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3231255c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160104b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2935557", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2935555", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2935556", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3649305a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224237718a0", + "nominal_voltage": "120.09", + "parent": "sx3649305a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001012b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3122816b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356062b0", + "nominal_voltage": "120.09", + "parent": "sx3122816b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197632b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2935559", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2729406c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337633c0", + "nominal_voltage": "120.09", + "parent": "sx2729406c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3143999a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3143999a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3143999a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226193696a0", + "nominal_voltage": "120.09", + "parent": "sx3143999a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2729423", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729424", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897769c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2935560", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000707b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000707b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000707b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5683.91", + "base_power_2": "ieeezipload.value*5683.91", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000707b0", + "nominal_voltage": "120.09", + "parent": "sx2000707b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197633a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3214055", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3215385", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000914c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973165a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3252336", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2935547", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3649304a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224237713a0", + "nominal_voltage": "120.09", + "parent": "sx3649304a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2001011b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3197631a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3122815b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321858b0", + "nominal_voltage": "120.09", + "parent": "sx3122815b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2935549", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729408", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729409", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2729407b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_247100b0", + "nominal_voltage": "120.09", + "parent": "sx2729407b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2916617b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3784018a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2729405", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729406", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729407", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729411", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2973833", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729412", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729413", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729414", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729410", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3157167", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000708b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000708b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000708b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7022.99", + "base_power_2": "ieeezipload.value*7022.99", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000708b0", + "nominal_voltage": "120.09", + "parent": "sx2000708b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2935550", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2935553", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2935554", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2935551", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2935552", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000913c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973166c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2000911c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001010b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2991909a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355773a0", + "nominal_voltage": "120.09", + "parent": "sx2991909a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx1108407b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*21570.76", + "base_power_2": "ieeezipload.value*21570.76", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2221108407b0", + "nominal_voltage": "120.09", + "parent": "sx1108407b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729408b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355768b0", + "nominal_voltage": "120.09", + "parent": "sx2729408b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841641b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21380156b0", + "nominal_voltage": "120.09", + "parent": "sx2841641b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197630a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2916618b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3122818c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2120183c0", + "nominal_voltage": "120.09", + "parent": "sx3122818c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000705b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000705b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000705b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5557.47", + "base_power_2": "ieeezipload.value*5557.47", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000705b0", + "nominal_voltage": "120.09", + "parent": "sx2000705b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2674052c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21393570c0", + "nominal_voltage": "120.09", + "parent": "sx2674052c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2897767c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973167b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879752b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_330122b0", + "nominal_voltage": "120.09", + "parent": "sx2879752b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2000912c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2935568", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000910c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2821770", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2935566", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2935567", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3122817c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355779c0", + "nominal_voltage": "120.09", + "parent": "sx3122817c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2991908a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338900a0", + "nominal_voltage": "120.09", + "parent": "sx2991908a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2729409b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355605b0", + "nominal_voltage": "120.09", + "parent": "sx2729409b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2916619b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3141411c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3104830c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_328367c0", + "nominal_voltage": "120.09", + "parent": "sx3104830c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3215549b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3649302a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224237653a0", + "nominal_voltage": "120.09", + "parent": "sx3649302a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2729427", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729428", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2729429", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2989571a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2674051a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2674051a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2674051a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21389831a0", + "nominal_voltage": "120.09", + "parent": "sx2674051a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2729434", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3179650b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2729430", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000706b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000706b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000706b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6770.11", + "base_power_2": "ieeezipload.value*6770.11", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000706b0", + "nominal_voltage": "120.09", + "parent": "sx2000706b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2897768c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3141412a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2748152b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3045895c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879753b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21249674b0", + "nominal_voltage": "120.09", + "parent": "sx2879753b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2763153a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3067447a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2766499c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10484.54", + "base_power_2": "ieeezipload.value*10484.54", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2212168880c0", + "nominal_voltage": "120.09", + "parent": "sx2766499c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3160793", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691959b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*20051.55", + "base_power_2": "ieeezipload.value*20051.55", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21400253b0", + "nominal_voltage": "120.09", + "parent": "sx2691959b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2861158c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000703b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000703b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000703b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5477.01", + "base_power_2": "ieeezipload.value*5477.01", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000703b0", + "nominal_voltage": "120.09", + "parent": "sx2000703b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2897765b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3197637c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3215340", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2973169a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2954338b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2748158a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3122819c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302860c0", + "nominal_voltage": "120.09", + "parent": "sx3122819c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2804250c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000704b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000704b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000704b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5873.56", + "base_power_2": "ieeezipload.value*5873.56", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000704b0", + "nominal_voltage": "120.09", + "parent": "sx2000704b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2785547", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785546", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "r42246", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897766c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3197636b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2785543", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "r42247", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048230c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293490c0", + "nominal_voltage": "120.09", + "parent": "sx3048230c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1009691", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2748157a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2858175a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_225668688a0", + "nominal_voltage": "120.09", + "parent": "sx2858175a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "bustype": "SWING_PQ", + "name": "m1089-lng1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1089-lng1_dgmtr", + "nominal_voltage": "277.13", + "parent": "m1089-lng1", + "phases": "ABCN" + }, + "children": [], + "name": "meter" + }, + { + "attributes": { + "name": "l2729401", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2763811c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3125349c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2785538", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785537", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785536", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2842390c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2785535", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785534", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3048231b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10025.77", + "base_power_2": "ieeezipload.value*10025.77", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21400215b0", + "nominal_voltage": "120.09", + "parent": "sx3048231b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2785531", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785530", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3197635b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2731712", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3649306a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224238167a0", + "nominal_voltage": "120.09", + "parent": "sx3649306a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2917255c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21386065c0", + "nominal_voltage": "120.09", + "parent": "sx2917255c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3097861", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2763812c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2954339b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2785529", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785528", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2000702b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000702b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000702b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6045.98", + "base_power_2": "ieeezipload.value*6045.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000702b0", + "nominal_voltage": "120.09", + "parent": "sx2000702b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2861157c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2785527", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785526", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785525", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785524", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785523", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785522", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2785521", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1009698", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897764b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2785520", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2898526c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3197634b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3254915", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3010562b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_325473b0", + "nominal_voltage": "120.09", + "parent": "sx3010562b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2992624a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260484a0", + "nominal_voltage": "120.09", + "parent": "sx2992624a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3448661b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2223878647b0", + "nominal_voltage": "120.09", + "parent": "sx3448661b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3159448a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108398", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108393", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108395", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860504", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3254234b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355586b0", + "nominal_voltage": "120.09", + "parent": "sx3254234b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2991939b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2860506", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3029183b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_228580047b0", + "nominal_voltage": "120.09", + "parent": "sx3029183b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2860500", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860501", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3010561a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337650a0", + "nominal_voltage": "120.09", + "parent": "sx3010561a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3142079", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691954b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21399361b0", + "nominal_voltage": "120.09", + "parent": "sx2691954b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673303c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2970811a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321881a0", + "nominal_voltage": "120.09", + "parent": "sx2970811a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3142078", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785546a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21399752a0", + "nominal_voltage": "120.09", + "parent": "sx2785546a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2895461a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_294789a0", + "nominal_voltage": "120.09", + "parent": "sx2895461a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2897800", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897801", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3142050c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_251865c0", + "nominal_voltage": "120.09", + "parent": "sx3142050c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2897806", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897807", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3082981c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226193737c0", + "nominal_voltage": "120.09", + "parent": "sx3082981c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2897805", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2858200", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2917330a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879092c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21399326c0", + "nominal_voltage": "120.09", + "parent": "sx2879092c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3122810b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323242b0", + "nominal_voltage": "120.09", + "parent": "sx3122810b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1009651", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1009650", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2785547b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337705b0", + "nominal_voltage": "120.09", + "parent": "sx2785547b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3010560b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338955b0", + "nominal_voltage": "120.09", + "parent": "sx3010560b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108368", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2763072b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226924200b0", + "nominal_voltage": "120.09", + "parent": "sx2763072b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2692660", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108375", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108378", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108372", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2897554c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10484.54", + "base_power_2": "ieeezipload.value*10484.54", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2212168870c0", + "nominal_voltage": "120.09", + "parent": "sx2897554c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197639a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2692664", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2692661", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3067448c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3253995c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3082983b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226193899b0", + "nominal_voltage": "120.09", + "parent": "sx3082983b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3142050", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108379", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2729401b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355597b0", + "nominal_voltage": "120.09", + "parent": "sx2729401b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "hvmv69s2s3_1", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108387", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2955055b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "hvmv69s2s3_2", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1009655", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2821087a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*13711.34", + "base_power_2": "ieeezipload.value*13711.34", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226308720a0", + "nominal_voltage": "120.09", + "parent": "sx2821087a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3066826b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_339003b0", + "nominal_voltage": "120.09", + "parent": "sx3066826b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108381", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108380", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2823544", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2823545", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2841648a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337720a0", + "nominal_voltage": "120.09", + "parent": "sx2841648a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3197638a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3122812b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21031694b0", + "nominal_voltage": "120.09", + "parent": "sx3122812b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2691951c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2691951c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2691951c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138379c0", + "nominal_voltage": "120.09", + "parent": "sx2691951c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254238b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293487b0", + "nominal_voltage": "120.09", + "parent": "sx3254238b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2000707", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000706", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000705", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000704", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000709", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000708", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3649301a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224237643a0", + "nominal_voltage": "120.09", + "parent": "sx3649301a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2000703", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766718c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138652c0", + "nominal_voltage": "120.09", + "parent": "sx2766718c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2000702", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000701", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000700", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3235268c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3178971a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338896a0", + "nominal_voltage": "120.09", + "parent": "sx3178971a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3010566c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138776c0", + "nominal_voltage": "120.09", + "parent": "sx3010566c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2917333a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2860478b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355590b0", + "nominal_voltage": "120.09", + "parent": "sx2860478b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673309c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3122811a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337669a0", + "nominal_voltage": "120.09", + "parent": "sx3122811a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673307c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3010565c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3010565c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3010565c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138343c0", + "nominal_voltage": "120.09", + "parent": "sx3010565c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3065665a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2708744b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*15041.24", + "base_power_2": "ieeezipload.value*15041.24", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226308710b0", + "nominal_voltage": "120.09", + "parent": "sx2708744b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2766717c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138470c0", + "nominal_voltage": "120.09", + "parent": "sx2766717c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935549b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7520.62", + "base_power_2": "ieeezipload.value*7520.62", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337668b0", + "nominal_voltage": "120.09", + "parent": "sx2935549b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3649300a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2224237546a0", + "nominal_voltage": "120.09", + "parent": "sx3649300a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3235267c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3178972c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10484.54", + "base_power_2": "ieeezipload.value*10484.54", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338923c0", + "nominal_voltage": "120.09", + "parent": "sx3178972c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2860479b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2005.15", + "base_power_2": "ieeezipload.value*2005.15", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355595b0", + "nominal_voltage": "120.09", + "parent": "sx2860479b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2691950c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138374c0", + "nominal_voltage": "120.09", + "parent": "sx2691950c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673308b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3010564c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321883c0", + "nominal_voltage": "120.09", + "parent": "sx3010564c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673306c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2691953a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302732a0", + "nominal_voltage": "120.09", + "parent": "sx2691953a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2841645c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321893c0", + "nominal_voltage": "120.09", + "parent": "sx2841645c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3122814c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338899c0", + "nominal_voltage": "120.09", + "parent": "sx3122814c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3172805a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226964880a0", + "nominal_voltage": "120.09", + "parent": "sx3172805a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3066829c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321894c0", + "nominal_voltage": "120.09", + "parent": "sx3066829c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3178973a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21149420a0", + "nominal_voltage": "120.09", + "parent": "sx3178973a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2000709b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2000709b_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2000709b", + "phases": "BS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5005.75", + "base_power_2": "ieeezipload.value*5005.75", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.87", + "current_pf_2": "0.87", + "name": "ld_2000709b0", + "nominal_voltage": "120.09", + "parent": "sx2000709b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3235266c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m3327098", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2691952a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391980a0", + "nominal_voltage": "120.09", + "parent": "sx2691952a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2935547b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21383553b0", + "nominal_voltage": "120.09", + "parent": "sx2935547b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673305b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m3327097", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3010563a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_294845a0", + "nominal_voltage": "120.09", + "parent": "sx3010563a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3254237a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21482181a0", + "nominal_voltage": "120.09", + "parent": "sx3254237a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2823592", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3214071", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3142099", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3122813a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138685a0", + "nominal_voltage": "120.09", + "parent": "sx3122813a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3142098", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2729405b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21393412b0", + "nominal_voltage": "120.09", + "parent": "sx2729405b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2766750c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2766719a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21357865a0", + "nominal_voltage": "120.09", + "parent": "sx2766719a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3214064", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3178974b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_323399b0", + "nominal_voltage": "120.09", + "parent": "sx3178974b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3214069", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2917336c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2860477a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2121587a0", + "nominal_voltage": "120.09", + "parent": "sx2860477a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3082988b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226195153b0", + "nominal_voltage": "120.09", + "parent": "sx3082988b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3178975b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321845b0", + "nominal_voltage": "120.09", + "parent": "sx3178975b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2746587c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227653310c0", + "nominal_voltage": "120.09", + "parent": "sx2746587c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2876814", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108423", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2876812", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2876813", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3085398b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2879092", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108433", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3027116", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138598", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138597", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2692600", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138599", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2766749b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160115b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2879089c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21455388c0", + "nominal_voltage": "120.09", + "parent": "sx2879089c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2897765", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3178976a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21397721a0", + "nominal_voltage": "120.09", + "parent": "sx3178976a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2897766", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710537b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2897764", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897769", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3176661c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2897767", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897768", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3085397b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3157708c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "196-35541", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879081", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2858163", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5686080-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2858166", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3010569a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302673a0", + "nominal_voltage": "120.09", + "parent": "sx3010569a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2879089", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3027124", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860478", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879087", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3027122", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860477", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2766748a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2860479", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3160114a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2916234a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_228549643a0", + "nominal_voltage": "120.09", + "parent": "sx2916234a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2710536a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2804259a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2991940c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2688692b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_225918926b0", + "nominal_voltage": "120.09", + "parent": "sx2688692b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3178977c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302810c0", + "nominal_voltage": "120.09", + "parent": "sx3178977c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108406", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108405", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3176660b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2860490", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2766716c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337713c0", + "nominal_voltage": "120.09", + "parent": "sx2766716c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "d6047588-1_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108407", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108402", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108401", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2786204c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108404", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108403", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2858175", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860485", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860484", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860487", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860486", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108410", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860481", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860480", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860483", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860482", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3010568a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338965a0", + "nominal_voltage": "120.09", + "parent": "sx3010568a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2860489", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3027133", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860488", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3027132", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3160113b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2766499", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2879087a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21399762a0", + "nominal_voltage": "120.09", + "parent": "sx2879087a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3178978a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_337723a0", + "nominal_voltage": "120.09", + "parent": "sx3178978a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1138594", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138593", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138596", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1138595", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2688693c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_225918936c0", + "nominal_voltage": "120.09", + "parent": "sx2688693c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3091052a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_228532641a0", + "nominal_voltage": "120.09", + "parent": "sx3091052a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2766715b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355593b0", + "nominal_voltage": "120.09", + "parent": "sx2766715b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m2000715", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2673343b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21470122b0", + "nominal_voltage": "120.09", + "parent": "sx2673343b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108413", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108412", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3085399c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2000710", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860492", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000714", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860491", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000713", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000712", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2860493", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2000711", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3179607b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260591b0", + "nominal_voltage": "120.09", + "parent": "sx3179607b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2860499", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3010567c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_302813c0", + "nominal_voltage": "120.09", + "parent": "sx3010567c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3066830b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21469960b0", + "nominal_voltage": "120.09", + "parent": "sx3066830b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p850072", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3142049", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2689678b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2970804c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356787c0", + "nominal_voltage": "120.09", + "parent": "sx2970804c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3178979c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_338968c0", + "nominal_voltage": "120.09", + "parent": "sx3178979c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2673300b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2001der480-2", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3085394c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m2001der480-1", + "nominal_voltage": "277.13", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2820556a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226196648a0", + "nominal_voltage": "120.09", + "parent": "sx2820556a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2879055", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879054", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3179608c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*7865.98", + "base_power_2": "ieeezipload.value*7865.98", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356793c0", + "nominal_voltage": "120.09", + "parent": "sx3179608c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p850083", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048887b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3085393c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2862616c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*15731.96", + "base_power_2": "ieeezipload.value*15731.96", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227447984c0", + "nominal_voltage": "120.09", + "parent": "sx2862616c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2970804", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069285", + "nominal_voltage": "7199.56", + "phases": "ACN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx1108410b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*31612.76", + "base_power_2": "ieeezipload.value*31612.76", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2226061820b0", + "nominal_voltage": "120.09", + "parent": "sx1108410b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "p850080", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3216350a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391977a0", + "nominal_voltage": "120.09", + "parent": "sx3216350a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1108486", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3233353a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2766744b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1108484", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108483", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3030199c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2692654", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2692655", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3048888c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2785543b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321860b0", + "nominal_voltage": "120.09", + "parent": "sx2785543b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3216351a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21398815a0", + "nominal_voltage": "120.09", + "parent": "sx3216351a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2710532c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2673346c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5242.27", + "base_power_2": "ieeezipload.value*5242.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_293486c0", + "nominal_voltage": "120.09", + "parent": "sx2673346c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3085396a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2879072", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879071", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879070", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069284", + "nominal_voltage": "7199.56", + "phases": "ACN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p1123251", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879079", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2766747a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2879078", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879077", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2685805a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_225533531a0", + "nominal_voltage": "120.09", + "parent": "sx2685805a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2879076", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879075", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879074", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879073", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2991943c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3048889c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2955047a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3085395a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2823611a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d2000401_int", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108459", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879061", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108464", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108460", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108462", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3315860b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3010.31", + "base_power_2": "ieeezipload.value*3010.31", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2223664050b0", + "nominal_voltage": "120.09", + "parent": "sx3315860b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2879069", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2692635", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879068", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879067", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2766746c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2692633", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879066", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879065", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879064", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879063", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2879062", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3778577c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160861c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "e182729", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3085390b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "p893163", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e182727", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e182726", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2692664c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_351021c0", + "nominal_voltage": "120.09", + "parent": "sx2692664c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "e182725", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2728247a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "e182724", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2710530b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "e182723", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e182722", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2916620a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2916620c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2916620b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d5806920-1_int", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2728247b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2728247c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2858166a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226192994a0", + "nominal_voltage": "120.09", + "parent": "sx2858166a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2897773a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3160862c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "d6048634-1_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2804253a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "hvmv69sub1_lsb2", + "nominal_voltage": "39837.17", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2822859b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3104119a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m4113345", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069249", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m4113347", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m4113348", + "nominal_voltage": "7199.56", + "phases": "ACN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140830", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3064514c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069248", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991902b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_391748b0", + "nominal_voltage": "120.09", + "parent": "sx2991902b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069247", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e182733", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140832", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e182732", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140831", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e182731", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e182730", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2970841", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2970842", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026997", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069250", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026990", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2970845", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2804254a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2897774b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3231269b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l3263051", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3085392c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "221-282818", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e182748", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e182746", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140823", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "e182745", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069230", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140822", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991901b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*5015.46", + "base_power_2": "ieeezipload.value*5015.46", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_354851b0", + "nominal_voltage": "120.09", + "parent": "sx2991901b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3198348a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "e182744", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140821", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3195327a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_225901711a0", + "nominal_voltage": "120.09", + "parent": "sx3195327a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "n1140820", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140827", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3198347c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3027132a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321876a0", + "nominal_voltage": "120.09", + "parent": "sx3027132a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2992657a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "n1140825", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140824", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2970811", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "221-282819", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140829", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140828", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2685809a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_225533162a0", + "nominal_voltage": "120.09", + "parent": "sx2685809a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3104117c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2804251a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2897771b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973160b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3085391b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069227", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069224", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069226", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069225", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2798067", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx3215203b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10025.77", + "base_power_2": "ieeezipload.value*10025.77", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227760024b0", + "nominal_voltage": "120.09", + "parent": "sx3215203b", + "phases": "BS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3215203a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3215203a_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3215203a", + "phases": "AS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*9144.33", + "base_power_2": "ieeezipload.value*9144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227760024a0", + "nominal_voltage": "120.09", + "parent": "sx3215203a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2992656a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3215203c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3215203c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx3215203c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*10484.54", + "base_power_2": "ieeezipload.value*10484.54", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_227760024c0", + "nominal_voltage": "120.09", + "parent": "sx3215203c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2989432", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140819", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140818", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "n1140817", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104118c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3179646b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2897772a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2804252a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3027133a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_226101449a0", + "nominal_voltage": "120.09", + "parent": "sx3027133a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2897792", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2973161a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2897793", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069217", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991907a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_138574a0", + "nominal_voltage": "120.09", + "parent": "sx2991907a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2690868", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2876813a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_355842a0", + "nominal_voltage": "120.09", + "parent": "sx2876813a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069218", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3645812c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069213", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2692660a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*9144.33", + "base_power_2": "ieeezipload.value*9144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260643a0", + "nominal_voltage": "120.09", + "parent": "sx2692660a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "m1069215", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069210", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026961", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122848c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026960", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026969", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2804257b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3104115b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx3142049c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2097.94", + "base_power_2": "ieeezipload.value*2097.94", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_356810c0", + "nominal_voltage": "120.09", + "parent": "sx3142049c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l3048890", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2972930a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2973162b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069206", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069205", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069208", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2876814a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_225806974a0", + "nominal_voltage": "120.09", + "parent": "sx2876814a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx2991906a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*1829.90", + "base_power_2": "ieeezipload.value*1829.90", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_247060a0", + "nominal_voltage": "120.09", + "parent": "sx2991906a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "sx3216358a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21399826a0", + "nominal_voltage": "120.09", + "parent": "sx3216358a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x2804258b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1069202", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1069201", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2876847", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "p841985", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2916625b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001015b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2876846", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048889", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026950", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026951", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1108400", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3122847a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026953", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048887", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3048888", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3195365", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026954", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2897770c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2897772", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897773", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897770", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2861197c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2861197c_pvmtr", + "nominal_voltage": "120.09", + "parent": "sx2861197c", + "phases": "CS" + }, + "children": [], + "name": "triplex_meter" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_21474711c0", + "nominal_voltage": "120.09", + "parent": "sx2861197c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2897771", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897776", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897777", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897774", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2991905a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*6855.67", + "base_power_2": "ieeezipload.value*6855.67", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_2148633a0", + "nominal_voltage": "120.09", + "parent": "sx2991905a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2897775", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3102286b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3645810c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2897778", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897779", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2001014b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026984", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001215", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001214", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026986", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001213", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104113a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2936268c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*3144.33", + "base_power_2": "ieeezipload.value*3144.33", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_223655c0", + "nominal_voltage": "120.09", + "parent": "sx2936268c", + "phases": "CS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3160117b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2804255b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026987", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001212", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897780", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001211", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2973163b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026989", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001210", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2822857b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2897784", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897781", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "sx2876812a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*2742.27", + "base_power_2": "ieeezipload.value*2742.27", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_321880a0", + "nominal_voltage": "120.09", + "parent": "sx2876812a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "x3645811c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3342743c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "sx2692661a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "base_power_1": "ieeezipload.value*4572.16", + "base_power_2": "ieeezipload.value*4572.16", + "current_fraction_1": "1.00", + "current_fraction_2": "1.00", + "current_pf_1": "0.97", + "current_pf_2": "0.97", + "name": "ld_260650a0", + "nominal_voltage": "120.09", + "parent": "sx2692661a", + "phases": "AS" + }, + "children": [], + "name": "triplex_load" + }, + { + "attributes": { + "name": "l2897789", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2916627a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2001013b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026972", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001205", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001204", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001203", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001202", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001209", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001208", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x3104114b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x3122849b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026970", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001207", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "d5534969-2_int", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001206", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2804256b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "l2897790", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l3140238", + "nominal_voltage": "7199.56", + "phases": "AN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001201", + "nominal_voltage": "7199.56", + "phases": "CN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "l2897791", + "nominal_voltage": "7199.56", + "phases": "BN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026977", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m2001200", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2000915c", + "nominal_voltage": "120.09", + "phases": "CS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "x2822858b", + "nominal_voltage": "120.09", + "phases": "BS" + }, + "children": [], + "name": "triplex_node" + }, + { + "attributes": { + "name": "m1026978", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "m1026979", + "nominal_voltage": "7199.56", + "phases": "ABCN" + }, + "children": [], + "name": "node" + }, + { + "attributes": { + "name": "x2973164a", + "nominal_voltage": "120.09", + "phases": "AS" + }, + "children": [], + "name": "triplex_node" + } + ], + "schedules": [] +} \ No newline at end of file diff --git a/local-server/tests/golden/model_base__model_schedules.json b/local-server/tests/golden/model_base__model_schedules.json new file mode 100644 index 00000000..a642c64a --- /dev/null +++ b/local-server/tests/golden/model_base__model_schedules.json @@ -0,0 +1,1229 @@ +{ + "classes": [], + "clock": {}, + "definitions": [], + "directives": [], + "includes": [], + "modules": [], + "objects": [], + "schedules": [ + { + "children": [ + [ + "* 0 * 4-9 1-5 0.380", + "* 1 * 4-9 1-5 0.340", + "* 2 * 4-9 1-5 0.320", + "* 3 * 4-9 1-5 0.320", + "* 4 * 4-9 1-5 0.320", + "* 5 * 4-9 1-5 0.350", + "* 6 * 4-9 1-5 0.410", + "* 7 * 4-9 1-5 0.450", + "* 8 * 4-9 1-5 0.450", + "* 9 * 4-9 1-5 0.450", + "* 10 * 4-9 1-5 0.450", + "* 11 * 4-9 1-5 0.450", + "* 12 * 4-9 1-5 0.450", + "* 13 * 4-9 1-5 0.440", + "* 14 * 4-9 1-5 0.440", + "* 15 * 4-9 1-5 0.450", + "* 16 * 4-9 1-5 0.470", + "* 17 * 4-9 1-5 0.510", + "* 18 * 4-9 1-5 0.540", + "* 19 * 4-9 1-5 0.560", + "* 20 * 4-9 1-5 0.630", + "* 21 * 4-9 1-5 0.710", + "* 22 * 4-9 1-5 0.650", + "* 23 * 4-9 1-5 0.490" + ], + [ + "* 0 * 4-9 6-0 0.410", + "* 1 * 4-9 6-0 0.360", + "* 2 * 4-9 6-0 0.330", + "* 3 * 4-9 6-0 0.320", + "* 4 * 4-9 6-0 0.320", + "* 5 * 4-9 6-0 0.320", + "* 6 * 4-9 6-0 0.340", + "* 7 * 4-9 6-0 0.390", + "* 8 * 4-9 6-0 0.440", + "* 9 * 4-9 6-0 0.470", + "* 10 * 4-9 6-0 0.470", + "* 11 * 4-9 6-0 0.470", + "* 12 * 4-9 6-0 0.470", + "* 13 * 4-9 6-0 0.460", + "* 14 * 4-9 6-0 0.460", + "* 15 * 4-9 6-0 0.460", + "* 16 * 4-9 6-0 0.470", + "* 17 * 4-9 6-0 0.490", + "* 18 * 4-9 6-0 0.520", + "* 19 * 4-9 6-0 0.540", + "* 20 * 4-9 6-0 0.610", + "* 21 * 4-9 6-0 0.680", + "* 22 * 4-9 6-0 0.630", + "* 23 * 4-9 6-0 0.500" + ], + [ + "* 0 * 10-3 1-5 0.4200", + "* 1 * 10-3 1-5 0.3800", + "* 2 * 10-3 1-5 0.3700", + "* 3 * 10-3 1-5 0.3600", + "* 4 * 10-3 1-5 0.3700", + "* 5 * 10-3 1-5 0.4200", + "* 6 * 10-3 1-5 0.5800", + "* 7 * 10-3 1-5 0.6900", + "* 8 * 10-3 1-5 0.6100", + "* 9 * 10-3 1-5 0.5600", + "* 10 * 10-3 1-5 0.5300", + "* 11 * 10-3 1-5 0.5100", + "* 12 * 10-3 1-5 0.4900", + "* 13 * 10-3 1-5 0.4700", + "* 14 * 10-3 1-5 0.4700", + "* 15 * 10-3 1-5 0.5100", + "* 16 * 10-3 1-5 0.6300", + "* 17 * 10-3 1-5 0.8400", + "* 18 * 10-3 1-5 0.9700", + "* 19 * 10-3 1-5 0.9800", + "* 20 * 10-3 1-5 0.9600", + "* 21 * 10-3 1-5 0.8900", + "* 22 * 10-3 1-5 0.7400", + "* 23 * 10-3 1-5 0.5500" + ], + [ + "* 0 * 10-3 6-0 0.4900", + "* 1 * 10-3 6-0 0.4200", + "* 2 * 10-3 6-0 0.3800", + "* 3 * 10-3 6-0 0.3800", + "* 4 * 10-3 6-0 0.3700", + "* 5 * 10-3 6-0 0.3800", + "* 6 * 10-3 6-0 0.4300", + "* 7 * 10-3 6-0 0.5100", + "* 8 * 10-3 6-0 0.6000", + "* 9 * 10-3 6-0 0.6300", + "* 10 * 10-3 6-0 0.6300", + "* 11 * 10-3 6-0 0.6100", + "* 12 * 10-3 6-0 0.6000", + "* 13 * 10-3 6-0 0.5900", + "* 14 * 10-3 6-0 0.5900", + "* 15 * 10-3 6-0 0.6100", + "* 16 * 10-3 6-0 0.7100", + "* 17 * 10-3 6-0 0.8800", + "* 18 * 10-3 6-0 0.9600", + "* 19 * 10-3 6-0 0.9700", + "* 20 * 10-3 6-0 0.9400", + "* 21 * 10-3 6-0 0.8800", + "* 22 * 10-3 6-0 0.7600", + "* 23 * 10-3 6-0 0.5800" + ] + ], + "name": "LIGHTS", + "values": [] + }, + { + "children": [ + [ + "* 0 * 4-9 1-5 0.380", + "* 1 * 4-9 1-5 0.340", + "* 2 * 4-9 1-5 0.320", + "* 3 * 4-9 1-5 0.320", + "* 4 * 4-9 1-5 0.320", + "* 5 * 4-9 1-5 0.350", + "* 6 * 4-9 1-5 0.410", + "* 7 * 4-9 1-5 0.450", + "* 8 * 4-9 1-5 0.450", + "* 9 * 4-9 1-5 0.450", + "* 10 * 4-9 1-5 0.450", + "* 11 * 4-9 1-5 0.450", + "* 12 * 4-9 1-5 0.450", + "* 13 * 4-9 1-5 0.440", + "* 14 * 4-9 1-5 0.440", + "* 15 * 4-9 1-5 0.450", + "* 16 * 4-9 1-5 0.470", + "* 17 * 4-9 1-5 0.510", + "* 18 * 4-9 1-5 0.540", + "* 19 * 4-9 1-5 0.560", + "* 20 * 4-9 1-5 0.630", + "* 21 * 4-9 1-5 0.710", + "* 22 * 4-9 1-5 0.650", + "* 23 * 4-9 1-5 0.490" + ], + [ + "* 0 * 4-9 6-0 0.410", + "* 1 * 4-9 6-0 0.360", + "* 2 * 4-9 6-0 0.330", + "* 3 * 4-9 6-0 0.320", + "* 4 * 4-9 6-0 0.320", + "* 5 * 4-9 6-0 0.320", + "* 6 * 4-9 6-0 0.340", + "* 7 * 4-9 6-0 0.390", + "* 8 * 4-9 6-0 0.440", + "* 9 * 4-9 6-0 0.470", + "* 10 * 4-9 6-0 0.470", + "* 11 * 4-9 6-0 0.470", + "* 12 * 4-9 6-0 0.470", + "* 13 * 4-9 6-0 0.460", + "* 14 * 4-9 6-0 0.460", + "* 15 * 4-9 6-0 0.460", + "* 16 * 4-9 6-0 0.470", + "* 17 * 4-9 6-0 0.490", + "* 18 * 4-9 6-0 0.520", + "* 19 * 4-9 6-0 0.540", + "* 20 * 4-9 6-0 0.610", + "* 21 * 4-9 6-0 0.680", + "* 22 * 4-9 6-0 0.630", + "* 23 * 4-9 6-0 0.500" + ], + [ + "* 0 * 10-3 1-5 0.4200", + "* 1 * 10-3 1-5 0.3800", + "* 2 * 10-3 1-5 0.3700", + "* 3 * 10-3 1-5 0.3600", + "* 4 * 10-3 1-5 0.3700", + "* 5 * 10-3 1-5 0.4200", + "* 6 * 10-3 1-5 0.5800", + "* 7 * 10-3 1-5 0.6900", + "* 8 * 10-3 1-5 0.6100", + "* 9 * 10-3 1-5 0.5600", + "* 10 * 10-3 1-5 0.5300", + "* 11 * 10-3 1-5 0.5100", + "* 12 * 10-3 1-5 0.4900", + "* 13 * 10-3 1-5 0.4700", + "* 14 * 10-3 1-5 0.4700", + "* 15 * 10-3 1-5 0.5100", + "* 16 * 10-3 1-5 0.6300", + "* 17 * 10-3 1-5 0.8400", + "* 18 * 10-3 1-5 0.9700", + "* 19 * 10-3 1-5 0.9800", + "* 20 * 10-3 1-5 0.9600", + "* 21 * 10-3 1-5 0.8900", + "* 22 * 10-3 1-5 0.7400", + "* 23 * 10-3 1-5 0.5500" + ], + [ + "* 0 * 10-3 6-0 0.4900", + "* 1 * 10-3 6-0 0.4200", + "* 2 * 10-3 6-0 0.3800", + "* 3 * 10-3 6-0 0.3800", + "* 4 * 10-3 6-0 0.3700", + "* 5 * 10-3 6-0 0.3800", + "* 6 * 10-3 6-0 0.4300", + "* 7 * 10-3 6-0 0.5100", + "* 8 * 10-3 6-0 0.6000", + "* 9 * 10-3 6-0 0.6300", + "* 10 * 10-3 6-0 0.6300", + "* 11 * 10-3 6-0 0.6100", + "* 12 * 10-3 6-0 0.6000", + "* 13 * 10-3 6-0 0.5900", + "* 14 * 10-3 6-0 0.5900", + "* 15 * 10-3 6-0 0.6100", + "* 16 * 10-3 6-0 0.7100", + "* 17 * 10-3 6-0 0.8800", + "* 18 * 10-3 6-0 0.9600", + "* 19 * 10-3 6-0 0.9700", + "* 20 * 10-3 6-0 0.9400", + "* 21 * 10-3 6-0 0.8800", + "* 22 * 10-3 6-0 0.7600", + "* 23 * 10-3 6-0 0.5800" + ] + ], + "name": "PLUGS", + "values": [] + }, + { + "children": [ + [ + "* 0 * 4-9 1-5 0.0029", + "* 1 * 4-9 1-5 0.0019", + "* 2 * 4-9 1-5 0.0014", + "* 3 * 4-9 1-5 0.0013", + "* 4 * 4-9 1-5 0.0018", + "* 5 * 4-9 1-5 0.0026", + "* 6 * 4-9 1-5 0.0055", + "* 7 * 4-9 1-5 0.0126", + "* 8 * 4-9 1-5 0.0181", + "* 9 * 4-9 1-5 0.0208", + "* 10 * 4-9 1-5 0.0229", + "* 11 * 4-9 1-5 0.0216", + "* 12 * 4-9 1-5 0.0193", + "* 13 * 4-9 1-5 0.0170", + "* 14 * 4-9 1-5 0.0145", + "* 15 * 4-9 1-5 0.0135", + "* 16 * 4-9 1-5 0.0135", + "* 17 * 4-9 1-5 0.0142", + "* 18 * 4-9 1-5 0.0145", + "* 19 * 4-9 1-5 0.0148", + "* 20 * 4-9 1-5 0.0146", + "* 21 * 4-9 1-5 0.0141", + "* 22 * 4-9 1-5 0.0110", + "* 23 * 4-9 1-5 0.0062" + ], + [ + "* 0 * 4-9 6-0 0.0031", + "* 1 * 4-9 6-0 0.0019", + "* 2 * 4-9 6-0 0.0013", + "* 3 * 4-9 6-0 0.0012", + "* 4 * 4-9 6-0 0.0012", + "* 5 * 4-9 6-0 0.0016", + "* 6 * 4-9 6-0 0.0027", + "* 7 * 4-9 6-0 0.0066", + "* 8 * 4-9 6-0 0.0157", + "* 9 * 4-9 6-0 0.0220", + "* 10 * 4-9 6-0 0.0258", + "* 11 * 4-9 6-0 0.0251", + "* 12 * 4-9 6-0 0.0231", + "* 13 * 4-9 6-0 0.0217", + "* 14 * 4-9 6-0 0.0186", + "* 15 * 4-9 6-0 0.0157", + "* 16 * 4-9 6-0 0.0156", + "* 17 * 4-9 6-0 0.0151", + "* 18 * 4-9 6-0 0.0147", + "* 19 * 4-9 6-0 0.0150", + "* 20 * 4-9 6-0 0.0156", + "* 21 * 4-9 6-0 0.0148", + "* 22 * 4-9 6-0 0.0106", + "* 23 * 4-9 6-0 0.0065" + ], + [ + "* 0 * 10-3 1-5 0.0036", + "* 1 * 10-3 1-5 0.0024", + "* 2 * 10-3 1-5 0.0020", + "* 3 * 10-3 1-5 0.0019", + "* 4 * 10-3 1-5 0.0026", + "* 5 * 10-3 1-5 0.0040", + "* 6 * 10-3 1-5 0.0062", + "* 7 * 10-3 1-5 0.0118", + "* 8 * 10-3 1-5 0.0177", + "* 9 * 10-3 1-5 0.0211", + "* 10 * 10-3 1-5 0.0215", + "* 11 * 10-3 1-5 0.0203", + "* 12 * 10-3 1-5 0.0176", + "* 13 * 10-3 1-5 0.0155", + "* 14 * 10-3 1-5 0.0133", + "* 15 * 10-3 1-5 0.0130", + "* 16 * 10-3 1-5 0.0145", + "* 17 * 10-3 1-5 0.0159", + "* 18 * 10-3 1-5 0.0166", + "* 19 * 10-3 1-5 0.0164", + "* 20 * 10-3 1-5 0.0154", + "* 21 * 10-3 1-5 0.0149", + "* 22 * 10-3 1-5 0.0110", + "* 23 * 10-3 1-5 0.0065" + ], + [ + "* 0 * 10-3 6-0 0.0044", + "* 1 * 10-3 6-0 0.0030", + "* 2 * 10-3 6-0 0.0022", + "* 3 * 10-3 6-0 0.0020", + "* 4 * 10-3 6-0 0.0021", + "* 5 * 10-3 6-0 0.0021", + "* 6 * 10-3 6-0 0.0030", + "* 7 * 10-3 6-0 0.0067", + "* 8 * 10-3 6-0 0.0145", + "* 9 * 10-3 6-0 0.0244", + "* 10 * 10-3 6-0 0.0310", + "* 11 * 10-3 6-0 0.0323", + "* 12 * 10-3 6-0 0.0308", + "* 13 * 10-3 6-0 0.0285", + "* 14 * 10-3 6-0 0.0251", + "* 15 * 10-3 6-0 0.0224", + "* 16 * 10-3 6-0 0.0215", + "* 17 * 10-3 6-0 0.0203", + "* 18 * 10-3 6-0 0.0194", + "* 19 * 10-3 6-0 0.0188", + "* 20 * 10-3 6-0 0.0180", + "* 21 * 10-3 6-0 0.0151", + "* 22 * 10-3 6-0 0.0122", + "* 23 * 10-3 6-0 0.0073" + ] + ], + "name": "CLOTHESWASHER", + "values": [] + }, + { + "children": [ + [ + "* 0 * 4-9 1-5 0.187", + "* 1 * 4-9 1-5 0.182", + "* 2 * 4-9 1-5 0.176", + "* 3 * 4-9 1-5 0.170", + "* 4 * 4-9 1-5 0.168", + "* 5 * 4-9 1-5 0.168", + "* 6 * 4-9 1-5 0.177", + "* 7 * 4-9 1-5 0.174", + "* 8 * 4-9 1-5 0.177", + "* 9 * 4-9 1-5 0.180", + "* 10 * 4-9 1-5 0.180", + "* 11 * 4-9 1-5 0.183", + "* 12 * 4-9 1-5 0.192", + "* 13 * 4-9 1-5 0.192", + "* 14 * 4-9 1-5 0.194", + "* 15 * 4-9 1-5 0.196", + "* 16 * 4-9 1-5 0.205", + "* 17 * 4-9 1-5 0.217", + "* 18 * 4-9 1-5 0.225", + "* 19 * 4-9 1-5 0.221", + "* 20 * 4-9 1-5 0.216", + "* 21 * 4-9 1-5 0.214", + "* 22 * 4-9 1-5 0.207", + "* 23 * 4-9 1-5 0.195" + ], + [ + "* 0 * 4-9 6-0 0.187", + "* 1 * 4-9 6-0 0.181", + "* 2 * 4-9 6-0 0.176", + "* 3 * 4-9 6-0 0.169", + "* 4 * 4-9 6-0 0.166", + "* 5 * 4-9 6-0 0.164", + "* 6 * 4-9 6-0 0.167", + "* 7 * 4-9 6-0 0.169", + "* 8 * 4-9 6-0 0.180", + "* 9 * 4-9 6-0 0.184", + "* 10 * 4-9 6-0 0.187", + "* 11 * 4-9 6-0 0.187", + "* 12 * 4-9 6-0 0.195", + "* 13 * 4-9 6-0 0.200", + "* 14 * 4-9 6-0 0.201", + "* 15 * 4-9 6-0 0.203", + "* 16 * 4-9 6-0 0.209", + "* 17 * 4-9 6-0 0.218", + "* 18 * 4-9 6-0 0.222", + "* 19 * 4-9 6-0 0.221", + "* 20 * 4-9 6-0 0.217", + "* 21 * 4-9 6-0 0.216", + "* 22 * 4-9 6-0 0.207", + "* 23 * 4-9 6-0 0.196" + ], + [ + "* 0 * 10-3 1-5 0.1530", + "* 1 * 10-3 1-5 0.1500", + "* 2 * 10-3 1-5 0.1460", + "* 3 * 10-3 1-5 0.1420", + "* 4 * 10-3 1-5 0.1400", + "* 5 * 10-3 1-5 0.1450", + "* 6 * 10-3 1-5 0.1520", + "* 7 * 10-3 1-5 0.1600", + "* 8 * 10-3 1-5 0.1580", + "* 9 * 10-3 1-5 0.1580", + "* 10 * 10-3 1-5 0.1560", + "* 11 * 10-3 1-5 0.1560", + "* 12 * 10-3 1-5 0.1630", + "* 13 * 10-3 1-5 0.1620", + "* 14 * 10-3 1-5 0.1590", + "* 15 * 10-3 1-5 0.1620", + "* 16 * 10-3 1-5 0.1690", + "* 17 * 10-3 1-5 0.1850", + "* 18 * 10-3 1-5 0.1920", + "* 19 * 10-3 1-5 0.1820", + "* 20 * 10-3 1-5 0.1800", + "* 21 * 10-3 1-5 0.1760", + "* 22 * 10-3 1-5 0.1670", + "* 23 * 10-3 1-5 0.1590" + ], + [ + "* 0 * 10-3 6-0 0.1560", + "* 1 * 10-3 6-0 0.1520", + "* 2 * 10-3 6-0 0.1470", + "* 3 * 10-3 6-0 0.1430", + "* 4 * 10-3 6-0 0.1420", + "* 5 * 10-3 6-0 0.1430", + "* 6 * 10-3 6-0 0.1430", + "* 7 * 10-3 6-0 0.1500", + "* 8 * 10-3 6-0 0.1610", + "* 9 * 10-3 6-0 0.1690", + "* 10 * 10-3 6-0 0.1670", + "* 11 * 10-3 6-0 0.1660", + "* 12 * 10-3 6-0 0.1740", + "* 13 * 10-3 6-0 0.1760", + "* 14 * 10-3 6-0 0.1740", + "* 15 * 10-3 6-0 0.1750", + "* 16 * 10-3 6-0 0.1790", + "* 17 * 10-3 6-0 0.1910", + "* 18 * 10-3 6-0 0.1930", + "* 19 * 10-3 6-0 0.1870", + "* 20 * 10-3 6-0 0.1840", + "* 21 * 10-3 6-0 0.1780", + "* 22 * 10-3 6-0 0.1700", + "* 23 * 10-3 6-0 0.1600" + ] + ], + "name": "REFRIGERATOR", + "values": [] + }, + { + "children": [ + [ + "* 0 * 4-9 1-5 0.036", + "* 1 * 4-9 1-5 0.013", + "* 2 * 4-9 1-5 0.007", + "* 3 * 4-9 1-5 0.005", + "* 4 * 4-9 1-5 0.005", + "* 5 * 4-9 1-5 0.017", + "* 6 * 4-9 1-5 0.048", + "* 7 * 4-9 1-5 0.085", + "* 8 * 4-9 1-5 0.115", + "* 9 * 4-9 1-5 0.156", + "* 10 * 4-9 1-5 0.179", + "* 11 * 4-9 1-5 0.185", + "* 12 * 4-9 1-5 0.172", + "* 13 * 4-9 1-5 0.162", + "* 14 * 4-9 1-5 0.145", + "* 15 * 4-9 1-5 0.136", + "* 16 * 4-9 1-5 0.133", + "* 17 * 4-9 1-5 0.134", + "* 18 * 4-9 1-5 0.127", + "* 19 * 4-9 1-5 0.130", + "* 20 * 4-9 1-5 0.141", + "* 21 * 4-9 1-5 0.154", + "* 22 * 4-9 1-5 0.138", + "* 23 * 4-9 1-5 0.083" + ], + [ + "* 0 * 4-9 6-0 0.041", + "* 1 * 4-9 6-0 0.017", + "* 2 * 4-9 6-0 0.008", + "* 3 * 4-9 6-0 0.005", + "* 4 * 4-9 6-0 0.005", + "* 5 * 4-9 6-0 0.007", + "* 6 * 4-9 6-0 0.018", + "* 7 * 4-9 6-0 0.047", + "* 8 * 4-9 6-0 0.100", + "* 9 * 4-9 6-0 0.168", + "* 10 * 4-9 6-0 0.205", + "* 11 * 4-9 6-0 0.220", + "* 12 * 4-9 6-0 0.211", + "* 13 * 4-9 6-0 0.210", + "* 14 * 4-9 6-0 0.188", + "* 15 * 4-9 6-0 0.168", + "* 16 * 4-9 6-0 0.154", + "* 17 * 4-9 6-0 0.146", + "* 18 * 4-9 6-0 0.138", + "* 19 * 4-9 6-0 0.137", + "* 20 * 4-9 6-0 0.144", + "* 21 * 4-9 6-0 0.155", + "* 22 * 4-9 6-0 0.131", + "* 23 * 4-9 6-0 0.081" + ], + [ + "* 0 * 10-3 1-5 0.0360", + "* 1 * 10-3 1-5 0.0160", + "* 2 * 10-3 1-5 0.0100", + "* 3 * 10-3 1-5 0.0070", + "* 4 * 10-3 1-5 0.0090", + "* 5 * 10-3 1-5 0.0230", + "* 6 * 10-3 1-5 0.0610", + "* 7 * 10-3 1-5 0.1030", + "* 8 * 10-3 1-5 0.1320", + "* 9 * 10-3 1-5 0.1750", + "* 10 * 10-3 1-5 0.2050", + "* 11 * 10-3 1-5 0.2130", + "* 12 * 10-3 1-5 0.1940", + "* 13 * 10-3 1-5 0.1770", + "* 14 * 10-3 1-5 0.1610", + "* 15 * 10-3 1-5 0.1560", + "* 16 * 10-3 1-5 0.1640", + "* 17 * 10-3 1-5 0.1710", + "* 18 * 10-3 1-5 0.1610", + "* 19 * 10-3 1-5 0.1590", + "* 20 * 10-3 1-5 0.1670", + "* 21 * 10-3 1-5 0.1690", + "* 22 * 10-3 1-5 0.1380", + "* 23 * 10-3 1-5 0.0820" + ], + [ + "* 0 * 10-3 6-0 0.0390", + "* 1 * 10-3 6-0 0.0190", + "* 2 * 10-3 6-0 0.0110", + "* 3 * 10-3 6-0 0.0070", + "* 4 * 10-3 6-0 0.0080", + "* 5 * 10-3 6-0 0.0090", + "* 6 * 10-3 6-0 0.0160", + "* 7 * 10-3 6-0 0.0430", + "* 8 * 10-3 6-0 0.1010", + "* 9 * 10-3 6-0 0.1810", + "* 10 * 10-3 6-0 0.2640", + "* 11 * 10-3 6-0 0.3050", + "* 12 * 10-3 6-0 0.3110", + "* 13 * 10-3 6-0 0.3060", + "* 14 * 10-3 6-0 0.2850", + "* 15 * 10-3 6-0 0.2700", + "* 16 * 10-3 6-0 0.2600", + "* 17 * 10-3 6-0 0.2450", + "* 18 * 10-3 6-0 0.2200", + "* 19 * 10-3 6-0 0.1980", + "* 20 * 10-3 6-0 0.1880", + "* 21 * 10-3 6-0 0.1790", + "* 22 * 10-3 6-0 0.1480", + "* 23 * 10-3 6-0 0.0930" + ] + ], + "name": "DRYER", + "values": [] + }, + { + "children": [ + [ + "* 0 * 4-9 1-5 0.210", + "* 1 * 4-9 1-5 0.213", + "* 2 * 4-9 1-5 0.208", + "* 3 * 4-9 1-5 0.202", + "* 4 * 4-9 1-5 0.203", + "* 5 * 4-9 1-5 0.198", + "* 6 * 4-9 1-5 0.190", + "* 7 * 4-9 1-5 0.186", + "* 8 * 4-9 1-5 0.189", + "* 9 * 4-9 1-5 0.194", + "* 10 * 4-9 1-5 0.199", + "* 11 * 4-9 1-5 0.202", + "* 12 * 4-9 1-5 0.211", + "* 13 * 4-9 1-5 0.214", + "* 14 * 4-9 1-5 0.219", + "* 15 * 4-9 1-5 0.222", + "* 16 * 4-9 1-5 0.230", + "* 17 * 4-9 1-5 0.228", + "* 18 * 4-9 1-5 0.229", + "* 19 * 4-9 1-5 0.223", + "* 20 * 4-9 1-5 0.224", + "* 21 * 4-9 1-5 0.223", + "* 22 * 4-9 1-5 0.218", + "* 23 * 4-9 1-5 0.214" + ], + [ + "* 0 * 4-9 6-0 0.203", + "* 1 * 4-9 6-0 0.202", + "* 2 * 4-9 6-0 0.202", + "* 3 * 4-9 6-0 0.193", + "* 4 * 4-9 6-0 0.198", + "* 5 * 4-9 6-0 0.195", + "* 6 * 4-9 6-0 0.191", + "* 7 * 4-9 6-0 0.183", + "* 8 * 4-9 6-0 0.184", + "* 9 * 4-9 6-0 0.192", + "* 10 * 4-9 6-0 0.197", + "* 11 * 4-9 6-0 0.202", + "* 12 * 4-9 6-0 0.208", + "* 13 * 4-9 6-0 0.219", + "* 14 * 4-9 6-0 0.219", + "* 15 * 4-9 6-0 0.225", + "* 16 * 4-9 6-0 0.225", + "* 17 * 4-9 6-0 0.225", + "* 18 * 4-9 6-0 0.223", + "* 19 * 4-9 6-0 0.219", + "* 20 * 4-9 6-0 0.221", + "* 21 * 4-9 6-0 0.220", + "* 22 * 4-9 6-0 0.215", + "* 23 * 4-9 6-0 0.209" + ], + [ + "* 0 * 10-3 1-5 0.149", + "* 1 * 10-3 1-5 0.148", + "* 2 * 10-3 1-5 0.145", + "* 3 * 10-3 1-5 0.144", + "* 4 * 10-3 1-5 0.143", + "* 5 * 10-3 1-5 0.140", + "* 6 * 10-3 1-5 0.138", + "* 7 * 10-3 1-5 0.138", + "* 8 * 10-3 1-5 0.140", + "* 9 * 10-3 1-5 0.141", + "* 10 * 10-3 1-5 0.142", + "* 11 * 10-3 1-5 0.147", + "* 12 * 10-3 1-5 0.153", + "* 13 * 10-3 1-5 0.154", + "* 14 * 10-3 1-5 0.152", + "* 15 * 10-3 1-5 0.151", + "* 16 * 10-3 1-5 0.161", + "* 17 * 10-3 1-5 0.174", + "* 18 * 10-3 1-5 0.176", + "* 19 * 10-3 1-5 0.176", + "* 20 * 10-3 1-5 0.175", + "* 21 * 10-3 1-5 0.169", + "* 22 * 10-3 1-5 0.160", + "* 23 * 10-3 1-5 0.153" + ], + [ + "* 0 * 10-3 6-0 0.155", + "* 1 * 10-3 6-0 0.150", + "* 2 * 10-3 6-0 0.143", + "* 3 * 10-3 6-0 0.141", + "* 4 * 10-3 6-0 0.141", + "* 5 * 10-3 6-0 0.139", + "* 6 * 10-3 6-0 0.138", + "* 7 * 10-3 6-0 0.139", + "* 8 * 10-3 6-0 0.142", + "* 9 * 10-3 6-0 0.142", + "* 10 * 10-3 6-0 0.145", + "* 11 * 10-3 6-0 0.153", + "* 12 * 10-3 6-0 0.161", + "* 13 * 10-3 6-0 0.162", + "* 14 * 10-3 6-0 0.160", + "* 15 * 10-3 6-0 0.161", + "* 16 * 10-3 6-0 0.165", + "* 17 * 10-3 6-0 0.177", + "* 18 * 10-3 6-0 0.179", + "* 19 * 10-3 6-0 0.177", + "* 20 * 10-3 6-0 0.171", + "* 21 * 10-3 6-0 0.168", + "* 22 * 10-3 6-0 0.160", + "* 23 * 10-3 6-0 0.151" + ] + ], + "name": "FREEZER", + "values": [] + }, + { + "children": [ + [ + "* 0 * 4-9 1-5 0.0068", + "* 1 * 4-9 1-5 0.0029", + "* 2 * 4-9 1-5 0.0016", + "* 3 * 4-9 1-5 0.0013", + "* 4 * 4-9 1-5 0.0012", + "* 5 * 4-9 1-5 0.0037", + "* 6 * 4-9 1-5 0.0075", + "* 7 * 4-9 1-5 0.0129", + "* 8 * 4-9 1-5 0.0180", + "* 9 * 4-9 1-5 0.0177", + "* 10 * 4-9 1-5 0.0144", + "* 11 * 4-9 1-5 0.0113", + "* 12 * 4-9 1-5 0.0116", + "* 13 * 4-9 1-5 0.0128", + "* 14 * 4-9 1-5 0.0109", + "* 15 * 4-9 1-5 0.0105", + "* 16 * 4-9 1-5 0.0124", + "* 17 * 4-9 1-5 0.0156", + "* 18 * 4-9 1-5 0.0278", + "* 19 * 4-9 1-5 0.0343", + "* 20 * 4-9 1-5 0.0279", + "* 21 * 4-9 1-5 0.0234", + "* 22 * 4-9 1-5 0.0194", + "* 23 * 4-9 1-5 0.0131" + ], + [ + "* 0 * 4-9 6-0 0.0093", + "* 1 * 4-9 6-0 0.0045", + "* 2 * 4-9 6-0 0.0021", + "* 3 * 4-9 6-0 0.0015", + "* 4 * 4-9 6-0 0.0013", + "* 5 * 4-9 6-0 0.0015", + "* 6 * 4-9 6-0 0.0026", + "* 7 * 4-9 6-0 0.0067", + "* 8 * 4-9 6-0 0.0142", + "* 9 * 4-9 6-0 0.0221", + "* 10 * 4-9 6-0 0.0259", + "* 11 * 4-9 6-0 0.0238", + "* 12 * 4-9 6-0 0.0214", + "* 13 * 4-9 6-0 0.0214", + "* 14 * 4-9 6-0 0.0188", + "* 15 * 4-9 6-0 0.0169", + "* 16 * 4-9 6-0 0.0156", + "* 17 * 4-9 6-0 0.0166", + "* 18 * 4-9 6-0 0.0249", + "* 19 * 4-9 6-0 0.0298", + "* 20 * 4-9 6-0 0.0267", + "* 21 * 4-9 6-0 0.0221", + "* 22 * 4-9 6-0 0.0174", + "* 23 * 4-9 6-0 0.0145" + ], + [ + "* 0 * 10-3 1-5 0.0068", + "* 1 * 10-3 1-5 0.0029", + "* 2 * 10-3 1-5 0.0016", + "* 3 * 10-3 1-5 0.0013", + "* 4 * 10-3 1-5 0.0012", + "* 5 * 10-3 1-5 0.0037", + "* 6 * 10-3 1-5 0.0075", + "* 7 * 10-3 1-5 0.0129", + "* 8 * 10-3 1-5 0.0180", + "* 9 * 10-3 1-5 0.0177", + "* 10 * 10-3 1-5 0.0144", + "* 11 * 10-3 1-5 0.0113", + "* 12 * 10-3 1-5 0.0116", + "* 13 * 10-3 1-5 0.0128", + "* 14 * 10-3 1-5 0.0109", + "* 15 * 10-3 1-5 0.0105", + "* 16 * 10-3 1-5 0.0124", + "* 17 * 10-3 1-5 0.0156", + "* 18 * 10-3 1-5 0.0278", + "* 19 * 10-3 1-5 0.0343", + "* 20 * 10-3 1-5 0.0279", + "* 21 * 10-3 1-5 0.0234", + "* 22 * 10-3 1-5 0.0194", + "* 23 * 10-3 1-5 0.0131" + ], + [ + "* 0 * 10-3 6-0 0.0093", + "* 1 * 10-3 6-0 0.0045", + "* 2 * 10-3 6-0 0.0021", + "* 3 * 10-3 6-0 0.0015", + "* 4 * 10-3 6-0 0.0013", + "* 5 * 10-3 6-0 0.0015", + "* 6 * 10-3 6-0 0.0026", + "* 7 * 10-3 6-0 0.0067", + "* 8 * 10-3 6-0 0.0142", + "* 9 * 10-3 6-0 0.0221", + "* 10 * 10-3 6-0 0.0259", + "* 11 * 10-3 6-0 0.0238", + "* 12 * 10-3 6-0 0.0214", + "* 13 * 10-3 6-0 0.0214", + "* 14 * 10-3 6-0 0.0188", + "* 15 * 10-3 6-0 0.0169", + "* 16 * 10-3 6-0 0.0156", + "* 17 * 10-3 6-0 0.0166", + "* 18 * 10-3 6-0 0.0249", + "* 19 * 10-3 6-0 0.0298", + "* 20 * 10-3 6-0 0.0267", + "* 21 * 10-3 6-0 0.0221", + "* 22 * 10-3 6-0 0.0174", + "* 23 * 10-3 6-0 0.0145" + ] + ], + "name": "DISHWASHER", + "values": [] + }, + { + "children": [ + [ + "* 0 * 4-9 1-5 0.009", + "* 1 * 4-9 1-5 0.008", + "* 2 * 4-9 1-5 0.007", + "* 3 * 4-9 1-5 0.007", + "* 4 * 4-9 1-5 0.008", + "* 5 * 4-9 1-5 0.012", + "* 6 * 4-9 1-5 0.025", + "* 7 * 4-9 1-5 0.040", + "* 8 * 4-9 1-5 0.044", + "* 9 * 4-9 1-5 0.042", + "* 10 * 4-9 1-5 0.042", + "* 11 * 4-9 1-5 0.053", + "* 12 * 4-9 1-5 0.057", + "* 13 * 4-9 1-5 0.046", + "* 14 * 4-9 1-5 0.044", + "* 15 * 4-9 1-5 0.053", + "* 16 * 4-9 1-5 0.094", + "* 17 * 4-9 1-5 0.168", + "* 18 * 4-9 1-5 0.148", + "* 19 * 4-9 1-5 0.086", + "* 20 * 4-9 1-5 0.053", + "* 21 * 4-9 1-5 0.038", + "* 22 * 4-9 1-5 0.023", + "* 23 * 4-9 1-5 0.013" + ], + [ + "* 0 * 4-9 6-0 0.009", + "* 1 * 4-9 6-0 0.007", + "* 2 * 4-9 6-0 0.007", + "* 3 * 4-9 6-0 0.007", + "* 4 * 4-9 6-0 0.007", + "* 5 * 4-9 6-0 0.009", + "* 6 * 4-9 6-0 0.017", + "* 7 * 4-9 6-0 0.038", + "* 8 * 4-9 6-0 0.060", + "* 9 * 4-9 6-0 0.068", + "* 10 * 4-9 6-0 0.065", + "* 11 * 4-9 6-0 0.067", + "* 12 * 4-9 6-0 0.076", + "* 13 * 4-9 6-0 0.066", + "* 14 * 4-9 6-0 0.061", + "* 15 * 4-9 6-0 0.067", + "* 16 * 4-9 6-0 0.091", + "* 17 * 4-9 6-0 0.134", + "* 18 * 4-9 6-0 0.121", + "* 19 * 4-9 6-0 0.080", + "* 20 * 4-9 6-0 0.052", + "* 21 * 4-9 6-0 0.035", + "* 22 * 4-9 6-0 0.022", + "* 23 * 4-9 6-0 0.011" + ], + [ + "* 0 * 10-3 1-5 0.010", + "* 1 * 10-3 1-5 0.009", + "* 2 * 10-3 1-5 0.009", + "* 3 * 10-3 1-5 0.009", + "* 4 * 10-3 1-5 0.009", + "* 5 * 10-3 1-5 0.016", + "* 6 * 10-3 1-5 0.032", + "* 7 * 10-3 1-5 0.050", + "* 8 * 10-3 1-5 0.045", + "* 9 * 10-3 1-5 0.043", + "* 10 * 10-3 1-5 0.045", + "* 11 * 10-3 1-5 0.059", + "* 12 * 10-3 1-5 0.063", + "* 13 * 10-3 1-5 0.053", + "* 14 * 10-3 1-5 0.052", + "* 15 * 10-3 1-5 0.072", + "* 16 * 10-3 1-5 0.138", + "* 17 * 10-3 1-5 0.242", + "* 18 * 10-3 1-5 0.182", + "* 19 * 10-3 1-5 0.088", + "* 20 * 10-3 1-5 0.051", + "* 21 * 10-3 1-5 0.034", + "* 22 * 10-3 1-5 0.022", + "* 23 * 10-3 1-5 0.014" + ], + [ + "* 0 * 10-3 6-0 0.013", + "* 1 * 10-3 6-0 0.010", + "* 2 * 10-3 6-0 0.010", + "* 3 * 10-3 6-0 0.010", + "* 4 * 10-3 6-0 0.010", + "* 5 * 10-3 6-0 0.012", + "* 6 * 10-3 6-0 0.018", + "* 7 * 10-3 6-0 0.040", + "* 8 * 10-3 6-0 0.073", + "* 9 * 10-3 6-0 0.094", + "* 10 * 10-3 6-0 0.091", + "* 11 * 10-3 6-0 0.100", + "* 12 * 10-3 6-0 0.117", + "* 13 * 10-3 6-0 0.109", + "* 14 * 10-3 6-0 0.100", + "* 15 * 10-3 6-0 0.108", + "* 16 * 10-3 6-0 0.153", + "* 17 * 10-3 6-0 0.215", + "* 18 * 10-3 6-0 0.161", + "* 19 * 10-3 6-0 0.085", + "* 20 * 10-3 6-0 0.050", + "* 21 * 10-3 6-0 0.033", + "* 22 * 10-3 6-0 0.022", + "* 23 * 10-3 6-0 0.014" + ] + ], + "name": "RANGE", + "values": [] + }, + { + "children": [ + [ + "* 0 * 4-9 1-5 0.009", + "* 1 * 4-9 1-5 0.008", + "* 2 * 4-9 1-5 0.007", + "* 3 * 4-9 1-5 0.007", + "* 4 * 4-9 1-5 0.008", + "* 5 * 4-9 1-5 0.012", + "* 6 * 4-9 1-5 0.025", + "* 7 * 4-9 1-5 0.040", + "* 8 * 4-9 1-5 0.044", + "* 9 * 4-9 1-5 0.042", + "* 10 * 4-9 1-5 0.042", + "* 11 * 4-9 1-5 0.053", + "* 12 * 4-9 1-5 0.057", + "* 13 * 4-9 1-5 0.046", + "* 14 * 4-9 1-5 0.044", + "* 15 * 4-9 1-5 0.053", + "* 16 * 4-9 1-5 0.094", + "* 17 * 4-9 1-5 0.168", + "* 18 * 4-9 1-5 0.148", + "* 19 * 4-9 1-5 0.086", + "* 20 * 4-9 1-5 0.053", + "* 21 * 4-9 1-5 0.038", + "* 22 * 4-9 1-5 0.023", + "* 23 * 4-9 1-5 0.013" + ], + [ + "* 0 * 4-9 6-0 0.009", + "* 1 * 4-9 6-0 0.007", + "* 2 * 4-9 6-0 0.007", + "* 3 * 4-9 6-0 0.007", + "* 4 * 4-9 6-0 0.007", + "* 5 * 4-9 6-0 0.009", + "* 6 * 4-9 6-0 0.017", + "* 7 * 4-9 6-0 0.038", + "* 8 * 4-9 6-0 0.060", + "* 9 * 4-9 6-0 0.068", + "* 10 * 4-9 6-0 0.065", + "* 11 * 4-9 6-0 0.067", + "* 12 * 4-9 6-0 0.076", + "* 13 * 4-9 6-0 0.066", + "* 14 * 4-9 6-0 0.061", + "* 15 * 4-9 6-0 0.067", + "* 16 * 4-9 6-0 0.091", + "* 17 * 4-9 6-0 0.134", + "* 18 * 4-9 6-0 0.121", + "* 19 * 4-9 6-0 0.080", + "* 20 * 4-9 6-0 0.052", + "* 21 * 4-9 6-0 0.035", + "* 22 * 4-9 6-0 0.022", + "* 23 * 4-9 6-0 0.011" + ], + [ + "* 0 * 10-3 1-5 0.010", + "* 1 * 10-3 1-5 0.009", + "* 2 * 10-3 1-5 0.009", + "* 3 * 10-3 1-5 0.009", + "* 4 * 10-3 1-5 0.009", + "* 5 * 10-3 1-5 0.016", + "* 6 * 10-3 1-5 0.032", + "* 7 * 10-3 1-5 0.050", + "* 8 * 10-3 1-5 0.045", + "* 9 * 10-3 1-5 0.043", + "* 10 * 10-3 1-5 0.045", + "* 11 * 10-3 1-5 0.059", + "* 12 * 10-3 1-5 0.063", + "* 13 * 10-3 1-5 0.053", + "* 14 * 10-3 1-5 0.052", + "* 15 * 10-3 1-5 0.072", + "* 16 * 10-3 1-5 0.138", + "* 17 * 10-3 1-5 0.242", + "* 18 * 10-3 1-5 0.182", + "* 19 * 10-3 1-5 0.088", + "* 20 * 10-3 1-5 0.051", + "* 21 * 10-3 1-5 0.034", + "* 22 * 10-3 1-5 0.022", + "* 23 * 10-3 1-5 0.014" + ], + [ + "* 0 * 10-3 6-0 0.013", + "* 1 * 10-3 6-0 0.010", + "* 2 * 10-3 6-0 0.010", + "* 3 * 10-3 6-0 0.010", + "* 4 * 10-3 6-0 0.010", + "* 5 * 10-3 6-0 0.012", + "* 6 * 10-3 6-0 0.018", + "* 7 * 10-3 6-0 0.040", + "* 8 * 10-3 6-0 0.073", + "* 9 * 10-3 6-0 0.094", + "* 10 * 10-3 6-0 0.091", + "* 11 * 10-3 6-0 0.100", + "* 12 * 10-3 6-0 0.117", + "* 13 * 10-3 6-0 0.109", + "* 14 * 10-3 6-0 0.100", + "* 15 * 10-3 6-0 0.108", + "* 16 * 10-3 6-0 0.153", + "* 17 * 10-3 6-0 0.215", + "* 18 * 10-3 6-0 0.161", + "* 19 * 10-3 6-0 0.085", + "* 20 * 10-3 6-0 0.050", + "* 21 * 10-3 6-0 0.033", + "* 22 * 10-3 6-0 0.022", + "* 23 * 10-3 6-0 0.014" + ] + ], + "name": "MICROWAVE", + "values": [] + }, + { + "children": [ + [ + "* 0 * 1-3,10-12 1-5 0.5365", + "* 1 * 1-3,10-12 1-5 0.4655", + "* 2 * 1-3,10-12 1-5 0.4465", + "* 3 * 1-3,10-12 1-5 0.4315", + "* 4 * 1-3,10-12 1-5 0.4455", + "* 5 * 1-3,10-12 1-5 0.5264", + "* 6 * 1-3,10-12 1-5 0.7661", + "* 7 * 1-3,10-12 1-5 0.9585", + "* 8 * 1-3,10-12 1-5 0.9022", + "* 9 * 1-3,10-12 1-5 0.8890", + "* 10 * 1-3,10-12 1-5 0.8840", + "* 11 * 1-3,10-12 1-5 0.8759", + "* 12 * 1-3,10-12 1-5 0.8348", + "* 13 * 1-3,10-12 1-5 0.7859", + "* 14 * 1-3,10-12 1-5 0.7652", + "* 15 * 1-3,10-12 1-5 0.8219", + "* 16 * 1-3,10-12 1-5 1.0241", + "* 17 * 1-3,10-12 1-5 1.3612", + "* 18 * 1-3,10-12 1-5 1.4683", + "* 19 * 1-3,10-12 1-5 1.4067", + "* 20 * 1-3,10-12 1-5 1.3512", + "* 21 * 1-3,10-12 1-5 1.2531", + "* 22 * 1-3,10-12 1-5 1.0321", + "* 23 * 1-3,10-12 1-5 0.7429" + ], + [ + "* 0 * 1-3,10-12 0,6 0.6261", + "* 1 * 1-3,10-12 0,6 0.5182", + "* 2 * 1-3,10-12 0,6 0.4606", + "* 3 * 1-3,10-12 0,6 0.4557", + "* 4 * 1-3,10-12 0,6 0.4449", + "* 5 * 1-3,10-12 0,6 0.4594", + "* 6 * 1-3,10-12 0,6 0.5304", + "* 7 * 1-3,10-12 0,6 0.6740", + "* 8 * 1-3,10-12 0,6 0.8739", + "* 9 * 1-3,10-12 0,6 1.0216", + "* 10 * 1-3,10-12 0,6 1.1140", + "* 11 * 1-3,10-12 0,6 1.1404", + "* 12 * 1-3,10-12 0,6 1.1456", + "* 13 * 1-3,10-12 0,6 1.1211", + "* 14 * 1-3,10-12 0,6 1.0878", + "* 15 * 1-3,10-12 0,6 1.0954", + "* 16 * 1-3,10-12 0,6 1.2347", + "* 17 * 1-3,10-12 0,6 1.4651", + "* 18 * 1-3,10-12 0,6 1.4991", + "* 19 * 1-3,10-12 0,6 1.4287", + "* 20 * 1-3,10-12 0,6 1.3494", + "* 21 * 1-3,10-12 0,6 1.2501", + "* 22 * 1-3,10-12 0,6 1.0660", + "* 23 * 1-3,10-12 0,6 0.7921" + ], + [ + "* 0 * 4-9 1-5 0.4897", + "* 1 * 4-9 1-5 0.4145", + "* 2 * 4-9 1-5 0.3829", + "* 3 * 4-9 1-5 0.3806", + "* 4 * 4-9 1-5 0.3817", + "* 5 * 4-9 1-5 0.4340", + "* 6 * 4-9 1-5 0.5499", + "* 7 * 4-9 1-5 0.6556", + "* 8 * 4-9 1-5 0.6961", + "* 9 * 4-9 1-5 0.7413", + "* 10 * 4-9 1-5 0.7653", + "* 11 * 4-9 1-5 0.7755", + "* 12 * 4-9 1-5 0.7631", + "* 13 * 4-9 1-5 0.7326", + "* 14 * 4-9 1-5 0.7097", + "* 15 * 4-9 1-5 0.7180", + "* 16 * 4-9 1-5 0.7711", + "* 17 * 4-9 1-5 0.8799", + "* 18 * 4-9 1-5 0.8993", + "* 19 * 4-9 1-5 0.8810", + "* 20 * 4-9 1-5 0.9447", + "* 21 * 4-9 1-5 1.0348", + "* 22 * 4-9 1-5 0.9337", + "* 23 * 4-9 1-5 0.6756" + ], + [ + "* 0 * 4-9 0,6 0.5295", + "* 1 * 4-9 0,6 0.4417", + "* 2 * 4-9 0,6 0.3954", + "* 3 * 4-9 0,6 0.3806", + "* 4 * 4-9 0,6 0.3804", + "* 5 * 4-9 0,6 0.3847", + "* 6 * 4-9 0,6 0.4273", + "* 7 * 4-9 0,6 0.5372", + "* 8 * 4-9 0,6 0.6791", + "* 9 * 4-9 0,6 0.8010", + "* 10 * 4-9 0,6 0.8423", + "* 11 * 4-9 0,6 0.8563", + "* 12 * 4-9 0,6 0.8494", + "* 13 * 4-9 0,6 0.8282", + "* 14 * 4-9 0,6 0.7962", + "* 15 * 4-9 0,6 0.7771", + "* 16 * 4-9 0,6 0.7927", + "* 17 * 4-9 0,6 0.8434", + "* 18 * 4-9 0,6 0.8635", + "* 19 * 4-9 0,6 0.8555", + "* 20 * 4-9 0,6 0.9222", + "* 21 * 4-9 0,6 0.9977", + "* 22 * 4-9 0,6 0.8988", + "* 23 * 4-9 0,6 0.6840" + ] + ], + "name": "responsive_loads", + "values": [] + }, + { + "children": [ + [ + "* 0 * 1-3,10-12 1-5 0.2084", + "* 1 * 1-3,10-12 1-5 0.2056", + "* 2 * 1-3,10-12 1-5 0.2008", + "* 3 * 1-3,10-12 1-5 0.1973", + "* 4 * 1-3,10-12 1-5 0.1953", + "* 5 * 1-3,10-12 1-5 0.1967", + "* 6 * 1-3,10-12 1-5 0.2001", + "* 7 * 1-3,10-12 1-5 0.2056", + "* 8 * 1-3,10-12 1-5 0.2056", + "* 9 * 1-3,10-12 1-5 0.2063", + "* 10 * 1-3,10-12 1-5 0.2056", + "* 11 * 1-3,10-12 1-5 0.2091", + "* 12 * 1-3,10-12 1-5 0.2180", + "* 13 * 1-3,10-12 1-5 0.2180", + "* 14 * 1-3,10-12 1-5 0.2146", + "* 15 * 1-3,10-12 1-5 0.2160", + "* 16 * 1-3,10-12 1-5 0.2277", + "* 17 * 1-3,10-12 1-5 0.2477", + "* 18 * 1-3,10-12 1-5 0.2539", + "* 19 * 1-3,10-12 1-5 0.2470", + "* 20 * 1-3,10-12 1-5 0.2450", + "* 21 * 1-3,10-12 1-5 0.2381", + "* 22 * 1-3,10-12 1-5 0.2256", + "* 23 * 1-3,10-12 1-5 0.2153" + ], + [ + "* 0 * 1-3,10-12 0,6 0.2146", + "* 1 * 1-3,10-12 0,6 0.2084", + "* 2 * 1-3,10-12 0,6 0.2001", + "* 3 * 1-3,10-12 0,6 0.1960", + "* 4 * 1-3,10-12 0,6 0.1953", + "* 5 * 1-3,10-12 0,6 0.1946", + "* 6 * 1-3,10-12 0,6 0.1939", + "* 7 * 1-3,10-12 0,6 0.1994", + "* 8 * 1-3,10-12 0,6 0.2091", + "* 9 * 1-3,10-12 0,6 0.2146", + "* 10 * 1-3,10-12 0,6 0.2153", + "* 11 * 1-3,10-12 0,6 0.2201", + "* 12 * 1-3,10-12 0,6 0.2312", + "* 13 * 1-3,10-12 0,6 0.2332", + "* 14 * 1-3,10-12 0,6 0.2305", + "* 15 * 1-3,10-12 0,6 0.2318", + "* 16 * 1-3,10-12 0,6 0.2374", + "* 17 * 1-3,10-12 0,6 0.2539", + "* 18 * 1-3,10-12 0,6 0.2567", + "* 19 * 1-3,10-12 0,6 0.2512", + "* 20 * 1-3,10-12 0,6 0.2450", + "* 21 * 1-3,10-12 0,6 0.2387", + "* 22 * 1-3,10-12 0,6 0.2277", + "* 23 * 1-3,10-12 0,6 0.2146" + ], + [ + "* 0 * 4-9 1-5 0.2739", + "* 1 * 4-9 1-5 0.2726", + "* 2 * 4-9 1-5 0.2650", + "* 3 * 4-9 1-5 0.2567", + "* 4 * 4-9 1-5 0.2560", + "* 5 * 4-9 1-5 0.2525", + "* 6 * 4-9 1-5 0.2532", + "* 7 * 4-9 1-5 0.2484", + "* 8 * 4-9 1-5 0.2525", + "* 9 * 4-9 1-5 0.2581", + "* 10 * 4-9 1-5 0.2615", + "* 11 * 4-9 1-5 0.2657", + "* 12 * 4-9 1-5 0.2781", + "* 13 * 4-9 1-5 0.2801", + "* 14 * 4-9 1-5 0.2850", + "* 15 * 4-9 1-5 0.2884", + "* 16 * 4-9 1-5 0.3002", + "* 17 * 4-9 1-5 0.3071", + "* 18 * 4-9 1-5 0.3133", + "* 19 * 4-9 1-5 0.3064", + "* 20 * 4-9 1-5 0.3036", + "* 21 * 4-9 1-5 0.3015", + "* 22 * 4-9 1-5 0.2933", + "* 23 * 4-9 1-5 0.2822" + ], + [ + "* 0 * 4-9 0,6 0.2691", + "* 1 * 4-9 0,6 0.2643", + "* 2 * 4-9 0,6 0.2608", + "* 3 * 4-9 0,6 0.2498", + "* 4 * 4-9 0,6 0.2512", + "* 5 * 4-9 0,6 0.2477", + "* 6 * 4-9 0,6 0.2470", + "* 7 * 4-9 0,6 0.2429", + "* 8 * 4-9 0,6 0.2512", + "* 9 * 4-9 0,6 0.2594", + "* 10 * 4-9 0,6 0.2650", + "* 11 * 4-9 0,6 0.2684", + "* 12 * 4-9 0,6 0.2781", + "* 13 * 4-9 0,6 0.2891", + "* 14 * 4-9 0,6 0.2898", + "* 15 * 4-9 0,6 0.2953", + "* 16 * 4-9 0,6 0.2995", + "* 17 * 4-9 0,6 0.3057", + "* 18 * 4-9 0,6 0.3071", + "* 19 * 4-9 0,6 0.3036", + "* 20 * 4-9 0,6 0.3022", + "* 21 * 4-9 0,6 0.3008", + "* 22 * 4-9 0,6 0.2912", + "* 23 * 4-9 0,6 0.2795" + ] + ], + "name": "unresponsive_loads", + "values": [] + }, + { + "children": [], + "name": "pool_pump_season", + "values": [ + "* * * 5-9 * 1", + "* * * 1-4,10-12 * 0" + ] + } + ] +} \ No newline at end of file diff --git a/local-server/tests/golden/model_base__model_startup.json b/local-server/tests/golden/model_base__model_startup.json new file mode 100644 index 00000000..fe784fa0 --- /dev/null +++ b/local-server/tests/golden/model_base__model_startup.json @@ -0,0 +1,158 @@ +{ + "classes": [ + { + "name": "player", + "properties": [ + { + "name": "value", + "type": "double" + } + ] + } + ], + "clock": { + "starttime": "2023-05-03 17:48:47", + "stoptime": "2023-05-03 17:50:47", + "timezone": "UTC0" + }, + "definitions": [ + { + "name": "VSOURCE", + "value": "66395.28095680696" + } + ], + "directives": [ + { + "name": "maximum_synctime", + "value": "3600" + }, + { + "name": "suppress_repeat_messages", + "value": "1" + }, + { + "name": "relax_naming_rules", + "value": "1" + }, + { + "name": "profiler", + "value": "1" + }, + { + "name": "minimum_timestep", + "value": "0.1" + } + ], + "includes": [ + { + "value": "model_schedules.glm" + }, + { + "value": "model_base.glm" + } + ], + "modules": [ + { + "attributes": {}, + "name": "connection" + }, + { + "attributes": {}, + "name": "generators" + }, + { + "attributes": {}, + "name": "tape" + }, + { + "attributes": { + "report_event_log": "false" + }, + "name": "reliability" + }, + { + "attributes": { + "line_capacitance": "TRUE", + "solver_method": "NR" + }, + "name": "powerflow" + }, + { + "attributes": {}, + "name": "climate" + }, + { + "attributes": {}, + "name": "reliability" + } + ], + "objects": [ + { + "attributes": { + "configure": "model_outputs.json", + "message_type": "JSON", + "name": "1344825712", + "publish_period": "3" + }, + "children": [], + "name": "helics_msg" + }, + { + "attributes": { + "file": "1344825712.csv", + "interval": "1", + "parent": "1344825712", + "property": "message_type" + }, + "children": [], + "name": "recorder" + }, + { + "attributes": { + "check_mode": "ONCHANGE", + "eventgen_object": "external_event_handler", + "grid_association": "TRUE", + "name": "fault_check_object", + "output_filename": "fault_check_output.txt", + "strictly_radial": "FALSE" + }, + "children": [], + "name": "fault_check" + }, + { + "attributes": { + "name": "external_event_handler", + "use_external_faults": "TRUE" + }, + "children": [], + "name": "eventgen" + }, + { + "attributes": { + "filename": "model_weather.csv", + "name": "CSVREADER" + }, + "children": [], + "name": "csv_reader" + }, + { + "attributes": { + "name": "Weather Data", + "reader": "CSVREADER", + "tmyfile": "model_weather.csv" + }, + "children": [], + "name": "climate" + }, + { + "attributes": { + "file": "ieeezipload.player", + "loop": "0", + "name": "ieeezipload" + }, + "children": [], + "name": "player" + } + ], + "schedules": [] +} \ No newline at end of file diff --git a/local-server/tests/test_glmparser.py b/local-server/tests/test_glmparser.py new file mode 100644 index 00000000..fbf1e289 --- /dev/null +++ b/local-server/tests/test_glmparser.py @@ -0,0 +1,907 @@ +"""Tests for the pure-Python GLM parser.""" +import pytest + +from glmparser.errors import GlmParseError + + +def test_error_computes_line_and_column_from_offset(): + source = "object node {\n name foo;\n bad!\n}\n" + offset = source.index("bad!") + err = GlmParseError("Unexpected token", source, offset) + assert err.line == 3 + assert err.column == 2 + + +def test_error_renders_caret_under_offending_column(): + source = "object node {\n name foo;\n bad!\n}\n" + err = GlmParseError("Unexpected token", source, source.index("bad!")) + rendered = str(err) + assert "line: 3" in rendered + assert "column: 2" in rendered + assert "Unexpected token" in rendered + # the caret sits directly beneath the first bad character + lines = rendered.splitlines() + caret_line = next(l for l in lines if l.strip() == "^") + assert caret_line.index("^") == 2 + + +def test_error_without_offset_is_plain_message(): + err = GlmParseError("something broke") + assert str(err) == "something broke" + assert err.line is None + + +def test_offset_at_eof_clamps_to_the_last_real_line(): + # The lexer's EOF token carries start == len(source), and unterminated + # blocks raise on it. Without clamping this is an IndexError, not a + # GlmParseError -- which breaks the unterminated-block/schedule tests. + source = "module powerflow {\n solver_method NR;\n" + err = GlmParseError("Unexpected end of file inside block", source, len(source)) + assert err.line == 2 + assert err.column == len(" solver_method NR;") + assert "Unexpected end of file inside block" in str(err) + + +def test_offset_at_eof_without_trailing_newline(): + source = "module powerflow {" + err = GlmParseError("boom", source, len(source)) + assert err.line == 1 + assert err.column == len(source) + + +def test_caret_prefix_preserves_tabs_for_alignment(): + source = "object node {\n\t\tbad!\n}\n" + err = GlmParseError("nope", source, source.index("bad!")) + caret_line = next(l for l in str(err).splitlines() if l.strip() == "^") + # tabs are copied through so the caret aligns at any tab width + assert caret_line == "\t\t^" + + +from glmparser.lexer import EOF, Lexer + + +def kinds(source): + lex = Lexer(source) + out = [] + while lex.peek().kind != EOF: + tok = lex.next() + out.append((tok.kind, tok.text)) + return out + + +def test_lexer_tokenizes_an_object_block(): + assert kinds("object node { name foo; }") == [ + ("kw", "object"), + ("word", "node"), + ("lbrace", "{"), + ("word", "name"), + ("word", "foo"), + ("semi", ";"), + ("rbrace", "}"), + ] + + +def test_lexer_discards_line_comments(): + assert kinds("name foo; // trailing comment\nname bar;") == [ + ("word", "name"), + ("word", "foo"), + ("semi", ";"), + ("word", "name"), + ("word", "bar"), + ("semi", ";"), + ] + + +def test_lexer_recognizes_hash_directives_without_the_hash_in_text(): + assert kinds("#set profiler=1") == [("hash", "set"), ("word", "profiler=1")] + assert kinds("#define VSOURCE=1") == [("hash", "define"), ("word", "VSOURCE=1")] + assert kinds('#include "a.glm";') == [ + ("hash", "include"), + ("word", '"a.glm"'), + ("semi", ";"), + ] + + +def test_hash_token_offsets_start_at_the_pound_sign(): + lex = Lexer("#set profiler=1") + tok = lex.peek() + assert tok.kind == "hash" + assert tok.start == 0 # points at '#', not at 's' + assert tok.end == len("#set") + + +def test_lexer_peek_does_not_consume(): + lex = Lexer("object node") + assert lex.peek().text == "object" + assert lex.peek().text == "object" + assert lex.next().text == "object" + assert lex.peek().text == "node" + + +def test_lexer_returns_eof_forever_past_the_end(): + lex = Lexer("name") + lex.next() + assert lex.next().kind == EOF + assert lex.next().kind == EOF + assert lex.peek().kind == EOF + + +def test_keywords_only_match_as_whole_words(): + # `object_name` must not lex as the `object` keyword plus `_name` + assert kinds("object_name foo;") == [ + ("word", "object_name"), + ("word", "foo"), + ("semi", ";"), + ] + + +def test_dollar_brace_substitution_is_one_token(): + # CRITICAL: if `${VSOURCE}` lexes as word/lbrace/word/rbrace, that rbrace + # closes the enclosing object early and every later attribute is corrupted. + # This breaks 6 of the 17 sample models. + assert kinds("positive_sequence_voltage ${VSOURCE};") == [ + ("word", "positive_sequence_voltage"), + ("word", "${VSOURCE}"), + ("semi", ";"), + ] + + +def test_substitution_adjacent_to_text_still_covers_the_source(): + # Split across tokens is fine -- the parser slices source by offset, which + # rejoins them -- but no brace may leak out as an lbrace/rbrace token. + assert [k for k, _ in kinds("prefix${A}suffix;")] == ["word", "word", "word", "semi"] + + +def test_a_bare_dollar_sign_is_not_dropped(): + # Excluding `$` from the value branch without a bare-`$` fallback makes + # finditer skip it silently: `a$b;` would cover only `ab;`. + assert kinds("a$b;") == [("word", "a"), ("word", "$"), ("word", "b"), ("semi", ";")] + assert kinds("$;") == [("word", "$"), ("semi", ";")] + + +def test_unterminated_substitution_stays_on_its_own_line(): + # With `[^}]*` an unterminated `${` runs to the next `}` ANYWHERE in the + # file, swallowing a brace that closes an unrelated block. Measured: the + # loose form silently drops `object other` entirely. + source = "object node {\n name ${A\n}\nobject other {\n name val;\n}" + lex = Lexer(source) + texts = [] + while lex.peek().kind != EOF: + texts.append(lex.next().text) + # no token may span the newline that follows `${A` + assert not any("\n" in t for t in texts) + + +def test_lexer_covers_every_non_whitespace_character(): + # Whitespace is intentionally skipped; nothing else may be. + for source in ("prefix${A}suffix;", "a$b;", "$;", "$", "x ${A}${B} y;"): + lex = Lexer(source) + covered = [] + while lex.peek().kind != EOF: + covered.append(lex.next().text) + assert "".join(covered) == "".join(source.split()), source + + +def test_quoted_string_is_one_token_including_semicolons(): + assert kinds('k "a;b";') == [("word", "k"), ("word", '"a;b"'), ("semi", ";")] + assert kinds("k 'x y';") == [("word", "k"), ("word", "'x y'"), ("semi", ";")] + + +def test_urls_are_not_mistaken_for_comments(): + # `//` after a colon is part of a URL, not a comment. lexer.nim:218 does the + # same check. + assert kinds("#define stylesheet=http://example.org/gridlabd") == [ + ("hash", "define"), + ("word", "stylesheet=http://example.org/gridlabd"), + ] + + +def test_lexer_error_carries_position(): + lex = Lexer("object node {\n bad\n}") + lex.next() + err = lex.error("boom") + assert err.line == 1 + + +from glmparser.parser import Parser + + +def parse(source): + return Parser(source).parse() + + +def test_empty_source_yields_the_full_ast_skeleton(): + ast = parse("") + assert ast == { + "clock": {}, + "includes": [], + "objects": [], + "modules": [], + "classes": [], + "directives": [], + "definitions": [], + "schedules": [], + } + + +def test_clock_block_parses_to_a_flat_dict(): + ast = parse("clock {\n timezone PST+8PDT;\n starttime '2000-01-01 0:00:00';\n};") + assert ast["clock"] == { + "timezone": "PST+8PDT", + "starttime": "2000-01-01 0:00:00", + } + + +def test_module_with_no_attributes(): + assert parse("module powerflow;")["modules"] == [ + {"name": "powerflow", "attributes": {}} + ] + + +def test_module_with_attributes(): + ast = parse("module powerflow {\n solver_method NR;\n lu_solver KLU;\n};") + assert ast["modules"] == [ + { + "name": "powerflow", + "attributes": {"solver_method": "NR", "lu_solver": "KLU"}, + } + ] + + +def test_class_blocks_reach_the_ast(): + # REGRESSION: the Nim parser collected classes then never emitted them. + ast = parse("class thermostat {\n double setpoint;\n};") + assert ast["classes"] == [ + {"name": "thermostat", "properties": [{"type": "double", "name": "setpoint"}]} + ] + + +def test_class_keeps_every_property_sharing_a_type(): + # REGRESSION: a dict keyed by property type collapsed same-typed properties, + # silently dropping all but the last. Multiple `double`s is the normal shape + # of a GridLAB-D class. + ast = parse( + "class residential_enduse {\n" + " double power_factor;\n" + " double heatgain_fraction;\n" + " char32 name;\n" + "};" + ) + assert ast["classes"] == [ + { + "name": "residential_enduse", + "properties": [ + {"type": "double", "name": "power_factor"}, + {"type": "double", "name": "heatgain_fraction"}, + {"type": "char32", "name": "name"}, + ], + } + ] + + +def test_class_round_trips_with_repeated_types(): + source = ( + "class residential_enduse {\n" + " double power_factor;\n" + " double heatgain_fraction;\n" + "};" + ) + ast = parse(source) + assert parse(write_glm(ast)) == ast + + +def test_set_and_define_directives_are_newline_terminated(): + # REGRESSION: running these to the next `;` makes them swallow later lines. + ast = parse("#set relax_naming_rules=1\n#set profiler=1\n\nmodule tape;\n") + assert ast["directives"] == [ + {"name": "relax_naming_rules", "value": "1"}, + {"name": "profiler", "value": "1"}, + ] + assert ast["modules"] == [{"name": "tape", "attributes": {}}] + + +def test_define_directive(): + ast = parse('#define VSOURCE=69715.045\n#include "Rotating_Machines.glm";\n') + assert ast["definitions"] == [{"name": "VSOURCE", "value": "69715.045"}] + assert ast["includes"] == [{"value": "Rotating_Machines.glm"}] + + +def test_include_strips_quotes_and_semicolon(): + ast = parse('#include "Inverters.glm";\n#include "Recorders.glm";\n') + assert ast["includes"] == [ + {"value": "Inverters.glm"}, + {"value": "Recorders.glm"}, + ] + + +def test_directive_value_stops_before_a_trailing_comment(): + # Slicing raw source to the newline drags the comment into the value. + ast = parse( + "#set deltamode_timestep=100000000\t\t//100 ms\n" + "#set deltamode_iteration_limit=10\t//Iteration limit\n" + ) + assert ast["directives"] == [ + {"name": "deltamode_timestep", "value": "100000000"}, + {"name": "deltamode_iteration_limit", "value": "10"}, + ] + + +def test_substitution_inside_an_attribute_value_does_not_close_the_block(): + # The `}` in `${VSOURCE}` must not terminate the enclosing block. + ast = parse( + "module powerflow {\n" + " positive_sequence_voltage ${VSOURCE};\n" + " solver_method NR;\n" + "};" + ) + assert ast["modules"][0]["attributes"] == { + "positive_sequence_voltage": "${VSOURCE}", + "solver_method": "NR", + } + + +def test_multi_word_and_substitution_values_are_preserved_exactly(): + ast = parse( + "module m {\n" + " positive_sequence_voltage ${VSOURCE};\n" + " rating .winter.emergency 200.00;\n" + "};" + ) + assert ast["modules"][0]["attributes"]["positive_sequence_voltage"] == "${VSOURCE}" + assert ast["modules"][0]["attributes"]["rating"] == ".winter.emergency 200.00" + + +def test_dotted_attribute_keys_stay_distinct(): + # REGRESSION: the Nim parser collapsed all four into one mangled `rating`. + ast = parse( + "module m {\n" + " rating.summer.continuous 200.00;\n" + " rating.summer.emergency 210.00;\n" + " rating.winter.continuous 220.00;\n" + " rating.winter.emergency 230.00;\n" + "};" + ) + assert ast["modules"][0]["attributes"] == { + "rating.summer.continuous": "200.00", + "rating.summer.emergency": "210.00", + "rating.winter.continuous": "220.00", + "rating.winter.emergency": "230.00", + } + + +def test_duplicate_keys_collapse_last_wins(): + ast = parse("module m {\n phases A;\n phases B;\n};") + assert ast["modules"][0]["attributes"] == {"phases": "B"} + + +def test_comments_are_ignored(): + ast = parse("// leading comment\nmodule tape; // trailing\n") + assert ast["modules"] == [{"name": "tape", "attributes": {}}] + + +def test_value_missing_semicolon_before_closing_brace(): + # `_value_to_semicolon` tolerates rbrace as a terminator so a final + # attribute without its `;` does not run away and eat the block. + ast = parse("module m {\n solver_method NR\n};") + assert ast["modules"] == [{"name": "m", "attributes": {"solver_method": "NR"}}] + + +def test_directive_without_equals_does_not_crash(): + ast = parse("#set profiler\n") + assert ast["directives"] == [{"name": "profiler", "value": ""}] + + +def test_directive_as_last_line_without_trailing_newline(): + # `_value_to_eol` must handle find("\n") returning -1. + ast = parse("#define VSOURCE=69715.045") + assert ast["definitions"] == [{"name": "VSOURCE", "value": "69715.045"}] + + +def test_empty_directive_does_not_swallow_the_next_statement(): + # Anchoring the line bound to the next token instead of the directive + # keyword made `module tape;` vanish into the directive's value. + ast = parse("#set\nmodule tape;\nmodule powerflow;\n") + assert ast["directives"] == [{"name": "", "value": ""}] + assert [m["name"] for m in ast["modules"]] == ["tape", "powerflow"] + + +def test_empty_include_does_not_swallow_the_next_statement(): + ast = parse("#include\nmodule tape;\n") + assert ast["includes"] == [{"value": ""}] + assert [m["name"] for m in ast["modules"]] == ["tape"] + + +def test_empty_block(): + ast = parse("module m { };") + assert ast["modules"] == [{"name": "m", "attributes": {}}] + + +def test_unknown_top_level_token_raises_with_line_number(): + with pytest.raises(GlmParseError) as excinfo: + parse("module tape;\ngarbage\n") + assert excinfo.value.line == 2 + + +def test_unterminated_block_raises(): + with pytest.raises(GlmParseError): + parse("module powerflow {\n solver_method NR;\n") + + +import re + +UUID_RE = re.compile(r"^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$") + + +def test_simple_object(): + ast = parse("object node {\n name n1;\n phases ABC;\n};") + assert ast["objects"] == [ + { + "name": "node", + "attributes": {"name": "n1", "phases": "ABC"}, + "children": [], + } + ] + + +def test_object_type_may_carry_a_colon_id(): + ast = parse("object node:12 {\n name n1;\n};") + assert ast["objects"][0]["name"] == "node:12" + + +def test_bare_nested_object_becomes_a_child(): + ast = parse( + "object house {\n" + " name h1;\n" + " object ZIPload {\n" + " name z1;\n" + " };\n" + "};" + ) + assert len(ast["objects"]) == 1 + parent = ast["objects"][0] + assert parent["attributes"] == {"name": "h1"} + assert parent["children"] == [ + {"name": "ZIPload", "attributes": {"name": "z1"}, "children": []} + ] + + +def test_anonymous_object_is_hoisted_and_referenced_by_generated_name(): + ast = parse( + "object overhead_line {\n" + " name line1;\n" + " configuration object line_configuration {\n" + " name lc1;\n" + " };\n" + "};" + ) + # parent stays at index 0 only after the hoisted child is appended + parent = next(o for o in ast["objects"] if o["name"] == "overhead_line") + hoisted = next(o for o in ast["objects"] if o["name"] == "line_configuration") + + assert len(ast["objects"]) == 2 + assert parent["children"] == [] + + generated = parent["attributes"]["configuration"] + assert UUID_RE.match(generated) + # the generated name is what links parent to hoisted child + assert hoisted["attributes"]["name"] == generated + + +def test_deeply_nested_objects_recurse(): + ast = parse( + "object a {\n" + " name a1;\n" + " object b {\n" + " name b1;\n" + " object c {\n" + " name c1;\n" + " };\n" + " };\n" + "};" + ) + a = ast["objects"][0] + b = a["children"][0] + c = b["children"][0] + assert (a["name"], b["name"], c["name"]) == ("a", "b", "c") + assert c["attributes"] == {"name": "c1"} + + +def test_object_missing_opening_brace_raises(): + with pytest.raises(GlmParseError): + parse("object node\n name n1;\n};") + + +def test_flat_schedule(): + ast = parse( + "schedule office_lights {\n" + " * 9-17 * * 1-5 1.0;\n" + " * 18-8 * * 1-5 0.1;\n" + "};" + ) + assert ast["schedules"] == [ + { + "name": "office_lights", + "values": ["* 9-17 * * 1-5 1.0", "* 18-8 * * 1-5 0.1"], + "children": [], + } + ] + + +def test_schedule_with_sub_blocks(): + ast = parse( + "schedule s {\n" + " {\n" + " * 9-17 * * 1-5 1.0;\n" + " * 18-8 * * 1-5 0.1;\n" + " }\n" + " {\n" + " * * * * 6-0 0.5;\n" + " }\n" + "};" + ) + assert ast["schedules"][0]["name"] == "s" + assert ast["schedules"][0]["values"] == [] + assert ast["schedules"][0]["children"] == [ + ["* 9-17 * * 1-5 1.0", "* 18-8 * * 1-5 0.1"], + ["* * * * 6-0 0.5"], + ] + + +def test_schedule_value_without_trailing_semicolon_still_terminates(): + ast = parse("schedule s {\n * * * * * 1.0\n};") + assert ast["schedules"][0]["values"] == ["* * * * * 1.0"] + + +def test_unterminated_schedule_raises(): + with pytest.raises(GlmParseError): + parse("schedule s {\n * * * * * 1.0;\n") + + +from glmparser.writer import dumps as write_glm + + +def test_writes_clock_and_object(): + text = write_glm( + { + "clock": {"timezone": "PST+8PDT"}, + "objects": [ + {"name": "node", "attributes": {"name": "n1"}, "children": []} + ], + } + ) + assert "clock {" in text + assert "\ttimezone PST+8PDT;" in text + assert "object node {" in text + assert "\tname n1;" in text + + +def test_set_and_define_carry_no_semicolon(): + text = write_glm( + { + "directives": [{"name": "profiler", "value": "1"}], + "definitions": [{"name": "VSOURCE", "value": "69715.045"}], + } + ) + assert "#set profiler=1\n" in text + assert "#set profiler=1;" not in text + assert "#define VSOURCE=69715.045\n" in text + assert "#define VSOURCE=69715.045;" not in text + + +def test_include_is_quoted_and_semicolon_terminated(): + # REGRESSION: the Nim writer dropped includes entirely, so exported models + # lost their #include lines. It also would have dropped the quotes. + text = write_glm({"includes": [{"value": "Inverters.glm"}]}) + assert '#include "Inverters.glm";\n' in text + + +def test_module_without_attributes_uses_short_form(): + text = write_glm({"modules": [{"name": "tape", "attributes": {}}]}) + assert "module tape;\n" in text + assert "module tape {" not in text + + +def test_classes_are_written(): + text = write_glm( + { + "classes": [ + { + "name": "thermostat", + "properties": [{"type": "double", "name": "setpoint"}], + } + ] + } + ) + assert "class thermostat {" in text + assert "\tdouble setpoint;" in text + + +def test_nested_children_are_indented_inside_the_parent(): + text = write_glm( + { + "objects": [ + { + "name": "house", + "attributes": {"name": "h1"}, + "children": [ + { + "name": "ZIPload", + "attributes": {"name": "z1"}, + "children": [], + } + ], + } + ] + } + ) + assert "\tobject ZIPload {" in text + assert "\t\tname z1;" in text + + +def test_schedule_with_sub_blocks_round_trips_shape(): + text = write_glm( + { + "schedules": [ + {"name": "s", "values": ["* * * * * 1.0"], "children": [["* * * * 6-0 0.5"]]} + ] + } + ) + assert "schedule s {" in text + assert "\t* * * * * 1.0;" in text + assert "\t{\n" in text + assert "\t\t* * * * 6-0 0.5;" in text + + +def roundtrip_attributes(attributes): + """Write one object, parse it back, return its attributes. + + Substring assertions on writer output cannot catch malformation -- they pass + happily on text this project's own parser rejects or misreads. Anything + claiming a value survives export must go through the parser. + """ + text = write_glm( + {"objects": [{"name": "n", "attributes": attributes, "children": []}]} + ) + return parse(text)["objects"][0]["attributes"] + + +def test_values_containing_semicolons_survive_round_trip(): + # Quoting only works because the lexer consumes a quoted string whole. + # Without that, this reads back as {'weird': 'a', 'b"': ''}. + assert roundtrip_attributes({"weird": "a;b"}) == {"weird": "a;b"} + assert roundtrip_attributes({"k": "a;b;c"}) == {"k": "a;b;c"} + assert roundtrip_attributes({"k": "trailingsemi;"}) == {"k": "trailingsemi;"} + + +def test_ordinary_values_survive_round_trip(): + for value in ("NR", "1.0 + 2.0j", "${VSOURCE}", "a\nb", "200.00"): + assert roundtrip_attributes({"k": value}) == {"k": value}, value + + +def test_unrepresentable_values_raise_instead_of_corrupting(): + # GLM has no escape mechanism, so these cannot round-trip. Writing them + # anyway produces a model that silently reads back as different data, so + # the writer refuses. No value in any of the 17 sample models hits this. + for value in ('has "quote"', 'a;b said "x"', "newline\nand;semicolon"): + with pytest.raises(ValueError, match="Cannot export attribute"): + write_glm( + {"objects": [{"name": "n", "attributes": {"k": value}, "children": []}]} + ) + + +def test_unrepresentable_value_names_the_offending_attribute(): + # Ends with a quote character, so it still raises under the new predicate + # (an interior quote alone, like `x"y`, is representable -- see + # test_interior_quote_without_semicolon_is_representable). + with pytest.raises(ValueError, match="'bad_attr'"): + write_glm( + { + "objects": [ + {"name": "n", "attributes": {"bad_attr": 'x"y"'}, "children": []} + ] + } + ) + + +def test_interior_quote_without_semicolon_is_representable(): + # `3"x5` round-trips exactly; rejecting it would make a model containing an + # inch mark permanently un-exportable. + assert roundtrip_attributes({"size": '3"x5'}) == {"size": '3"x5'} + assert roundtrip_attributes({"k": "a\"b"}) == {"k": "a\"b"} + assert roundtrip_attributes({"k": "it's"}) == {"k": "it's"} + + +def test_written_output_reparses_to_the_same_ast(): + ast = parse( + "clock {\n timezone PST+8PDT;\n};\n" + "#set profiler=1\n" + '#include "Inverters.glm";\n' + "module powerflow {\n solver_method NR;\n};\n" + "module tape;\n" + "class thermostat {\n double setpoint;\n};\n" + "schedule s {\n * * * * * 1.0;\n {\n * 9-17 * * 1-5 0.5;\n }\n};\n" + "object node {\n name n1;\n object ZIPload {\n name z1;\n };\n};\n" + ) + assert parse(write_glm(ast)) == ast + + +def test_missing_keys_are_tolerated(): + # the frontend may post back a dict lacking sections it never touched + assert write_glm({}) == "" + + +import io +from pathlib import Path + +import glmparser + +REPO_ROOT = Path(__file__).resolve().parents[2] +MODELS = REPO_ROOT / "models" + +SAMPLE = """clock { + timezone PST+8PDT; +}; + +#set profiler=1 + +#define VSOURCE=69715.045 + +#include "Inverters.glm"; + +module powerflow { + solver_method NR; +}; + +module tape; + +object node { + name n1; + phases ABC; + object ZIPload { + name z1; + }; +}; +""" + + +def test_loads_and_dumps_are_exported(): + assert callable(glmparser.load) + assert callable(glmparser.loads) + assert callable(glmparser.dump) + assert callable(glmparser.dumps) + assert glmparser.version() == "1.0.0" + assert glmparser.GlmParseError is not None + + +def test_load_accepts_a_path(tmp_path): + path = tmp_path / "m.glm" + path.write_text(SAMPLE) + assert glmparser.load(path)["modules"][0]["name"] == "powerflow" + assert glmparser.load(str(path))["modules"][0]["name"] == "powerflow" + + +def test_load_accepts_an_open_file_object(tmp_path): + path = tmp_path / "m.glm" + path.write_text(SAMPLE) + with open(path) as handle: + assert glmparser.load(handle)["modules"][0]["name"] == "powerflow" + + +def test_dump_accepts_a_path(tmp_path): + path = tmp_path / "out.glm" + glmparser.dump(glmparser.loads(SAMPLE), path) + assert "module powerflow {" in path.read_text() + + as_str = tmp_path / "out2.glm" + glmparser.dump(glmparser.loads(SAMPLE), str(as_str)) + assert "module powerflow {" in as_str.read_text() + + +def test_dump_accepts_an_open_file_object(): + # glmhelper.py:33 passes an open file, so this form must work + buffer = io.StringIO() + glmparser.dump(glmparser.loads(SAMPLE), buffer) + assert "module powerflow {" in buffer.getvalue() + + +def test_round_trip_is_stable(): + first = glmparser.loads(SAMPLE) + text = glmparser.dumps(first) + second = glmparser.loads(text) + assert first == second + + +def test_round_trip_preserves_includes(): + # REGRESSION: the Nim round-trip silently dropped every #include. + first = glmparser.loads(SAMPLE) + second = glmparser.loads(glmparser.dumps(first)) + assert second["includes"] == [{"value": "Inverters.glm"}] + + +ALL_MODELS = sorted(MODELS.rglob("*.glm")) +assert len(ALL_MODELS) == 17, f"expected 17 sample models, found {len(ALL_MODELS)}: {ALL_MODELS}" + + +@pytest.mark.parametrize( + "path", ALL_MODELS, ids=lambda p: str(p.relative_to(MODELS)) +) +def test_every_sample_model_round_trips_stably(path): + # Full equality, including every object's attributes -- which is where + # essentially all real GLM content lives (voltages, phases, impedances, + # ratings). A structural comparison would miss a regression that mangled, + # dropped, or reordered attribute values. + # + # uuid4 hoisted names do NOT make this flaky. They are regenerated only + # when the same SOURCE TEXT is parsed twice; this cycle parses the source + # once and then re-parses the writer's output, and the writer emits hoisted + # children as ordinary top-level objects carrying their generated name as a + # literal, so nothing re-hoists. Verified: holds for all 17 models (none of + # which trigger hoisting at all) and for a synthetic model that does. + first = glmparser.load(path) + second = glmparser.loads(glmparser.dumps(first)) + assert first == second + + +import json + +GOLDEN = Path(__file__).resolve().parent / "golden" + + +def normalize_uuids(node): + """Hoisted-object names are uuid4 and differ every run; blank them out. + + Reuses UUID_RE, defined alongside the hoisting tests above. + """ + if isinstance(node, dict): + return { + k: ( + "" + if isinstance(v, str) and UUID_RE.match(v) + else normalize_uuids(v) + ) + for k, v in node.items() + } + if isinstance(node, list): + return [normalize_uuids(x) for x in node] + return node + + +@pytest.mark.parametrize( + "path", ALL_MODELS, ids=lambda p: str(p.relative_to(MODELS)) +) +def test_model_matches_golden(path): + slug = str(path.relative_to(MODELS).with_suffix("")).replace("/", "__") + expected = json.loads((GOLDEN / f"{slug}.json").read_text()) + assert normalize_uuids(glmparser.load(path)) == expected + + +from glmhelper import GLMHelper + + +def test_glmhelper_parses_through_the_new_module(tmp_path): + source = tmp_path / "tiny.glm" + source.write_text(SAMPLE) + result = GLMHelper().parse_glm([str(source)]) + assert "tiny.json" in result + assert result["tiny.json"]["modules"][0]["name"] == "powerflow" + + +def test_glmhelper_rejects_oversized_files(tmp_path): + big = tmp_path / "big.glm" + big.write_text("// pad\n" * 800_000) # 5.34 MB, over the 5 MB cap + with pytest.raises(ValueError, match="too large"): + GLMHelper().parse_glm([str(big)]) + + +def test_glmhelper_exports_a_zip(tmp_path): + helper = GLMHelper() + data = {"tiny.json": glmparser.loads(SAMPLE)} + buffer = helper.json_to_glm(data, str(tmp_path)) + + import zipfile + + with zipfile.ZipFile(buffer) as archive: + assert archive.namelist() == ["tiny.glm"] + text = archive.read("tiny.glm").decode() + assert "module powerflow {" in text + assert '#include "Inverters.glm";' in text diff --git a/package.json b/package.json index 3813e01e..ecffa704 100755 --- a/package.json +++ b/package.json @@ -18,6 +18,7 @@ "electron:dev": "concurrently -k \"npm run dev:backend\" \"vite --strictPort --host 127.0.0.1\" \"npm run electron:start\"", "electron:start": "wait-on tcp:127.0.0.1:5173 && cross-env ELECTRON_START_URL=http://127.0.0.1:5173 electron .", "build:server": "cd local-server && pyinstaller server.spec --noconfirm", + "test:server": "cd local-server && .venv/bin/python -m pytest", "dist": "npm run build && npm run build:server && electron-builder", "dist:win": "npm run build && npm run build:server && electron-builder --win", "dist:mac": "npm run build && npm run build:server && electron-builder --mac", From 11c0042e772fc3cd96c2e17d8c430afc8032593f Mon Sep 17 00:00:00 2001 From: itsMando Date: Thu, 6 Aug 2026 15:41:37 -0700 Subject: [PATCH 02/24] new search field for the model data view simulation log now stacks showing latest log at the top decomposed the graph helper class --- Dockerfile.backend | 4 +- docs/CHART_TIMELINE.md | 73 - docs/ELECTRICAL_ANALYSIS.md | 88 +- .../plans/2026-08-05-python-glm-parser.md | 2253 ----------------- .../2026-08-05-python-glm-parser-design.md | 249 -- local-server/glmparser/__init__.py | 10 +- local-server/glmparser/lexer.py | 22 +- .../tests/golden/123__IEEE_123_Diesels.json | 0 .../tests/golden/123__IEEE_123_Dynamic.json | 0 .../golden/123__IEEE_123_Inverters_Mixed.json | 0 .../tests/golden/123__IEEE_123_Recorders.json | 0 .../tests/golden/13__IEEE-13.json | 0 .../tests/golden/3000__3000_model.json | 0 .../tests/golden/8500__ieee8500.json | 0 .../tests/golden/9500__IEEE_9500.json | 0 .../tests/golden/9500__Inverters.json | 0 .../tests/golden/9500__Recorders.json | 0 .../tests/golden/9500__Rotating_Machines.json | 0 .../9500_with_coordinates__IEEE_9500.json | 0 .../9500_with_coordinates__Inverters.json | 0 ...0_with_coordinates__Rotating_Machines.json | 0 .../tests/golden/model_base__model_base.json | 0 .../golden/model_base__model_schedules.json | 0 .../golden/model_base__model_startup.json | 0 .../{ => glmparser}/tests/test_glmparser.py | 0 local-server/requirements-server.txt | 12 - src/components/SimulationLog.jsx | 57 +- src/components/modals/LoadModelModal.jsx | 4 + .../model-data-view/ModelDataView.css | 36 + .../model-data-view/ModelDataView.jsx | 107 +- .../model-data-view/ObjectTable.jsx | 124 +- src/graph-helper/GraphHelper.js | 2049 +++------------ src/graph-helper/edge-curvature.js | 76 + src/graph-helper/edge-focus.js | 90 + src/graph-helper/element-factory.js | 110 + src/graph-helper/graph-builder.js | 307 +++ src/graph-helper/highlight-state.js | 110 + src/graph-helper/legend.js | 35 + src/graph-helper/measurements.js | 189 ++ src/graph-helper/simulation.js | 261 ++ src/graph-helper/socket-api.js | 193 ++ src/graph-helper/theme.js | 61 + 42 files changed, 2061 insertions(+), 4459 deletions(-) delete mode 100644 docs/CHART_TIMELINE.md delete mode 100644 docs/superpowers/plans/2026-08-05-python-glm-parser.md delete mode 100644 docs/superpowers/specs/2026-08-05-python-glm-parser-design.md rename local-server/{ => glmparser}/tests/golden/123__IEEE_123_Diesels.json (100%) rename local-server/{ => glmparser}/tests/golden/123__IEEE_123_Dynamic.json (100%) rename local-server/{ => glmparser}/tests/golden/123__IEEE_123_Inverters_Mixed.json (100%) rename local-server/{ => glmparser}/tests/golden/123__IEEE_123_Recorders.json (100%) rename local-server/{ => glmparser}/tests/golden/13__IEEE-13.json (100%) rename local-server/{ => glmparser}/tests/golden/3000__3000_model.json (100%) rename local-server/{ => glmparser}/tests/golden/8500__ieee8500.json (100%) rename local-server/{ => glmparser}/tests/golden/9500__IEEE_9500.json (100%) rename local-server/{ => glmparser}/tests/golden/9500__Inverters.json (100%) rename local-server/{ => glmparser}/tests/golden/9500__Recorders.json (100%) rename local-server/{ => glmparser}/tests/golden/9500__Rotating_Machines.json (100%) rename local-server/{ => glmparser}/tests/golden/9500_with_coordinates__IEEE_9500.json (100%) rename local-server/{ => glmparser}/tests/golden/9500_with_coordinates__Inverters.json (100%) rename local-server/{ => glmparser}/tests/golden/9500_with_coordinates__Rotating_Machines.json (100%) rename local-server/{ => glmparser}/tests/golden/model_base__model_base.json (100%) rename local-server/{ => glmparser}/tests/golden/model_base__model_schedules.json (100%) rename local-server/{ => glmparser}/tests/golden/model_base__model_startup.json (100%) rename local-server/{ => glmparser}/tests/test_glmparser.py (100%) delete mode 100644 local-server/requirements-server.txt create mode 100644 src/graph-helper/edge-curvature.js create mode 100644 src/graph-helper/edge-focus.js create mode 100644 src/graph-helper/element-factory.js create mode 100644 src/graph-helper/graph-builder.js create mode 100644 src/graph-helper/highlight-state.js create mode 100644 src/graph-helper/legend.js create mode 100644 src/graph-helper/measurements.js create mode 100644 src/graph-helper/simulation.js create mode 100644 src/graph-helper/socket-api.js create mode 100644 src/graph-helper/theme.js diff --git a/Dockerfile.backend b/Dockerfile.backend index d9257ef6..40684d33 100644 --- a/Dockerfile.backend +++ b/Dockerfile.backend @@ -12,8 +12,8 @@ RUN apt-get update \ && rm -rf /var/lib/apt/lists/* # Install server deps (no pyinstaller). --prerelease=allow: cim-graph is 0.4.3a10. -COPY local-server/requirements-server.txt ./requirements-server.txt -RUN uv pip install --system -r requirements-server.txt +COPY local-server/requirements.txt ./requirements.txt +RUN uv pip install --system -r requirements.txt # ---- runtime: slim image with only the installed packages + app ------------ FROM python:3.12-slim diff --git a/docs/CHART_TIMELINE.md b/docs/CHART_TIMELINE.md deleted file mode 100644 index 63e518b8..00000000 --- a/docs/CHART_TIMELINE.md +++ /dev/null @@ -1,73 +0,0 @@ -# Chart Timeline: Scrolling Back Through a Run - -The simulation charts keep the **whole run** and let you scroll and zoom through -it — during the run and after it ends. Applies to both the built-in Voltage / -Load Demand charts and any custom plots. - ---- - -## What changed - -Previously every chart kept a 20-sample rolling buffer and `shift()`ed older -samples off the front. The history wasn't hidden, it was **destroyed** — once a -sample scrolled off there was nothing to scroll back to. - -Now the full run is retained and the chart shows a moving window over it. - -## Behavior - -| Situation | What happens | -| --- | --- | -| Run streaming, untouched | The window stays pinned to the newest samples — looks exactly as before. | -| You pan or zoom mid-run | The view **detaches** from the live edge and stays where you put it, so incoming frames don't yank you forward. | -| You scroll back to the right edge | Re-attaches to live automatically. | -| Detached during a live run | A **● LIVE** button appears in the chart header — one click jumps back. | -| Run ends | The whole run is revealed, ready to scroll. No Live button (there's no live edge to return to). | -| New run starts | History is cleared and the view re-attaches. | - -Each chart scrolls independently — moving through Voltage doesn't drag Load -Demand with it. - -Controls: mouse wheel to zoom, drag to pan, or use the slider under the axis. - -## Under the hood - -[`src/hooks/useChartTimeline.js`](../src/hooks/useChartTimeline.js) owns all of -it, and both chart components use it, so their behavior can't drift apart. - -- **Retention** — `MAX_HISTORY_POINTS` (3600 samples ≈ 3 hours at a 3 s publish - period). The buffers are plain number arrays, so even the widest chart costs a - few hundred kB. `trimHistory()` drops the oldest sample past the cap. -- **The window** — `LIVE_WINDOW_POINTS` (20) matches the old fixed buffer, so a - running simulation looks unchanged; the history simply sits off-screen to the - left instead of being thrown away. -- **Follow vs. detached** — a `following` ref, flipped off by any user - `dataZoom` event and back on when the window's right edge reaches 100%. - Programmatic zooms set a `selfDriven` flag first so the hook doesn't mistake - its own scrolling for the user's. -- **Reset between runs** — `startSimulation` emits a `sim-run-start` socket-helper - event. That's a distinct signal from `sim-state-change: "running"`, which also - fires on *resume* — resuming a paused run must not wipe its history. -- **No `start`/`end` in the declarative option** — ReactECharts re-applies the - option on every render (a dark-mode toggle, a resize). Naming the range there - would snap the user's scroll position back each time. - -## Limitations - -- **A custom plot created mid-run starts empty.** Plots accumulate from the live - stream, and there's no central buffer of raw frames to backfill from — - retaining every measurement of a 9500-node feeder for thousands of frames - would cost hundreds of MB. Create the plots you want before starting the run. -- **History does not survive loading a new model.** The charts unmount when the - simulation detaches, which is intended: the data belonged to the old model. -- **Not persisted.** A page reload loses the run. - -## Files - -| File | Role | -| --- | --- | -| [`src/hooks/useChartTimeline.js`](../src/hooks/useChartTimeline.js) | Retention cap, follow/detach logic, zoom config, run-reset wiring. | -| [`src/components/plots/LiveButton.jsx`](../src/components/plots/LiveButton.jsx) | The "jump back to live" affordance, shared by both chart types. | -| [`src/components/SimulationCharts.jsx`](../src/components/SimulationCharts.jsx) | Built-in Voltage / Load Demand charts. | -| [`src/components/plots/CustomPlot.jsx`](../src/components/plots/CustomPlot.jsx) | User-created per-measurement plots. | -| [`src/socket-client-helper/SocketClientHelper.js`](../src/socket-client-helper/SocketClientHelper.js) | Emits `sim-run-start`. | diff --git a/docs/ELECTRICAL_ANALYSIS.md b/docs/ELECTRICAL_ANALYSIS.md index 12b7587d..a4acd75e 100644 --- a/docs/ELECTRICAL_ANALYSIS.md +++ b/docs/ELECTRICAL_ANALYSIS.md @@ -11,15 +11,15 @@ model's own `attributes`, and it is all cleared when the simulation ends. ## What you see -| Where | What | -| --- | --- | -| **Toolbar ⚠ button** (or `v`) | Toggles *violation mode*. Enabled only while a simulation is `running` or `paused`. | -| **Graph, violation mode on** | Nodes colored by voltage, edges by loading. Violating objects scale up ~2× and rise above their neighbours. | +| Where | What | +| -------------------------------- | ----------------------------------------------------------------------------------------------------------------- | +| **Toolbar ⚠ button** (or `v`) | Toggles _violation mode_. Enabled only while a simulation is `running` or `paused`. | +| **Graph, violation mode on** | Nodes colored by voltage, edges by loading. Violating objects scale up ~2× and rise above their neighbours. | | **Condition legend** (top-right) | The color scale with a **live count per band**, so you can tell if anything is wrong without scanning the canvas. | -| **Node hover card** | A bold, color-coded *vitals* block — per-phase p.u. and volts — above the model attributes. | -| **Edge width & flow dots** | Thickness and dot speed scale with loading, in *any* mode — not just violation mode. | -| **Edge hover label** | `Line670 · 78% loaded` | -| **Model Data View** | Sortable `V (p.u.)` column (nodes) and `loading` column (edges). | +| **Node hover card** | A bold, color-coded _vitals_ block — per-phase p.u. and volts — above the model attributes. | +| **Edge width & flow dots** | Thickness and dot speed scale with loading, in _any_ mode — not just violation mode. | +| **Edge hover label** | `Line670 · 78% loaded` | +| **Model Data View** | Sortable `V (p.u.)` column (nodes) and `loading` column (edges). | Violation mode **replaces** type coloring rather than blending with it — two color scales at once would leave you unsure which one a given color belongs to. @@ -35,14 +35,14 @@ Voltage follows **ANSI C84.1**; loading is a fraction of the element's normal as `VOLTAGE_LIMITS` and `LOADING_LIMITS` — change them there and the graph, legend, tooltips, and tables all follow. -| Band | Condition | -| --- | --- | -| Normal | 0.95 – 1.05 p.u. (Range A) | -| Under / Over voltage | outside Range A, inside Range B (0.9167 – 1.0583) | -| Severe under / over | outside Range B | -| Elevated loading | ≥ 80% of ampere rating | -| Overloaded | ≥ 100% of ampere rating | -| No data | no measurement, no rating, or no resolvable base voltage | +| Band | Condition | +| -------------------- | -------------------------------------------------------- | +| Normal | 0.95 – 1.05 p.u. (Range A) | +| Under / Over voltage | outside Range A, inside Range B (0.9167 – 1.0583) | +| Severe under / over | outside Range B | +| Elevated loading | ≥ 80% of ampere rating | +| Overloaded | ≥ 100% of ampere rating | +| No data | no measurement, no rating, or no resolvable base voltage | Both severities are those of the **worst phase** — for voltage, the phase furthest from nominal in either direction; for loading, the most heavily loaded @@ -77,20 +77,20 @@ edges: id -> { power: { A: { real, imag, ... } }, apparent, normalLimit } // VA `apparent` and `normalLimit` are **persisted on the overlay** so percent loading can be computed anywhere, not just inside the tick handler. Each edge's total is -re-aggregated from its *full* per-phase map rather than from the current +re-aggregated from its _full_ per-phase map rather than from the current message batch — a tick may carry only a subset of an edge's phases, which would otherwise understate the flow. ### 2. Two different denominators — don't confuse them -| | **Base voltage** | **Normal limit** | -| --- | --- | --- | -| Applies to | a node (bus) | an edge (line, transformer) | -| Answers | "what voltage *should* this bus be at?" | "how much can this conductor *carry*?" | -| Units | volts (line-to-neutral) | **amperes** | -| Source | node attribute, or inferred | GridAPPS-D `GridLAB-D Limits` → `limits.currents` | -| Feeds | `p.u. = V / V_base` | `loading = I / I_normal` | -| Violation means | equipment sees the wrong voltage | conductor overheats | +| | **Base voltage** | **Normal limit** | +| --------------- | --------------------------------------- | ------------------------------------------------- | +| Applies to | a node (bus) | an edge (line, transformer) | +| Answers | "what voltage _should_ this bus be at?" | "how much can this conductor _carry_?" | +| Units | volts (line-to-neutral) | **amperes** | +| Source | node attribute, or inferred | GridAPPS-D `GridLAB-D Limits` → `limits.currents` | +| Feeds | `p.u. = V / V_base` | `loading = I / I_normal` | +| Violation means | equipment sees the wrong voltage | conductor overheats | They are independent — a line can be at 100% loading with perfect voltages, and voltage can sag on a lightly-loaded long feeder. @@ -108,7 +108,7 @@ the edge, falling back to an endpoint's resolved base voltage. If neither is available, power is shown but **no loading verdict is given** — dividing VA by amps directly is dimensionally meaningless. -This is also why the PNV block in `handleSimulationOutput` runs *before* the VA +This is also why the PNV block in `handleSimulationOutput` runs _before_ the VA block: the voltages must be in the overlay before any edge is evaluated. ### 3. Per-unit needs a base voltage — and that's the hard part @@ -118,7 +118,7 @@ block: the voltages must be in the overlay before any edge is evaluated. - **GridLAB-D** models carry `nominal_voltage` (line-to-neutral, matching PNV) directly on the node. Used as-is. - **CIM / GridAPPS-D** models don't expose a numeric base: `cimhelper._add_attributes` - stringifies `BaseVoltage` to its *name*, not its value. + stringifies `BaseVoltage` to its _name_, not its value. So `resolveBaseVoltage()` is layered: @@ -169,15 +169,15 @@ Two rules keep the card from ever going blank: - **Deeply depressed buses can mis-resolve their base.** Adjacent distribution classes are only ~6% apart (12470Y/7200, 13200Y/7620, 13800Y/7970), so the - snapper takes the *closest* candidate rather than requiring an unambiguous + snapper takes the _closest_ candidate rather than requiring an unambiguous one — demanding uniqueness rejected every reading in that band. A bus below roughly 0.9 p.u. of its true base can land nearer a lower class and read as healthy. This only affects models with no nameplate attribute; it is pinned by a test so the behavior stays deliberate. -- **Loading needs a rating *and* a voltage.** `normal_limit` is in amperes, so +- **Loading needs a rating _and_ a voltage.** `normal_limit` is in amperes, so converting the measured VA into current requires a phase voltage. Without either, the UI shows apparent power with a `no rating` / `no base voltage` - note and classifies as *No data* — never as "normal", which would imply a + note and classifies as _No data_ — never as "normal", which would imply a verdict that wasn't made. - **The reference voltage may come from the far end.** Loading uses the measured PNV at whichever endpoint has one, so on a long, heavily-loaded span the @@ -191,23 +191,15 @@ Two rules keep the card from ever going blank: ## Files -| File | Role | -| --- | --- | -| [`src/utils/electrical.js`](../src/utils/electrical.js) | All the math: base resolution, p.u., loading, classification, formatting. Pure and dependency-free. | -| [`src/utils/hover-attributes.js`](../src/utils/hover-attributes.js) | Which model attributes reach a hover card, and the omitted count. Pure and dependency-free. | -| [`src/graph-helper/GraphHelper.js`](../src/graph-helper/GraphHelper.js) | Overlay storage, violation mode, `buildNodeVitals` / `buildEdgeVitals`, hover payloads. | -| [`src/utils/canvas-utils.js`](../src/utils/canvas-utils.js) | `drawHover` — renders the vitals block and separator rule. | -| [`src/components/graph/GraphRenderer.jsx`](../src/components/graph/GraphRenderer.jsx) | Violation coloring in the Sigma reducers. | -| [`src/components/legend/ViolationLegend.jsx`](../src/components/legend/ViolationLegend.jsx) | Color scale + live counts. | -| [`src/components/model-data-view/ObjectTable.jsx`](../src/components/model-data-view/ObjectTable.jsx) | Sortable p.u. / loading columns. | - -## Tests - -```bash -npm run test:js # both suites -npm run test:electrical # p.u. / loading math -npm run test:hover # hover-card attribute selection -``` +| File | Role | +| ----------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | +| [`src/utils/electrical.js`](../src/utils/electrical.js) | All the math: base resolution, p.u., loading, classification, formatting. Pure and dependency-free. | +| [`src/utils/hover-attributes.js`](../src/utils/hover-attributes.js) | Which model attributes reach a hover card, and the omitted count. Pure and dependency-free. | +| [`src/graph-helper/GraphHelper.js`](../src/graph-helper/GraphHelper.js) | Overlay storage, violation mode, `buildNodeVitals` / `buildEdgeVitals`, hover payloads. | +| [`src/utils/canvas-utils.js`](../src/utils/canvas-utils.js) | `drawHover` — renders the vitals block and separator rule. | +| [`src/components/graph/GraphRenderer.jsx`](../src/components/graph/GraphRenderer.jsx) | Violation coloring in the Sigma reducers. | +| [`src/components/legend/ViolationLegend.jsx`](../src/components/legend/ViolationLegend.jsx) | Color scale + live counts. | +| [`src/components/model-data-view/ObjectTable.jsx`](../src/components/model-data-view/ObjectTable.jsx) | Sortable p.u. / loading columns. | Plain node, no framework — matching the `socket-testing/` convention. Between them they cover base-voltage snapping (including the documented mis-snap), ANSI @@ -215,5 +207,5 @@ classification boundaries, dead-phase handling, missing-rating behavior, formatting, attribute ordering and truncation, and the empty-card regression. Both suites earned their place by catching real bugs: the base snapper -originally resolved *nothing* in the 7–8 kV band, and the hover filter rendered +originally resolved _nothing_ in the 7–8 kV band, and the hover filter rendered CIM `connectivity_node` cards as empty boxes. diff --git a/docs/superpowers/plans/2026-08-05-python-glm-parser.md b/docs/superpowers/plans/2026-08-05-python-glm-parser.md deleted file mode 100644 index 7c2030f2..00000000 --- a/docs/superpowers/plans/2026-08-05-python-glm-parser.md +++ /dev/null @@ -1,2253 +0,0 @@ -# Pure-Python GLM Parser Implementation Plan - -> **For agentic workers:** REQUIRED SUB-SKILL: Use superpowers:subagent-driven-development (recommended) or superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox (`- [ ]`) syntax for tracking. - -**Goal:** Replace the Nim-backed `glm` pip package with a pure-Python `glmparser` module in `local-server/`, removing the Nim toolchain from the from-source build. - -**Architecture:** A four-file package — a regex tokenizer streamed through a one-token lookahead buffer, a recursive-descent parser producing the existing AST dict, a writer producing GLM text, and an error type that renders a caret under the offending source line. Public API mirrors the Nim binding (`load`/`loads`/`dump`/`dumps`/`version`) so the single consumer changes by one import line. - -**Tech Stack:** Python 3.12+, `re`, `uuid` (all stdlib). `pytest` as a dev-only dependency. No new runtime dependencies. - -**Spec:** `docs/superpowers/specs/2026-08-05-python-glm-parser-design.md` - -## Pre-verification - -The module code in Tasks 1–7 was assembled and run against the real corpus -before this plan was written. Measured results, which the implementer should -expect to reproduce: - -- **Nim differential: 0 unexpected diffs across all 17 `models/**/*.glm`.** The - only differences are the 60 intended dotted-key fixes (15 objects × 4 files). -- **Round-trip stable** on all 17 models. -- **Speed:** `ieee8500.glm` 196 ms vs Nim's 180 ms; `IEEE_9500.glm` 181 ms vs - 163 ms. Within ~10% — the streaming lexer trades a little throughput against - the materialized-list prototype for a large memory win. -- **Peak memory: 17.0 MB** on a 2.2 MB model, down from 61.6 MB for the - materialized-list prototype. - -Three bugs were found and fixed during that verification. All three are now -baked into the task code with tests pinning them; do not "simplify" them back -out: - -1. `${VSOURCE}` lexing as `word`/`lbrace`/`word`/`rbrace` — the stray `rbrace` - closed the enclosing object early and corrupted every following attribute. - Broke 6 of 17 models. -2. `_value_to_eol` slicing to the newline swallowed trailing `//` comments into - directive values. -3. The first fix, written as a per-character alternation, cost ~25% throughput; - the two-branch form in Task 2 restores it. - -## Global Constraints - -Every task's requirements implicitly include this section. - -- **Module name is `glmparser`, never `glm`.** `.gitignore:15` contains `**/glm`; a package named `glm` will not be committed. -- **The AST dict shape is a hard contract.** `server.py:498-502` ships it to the frontend, `GraphHelper.js:1676` reads `obj.name` as object type and `attributes.name` as node id, `GraphHelper.js:1661` posts the whole dict back to `/api/export/glm`. Keys: `clock`, `includes`, `objects`, `modules`, `classes`, `directives`, `definitions`, `schedules`. -- **`clock` is always present**, `{}` when the model has none. -- **`load` and `dump` must accept both a path and an open file object.** `glmhelper.py:23` passes a path to `load`; `glmhelper.py:33` passes an open file to `dump`. -- **Attribute values are sliced from the source string by offset, never re-joined from token text.** Re-joining with a separator corrupts `${VSOURCE}` into `$ {VSOURCE}`; re-joining without one corrupts multi-word values. -- **Two distinct value terminators.** Attribute values inside a block run to the next `;`. `#set`/`#define`/`#include` run to **end of line**. -- **Directive punctuation differs.** Write `#set name=value` and `#define name=value` with no trailing semicolon; write `#include "value";` with quotes and a semicolon. -- **Preserve `uuid4` hoisting** of anonymous nested objects and **last-wins** collapse of genuinely duplicate attribute keys. -- **Python >= 3.12** (`local-server/pyproject.toml` `requires-python`). -- All `pytest` commands run from the `local-server/` directory. - ---- - -## File Structure - -| File | Responsibility | -|---|---| -| `local-server/glmparser/__init__.py` | Public API only: `load`, `loads`, `dump`, `dumps`, `version`, `GlmParseError` | -| `local-server/glmparser/errors.py` | `GlmParseError` — offset → line/column, caret rendering | -| `local-server/glmparser/lexer.py` | Regex scan → `Token` stream with one-token lookahead | -| `local-server/glmparser/parser.py` | Tokens → AST dict | -| `local-server/glmparser/writer.py` | AST dict → GLM text | -| `local-server/tests/test_glmparser.py` | Unit + golden + round-trip tests | -| `local-server/tests/golden/*.json` | Frozen expected parser output | -| `local-server/pyproject.toml` | Add `pytest` dev group + pytest config | -| `local-server/glmhelper.py` | Swap `import glm` for `from glmparser import ...` | -| `README.md`, `CLAUDE.md` | Drop the Nim prerequisite | - ---- - -### Task 1: Package scaffold, error type, pytest wiring - -**Files:** -- Create: `local-server/glmparser/__init__.py` -- Create: `local-server/glmparser/errors.py` -- Create: `local-server/tests/test_glmparser.py` -- Modify: `local-server/pyproject.toml` - -**Interfaces:** -- Consumes: nothing. -- Produces: `GlmParseError(message: str, source: str = "", offset: int | None = None)` with attributes `raw_message: str`, `source: str`, `offset: int | None`, `line: int | None` (1-based), `column: int | None` (0-based). `str(err)` renders the caret block. - -- [ ] **Step 1: Add pytest config and dev group to `local-server/pyproject.toml`** - -Append these two blocks to the end of the file: - -```toml -[dependency-groups] -dev = ["pytest>=8.0"] - -[tool.pytest.ini_options] -pythonpath = ["."] -testpaths = ["tests"] -``` - -`pythonpath = ["."]` lets the tests import `glmparser` from the flat `local-server/` layout without an install step. - -- [ ] **Step 2: Install pytest** - -```bash -cd local-server && uv sync --group dev -``` - -If `uv` is unavailable, use `.venv/bin/pip install "pytest>=8.0"` instead. - -- [ ] **Step 3: Write the failing test** - -Create `local-server/tests/test_glmparser.py`: - -```python -"""Tests for the pure-Python GLM parser.""" -import pytest - -from glmparser.errors import GlmParseError - - -def test_error_computes_line_and_column_from_offset(): - source = "object node {\n name foo;\n bad!\n}\n" - offset = source.index("bad!") - err = GlmParseError("Unexpected token", source, offset) - assert err.line == 3 - assert err.column == 2 - - -def test_error_renders_caret_under_offending_column(): - source = "object node {\n name foo;\n bad!\n}\n" - err = GlmParseError("Unexpected token", source, source.index("bad!")) - rendered = str(err) - assert "line: 3" in rendered - assert "column: 2" in rendered - assert "Unexpected token" in rendered - # the caret sits directly beneath the first bad character - lines = rendered.splitlines() - caret_line = next(l for l in lines if l.strip() == "^") - assert caret_line.index("^") == 2 - - -def test_error_without_offset_is_plain_message(): - err = GlmParseError("something broke") - assert str(err) == "something broke" - assert err.line is None - - -def test_offset_at_eof_clamps_to_the_last_real_line(): - # The lexer's EOF token carries start == len(source), and unterminated - # blocks raise on it. Without clamping this is an IndexError, not a - # GlmParseError -- which breaks the unterminated-block/schedule tests. - source = "module powerflow {\n solver_method NR;\n" - err = GlmParseError("Unexpected end of file inside block", source, len(source)) - assert err.line == 2 - assert err.column == len(" solver_method NR;") - assert "Unexpected end of file inside block" in str(err) - - -def test_offset_at_eof_without_trailing_newline(): - source = "module powerflow {" - err = GlmParseError("boom", source, len(source)) - assert err.line == 1 - assert err.column == len(source) - - -def test_caret_prefix_preserves_tabs_for_alignment(): - source = "object node {\n\t\tbad!\n}\n" - err = GlmParseError("nope", source, source.index("bad!")) - caret_line = next(l for l in str(err).splitlines() if l.strip() == "^") - # tabs are copied through so the caret aligns at any tab width - assert caret_line == "\t\t^" -``` - -- [ ] **Step 4: Run tests to verify they fail** - -```bash -cd local-server && .venv/bin/python -m pytest tests/test_glmparser.py -v -``` - -Expected: FAIL — `ModuleNotFoundError: No module named 'glmparser'` - -- [ ] **Step 5: Create the package `__init__.py`** - -Create `local-server/glmparser/__init__.py`: - -```python -"""Pure-Python GridLAB-D .glm parser. - -Drop-in replacement for the Nim-backed `glm` pip package. The public surface is -`load`/`loads`/`dump`/`dumps`/`version`, matching what glmhelper.py calls. -""" - -__version__ = "1.0.0" - -__all__ = ["version"] - - -def version(): - return __version__ -``` - -The remaining exports get added in Task 7, once the pieces they re-export exist. - -- [ ] **Step 6: Implement `errors.py`** - -Create `local-server/glmparser/errors.py`: - -```python -"""Parse errors carrying enough context to point at the offending source line.""" - - -class GlmParseError(Exception): - """Raised when GLM source cannot be parsed. - - The rendered caret block goes into the exception message rather than to - stderr: server.py wraps route handlers in `except Exception` and puts the - message into the HTTP error body, so this is what reaches the UI. - """ - - def __init__(self, message, source="", offset=None): - self.raw_message = message - self.source = source - self.offset = offset - self.line = None - self.column = None - - if offset is not None and source: - self.line = source.count("\n", 0, offset) + 1 - self.column = offset - (source.rfind("\n", 0, offset) + 1) - - # An offset at EOF on newline-terminated source lands one line past - # the last real line, because splitlines() yields no phantom - # trailing entry. Clamp to the end of the last real line -- exactly - # where an "unexpected end of file" belongs. - # - # This is the common path, not an edge case: the lexer's EOF token - # carries start == len(source), and both `Unexpected end of file - # inside block` and `... inside schedule` are raised on it. Without - # the clamp those raise IndexError instead of GlmParseError. - lines = source.splitlines() - if self.line > len(lines): - self.line = len(lines) - self.column = len(lines[-1]) - - super().__init__(self._render()) - - def _render(self): - if self.line is None: - return self.raw_message - - lines = self.source.splitlines() - out = [ - f"ParserError: [line: {self.line}, column: {self.column}] " - f"{self.raw_message}" - ] - - if self.line - 2 >= 0: - out.append(lines[self.line - 2]) - - bad = lines[self.line - 1] - out.append(bad) - # Copy tabs through verbatim so the caret lands correctly at any tab width. - out.append( - "".join("\t" if c == "\t" else " " for c in bad[: self.column]) + "^" - ) - - if self.line < len(lines): - out.append(lines[self.line]) - - return "\n".join(out) -``` - -- [ ] **Step 7: Run tests to verify they pass** - -```bash -cd local-server && .venv/bin/python -m pytest tests/test_glmparser.py -v -``` - -Expected: 6 passed - -- [ ] **Step 8: Commit** - -```bash -git add local-server/glmparser/ local-server/tests/ local-server/pyproject.toml -git commit -m "feat(glmparser): add package scaffold, error type, pytest wiring" -``` - ---- - -### Task 2: Lexer - -**Files:** -- Create: `local-server/glmparser/lexer.py` -- Modify: `local-server/tests/test_glmparser.py` - -**Interfaces:** -- Consumes: `GlmParseError` from Task 1. -- Produces: - - `EOF: str` — the sentinel token kind, value `"eof"`. - - `Token` with slots `kind: str`, `text: str`, `start: int`, `end: int`. `start`/`end` are offsets of the **whole match** (so a `hash` token starts at `#`). - - `Lexer(source: str)` with `peek() -> Token`, `next() -> Token`, `error(message: str, token: Token | None = None) -> GlmParseError`. - - Token kinds: `"hash"`, `"kw"`, `"lbrace"`, `"rbrace"`, `"semi"`, `"word"`, `EOF`. - -- [ ] **Step 1: Write the failing tests** - -Append to `local-server/tests/test_glmparser.py`: - -```python -from glmparser.lexer import EOF, Lexer - - -def kinds(source): - lex = Lexer(source) - out = [] - while lex.peek().kind != EOF: - tok = lex.next() - out.append((tok.kind, tok.text)) - return out - - -def test_lexer_tokenizes_an_object_block(): - assert kinds("object node { name foo; }") == [ - ("kw", "object"), - ("word", "node"), - ("lbrace", "{"), - ("word", "name"), - ("word", "foo"), - ("semi", ";"), - ("rbrace", "}"), - ] - - -def test_lexer_discards_line_comments(): - assert kinds("name foo; // trailing comment\nname bar;") == [ - ("word", "name"), - ("word", "foo"), - ("semi", ";"), - ("word", "name"), - ("word", "bar"), - ("semi", ";"), - ] - - -def test_lexer_recognizes_hash_directives_without_the_hash_in_text(): - assert kinds("#set profiler=1") == [("hash", "set"), ("word", "profiler=1")] - assert kinds("#define VSOURCE=1") == [("hash", "define"), ("word", "VSOURCE=1")] - assert kinds('#include "a.glm";') == [ - ("hash", "include"), - ("word", '"a.glm"'), - ("semi", ";"), - ] - - -def test_hash_token_offsets_start_at_the_pound_sign(): - lex = Lexer("#set profiler=1") - tok = lex.peek() - assert tok.kind == "hash" - assert tok.start == 0 # points at '#', not at 's' - assert tok.end == len("#set") - - -def test_lexer_peek_does_not_consume(): - lex = Lexer("object node") - assert lex.peek().text == "object" - assert lex.peek().text == "object" - assert lex.next().text == "object" - assert lex.peek().text == "node" - - -def test_lexer_returns_eof_forever_past_the_end(): - lex = Lexer("name") - lex.next() - assert lex.next().kind == EOF - assert lex.next().kind == EOF - assert lex.peek().kind == EOF - - -def test_keywords_only_match_as_whole_words(): - # `object_name` must not lex as the `object` keyword plus `_name` - assert kinds("object_name foo;") == [ - ("word", "object_name"), - ("word", "foo"), - ("semi", ";"), - ] - - -def test_dollar_brace_substitution_is_one_token(): - # CRITICAL: if `${VSOURCE}` lexes as word/lbrace/word/rbrace, that rbrace - # closes the enclosing object early and every later attribute is corrupted. - # This breaks 6 of the 17 sample models. - assert kinds("positive_sequence_voltage ${VSOURCE};") == [ - ("word", "positive_sequence_voltage"), - ("word", "${VSOURCE}"), - ("semi", ";"), - ] - - -def test_substitution_adjacent_to_text_still_covers_the_source(): - # Split across tokens is fine -- the parser slices source by offset, which - # rejoins them -- but no brace may leak out as an lbrace/rbrace token. - assert [k for k, _ in kinds("prefix${A}suffix;")] == ["word", "word", "word", "semi"] - - -def test_a_bare_dollar_sign_is_not_dropped(): - # Excluding `$` from the value branch without a bare-`$` fallback makes - # finditer skip it silently: `a$b;` would cover only `ab;`. - assert kinds("a$b;") == [("word", "a"), ("word", "$"), ("word", "b"), ("semi", ";")] - assert kinds("$;") == [("word", "$"), ("semi", ";")] - - -def test_unterminated_substitution_stays_on_its_own_line(): - # With `[^}]*` an unterminated `${` runs to the next `}` ANYWHERE in the - # file, swallowing a brace that closes an unrelated block. Measured: the - # loose form silently drops `object other` entirely. - source = "object node {\n name ${A\n}\nobject other {\n name val;\n}" - lex = Lexer(source) - texts = [] - while lex.peek().kind != EOF: - texts.append(lex.next().text) - # no token may span the newline that follows `${A` - assert not any("\n" in t for t in texts) - - -def test_lexer_covers_every_non_whitespace_character(): - # Whitespace is intentionally skipped; nothing else may be. - for source in ("prefix${A}suffix;", "a$b;", "$;", "$", "x ${A}${B} y;"): - lex = Lexer(source) - covered = [] - while lex.peek().kind != EOF: - covered.append(lex.next().text) - assert "".join(covered) == "".join(source.split()), source - - -def test_urls_are_not_mistaken_for_comments(): - # `//` after a colon is part of a URL, not a comment. lexer.nim:218 does the - # same check. - assert kinds("#define stylesheet=http://example.org/gridlabd") == [ - ("hash", "define"), - ("word", "stylesheet=http://example.org/gridlabd"), - ] - - -def test_lexer_error_carries_position(): - lex = Lexer("object node {\n bad\n}") - lex.next() - err = lex.error("boom") - assert err.line == 1 -``` - -- [ ] **Step 2: Run tests to verify they fail** - -```bash -cd local-server && .venv/bin/python -m pytest tests/test_glmparser.py -v -``` - -Expected: FAIL — `ModuleNotFoundError: No module named 'glmparser.lexer'` - -- [ ] **Step 3: Implement `lexer.py`** - -Create `local-server/glmparser/lexer.py`: - -```python -"""Streaming tokenizer for GridLAB-D .glm source. - -One regex pass over the source, pulled through a single-token lookahead buffer. -Whitespace is skipped rather than tokenized -- the Nim implementation this -replaces heap-allocated a token object per space and newline, which is where -most of its runtime went. -""" -import re - -from .errors import GlmParseError - -# Order matters. Comments come first so `//` never lexes as two `word` tokens, -# and keywords precede `word` so the catch-all does not swallow them. -# -# Two subtleties, both load-bearing -- see the tests that pin them: -# -# `(?set|define|include)\b - | \b(?Pclock|module|object|class|schedule)\b - | (?P\{) - | (?P\}) - | (?P;) - | (?P"[^"\n]*"|'[^'\n]*'|[^\s{}$;]+|\$\{[^}\s;]*\}|\$) - """, - re.VERBOSE, -) - -EOF = "eof" - - -class Token: - __slots__ = ("kind", "text", "start", "end") - - def __init__(self, kind, text, start, end): - self.kind = kind - self.text = text - self.start = start - self.end = end - - def __repr__(self): - return f"Token({self.kind!r}, {self.text!r}, {self.start})" - - -class Lexer: - """Pull-based token stream with exactly one token of lookahead. - - One token is all the parser ever needs, which is what lets this stay a - generator instead of a materialized list -- the list costs ~62 MB on a - 2.2 MB model. - """ - - def __init__(self, source): - self.source = source - self._matches = _TOKEN_RE.finditer(source) - self._current = self._scan() - - def _scan(self): - for match in self._matches: - kind = match.lastgroup - if kind is None: # a comment; skip it - continue - # Offsets span the whole match, so a `hash` token starts at '#'. - return Token(kind, match.group(kind), match.start(), match.end()) - end = len(self.source) - return Token(EOF, "", end, end) - - def peek(self): - return self._current - - def next(self): - token = self._current - if token.kind != EOF: - self._current = self._scan() - return token - - def error(self, message, token=None): - target = token if token is not None else self._current - return GlmParseError(message, self.source, target.start) -``` - -- [ ] **Step 4: Run tests to verify they pass** - -```bash -cd local-server && .venv/bin/python -m pytest tests/test_glmparser.py -v -``` - -Expected: 21 passed - -- [ ] **Step 5: Commit** - -```bash -git add local-server/glmparser/lexer.py local-server/tests/test_glmparser.py -git commit -m "feat(glmparser): add streaming regex lexer" -``` - ---- - -### Task 3: Parser — clock, module, class, directives - -**Files:** -- Create: `local-server/glmparser/parser.py` -- Modify: `local-server/tests/test_glmparser.py` - -**Interfaces:** -- Consumes: `Lexer`, `EOF`, `Token` from Task 2; `GlmParseError` from Task 1. -- Produces: `Parser(source: str)` with `parse() -> dict`. Internal helpers that Tasks 4 and 5 build on: - - `_expect(kind: str) -> Token` - - `_value_to_semicolon() -> str` - - `_value_to_eol() -> str` - - `_attributes(children: list | None = None) -> dict` - - `_named_block() -> dict` — returns `{"name": str, "attributes": dict}` - -- [ ] **Step 1: Write the failing tests** - -Append to `local-server/tests/test_glmparser.py`: - -```python -from glmparser.parser import Parser - - -def parse(source): - return Parser(source).parse() - - -def test_empty_source_yields_the_full_ast_skeleton(): - ast = parse("") - assert ast == { - "clock": {}, - "includes": [], - "objects": [], - "modules": [], - "classes": [], - "directives": [], - "definitions": [], - "schedules": [], - } - - -def test_clock_block_parses_to_a_flat_dict(): - ast = parse("clock {\n timezone PST+8PDT;\n starttime '2000-01-01 0:00:00';\n};") - assert ast["clock"] == { - "timezone": "PST+8PDT", - "starttime": "2000-01-01 0:00:00", - } - - -def test_module_with_no_attributes(): - assert parse("module powerflow;")["modules"] == [ - {"name": "powerflow", "attributes": {}} - ] - - -def test_module_with_attributes(): - ast = parse("module powerflow {\n solver_method NR;\n lu_solver KLU;\n};") - assert ast["modules"] == [ - { - "name": "powerflow", - "attributes": {"solver_method": "NR", "lu_solver": "KLU"}, - } - ] - - -def test_class_blocks_reach_the_ast(): - # REGRESSION: the Nim parser collected classes then never emitted them. - ast = parse("class thermostat {\n double setpoint;\n};") - assert ast["classes"] == [ - {"name": "thermostat", "attributes": {"double": "setpoint"}} - ] - - -def test_set_and_define_directives_are_newline_terminated(): - # REGRESSION: running these to the next `;` makes them swallow later lines. - ast = parse("#set relax_naming_rules=1\n#set profiler=1\n\nmodule tape;\n") - assert ast["directives"] == [ - {"name": "relax_naming_rules", "value": "1"}, - {"name": "profiler", "value": "1"}, - ] - assert ast["modules"] == [{"name": "tape", "attributes": {}}] - - -def test_define_directive(): - ast = parse('#define VSOURCE=69715.045\n#include "Rotating_Machines.glm";\n') - assert ast["definitions"] == [{"name": "VSOURCE", "value": "69715.045"}] - assert ast["includes"] == [{"value": "Rotating_Machines.glm"}] - - -def test_include_strips_quotes_and_semicolon(): - ast = parse('#include "Inverters.glm";\n#include "Recorders.glm";\n') - assert ast["includes"] == [ - {"value": "Inverters.glm"}, - {"value": "Recorders.glm"}, - ] - - -def test_directive_value_stops_before_a_trailing_comment(): - # Slicing raw source to the newline drags the comment into the value. - ast = parse( - "#set deltamode_timestep=100000000\t\t//100 ms\n" - "#set deltamode_iteration_limit=10\t//Iteration limit\n" - ) - assert ast["directives"] == [ - {"name": "deltamode_timestep", "value": "100000000"}, - {"name": "deltamode_iteration_limit", "value": "10"}, - ] - - -def test_substitution_inside_an_attribute_value_does_not_close_the_block(): - # The `}` in `${VSOURCE}` must not terminate the enclosing block. - ast = parse( - "module powerflow {\n" - " positive_sequence_voltage ${VSOURCE};\n" - " solver_method NR;\n" - "};" - ) - assert ast["modules"][0]["attributes"] == { - "positive_sequence_voltage": "${VSOURCE}", - "solver_method": "NR", - } - - -def test_multi_word_and_substitution_values_are_preserved_exactly(): - ast = parse( - "module m {\n" - " positive_sequence_voltage ${VSOURCE};\n" - " rating .winter.emergency 200.00;\n" - "};" - ) - assert ast["modules"][0]["attributes"]["positive_sequence_voltage"] == "${VSOURCE}" - assert ast["modules"][0]["attributes"]["rating"] == ".winter.emergency 200.00" - - -def test_dotted_attribute_keys_stay_distinct(): - # REGRESSION: the Nim parser collapsed all four into one mangled `rating`. - ast = parse( - "module m {\n" - " rating.summer.continuous 200.00;\n" - " rating.summer.emergency 210.00;\n" - " rating.winter.continuous 220.00;\n" - " rating.winter.emergency 230.00;\n" - "};" - ) - assert ast["modules"][0]["attributes"] == { - "rating.summer.continuous": "200.00", - "rating.summer.emergency": "210.00", - "rating.winter.continuous": "220.00", - "rating.winter.emergency": "230.00", - } - - -def test_duplicate_keys_collapse_last_wins(): - ast = parse("module m {\n phases A;\n phases B;\n};") - assert ast["modules"][0]["attributes"] == {"phases": "B"} - - -def test_comments_are_ignored(): - ast = parse("// leading comment\nmodule tape; // trailing\n") - assert ast["modules"] == [{"name": "tape", "attributes": {}}] - - -def test_value_missing_semicolon_before_closing_brace(): - # `_value_to_semicolon` tolerates rbrace as a terminator so a final - # attribute without its `;` does not run away and eat the block. - ast = parse("module m {\n solver_method NR\n};") - assert ast["modules"] == [{"name": "m", "attributes": {"solver_method": "NR"}}] - - -def test_directive_without_equals_does_not_crash(): - ast = parse("#set profiler\n") - assert ast["directives"] == [{"name": "profiler", "value": ""}] - - -def test_directive_as_last_line_without_trailing_newline(): - # `_value_to_eol` must handle find("\n") returning -1. - ast = parse("#define VSOURCE=69715.045") - assert ast["definitions"] == [{"name": "VSOURCE", "value": "69715.045"}] - - -def test_empty_block(): - ast = parse("module m { };") - assert ast["modules"] == [{"name": "m", "attributes": {}}] - - -def test_unknown_top_level_token_raises_with_line_number(): - with pytest.raises(GlmParseError) as excinfo: - parse("module tape;\ngarbage\n") - assert excinfo.value.line == 2 - - -def test_unterminated_block_raises(): - with pytest.raises(GlmParseError): - parse("module powerflow {\n solver_method NR;\n") -``` - -- [ ] **Step 2: Run tests to verify they fail** - -```bash -cd local-server && .venv/bin/python -m pytest tests/test_glmparser.py -v -``` - -Expected: FAIL — `ModuleNotFoundError: No module named 'glmparser.parser'` - -- [ ] **Step 3: Implement `parser.py`** - -Create `local-server/glmparser/parser.py`: - -```python -"""GLM source -> AST dict. - -The output shape is a hard contract. server.py ships this dict straight to the -frontend, GraphHelper.js reads `name` and `attributes` off each object, and the -same dict comes back through /api/export/glm for writing. Every key must -survive the round-trip. -""" -import uuid - -from .lexer import EOF, Lexer - -# A value stops at any of these; `rbrace` and EOF are tolerated so a final -# attribute missing its semicolon does not run away. -_VALUE_END = (EOF, "rbrace", "semi") - - -class Parser: - def __init__(self, source): - self.source = source - self.lex = Lexer(source) - self.ast = { - "clock": {}, - "includes": [], - "objects": [], - "modules": [], - "classes": [], - "directives": [], - "definitions": [], - "schedules": [], - } - - # ---- helpers ------------------------------------------------------- - - def _expect(self, kind): - token = self.lex.next() - if token.kind != kind: - raise self.lex.error(f"Expected {kind}, found {token.text!r}", token) - return token - - def _value_to_semicolon(self): - """Attribute values run to the next `;`. - - Sliced out of the source rather than re-joined from token text, so - internal spacing survives exactly: `${VSOURCE}` and `1.0 + 2.0j` both - come back byte-for-byte. - """ - token = self.lex.peek() - if token.kind in _VALUE_END: - if token.kind == "semi": - self.lex.next() - return "" - - start = token.start - end = start - while self.lex.peek().kind not in _VALUE_END: - end = self.lex.next().end - if self.lex.peek().kind == "semi": - self.lex.next() - return self.source[start:end].strip("'\" \t\n") - - def _value_to_eol(self): - """`#set`/`#define`/`#include` run to end of line, not to a `;`. - - Conflating this with `_value_to_semicolon` makes a directive swallow - every line beneath it until the next semicolon appears. - - The slice ends at the last *token* consumed rather than at the newline. - That matters: slicing to the newline drags in a trailing `//` comment, - because the lexer discards comments but raw source still contains them. - `#set deltamode_timestep=100000000\t//100 ms` would otherwise yield the - value `100000000\t\t//100 ms`. - """ - start = self.lex.peek().start - newline = self.source.find("\n", start) - if newline == -1: - newline = len(self.source) - end = start - while self.lex.peek().kind != EOF and self.lex.peek().start < newline: - end = self.lex.next().end - return self.source[start:end].strip().rstrip(";").strip("'\" ") - - def _attributes(self, children=None): - """Parse `{ key value; ... }`. - - `children` collects bare nested objects; pass None where nesting is not - legal (clock, module, class). - """ - self._expect("lbrace") - attrs = {} - - while True: - token = self.lex.peek() - - if token.kind == "rbrace": - self.lex.next() - break - if token.kind == EOF: - raise self.lex.error("Unexpected end of file inside block", token) - if token.kind == "semi": - self.lex.next() - continue - - # `object child { ... };` nested bare -> the parent's children list - if token.kind == "kw" and token.text == "object": - if children is None: - raise self.lex.error("Nested object not allowed here", token) - self.lex.next() - children.append(self._object()) - continue - - key = self.lex.next().text - - # `configuration object line_conf { ... };` -> hoisted to top-level - # `objects` under a generated name, which the parent keeps as its - # attribute value. Frontend edge wiring resolves those references, - # so this behavior is load-bearing. - following = self.lex.peek() - if following.kind == "kw" and following.text == "object": - self.lex.next() - child = self._object() - generated = str(uuid.uuid4()) - child["attributes"]["name"] = generated - self.ast["objects"].append(child) - attrs[key] = generated - else: - attrs[key] = self._value_to_semicolon() - - if self.lex.peek().kind == "semi": - self.lex.next() - return attrs - - def _named_block(self): - """`module powerflow;` or `module powerflow { ... };`. Also `class`.""" - name = self._expect("word").text - if self.lex.peek().kind == "semi": - self.lex.next() - return {"name": name, "attributes": {}} - return {"name": name, "attributes": self._attributes()} - - def _directive(self, which): - if which == "include": - self.ast["includes"].append({"value": self._value_to_eol()}) - return - body = self._value_to_eol() - name, _, value = body.partition("=") - entry = {"name": name.strip(), "value": value.strip().strip("'\" ")} - self.ast["directives" if which == "set" else "definitions"].append(entry) - - # ---- entry point --------------------------------------------------- - - def parse(self): - while True: - token = self.lex.next() - - if token.kind == EOF: - break - if token.kind == "semi": - continue - - if token.kind == "kw": - if token.text == "clock": - self.ast["clock"] = self._attributes() - elif token.text == "object": - self.ast["objects"].append(self._object()) - elif token.text == "schedule": - self.ast["schedules"].append(self._schedule()) - elif token.text == "module": - self.ast["modules"].append(self._named_block()) - elif token.text == "class": - self.ast["classes"].append(self._named_block()) - elif token.kind == "hash": - self._directive(token.text) - else: - raise self.lex.error(f"Unexpected token {token.text!r}", token) - - return self.ast -``` - -Note: `_object` and `_schedule` are referenced here but land in Tasks 4 and 5. The tests in this task do not exercise either path. - -- [ ] **Step 4: Run tests to verify they pass** - -```bash -cd local-server && .venv/bin/python -m pytest tests/test_glmparser.py -v -``` - -Expected: 41 passed - -- [ ] **Step 5: Commit** - -```bash -git add local-server/glmparser/parser.py local-server/tests/test_glmparser.py -git commit -m "feat(glmparser): parse clock, module, class, and directives" -``` - ---- - -### Task 4: Parser — objects, nesting, and anonymous hoisting - -**Files:** -- Modify: `local-server/glmparser/parser.py` -- Modify: `local-server/tests/test_glmparser.py` - -**Interfaces:** -- Consumes: `_attributes`, `_expect` from Task 3. -- Produces: `Parser._object() -> dict` returning `{"name": str, "attributes": dict, "children": list}`. - -- [ ] **Step 1: Write the failing tests** - -Append to `local-server/tests/test_glmparser.py`: - -```python -import re - -UUID_RE = re.compile(r"^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$") - - -def test_simple_object(): - ast = parse("object node {\n name n1;\n phases ABC;\n};") - assert ast["objects"] == [ - { - "name": "node", - "attributes": {"name": "n1", "phases": "ABC"}, - "children": [], - } - ] - - -def test_object_type_may_carry_a_colon_id(): - ast = parse("object node:12 {\n name n1;\n};") - assert ast["objects"][0]["name"] == "node:12" - - -def test_bare_nested_object_becomes_a_child(): - ast = parse( - "object house {\n" - " name h1;\n" - " object ZIPload {\n" - " name z1;\n" - " };\n" - "};" - ) - assert len(ast["objects"]) == 1 - parent = ast["objects"][0] - assert parent["attributes"] == {"name": "h1"} - assert parent["children"] == [ - {"name": "ZIPload", "attributes": {"name": "z1"}, "children": []} - ] - - -def test_anonymous_object_is_hoisted_and_referenced_by_generated_name(): - ast = parse( - "object overhead_line {\n" - " name line1;\n" - " configuration object line_configuration {\n" - " name lc1;\n" - " };\n" - "};" - ) - # parent stays at index 0 only after the hoisted child is appended - parent = next(o for o in ast["objects"] if o["name"] == "overhead_line") - hoisted = next(o for o in ast["objects"] if o["name"] == "line_configuration") - - assert len(ast["objects"]) == 2 - assert parent["children"] == [] - - generated = parent["attributes"]["configuration"] - assert UUID_RE.match(generated) - # the generated name is what links parent to hoisted child - assert hoisted["attributes"]["name"] == generated - - -def test_deeply_nested_objects_recurse(): - ast = parse( - "object a {\n" - " name a1;\n" - " object b {\n" - " name b1;\n" - " object c {\n" - " name c1;\n" - " };\n" - " };\n" - "};" - ) - a = ast["objects"][0] - b = a["children"][0] - c = b["children"][0] - assert (a["name"], b["name"], c["name"]) == ("a", "b", "c") - assert c["attributes"] == {"name": "c1"} - - -def test_object_missing_opening_brace_raises(): - with pytest.raises(GlmParseError): - parse("object node\n name n1;\n};") -``` - -- [ ] **Step 2: Run tests to verify they fail** - -```bash -cd local-server && .venv/bin/python -m pytest tests/test_glmparser.py -v -``` - -Expected: FAIL — `AttributeError: 'Parser' object has no attribute '_object'` - -- [ ] **Step 3: Implement `_object`** - -In `local-server/glmparser/parser.py`, insert this method immediately after `_attributes` and before `_named_block`: - -```python - def _object(self): - """`object { ... };` -- the type may carry `.` or `:` suffixes.""" - name = self._expect("word").text - children = [] - attributes = self._attributes(children) - return {"name": name, "attributes": attributes, "children": children} -``` - -The `word` token pattern is `[^\s{};]+`, so `node:12` and `node.sub` already arrive as single tokens — no extra suffix handling is needed. - -- [ ] **Step 4: Run tests to verify they pass** - -```bash -cd local-server && .venv/bin/python -m pytest tests/test_glmparser.py -v -``` - -Expected: 47 passed - -- [ ] **Step 5: Commit** - -```bash -git add local-server/glmparser/parser.py local-server/tests/test_glmparser.py -git commit -m "feat(glmparser): parse objects, nesting, and anonymous hoisting" -``` - ---- - -### Task 5: Parser — schedules - -**Files:** -- Modify: `local-server/glmparser/parser.py` -- Modify: `local-server/tests/test_glmparser.py` - -**Interfaces:** -- Consumes: `_expect`, `_value_to_semicolon` from Task 3. -- Produces: `Parser._schedule() -> dict` returning `{"name": str, "values": list[str], "children": list[list[str]]}`. - -- [ ] **Step 1: Write the failing tests** - -Append to `local-server/tests/test_glmparser.py`: - -```python -def test_flat_schedule(): - ast = parse( - "schedule office_lights {\n" - " * 9-17 * * 1-5 1.0;\n" - " * 18-8 * * 1-5 0.1;\n" - "};" - ) - assert ast["schedules"] == [ - { - "name": "office_lights", - "values": ["* 9-17 * * 1-5 1.0", "* 18-8 * * 1-5 0.1"], - "children": [], - } - ] - - -def test_schedule_with_sub_blocks(): - ast = parse( - "schedule s {\n" - " {\n" - " * 9-17 * * 1-5 1.0;\n" - " * 18-8 * * 1-5 0.1;\n" - " }\n" - " {\n" - " * * * * 6-0 0.5;\n" - " }\n" - "};" - ) - assert ast["schedules"][0]["name"] == "s" - assert ast["schedules"][0]["values"] == [] - assert ast["schedules"][0]["children"] == [ - ["* 9-17 * * 1-5 1.0", "* 18-8 * * 1-5 0.1"], - ["* * * * 6-0 0.5"], - ] - - -def test_schedule_value_without_trailing_semicolon_still_terminates(): - ast = parse("schedule s {\n * * * * * 1.0\n};") - assert ast["schedules"][0]["values"] == ["* * * * * 1.0"] - - -def test_unterminated_schedule_raises(): - with pytest.raises(GlmParseError): - parse("schedule s {\n * * * * * 1.0;\n") -``` - -- [ ] **Step 2: Run tests to verify they fail** - -```bash -cd local-server && .venv/bin/python -m pytest tests/test_glmparser.py -v -k schedule -``` - -Expected: FAIL — `AttributeError: 'Parser' object has no attribute '_schedule'` - -- [ ] **Step 3: Implement `_schedule`** - -In `local-server/glmparser/parser.py`, insert this method immediately after `_object`: - -```python - def _schedule(self): - """`schedule { ... };` with optional `{ ... }` sub-blocks. - - Values are opaque cron-ish strings; nothing here interprets them. - """ - name = self._expect("word").text - self._expect("lbrace") - values = [] - groups = [] - - while True: - token = self.lex.peek() - - if token.kind == "rbrace": - self.lex.next() - break - if token.kind == EOF: - raise self.lex.error("Unexpected end of file inside schedule", token) - if token.kind == "semi": - self.lex.next() - continue - - if token.kind == "lbrace": - self.lex.next() - group = [] - while self.lex.peek().kind not in ("rbrace", EOF): - if self.lex.peek().kind == "semi": - self.lex.next() - continue - group.append(self._value_to_semicolon()) - self._expect("rbrace") - groups.append(group) - continue - - values.append(self._value_to_semicolon()) - - if self.lex.peek().kind == "semi": - self.lex.next() - return {"name": name, "values": values, "children": groups} -``` - -- [ ] **Step 4: Run tests to verify they pass** - -```bash -cd local-server && .venv/bin/python -m pytest tests/test_glmparser.py -v -``` - -Expected: 51 passed - -- [ ] **Step 5: Commit** - -```bash -git add local-server/glmparser/parser.py local-server/tests/test_glmparser.py -git commit -m "feat(glmparser): parse schedules and sub-schedule blocks" -``` - ---- - -### Task 6: Writer - -**Files:** -- Create: `local-server/glmparser/writer.py` -- Modify: `local-server/tests/test_glmparser.py` - -**Interfaces:** -- Consumes: nothing (takes a plain AST dict). -- Produces: `dumps(data: dict) -> str`. - -- [ ] **Step 1: Write the failing tests** - -Append to `local-server/tests/test_glmparser.py`: - -```python -from glmparser.writer import dumps as write_glm - - -def test_writes_clock_and_object(): - text = write_glm( - { - "clock": {"timezone": "PST+8PDT"}, - "objects": [ - {"name": "node", "attributes": {"name": "n1"}, "children": []} - ], - } - ) - assert "clock {" in text - assert "\ttimezone PST+8PDT;" in text - assert "object node {" in text - assert "\tname n1;" in text - - -def test_set_and_define_carry_no_semicolon(): - text = write_glm( - { - "directives": [{"name": "profiler", "value": "1"}], - "definitions": [{"name": "VSOURCE", "value": "69715.045"}], - } - ) - assert "#set profiler=1\n" in text - assert "#set profiler=1;" not in text - assert "#define VSOURCE=69715.045\n" in text - assert "#define VSOURCE=69715.045;" not in text - - -def test_include_is_quoted_and_semicolon_terminated(): - # REGRESSION: the Nim writer dropped includes entirely, so exported models - # lost their #include lines. It also would have dropped the quotes. - text = write_glm({"includes": [{"value": "Inverters.glm"}]}) - assert '#include "Inverters.glm";\n' in text - - -def test_module_without_attributes_uses_short_form(): - text = write_glm({"modules": [{"name": "tape", "attributes": {}}]}) - assert "module tape;\n" in text - assert "module tape {" not in text - - -def test_classes_are_written(): - text = write_glm( - {"classes": [{"name": "thermostat", "attributes": {"double": "setpoint"}}]} - ) - assert "class thermostat {" in text - assert "\tdouble setpoint;" in text - - -def test_nested_children_are_indented_inside_the_parent(): - text = write_glm( - { - "objects": [ - { - "name": "house", - "attributes": {"name": "h1"}, - "children": [ - { - "name": "ZIPload", - "attributes": {"name": "z1"}, - "children": [], - } - ], - } - ] - } - ) - assert "\tobject ZIPload {" in text - assert "\t\tname z1;" in text - - -def test_schedule_with_sub_blocks_round_trips_shape(): - text = write_glm( - { - "schedules": [ - {"name": "s", "values": ["* * * * * 1.0"], "children": [["* * * * 6-0 0.5"]]} - ] - } - ) - assert "schedule s {" in text - assert "\t* * * * * 1.0;" in text - assert "\t{\n" in text - assert "\t\t* * * * 6-0 0.5;" in text - - -def roundtrip_attributes(attributes): - """Write one object, parse it back, return its attributes. - - Substring assertions on writer output cannot catch malformation -- they pass - happily on text this project's own parser rejects or misreads. Anything - claiming a value survives export must go through the parser. - """ - text = write_glm( - {"objects": [{"name": "n", "attributes": attributes, "children": []}]} - ) - return parse(text)["objects"][0]["attributes"] - - -def test_values_containing_semicolons_survive_round_trip(): - # Quoting only works because the lexer consumes a quoted string whole. - # Without that, this reads back as {'weird': 'a', 'b"': ''}. - assert roundtrip_attributes({"weird": "a;b"}) == {"weird": "a;b"} - assert roundtrip_attributes({"k": "a;b;c"}) == {"k": "a;b;c"} - assert roundtrip_attributes({"k": "trailingsemi;"}) == {"k": "trailingsemi;"} - - -def test_ordinary_values_survive_round_trip(): - for value in ("NR", "1.0 + 2.0j", "${VSOURCE}", "a\nb", "200.00"): - assert roundtrip_attributes({"k": value}) == {"k": value}, value - - -def test_unrepresentable_values_raise_instead_of_corrupting(): - # GLM has no escape mechanism, so these cannot round-trip. Writing them - # anyway produces a model that silently reads back as different data, so - # the writer refuses. No value in any of the 17 sample models hits this. - for value in ('has "quote"', 'a;b said "x"', "newline\nand;semicolon"): - with pytest.raises(ValueError, match="Cannot export attribute"): - write_glm( - {"objects": [{"name": "n", "attributes": {"k": value}, "children": []}]} - ) - - -def test_unrepresentable_value_names_the_offending_attribute(): - with pytest.raises(ValueError, match="'bad_attr'"): - write_glm( - { - "objects": [ - {"name": "n", "attributes": {"bad_attr": 'x"y'}, "children": []} - ] - } - ) - - -def test_written_output_reparses_to_the_same_ast(): - ast = parse( - "clock {\n timezone PST+8PDT;\n};\n" - "#set profiler=1\n" - '#include "Inverters.glm";\n' - "module powerflow {\n solver_method NR;\n};\n" - "module tape;\n" - "class thermostat {\n double setpoint;\n};\n" - "schedule s {\n * * * * * 1.0;\n {\n * 9-17 * * 1-5 0.5;\n }\n};\n" - "object node {\n name n1;\n object ZIPload {\n name z1;\n };\n};\n" - ) - assert parse(write_glm(ast)) == ast - - -def test_missing_keys_are_tolerated(): - # the frontend may post back a dict lacking sections it never touched - assert write_glm({}) == "" -``` - -- [ ] **Step 2: Run tests to verify they fail** - -```bash -cd local-server && .venv/bin/python -m pytest tests/test_glmparser.py -v -``` - -Expected: FAIL — `ModuleNotFoundError: No module named 'glmparser.writer'` - -- [ ] **Step 3: Implement `writer.py`** - -Create `local-server/glmparser/writer.py`: - -```python -"""AST dict -> GLM text. - -Section order and punctuation follow the source models rather than the Nim -writer this replaces: `#set x=1` carries no semicolon, `#include "f.glm";` -carries both quotes and one. The Nim version got both wrong, which stayed -invisible only because it never emitted includes at all. -""" - -_INDENT = "\t" - - -def _unrepresentable(text): - """Return a reason if this value cannot survive a GLM round-trip, else None. - - GLM has no escape mechanism. The lexer's quoted-string branch stops at the - first `"` or newline, so a value carrying either one alongside a `;` cannot - be written and read back faithfully -- it comes back truncated, with a junk - attribute fabricated from the tail. - - Refuse loudly rather than emit a model file that silently reads back as - different data: server.py wraps export in `except Exception` and puts the - message in the HTTP error body, so the user sees a real error instead of a - quietly corrupted GridLAB-D model. - - No value in any of the 17 sample models contains `;`, `"`, or a newline, so - this path is defensive rather than routine. - """ - if '"' in text: - return "contains a double quote, which GLM cannot escape" - if "\n" in text and ";" in text: - return "contains both a newline and a semicolon" - return None - - -def _quote_if_needed(value, key): - text = str(value) - reason = _unrepresentable(text) - if reason is not None: - raise ValueError( - f"Cannot export attribute {key!r}: its value {reason}. " - f"Writing it would silently corrupt the model on reload." - ) - if ";" in text or "\n" in text: - return '"' + text + '"' - return text - - -def _attributes(attributes, depth): - pad = _INDENT * depth - return "".join( - f"{pad}{key} {_quote_if_needed(value, key)};\n" - for key, value in attributes.items() - ) - - -def _named_block(keyword, entry): - name = entry["name"] - attributes = entry.get("attributes") or {} - if not attributes: - return f"{keyword} {name};\n\n" - return f"{keyword} {name} {{\n{_attributes(attributes, 1)}}};\n\n" - - -def _object(obj, depth): - pad = _INDENT * depth - body = _attributes(obj.get("attributes") or {}, depth + 1) - for child in obj.get("children") or []: - body += _object(child, depth + 1) - # Blank line only between top-level objects; nested ones stay tight. - tail = "\n" if depth == 0 else "" - return f"{pad}object {obj['name']} {{\n{body}{pad}}};\n{tail}" - - -def _schedule(schedule): - body = "".join(f"{_INDENT}{value};\n" for value in schedule.get("values") or []) - for group in schedule.get("children") or []: - body += f"{_INDENT}{{\n" - body += "".join(f"{_INDENT * 2}{value};\n" for value in group) - body += f"{_INDENT}}}\n" - return f"schedule {schedule['name']} {{\n{body}}};\n\n" - - -def dumps(data): - """Render an AST dict as GLM text. - - Every section is optional: the frontend posts back whatever it holds, which - may omit sections the model never had. - """ - out = [] - - clock = data.get("clock") or {} - if clock: - out.append(f"clock {{\n{_attributes(clock, 1)}}};\n\n") - - directives = data.get("directives") or [] - if directives: - out.extend(f"#set {d['name']}={d['value']}\n" for d in directives) - out.append("\n") - - definitions = data.get("definitions") or [] - if definitions: - out.extend(f"#define {d['name']}={d['value']}\n" for d in definitions) - out.append("\n") - - includes = data.get("includes") or [] - if includes: - out.extend(f'#include "{inc["value"]}";\n' for inc in includes) - out.append("\n") - - for schedule in data.get("schedules") or []: - out.append(_schedule(schedule)) - - for module in data.get("modules") or []: - out.append(_named_block("module", module)) - - for klass in data.get("classes") or []: - out.append(_named_block("class", klass)) - - for obj in data.get("objects") or []: - out.append(_object(obj, 0)) - - return "".join(out) -``` - -- [ ] **Step 4: Run tests to verify they pass** - -```bash -cd local-server && .venv/bin/python -m pytest tests/test_glmparser.py -v -``` - -Expected: 64 passed - -- [ ] **Step 5: Commit** - -```bash -git add local-server/glmparser/writer.py local-server/tests/test_glmparser.py -git commit -m "feat(glmparser): add GLM writer with correct directive punctuation" -``` - ---- - -### Task 7: Public API and round-trip stability - -**Files:** -- Modify: `local-server/glmparser/__init__.py` -- Modify: `local-server/tests/test_glmparser.py` - -**Interfaces:** -- Consumes: `Parser` (Task 3), `dumps` (Task 6), `GlmParseError` (Task 1). -- Produces: `loads(text) -> dict`, `load(file) -> dict`, `dumps(data) -> str`, `dump(data, file) -> None`, `version() -> str`, and `GlmParseError` re-exported at package level. - -- [ ] **Step 1: Write the failing tests** - -Append to `local-server/tests/test_glmparser.py`: - -```python -import io -from pathlib import Path - -import glmparser - -REPO_ROOT = Path(__file__).resolve().parents[2] -MODELS = REPO_ROOT / "models" - -SAMPLE = """clock { - timezone PST+8PDT; -}; - -#set profiler=1 - -#define VSOURCE=69715.045 - -#include "Inverters.glm"; - -module powerflow { - solver_method NR; -}; - -module tape; - -object node { - name n1; - phases ABC; - object ZIPload { - name z1; - }; -}; -""" - - -def test_loads_and_dumps_are_exported(): - assert callable(glmparser.load) - assert callable(glmparser.loads) - assert callable(glmparser.dump) - assert callable(glmparser.dumps) - assert glmparser.version() == "1.0.0" - assert glmparser.GlmParseError is not None - - -def test_load_accepts_a_path(tmp_path): - path = tmp_path / "m.glm" - path.write_text(SAMPLE) - assert glmparser.load(path)["modules"][0]["name"] == "powerflow" - assert glmparser.load(str(path))["modules"][0]["name"] == "powerflow" - - -def test_load_accepts_an_open_file_object(tmp_path): - path = tmp_path / "m.glm" - path.write_text(SAMPLE) - with open(path) as handle: - assert glmparser.load(handle)["modules"][0]["name"] == "powerflow" - - -def test_dump_accepts_a_path(tmp_path): - path = tmp_path / "out.glm" - glmparser.dump(glmparser.loads(SAMPLE), path) - assert "module powerflow {" in path.read_text() - - as_str = tmp_path / "out2.glm" - glmparser.dump(glmparser.loads(SAMPLE), str(as_str)) - assert "module powerflow {" in as_str.read_text() - - -def test_dump_accepts_an_open_file_object(): - # glmhelper.py:33 passes an open file, so this form must work - buffer = io.StringIO() - glmparser.dump(glmparser.loads(SAMPLE), buffer) - assert "module powerflow {" in buffer.getvalue() - - -def test_round_trip_is_stable(): - first = glmparser.loads(SAMPLE) - text = glmparser.dumps(first) - second = glmparser.loads(text) - assert first == second - - -def test_round_trip_preserves_includes(): - # REGRESSION: the Nim round-trip silently dropped every #include. - first = glmparser.loads(SAMPLE) - second = glmparser.loads(glmparser.dumps(first)) - assert second["includes"] == [{"value": "Inverters.glm"}] - - -ALL_MODELS = sorted(MODELS.rglob("*.glm")) - - -@pytest.mark.parametrize( - "path", ALL_MODELS, ids=lambda p: str(p.relative_to(MODELS)) -) -def test_every_sample_model_round_trips_stably(path): - # Full equality, including every object's attributes -- which is where - # essentially all real GLM content lives (voltages, phases, impedances, - # ratings). A structural comparison would miss a regression that mangled, - # dropped, or reordered attribute values. - # - # uuid4 hoisted names do NOT make this flaky. They are regenerated only - # when the same SOURCE TEXT is parsed twice; this cycle parses the source - # once and then re-parses the writer's output, and the writer emits hoisted - # children as ordinary top-level objects carrying their generated name as a - # literal, so nothing re-hoists. Verified: holds for all 17 models (none of - # which trigger hoisting at all) and for a synthetic model that does. - first = glmparser.load(path) - second = glmparser.loads(glmparser.dumps(first)) - assert first == second -``` - -- [ ] **Step 2: Run tests to verify they fail** - -```bash -cd local-server && .venv/bin/python -m pytest tests/test_glmparser.py -v -``` - -Expected: FAIL — `AttributeError: module 'glmparser' has no attribute 'load'` - -- [ ] **Step 3: Rewrite `__init__.py` with the full public API** - -Replace the entire contents of `local-server/glmparser/__init__.py`: - -```python -"""Pure-Python GridLAB-D .glm parser. - -Drop-in replacement for the Nim-backed `glm` pip package. The public surface is -`load`/`loads`/`dump`/`dumps`/`version`, matching what glmhelper.py calls. - -Both `load` and `dump` accept either a filesystem path or an already-open file -object, because both forms are in use: glmhelper.py:23 passes a path to `load`, -glmhelper.py:33 passes an open file to `dump`. -""" -import os - -from .errors import GlmParseError -from .parser import Parser -from .writer import dumps - -__version__ = "1.0.0" - -__all__ = ["load", "loads", "dump", "dumps", "version", "GlmParseError"] - - -def loads(text): - """Parse GLM source text into the AST dict.""" - return Parser(text).parse() - - -def load(file): - """Parse a .glm file given a path or an open text file object.""" - if isinstance(file, (str, os.PathLike)): - with open(file, "r", encoding="utf-8", errors="replace") as handle: - return loads(handle.read()) - return loads(file.read()) - - -def dump(data, file): - """Write an AST dict as GLM to a path or an open writable file object.""" - text = dumps(data) - if isinstance(file, (str, os.PathLike)): - with open(file, "w", encoding="utf-8") as handle: - handle.write(text) - return None - file.write(text) - return None - - -def version(): - return __version__ -``` - -- [ ] **Step 4: Run tests to verify they pass** - -```bash -cd local-server && .venv/bin/python -m pytest tests/test_glmparser.py -v -``` - -Expected: all pass, including 17 parametrized round-trip cases - -- [ ] **Step 5: Commit** - -```bash -git add local-server/glmparser/__init__.py local-server/tests/test_glmparser.py -git commit -m "feat(glmparser): add public load/loads/dump/dumps API" -``` - ---- - -### Task 8: Differential validation against Nim, then freeze goldens - -Goldens cannot be dumped straight from the new parser — that asserts it agrees with itself. They also cannot come from Nim, whose output *is* the three bugs being fixed. This task establishes trust first, then freezes. - -**Files:** -- Create (temporarily, then delete): `local-server/tools/diff_parsers.py` -- Create: `local-server/tests/golden/*.json` -- Modify: `local-server/tests/test_glmparser.py` - -**Interfaces:** -- Consumes: `glmparser.load` from Task 7. -- Produces: `local-server/tests/golden/.json` files; a `normalize_uuids(obj)` helper in the test module. - -- [ ] **Step 1: Write the differential script** - -Create `local-server/tools/diff_parsers.py`. This is a migration aid and gets deleted in Step 4 — it requires the Nim `glm` package, which is the dependency being removed. - -```python -"""One-off: diff the new pure-Python parser against the Nim `glm` package. - -Requires the Nim wheel installed. Deleted once goldens are frozen. -Run from the repo root: python local-server/tools/diff_parsers.py -""" -import json -import re -import sys -from pathlib import Path - -sys.path.insert(0, str(Path(__file__).resolve().parents[1])) - -import glm # the Nim package -import glmparser - -UUID_RE = re.compile(r"^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$") - - -def normalize(node): - if isinstance(node, dict): - return { - k: ("" if isinstance(v, str) and UUID_RE.match(v) else normalize(v)) - for k, v in node.items() - } - if isinstance(node, list): - return [normalize(x) for x in node] - return node - - -def classify(nim_obj, py_obj): - """Return 'dotted-key' for the known fix-2 difference, else 'UNEXPECTED'.""" - extra = set(py_obj["attributes"]) - set(nim_obj["attributes"]) - if extra and all("." in key for key in extra): - return "dotted-key" - return "UNEXPECTED" - - -def main(): - root = Path(__file__).resolve().parents[2] - unexpected_total = 0 - - for path in sorted((root / "models").rglob("*.glm")): - nim = normalize(glm.load(str(path))) - py = normalize(glmparser.load(path)) - - notes = [] - # fix 3: `classes` is new, Nim never emitted it - if "classes" in py and "classes" not in nim: - notes.append(f"classes=+{len(py['classes'])} (fix 3)") - - dotted = unexpected = 0 - for nim_obj, py_obj in zip(nim["objects"], py["objects"]): - if nim_obj == py_obj: - continue - if classify(nim_obj, py_obj) == "dotted-key": - dotted += 1 - else: - unexpected += 1 - if unexpected == 1: - notes.append(f"\n nim: {str(nim_obj)[:200]}") - notes.append(f"\n py : {str(py_obj)[:200]}") - - for key in ("modules", "includes", "directives", "definitions", "clock"): - if nim.get(key) != py.get(key): - unexpected += 1 - notes.append(f"\n {key}: nim={nim.get(key)} py={py.get(key)}") - - unexpected_total += unexpected - status = "OK" if unexpected == 0 else "REVIEW" - print( - f"{status:<7}{path.name:<38} dotted={dotted:<4} unexpected={unexpected}" - + " ".join(notes) - ) - - print(f"\nTotal unexpected diffs: {unexpected_total}") - return 1 if unexpected_total else 0 - - -if __name__ == "__main__": - raise SystemExit(main()) -``` - -- [ ] **Step 2: Run the differential and account for every diff** - -```bash -cd /home/mend166/projects/GLIMPSE && local-server/.venv/bin/python local-server/tools/diff_parsers.py -``` - -Expected: every line reports `OK`, and `Total unexpected diffs: 0`. - -**Do not proceed past this step with a non-zero count.** Each `REVIEW` line is either a bug in the new parser or a fourth undocumented Nim behavior. Investigate and fix the parser; only differences attributable to the three documented fixes (dotted keys, added `classes`, restored `includes` on write) are acceptable. - -If the Nim `glm` package is not installed, install it with `local-server/.venv/bin/pip install glm`. On Apple Silicon it must be built from source per `README.md:175-199` — this is the last time that will be necessary. - -- [ ] **Step 3: Generate and commit the goldens** - -```bash -cd /home/mend166/projects/GLIMPSE && mkdir -p local-server/tests/golden && local-server/.venv/bin/python - <<'PY' -import json, re, sys -from pathlib import Path -sys.path.insert(0, "local-server") -import glmparser - -UUID_RE = re.compile(r"^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$") - -def normalize(node): - if isinstance(node, dict): - return {k: ("" if isinstance(v, str) and UUID_RE.match(v) else normalize(v)) - for k, v in node.items()} - if isinstance(node, list): - return [normalize(x) for x in node] - return node - -models = Path("models") -out = Path("local-server/tests/golden") -for path in sorted(models.rglob("*.glm")): - # Key on the relative path, not the stem: two models are named IEEE_9500.glm - # and two are named Inverters.glm, so stems collide and would overwrite. - slug = str(path.relative_to(models).with_suffix("")).replace("/", "__") - target = out / (slug + ".json") - target.write_text(json.dumps(normalize(glmparser.load(path)), indent=1, sort_keys=True)) - print("wrote", target) -PY -``` - -- [ ] **Step 3b: Verify one golden per model file** - -```bash -cd /home/mend166/projects/GLIMPSE && echo "models: $(find models -name '*.glm' | wc -l) goldens: $(ls local-server/tests/golden/*.json | wc -l)" -``` - -Expected: the two counts match. If goldens are fewer, the slug scheme collided and Step 3 needs fixing before continuing. - -- [ ] **Step 4: Add the golden test and delete the differential script** - -Append to `local-server/tests/test_glmparser.py`: - -```python -import json - -GOLDEN = Path(__file__).resolve().parent / "golden" - - -def normalize_uuids(node): - """Hoisted-object names are uuid4 and differ every run; blank them out. - - Reuses UUID_RE, defined alongside the hoisting tests above. - """ - if isinstance(node, dict): - return { - k: ( - "" - if isinstance(v, str) and UUID_RE.match(v) - else normalize_uuids(v) - ) - for k, v in node.items() - } - if isinstance(node, list): - return [normalize_uuids(x) for x in node] - return node - - -@pytest.mark.parametrize( - "path", ALL_MODELS, ids=lambda p: str(p.relative_to(MODELS)) -) -def test_model_matches_golden(path): - slug = str(path.relative_to(MODELS).with_suffix("")).replace("/", "__") - expected = json.loads((GOLDEN / f"{slug}.json").read_text()) - assert normalize_uuids(glmparser.load(path)) == expected -``` - -Then remove the migration script: - -```bash -rm -rf local-server/tools -``` - -- [ ] **Step 5: Run the full suite** - -```bash -cd local-server && .venv/bin/python -m pytest tests/ -v -``` - -Expected: all pass, with one `test_model_matches_golden` case per golden file. - -- [ ] **Step 6: Commit** - -```bash -git add local-server/tests/ -git commit -m "test(glmparser): freeze goldens after Nim differential parity" -``` - ---- - -### Task 9: Cut over glmhelper.py - -**Files:** -- Modify: `local-server/glmhelper.py:1`, `local-server/glmhelper.py:23`, `local-server/glmhelper.py:33` -- Modify: `local-server/tests/test_glmparser.py` - -**Interfaces:** -- Consumes: `glmparser.load`, `glmparser.dump` from Task 7. -- Produces: `GLMHelper` unchanged in signature — `parse_glm(file_paths: list) -> dict`, `json_to_glm(data, tmpdir) -> io.BytesIO`. - -- [ ] **Step 1: Write the failing test** - -Append to `local-server/tests/test_glmparser.py`: - -```python -from glmhelper import GLMHelper - - -def test_glmhelper_parses_through_the_new_module(tmp_path): - source = tmp_path / "tiny.glm" - source.write_text(SAMPLE) - result = GLMHelper().parse_glm([str(source)]) - assert "tiny.json" in result - assert result["tiny.json"]["modules"][0]["name"] == "powerflow" - - -def test_glmhelper_rejects_oversized_files(tmp_path): - big = tmp_path / "big.glm" - big.write_text("// pad\n" * 800_000) # 5.34 MB, over the 5 MB cap - with pytest.raises(ValueError, match="too large"): - GLMHelper().parse_glm([str(big)]) - - -def test_glmhelper_exports_a_zip(tmp_path): - helper = GLMHelper() - data = {"tiny.json": glmparser.loads(SAMPLE)} - buffer = helper.json_to_glm(data, str(tmp_path)) - - import zipfile - - with zipfile.ZipFile(buffer) as archive: - assert archive.namelist() == ["tiny.glm"] - text = archive.read("tiny.glm").decode() - assert "module powerflow {" in text - assert '#include "Inverters.glm";' in text -``` - -- [ ] **Step 2: Run tests to verify they fail** - -```bash -cd local-server && .venv/bin/python -m pytest tests/test_glmparser.py -v -``` - -Expected: `test_glmhelper_exports_a_zip` FAILs on the missing `#include "Inverters.glm";` line. - -Note the failure is *not* an import error — the Nim `glm` package is still installed at this point, so `glmhelper.py:1` imports fine and the first two tests may well pass. The export test is the one that pins the cutover, because dropping includes is exactly what the Nim writer does. - -- [ ] **Step 3: Swap the import** - -In `local-server/glmhelper.py`, change line 1: - -```python -import glm -``` - -to: - -```python -from glmparser import dump as glm_dump -from glmparser import load as glm_load -``` - -Then change line 23 from `result = glm.load(glm_path)` to: - -```python - result = glm_load(glm_path) -``` - -And line 33 from `glm.dump(data[filename], glm_file)` to: - -```python - glm_dump(data[filename], glm_file) -``` - -- [ ] **Step 4: Run tests to verify they pass** - -```bash -cd local-server && .venv/bin/python -m pytest tests/ -v -``` - -Expected: all pass - -- [ ] **Step 5: Verify the Nim package is genuinely unused** - -```bash -cd /home/mend166/projects/GLIMPSE && grep -rn "import glm$\|^import glm\|from glm import" --include=*.py --include=*.spec . | grep -v node_modules | grep -v "local-server/glm/" -``` - -Expected: no output. Any hit is a missed call site. - -- [ ] **Step 6: Smoke-test the real server** - -```bash -cd /home/mend166/projects/GLIMPSE && npm run dev:backend -``` - -In a second shell: - -```bash -curl -s -F "files=@models/123/IEEE_123_Dynamic.glm" http://localhost:5052/api/upload/glm | head -c 400 -``` - -Expected: a JSON body whose `data` key holds `IEEE_123_Dynamic.json` with a populated `objects` array. Stop the server afterward. - -- [ ] **Step 7: Commit** - -```bash -git add local-server/glmhelper.py local-server/tests/test_glmparser.py -git commit -m "refactor(glmhelper): use pure-Python glmparser instead of Nim glm" -``` - ---- - -### Task 10: Documentation - -**Files:** -- Modify: `README.md:73-199` -- Modify: `CLAUDE.md` - -**Interfaces:** -- Consumes: nothing. -- Produces: nothing (docs only). - -- [ ] **Step 1: Update `README.md` prerequisites** - -In the "Prerequisites" list around `README.md:80-84`, delete the entire Nim entry: - -```markdown -2. **[Nim](https://nim-lang.org/install.html)** — Only needed if: - - You're on Apple silicon (M chips), OR - - You plan to export modified GLM files -``` - -In the "Quick Overview" list at `README.md:73`, change: - -```markdown -1. ✅ Install Node.js (and optionally Nim) -``` - -to: - -```markdown -1. ✅ Install Node.js -``` - -- [ ] **Step 2: Delete the Apple Silicon build section** - -Remove the whole "#### Special Instructions for Apple Silicon (M Chips)" block (`README.md:173-199` and its trailing pip/uv install snippets) — building the parser from source is no longer a thing. Also remove the now-stale `uv pip install glm` line at `README.md:170`. - -- [ ] **Step 3: Update `CLAUDE.md`** - -In the "What GLIMPSE is" section, the sentence reading: - -```markdown -The `.glm` parser is the separate `glm` pip package (a Nim binary); Apple Silicon must build it -from source — see the README. -``` - -becomes: - -```markdown -The `.glm` parser is `local-server/glmparser/` — a pure-Python package with no build step. -``` - -In the "Backend helpers" section, update the `GLMHelper` bullet: - -```markdown -- `GLMHelper` ([glmhelper.py](local-server/glmhelper.py)) — GridLAB-D `.glm` ⇄ JSON via - [glmparser](local-server/glmparser/) (5 MB/file cap); `json_to_glm` zips exports. -``` - -In the "Tests" section, replace the "There is **no unit-test framework**" opening with: - -```markdown -The parser has a pytest suite; everything else is covered by the integration scripts in -[socket-testing/](socket-testing/). - -```bash -cd local-server && uv sync --group dev -cd local-server && pytest # parser unit + golden tests -``` -``` - -- [ ] **Step 4: Verify no stale Nim references remain** - -```bash -cd /home/mend166/projects/GLIMPSE && grep -rniE '\bnim\b|nimble|nim-lang' README.md CLAUDE.md -``` - -Expected: no output. - -- [ ] **Step 5: Commit** - -```bash -git add README.md CLAUDE.md -git commit -m "docs: drop Nim toolchain requirement" -``` - ---- - -## Verification - -After Task 10, from the repo root: - -```bash -cd local-server && .venv/bin/python -m pytest tests/ -v # full suite green -cd /home/mend166/projects/GLIMPSE && npm run lint # unchanged, still clean -``` - -Then delete the now-unused Nim clone, which is untracked and gitignored: - -```bash -rm -rf local-server/glm -local-server/.venv/bin/pip uninstall -y glm -``` - -Re-run the suite once more afterward to prove nothing still reaches for the Nim package. diff --git a/docs/superpowers/specs/2026-08-05-python-glm-parser-design.md b/docs/superpowers/specs/2026-08-05-python-glm-parser-design.md deleted file mode 100644 index d3b8bc76..00000000 --- a/docs/superpowers/specs/2026-08-05-python-glm-parser-design.md +++ /dev/null @@ -1,249 +0,0 @@ -# Pure-Python GLM Parser — Design - -**Date:** 2026-08-05 -**Status:** Approved, pending implementation plan - -## Problem - -The `.glm` parser GLIMPSE depends on is the `glm` pip package — a Nim binary -(`local-server/glm/`, an untracked clone; `.gitignore:15` ignores `**/glm`). -Building GLIMPSE from source therefore requires a Nim toolchain for anyone on -Apple Silicon or anyone exporting modified GLM files, per `README.md:73-199`. -The goal is to remove Nim from the build entirely. - -## Why Python and not Rust - -Rust via PyO3/maturin would replace a Nim toolchain requirement with a Rust -toolchain requirement — identical friction, for a full rewrite. It only avoids -that by shipping prebuilt per-platform wheels, which the existing Nim code could -do equally well. Rust does not address the stated problem. - -The native speed is also not being earned. Measured against a throwaway -pure-Python prototype (median of 5 runs): - -| model | Nim | pure Python | -|---|---|---| -| `ieee8500.glm` (2.2 MB, 12,492 objects) | 179 ms | 182 ms | -| `IEEE_9500.glm` (2.15 MB) | 172 ms | 167 ms | -| `3000_model.glm` (1.04 MB) | 86 ms | 75 ms | - -Two reasons the compiled version has no headroom: - -1. `lexer.nim:246-249` heap-allocates a `ref object` Token for every space and - newline — over a million allocations on a 2 MB file. -2. `glm.nim:16-18` serializes the whole AST to a JSON string and calls - `pyImport("json").loads(...)` on it. Every load already pays a full Python - JSON parse (~18 ms) plus a 2.77 MB intermediate string. A Python parser - builds the dicts directly and skips the round-trip. - -Secondary wins: one pure wheel for every platform (killing the Apple Silicon -special case), and simpler PyInstaller bundling with no native `.so`/`.pyd`. - -## Constraints discovered - -- **The AST shape is a hard contract.** `server.py:498-502` ships the parser - output straight to the frontend; `GraphHelper.js:1676` reads `obj.name` as the - object type and `attributes.name` as the node id; `GraphHelper.js:1661` retains - the whole dict as `glmFileData` and posts it back to `/api/export/glm`, which - calls `dump`. Every key must survive the round-trip. -- **One consumer.** `glmhelper.py:1` is the only importer of `glm`. -- **Naming.** `.gitignore:15` (`**/glm`) means the new module cannot be called - `glm` or it will not be committed. -- **No dependency-file change needed.** `glm` appears in neither - `requirements.txt` nor `pyproject.toml` — it was always an implicit install. - -## Module layout - -``` -local-server/glmparser/ -├── __init__.py # public API only: load, loads, dump, dumps, version, GlmParseError -├── lexer.py # regex scan → streaming tokens with 1-token lookahead -├── parser.py # tokens → AST dict -├── writer.py # AST dict → GLM text -└── errors.py # GlmParseError with line/column/caret rendering -``` - -## Public API - -Mirrors the Nim surface. Both path and file-object forms are required: -`glmhelper.py:23` passes a path to `load`, `glmhelper.py:33` passes an open file -object to `dump`. - -```python -loads(text: str) -> dict -load(file: str | os.PathLike | TextIO) -> dict -dumps(data: dict) -> str -dump(data: dict, file: str | os.PathLike | TextIO) -> None -version() -> str -``` - -`glmhelper.py` changes by one line: `import glm` → `from glmparser import load, dump`. - -`version()` returns the `glmparser` package version string, tracked -independently of the Nim package's `v0.4.4`; it starts at `1.0.0`. `dump` -returns `None` where the Nim binding returned `0` — `glmhelper.py:33` discards -the result, so nothing depends on it. - -## Tokenizer - -A single `re.finditer` over one master alternation, pulled through a small -`peek()`/`next()` buffer rather than materialized into a list. The parser needs -exactly one token of lookahead, confirmed while building the prototype. - -Materializing the token list costs 62 MB peak on a 2.2 MB file (~140 MB at the -5 MB cap in `glmhelper.py:8`), which matters for the bundled Electron app. -Streaming keeps peak near source size plus output. - -Token kinds: `hash` (`set`/`define`/`include`), `kw` -(`clock`/`module`/`object`/`class`/`schedule`), `lbrace`, `rbrace`, `semi`, -`word`, `eof`. `//` comments are matched and discarded. Whitespace is skipped -rather than tokenized — this is the single biggest departure from the Nim lexer -and the main source of the speed parity. - -Each token carries its source start and end offsets, which serve both value -slicing and error reporting. - -## Value handling - -Attribute values are **sliced out of the retained source string by offset**, not -re-joined from token text. Re-joining with a separator corrupts `${VSOURCE}` -(becomes `$ {VSOURCE}`); re-joining without one corrupts multi-word values. -Slicing is exact and cheaper than both. - -Two terminator rules, which differ and must not be conflated: - -- Attribute values inside a block run to the next `;`. -- `#set`, `#define`, `#include` run to the **end of line**. Getting this wrong - causes the value to swallow subsequent lines — observed and fixed during - prototyping. - -## AST schema - -```python -{ - "clock": {str: str}, # {} when absent - "includes": [{"value": str}], - "objects": [{"name": str, "attributes": {str: str}, "children": [...]}], - "modules": [{"name": str, "attributes": {str: str}}], - "classes": [{"name": str, "properties": [{"type": str, "name": str}]}], # NEW - "directives": [{"name": str, "value": str}], - "definitions": [{"name": str, "value": str}], - "schedules": [{"name": str, "values": [str], "children": [[str]]}], -} -``` - -`classes` is the only added key. `GraphHelper.js:1673` iterates `file.objects` -and carries every other key through opaquely, so the addition is inert on the -frontend. - -A class body is an ordered `properties` list rather than a dict keyed by -property name or type: a GridLAB-D class legitimately repeats property types -(`double power_factor; double heatgain_fraction;`), and keying by type would -collapse same-typed properties, silently dropping all but the last. - -`clock` is always present, `{}` when the model has none — matching -`ast.nim:238-243`. - -### Anonymous object hoisting — preserved exactly - -`configuration object line_configuration { ... };` inside a parent object: -the child receives a `uuid4` string as `attributes["name"]`, is appended to -top-level `objects`, and the parent's attribute takes that generated name as its -value. Edge wiring in the frontend resolves those name references, so this -behavior is load-bearing. Matches `parser.nim:232-238`. - -Bare `object child { ... };` nested inside a parent instead goes to the parent's -`children` list. Matches `parser.nim:224-227`. - -## Behavior changes - -Three confirmed data-losing bugs in the Nim parser are fixed. Duplicate-key -last-wins collapse is deliberately preserved. - -| # | Bug | Fix | -|---|---|---| -| 1 | `#include` lines are captured by `load` but silently discarded by `dump` — `ast.nim:126-148` never reads the `includes` key back. Exporting `IEEE_9500` drops all 3 includes, producing an incomplete model. | Writer emits them. | -| 2 | Dotted keys collapse. `rating.summer.continuous` / `.emergency` / `winter.*` become one mangled `'rating': '.winter.emergency 200.00'` — the lexer splits on `.`, then Nim's `JsonNode.add` permits duplicate keys which collapse to the last during `json.loads`. 240 attribute lines across `models/`. | Dotted keys stay whole and distinct. | -| 3 | `class` blocks are parsed into `ast.classes` then never emitted — `ast.nim:262-270` omits them from `toJson`. They vanish on round-trip. | `classes` key added to AST and to writer output. No file in `models/` currently uses `class`; this is forward-looking. | -| 4 | Genuinely repeated attribute keys collapse to last-wins. | **Preserved** — this one is defensible as-is. | - -## Writer output format - -Section order, mirroring `ast.nim:150-215` with `includes` and `classes` added: - -1. `clock { ... };` -2. `#set name=value` — **no trailing semicolon** -3. `#define name=value` — **no trailing semicolon** -4. `#include "value";` — **quoted, with semicolon** -5. `schedule name { ... };` -6. `module name { ... };` (or `module name;` when attribute-less) -7. `class name { ... };` -8. `object type { ... };`, children nested inline - -The per-directive punctuation differs and matters. Source models use -`#set relax_naming_rules=1` with no semicolon but `#include "Inverters.glm";` -with both quotes and a semicolon (`IEEE_9500.glm:9-32`). Nim's writer emits a -semicolon for `#set` and drops the quotes for `#include`; the quote loss is -masked today only because includes never reach the writer. - -Attribute values are written unquoted — valid GLM and stable through our own -reader. Values containing `;` or a newline are quoted defensively. - -## Error handling - -`GlmParseError(Exception)` carrying line, column, and the offending source line, -rendering the caret display from `lexer.nim:82-104` **into the exception -message** rather than printing to stderr. - -This is a deliberate improvement: `server.py:504-507` wraps handlers in -`except Exception` and builds an HTTP error body, so a parse error surfaces in -the UI instead of vanishing into a terminal nobody is watching. - -## Testing - -`local-server/tests/test_glmparser.py`, goldens in `local-server/tests/golden/`, -`pytest` added as a `[dependency-groups] dev` entry in -`local-server/pyproject.toml`. - -- Every `models/**/*.glm` parses to its committed golden. `uuid4` hoisted-object - names are normalized to a placeholder before comparison, since they differ per - run. -- `glm → json → glm → json` is stable (second and third representations match). -- One explicit regression test per fix: includes survive export; - `rating.summer.continuous` remains a distinct key; `class` blocks reach the AST. -- Malformed input raises `GlmParseError` with the correct line number. - -### How goldens get trusted - -Goldens cannot simply be dumped from the new parser (that would assert it agrees -with itself) nor from the Nim parser (that output encodes the three bugs being -fixed). The sequence is: - -1. A one-off differential script runs both parsers over `models/**/*.glm` and - diffs, with uuid4 names normalized. -2. Every diff must be individually accounted for as one of the three known fixes. - Any diff that is not gets investigated as a bug in the new parser. -3. Once the only remaining diffs are the intended ones, the new parser's output - is frozen as the goldens and committed. -4. The differential script is discarded — it needs Nim, which is the dependency - being removed. The goldens are the durable artifact. - -## Out of scope - -- **GridLAB-D semantics.** `#include` files are not resolved or inlined, `${...}` - is not substituted, macros are not expanded. Values remain opaque strings, - exactly as today. -- **CLI binaries.** The Nim package shipped `glm2json`/`json2glm`; nothing in - GLIMPSE invokes them. -- **Deterministic hoisted-object names.** Keeping `uuid4` to match current - behavior, despite the export churn it causes. -- **Objects-format conversion.** No change to `GraphHelper.setGraphData`. - -## Follow-on doc changes - -- `README.md:73-199` — remove the Nim prerequisite and the Apple Silicon - build-from-source section. -- `CLAUDE.md` — update the line describing the parser as "the separate `glm` pip - package (a Nim binary)". -- `local-server/glm/` is untracked and gitignored; it can simply be deleted - locally once the cutover lands. No repo change. diff --git a/local-server/glmparser/__init__.py b/local-server/glmparser/__init__.py index 6b2ee2c8..100d8ae2 100644 --- a/local-server/glmparser/__init__.py +++ b/local-server/glmparser/__init__.py @@ -1,12 +1,4 @@ -"""Pure-Python GridLAB-D .glm parser. - -Drop-in replacement for the Nim-backed `glm` pip package. The public surface is -`load`/`loads`/`dump`/`dumps`/`version`, matching what glmhelper.py calls. - -Both `load` and `dump` accept either a filesystem path or an already-open file -object, because both forms are in use: glmhelper.py:23 passes a path to `load`, -glmhelper.py:33 passes an open file to `dump`. -""" +# Pure-Python GridLAB-D .glm parser. import os from .errors import GlmParseError diff --git a/local-server/glmparser/lexer.py b/local-server/glmparser/lexer.py index 903deda3..e0b6fb17 100644 --- a/local-server/glmparser/lexer.py +++ b/local-server/glmparser/lexer.py @@ -46,18 +46,20 @@ # nothing on `$` positions while keeping ordinary scanning at full speed. A # single per-character alternation `(?:\$\{[^}]*\}|[^\s{};])+` also works but # costs ~25% throughput. + +# line comment (discarded) +# the (?set|define|include)\b | \b(?Pclock|module|object|class|schedule)\b | (?P\{) diff --git a/local-server/tests/golden/123__IEEE_123_Diesels.json b/local-server/glmparser/tests/golden/123__IEEE_123_Diesels.json similarity index 100% rename from local-server/tests/golden/123__IEEE_123_Diesels.json rename to local-server/glmparser/tests/golden/123__IEEE_123_Diesels.json diff --git a/local-server/tests/golden/123__IEEE_123_Dynamic.json b/local-server/glmparser/tests/golden/123__IEEE_123_Dynamic.json similarity index 100% rename from local-server/tests/golden/123__IEEE_123_Dynamic.json rename to local-server/glmparser/tests/golden/123__IEEE_123_Dynamic.json diff --git a/local-server/tests/golden/123__IEEE_123_Inverters_Mixed.json b/local-server/glmparser/tests/golden/123__IEEE_123_Inverters_Mixed.json similarity index 100% rename from local-server/tests/golden/123__IEEE_123_Inverters_Mixed.json rename to local-server/glmparser/tests/golden/123__IEEE_123_Inverters_Mixed.json diff --git a/local-server/tests/golden/123__IEEE_123_Recorders.json b/local-server/glmparser/tests/golden/123__IEEE_123_Recorders.json similarity index 100% rename from local-server/tests/golden/123__IEEE_123_Recorders.json rename to local-server/glmparser/tests/golden/123__IEEE_123_Recorders.json diff --git a/local-server/tests/golden/13__IEEE-13.json b/local-server/glmparser/tests/golden/13__IEEE-13.json similarity index 100% rename from local-server/tests/golden/13__IEEE-13.json rename to local-server/glmparser/tests/golden/13__IEEE-13.json diff --git a/local-server/tests/golden/3000__3000_model.json b/local-server/glmparser/tests/golden/3000__3000_model.json similarity index 100% rename from local-server/tests/golden/3000__3000_model.json rename to local-server/glmparser/tests/golden/3000__3000_model.json diff --git a/local-server/tests/golden/8500__ieee8500.json b/local-server/glmparser/tests/golden/8500__ieee8500.json similarity index 100% rename from local-server/tests/golden/8500__ieee8500.json rename to local-server/glmparser/tests/golden/8500__ieee8500.json diff --git a/local-server/tests/golden/9500__IEEE_9500.json b/local-server/glmparser/tests/golden/9500__IEEE_9500.json similarity index 100% rename from local-server/tests/golden/9500__IEEE_9500.json rename to local-server/glmparser/tests/golden/9500__IEEE_9500.json diff --git a/local-server/tests/golden/9500__Inverters.json b/local-server/glmparser/tests/golden/9500__Inverters.json similarity index 100% rename from local-server/tests/golden/9500__Inverters.json rename to local-server/glmparser/tests/golden/9500__Inverters.json diff --git a/local-server/tests/golden/9500__Recorders.json b/local-server/glmparser/tests/golden/9500__Recorders.json similarity index 100% rename from local-server/tests/golden/9500__Recorders.json rename to local-server/glmparser/tests/golden/9500__Recorders.json diff --git a/local-server/tests/golden/9500__Rotating_Machines.json b/local-server/glmparser/tests/golden/9500__Rotating_Machines.json similarity index 100% rename from local-server/tests/golden/9500__Rotating_Machines.json rename to local-server/glmparser/tests/golden/9500__Rotating_Machines.json diff --git a/local-server/tests/golden/9500_with_coordinates__IEEE_9500.json b/local-server/glmparser/tests/golden/9500_with_coordinates__IEEE_9500.json similarity index 100% rename from local-server/tests/golden/9500_with_coordinates__IEEE_9500.json rename to local-server/glmparser/tests/golden/9500_with_coordinates__IEEE_9500.json diff --git a/local-server/tests/golden/9500_with_coordinates__Inverters.json b/local-server/glmparser/tests/golden/9500_with_coordinates__Inverters.json similarity index 100% rename from local-server/tests/golden/9500_with_coordinates__Inverters.json rename to local-server/glmparser/tests/golden/9500_with_coordinates__Inverters.json diff --git a/local-server/tests/golden/9500_with_coordinates__Rotating_Machines.json b/local-server/glmparser/tests/golden/9500_with_coordinates__Rotating_Machines.json similarity index 100% rename from local-server/tests/golden/9500_with_coordinates__Rotating_Machines.json rename to local-server/glmparser/tests/golden/9500_with_coordinates__Rotating_Machines.json diff --git a/local-server/tests/golden/model_base__model_base.json b/local-server/glmparser/tests/golden/model_base__model_base.json similarity index 100% rename from local-server/tests/golden/model_base__model_base.json rename to local-server/glmparser/tests/golden/model_base__model_base.json diff --git a/local-server/tests/golden/model_base__model_schedules.json b/local-server/glmparser/tests/golden/model_base__model_schedules.json similarity index 100% rename from local-server/tests/golden/model_base__model_schedules.json rename to local-server/glmparser/tests/golden/model_base__model_schedules.json diff --git a/local-server/tests/golden/model_base__model_startup.json b/local-server/glmparser/tests/golden/model_base__model_startup.json similarity index 100% rename from local-server/tests/golden/model_base__model_startup.json rename to local-server/glmparser/tests/golden/model_base__model_startup.json diff --git a/local-server/tests/test_glmparser.py b/local-server/glmparser/tests/test_glmparser.py similarity index 100% rename from local-server/tests/test_glmparser.py rename to local-server/glmparser/tests/test_glmparser.py diff --git a/local-server/requirements-server.txt b/local-server/requirements-server.txt deleted file mode 100644 index 48ecbf12..00000000 --- a/local-server/requirements-server.txt +++ /dev/null @@ -1,12 +0,0 @@ -Flask -Flask-SocketIO -flask-cors -gevent -gevent-websocket -networkx -requests -wheel -setuptools -cim-graph==0.4.3a10 -gridappsd-python==2026.2.1 -jsonschema diff --git a/src/components/SimulationLog.jsx b/src/components/SimulationLog.jsx index c5a754b0..252ba918 100644 --- a/src/components/SimulationLog.jsx +++ b/src/components/SimulationLog.jsx @@ -58,14 +58,14 @@ const SimulationLog = ({ expanded, onToggleExpanded }) => { }; }, []); - // Keep the newest line in view while expanded (only when already near the - // bottom, so a user scrolled up to read history isn't yanked back down). + // Keep the newest line in view while expanded. Newest renders at the top, so + // that means pinning to scrollTop 0 — and only when already near the top, so + // a user scrolled down to read history isn't yanked back up. useEffect(() => { if (!expanded) return; const el = bodyRef.current; if (!el) return; - const nearBottom = el.scrollHeight - el.scrollTop - el.clientHeight < 60; - if (nearBottom) el.scrollTop = el.scrollHeight; + if (el.scrollTop < 60) el.scrollTop = 0; }, [logs, expanded]); return ( @@ -115,28 +115,39 @@ const SimulationLog = ({ expanded, onToggleExpanded }) => { style={{ margin: "16px 0" }} /> ) : ( - logs.map((log, i) => { - const level = levelOf(log); - return ( -
- {timeOf(log)} - - {level} - - {log.processStatus && ( + // Newest first, so the tail of a long simulation is the + // first thing on screen. `logs` itself stays in arrival + // order (that's the socket buffer's order), which keeps + // the arrival index usable as a stable key — reversing + // the array alone would re-key every row on each log. + logs + .map((log, i) => ({ log, i })) + .reverse() + .map(({ log, i }) => { + const level = levelOf(log); + return ( +
+ {timeOf(log)} - {log.processStatus} + {level} - )} - - {log.logMessage ?? JSON.stringify(log)} - -
- ); - }) + {log.processStatus && ( + + {log.processStatus} + + )} + + {log.logMessage ?? JSON.stringify(log)} + +
+ ); + }) )} )} diff --git a/src/components/modals/LoadModelModal.jsx b/src/components/modals/LoadModelModal.jsx index d48d94e3..7624da2b 100644 --- a/src/components/modals/LoadModelModal.jsx +++ b/src/components/modals/LoadModelModal.jsx @@ -120,6 +120,10 @@ const LoadModelModal = ({ onMount }) => { // Close modal after data is set console.log(response); graphHelper.setIsCIM(true); + // Fallback feeder for objects that carry no feeder_id of their own. + // With several feeders selected the first one wins; per-object + // feeder_id still takes precedence (see resolveFeederIdFromGraph). + graphHelper.currentFeederID = selectedGridappsdModels[0]?.modelId ?? null; graphHelper.setThemeObject(response.themeData ?? null); graphHelper.setGraphData(response.data ?? response); newGraphUpdate(); diff --git a/src/components/model-data-view/ModelDataView.css b/src/components/model-data-view/ModelDataView.css index c5657807..19638e94 100644 --- a/src/components/model-data-view/ModelDataView.css +++ b/src/components/model-data-view/ModelDataView.css @@ -170,3 +170,39 @@ .dark-mode .object-table-row-odd:hover td.ant-table-cell-fix-right { background-color: #373737 !important; } + +/* ─── Search-jump highlight ─── */ + +/* The row a header search landed on. It stays marked until the next search so + the user can page away and back and still spot it. Listed last, and with the + fixed-cell selectors spelled out, so it outranks the striping rules above + (which set the fixed cells with !important at equal specificity). + + The arrival flash is an inset box-shadow rather than a background animation: + the striping rules' `!important` backgrounds beat any animated + background-color, but nothing competes for box-shadow. */ +.object-table-row-highlight > td, +.object-table-row-highlight > td.ant-table-cell-fix-left, +.object-table-row-highlight > td.ant-table-cell-fix-right, +.dark-mode .object-table-row-highlight > td, +.dark-mode .object-table-row-highlight > td.ant-table-cell-fix-left, +.dark-mode .object-table-row-highlight > td.ant-table-cell-fix-right { + background-color: rgba(22, 119, 255, 0.16) !important; + animation: object-table-row-flash 1.4s ease-out; +} + +.dark-mode .object-table-row-highlight > td, +.dark-mode .object-table-row-highlight > td.ant-table-cell-fix-left, +.dark-mode .object-table-row-highlight > td.ant-table-cell-fix-right { + background-color: rgba(22, 119, 255, 0.28) !important; +} + +@keyframes object-table-row-flash { + 0%, + 35% { + box-shadow: inset 0 0 0 9999px rgba(22, 119, 255, 0.3); + } + 100% { + box-shadow: inset 0 0 0 9999px rgba(22, 119, 255, 0); + } +} diff --git a/src/components/model-data-view/ModelDataView.jsx b/src/components/model-data-view/ModelDataView.jsx index 85760533..ad87a743 100644 --- a/src/components/model-data-view/ModelDataView.jsx +++ b/src/components/model-data-view/ModelDataView.jsx @@ -1,5 +1,5 @@ -import React, { useState, useMemo, useCallback } from "react"; -import { Splitter, Tabs, Button, Typography } from "antd"; +import React, { useState, useMemo, useCallback, useRef } from "react"; +import { Splitter, Tabs, Button, Typography, Select, Flex } from "antd"; import { ArrowLeftOutlined } from "@ant-design/icons"; import graphHelper from "../../graph-helper/GraphHelper"; import { useGraph } from "../../contexts/GraphContext"; @@ -11,6 +11,25 @@ import UpdateRegulatorModal from "../modals/UpdateRegulatorModal"; import { useSimLiveTick } from "../../hooks/useSimLiveTick"; import "./ModelDataView.css"; +// Structural glue rather than real model objects, so they get no table row. +// `parentChild` is always synthetic — the graph builder makes one per object +// that names a `parent`. `line` is only synthetic in a CIM model, where it ties +// a piece of equipment to its connectivity node; a JSON model may use "line" as +// a real edge type (models/demo_examples/levelExample.json is entirely line +// edges), so it's hidden only when the loaded model is CIM. +const hiddenEdgeGroups = (isCIM) => + isCIM ? new Set(["parentChild", "line"]) : new Set(["parentChild"]); + +// `type` stays the fixed-left row label; `name` and `mRID` are the identifiers +// people scan for, so they lead the scrollable attribute columns. Anything not +// present in the model's attributes is dropped. +const LEADING_COLUMNS = ["type", "name", "mRID"]; + +const orderColumns = (colSet) => [ + ...LEADING_COLUMNS.filter((col) => colSet.has(col)), + ...Array.from(colSet).filter((col) => !LEADING_COLUMNS.includes(col)), +]; + /** * Resolves the feeder ID for a given mRID by checking the graph first, * then falling back to the provided feederId. @@ -52,6 +71,13 @@ const ObjectStudio = () => { // "switch" | "capacitor" | "regulator"; `object` is the graph node/edge key. const [controlContext, setControlContext] = useState({ open: false, object: null, type: null }); + // Search state. The tables publish a `jumpToRow` handle through these refs; + // both tab panes are force-rendered so the handle for the tab the user + // *isn't* on is still live when a search picks something from it. + const [searchValue, setSearchValue] = useState(null); + const edgeTableRef = useRef(null); + const nodeTableRef = useRef(null); + // Drives re-render as simulation frames arrive so the live voltage/power // columns (and the Edit Object attributes) reflect the latest measurements. // `simActive` gates the live UI to the running/paused simulation lifecycle. @@ -60,6 +86,7 @@ const ObjectStudio = () => { // Derive graph data const { nodes, edges, nodeColumns, edgeColumns, nodeTypes, edgeTypes } = useMemo(() => { const graph = graphHelper.graph; + const hiddenGroups = hiddenEdgeGroups(graphHelper.isCIM); const nodeColSet = new Set(["type"]); const edgeColSet = new Set(["type"]); const nTypes = new Set(); @@ -76,6 +103,7 @@ const ObjectStudio = () => { }); graph.forEachEdge((id, attrs, source, target) => { + if (hiddenGroups.has(attrs.group)) return; eTypes.add(attrs.group); if (attrs.attributes) { Object.keys(attrs.attributes).forEach((k) => edgeColSet.add(k)); @@ -86,8 +114,8 @@ const ObjectStudio = () => { return { nodes: nodeList, edges: edgeList, - nodeColumns: Array.from(nodeColSet), - edgeColumns: Array.from(edgeColSet), + nodeColumns: orderColumns(nodeColSet), + edgeColumns: orderColumns(edgeColSet), nodeTypes: Array.from(nTypes).sort(), edgeTypes: Array.from(eTypes).sort(), }; @@ -107,6 +135,37 @@ const ObjectStudio = () => { return edges.filter((e) => filterTypes.edges.includes(e.group)); }, [edges, filterTypes]); + // One option per visible row. Built from the *filtered* lists rather than + // the whole model so a hit is always a row the table can actually scroll + // to — narrowing the Object Types filter narrows the search with it. + // Falls back to the graph key when there's no name (CIM writes name: ""). + const searchOptions = useMemo(() => { + const toOption = (record, objectType) => ({ + value: `${objectType}:${record.id}`, + label: record.attributes?.name || String(record.id), + objectId: record.id, + objectType, + group: record.group, + }); + + return [ + ...filteredEdges.map((edge) => toOption(edge, "edge")), + ...filteredNodes.map((node) => toOption(node, "node")), + ]; + }, [filteredEdges, filteredNodes]); + + /** + * Reveals a searched-for object: switches to its tab, then asks that table + * to page to the row and highlight it. Both tables are always mounted, so + * the handle is available even for the tab that isn't showing. + */ + const handleSearchSelect = useCallback((_value, option) => { + const isNode = option.objectType === "node"; + setActiveTab(isNode ? "nodes" : "edges"); + (isNode ? nodeTableRef : edgeTableRef).current?.jumpToRow(option.objectId); + setSearchValue(null); + }, []); + /** * Central navigation handler — called from ObjectTable or EditObject. * Normalizes the object descriptor with a guaranteed feederId for CIM. @@ -215,6 +274,9 @@ const ObjectStudio = () => { { key: "edges", label: `Edges (${filteredEdges.length})`, + // Mounted even while hidden so a search landing on the other tab + // still finds a live jumpToRow handle. + forceRender: true, children: (
{ isCIM={graphHelper.isCIM} elementType="edge" simActive={simActive} + jumpRef={edgeTableRef} />
), @@ -232,6 +295,7 @@ const ObjectStudio = () => { { key: "nodes", label: `Nodes (${filteredNodes.length})`, + forceRender: true, children: (
{ isCIM={graphHelper.isCIM} elementType="node" simActive={simActive} + jumpRef={nodeTableRef} />
), @@ -297,6 +362,40 @@ const ObjectStudio = () => { Model Data View + { let running = true; let wasPulsing = false; - const hasAnimatedEdges = () => { - const graph = sigma.getGraph(); - let found = false; - - graph.forEachEdge((edge, attrs) => { - if (attrs.type === "animated") found = true; - }); + // Whether any edge is animated is a whole-graph question, and asking it + // every frame cost a full edge scan 60x a second forever — ~20k + // iterations per frame on a 9500-bus feeder, with or without a running + // simulation. findEdge short-circuits on the first hit, and the answer is + // cached between checks: edges start and stop animating on simulation + // output, so resolving that a fraction of a second late is not visible. + const RECHECK_MS = 250; + let cachedHasAnimated = false; + let checkedAt = 0; - return found; + const hasAnimatedEdges = (now) => { + if (now - checkedAt >= RECHECK_MS) { + checkedAt = now; + cachedHasAnimated = Boolean( + sigma.getGraph().findEdge((edge, attrs) => attrs.type === "animated"), + ); + } + return cachedHasAnimated; }; - const animate = () => { + const animate = (now) => { if (!running) return; const graph = sigma.getGraph(); @@ -30,7 +39,7 @@ const AnimatedEdgeTicker = () => { graphHelper.isFocusPulseActive() && pulseId && graph.hasEdge(pulseId), ); - if (hasAnimatedEdges()) { + if (hasAnimatedEdges(now)) { // Full refresh already re-applies the pulse to the focused edge. sigma.refresh({ skipIndexation: true }); } else if (pulsing) { diff --git a/src/components/ConnectionStatus.jsx b/src/components/ConnectionStatus.jsx new file mode 100644 index 00000000..34821635 --- /dev/null +++ b/src/components/ConnectionStatus.jsx @@ -0,0 +1,82 @@ +import { useEffect, useState } from "react"; +import { Button, Tag, Tooltip } from "antd"; +import { DisconnectOutlined, ReloadOutlined } from "@ant-design/icons"; +import socketClientHelper from "../socket-client-helper/SocketClientHelper"; +import { FEATURES } from "../config"; +import { notify } from "../utils/notify"; + +/** + * Surfaces the socket's state, which nothing previously did. + * + * The backend holds the model and drives simulations, so a dropped connection + * silently disables half the app. Before this, `connection-change` had no + * subscribers at all: the graph stayed on screen, controls stayed enabled, and + * actions quietly did nothing. + */ +const ConnectionStatus = () => { + // Seeded from the live socket: the singleton connects at import, before this + // ever mounts, so the first connection-change may already have fired. + const [state, setState] = useState(() => ({ + connected: !FEATURES.simulation || socketClientHelper.isConnected(), + exhausted: false, + })); + + useEffect(() => { + if (!FEATURES.simulation) return undefined; + + const unsubConn = socketClientHelper.on("connection-change", ({ connected, exhausted }) => { + setState((prev) => { + if (connected && !prev.connected) notify.success("Reconnected to the GLIMPSE server."); + return { connected, exhausted: connected ? false : (exhausted ?? prev.exhausted) }; + }); + }); + + // Socket errors previously reached only the GridAPPS-D form, and only + // while its modal happened to be open. + const unsubErr = socketClientHelper.on("error", ({ type, message }) => { + if (type === "connection") return; // the tag below already says this + notify.error(`${type}: ${message}`); + }); + + return () => { + unsubConn(); + unsubErr(); + }; + }, []); + + if (!FEATURES.simulation || state.connected) return null; + + return ( + + } + color={state.exhausted ? "error" : "warning"} + style={{ marginInlineEnd: 0, display: "inline-flex", alignItems: "center", gap: 6 }} + > + {state.exhausted ? "Disconnected" : "Reconnecting…"} + {state.exhausted && ( + + )} + + + ); +}; + +export default ConnectionStatus; diff --git a/src/components/ErrorBoundary.jsx b/src/components/ErrorBoundary.jsx new file mode 100644 index 00000000..8f77e739 --- /dev/null +++ b/src/components/ErrorBoundary.jsx @@ -0,0 +1,48 @@ +import React from "react"; +import { Button, Result, Typography } from "antd"; + +/** + * Last line of defence for a render that throws. + * + * Without this, one bad node in a model payload — or any other throw during + * render — unmounts the whole tree and leaves a blank page with no way back. + * The graph lives in a module singleton rather than React state, so remounting + * the tree is not enough to recover; a reload is the honest offer. + */ +class ErrorBoundary extends React.Component { + state = { error: null }; + + static getDerivedStateFromError(error) { + return { error }; + } + + componentDidCatch(error, info) { + console.error("Unhandled error in render:", error, info?.componentStack); + } + + render() { + if (!this.state.error) return this.props.children; + + return ( + window.location.reload()}> + Reload GLIMPSE + , + ]} + > + + + {this.state.error?.message || String(this.state.error)} + + + + ); + } +} + +export default ErrorBoundary; diff --git a/src/components/ExampleModels.jsx b/src/components/ExampleModels.jsx index 6f95c7e4..99126050 100644 --- a/src/components/ExampleModels.jsx +++ b/src/components/ExampleModels.jsx @@ -4,7 +4,7 @@ import axios from "axios"; import { useGraph } from "../contexts/GraphContext"; import graphHelper from "../graph-helper/GraphHelper"; import socketClientHelper from "../socket-client-helper/SocketClientHelper"; -import { API_BASE_URL } from "../config"; +import { API_BASE_URL, PARSE_TIMEOUT_MS } from "../config"; import { confirmDiscardChanges, errorText, reportError } from "../utils/notify"; // Bundled sample models the backend ships with (see EXAMPLE_MODELS in @@ -45,7 +45,7 @@ const ExampleModels = ({ closeModal }) => { const { data: response } = await axios.post( `${API_BASE_URL}/api/examples/load`, { id: example.id }, - { headers: { "Content-Type": "application/json" } }, + { headers: { "Content-Type": "application/json" }, timeout: PARSE_TIMEOUT_MS }, ); if ("error" in response) throw new Error(response.error); diff --git a/src/components/FileUpload.jsx b/src/components/FileUpload.jsx index 58632098..06426936 100644 --- a/src/components/FileUpload.jsx +++ b/src/components/FileUpload.jsx @@ -1,11 +1,11 @@ -import React, { useState } from "react"; -import { Upload, Progress, Alert } from "antd"; +import React, { useEffect, useRef, useState } from "react"; +import { Upload, Progress, Alert, Button } from "antd"; import { InboxOutlined } from "@ant-design/icons"; import axios from "axios"; import { useGraph } from "../contexts/GraphContext"; import graphHelper from "../graph-helper/GraphHelper"; import socketClientHelper from "../socket-client-helper/SocketClientHelper"; -import { API_BASE_URL } from "../config"; +import { API_BASE_URL, PARSE_TIMEOUT_MS } from "../config"; import { confirmDiscardChanges, errorText } from "../utils/notify"; import { awaitParseJob, isJobHandoff } from "../utils/parse-job"; @@ -89,9 +89,25 @@ const FileUpload = ({ closeModal }) => { // seconds uploading and minutes parsing. const [status, setStatus] = useState(null); const [error, setError] = useState(null); + // Aborts the upload and the job poll together — on unmount, and on Cancel. + const abortRef = useRef(null); + const timerRef = useRef(null); + + useEffect( + () => () => { + abortRef.current?.abort(); + clearTimeout(timerRef.current); + }, + [], + ); + + const cancelUpload = () => abortRef.current?.abort(); const uploadFiles = async (files) => { if (!files || files.length === 0) return; + // One upload at a time: a second batch dropped mid-parse would clear the + // graph out from under the first. + if (abortRef.current) return; setError(null); @@ -107,12 +123,17 @@ const FileUpload = ({ closeModal }) => { const formData = new FormData(); files.forEach((file) => formData.append("files", file)); + const controller = new AbortController(); + abortRef.current = controller; + try { setUploading(true); setProgress(0); setStatus(null); let { data: response } = await axios.post(`${API_BASE_URL}/${endpoint}`, formData, { + signal: controller.signal, + timeout: PARSE_TIMEOUT_MS, onUploadProgress: (progressEvent) => { if (!progressEvent.total) return; setProgress(Math.round((progressEvent.loaded * 100) / progressEvent.total)); @@ -126,7 +147,10 @@ const FileUpload = ({ closeModal }) => { // synchronous upload would have returned. if (isJobHandoff(response)) { setStatus("Queued…"); - response = await awaitParseJob(response.jobId, { onProgress: setStatus }); + response = await awaitParseJob(response.jobId, { + onProgress: setStatus, + signal: controller.signal, + }); if (response && "error" in response) throw new Error(response.error); } @@ -158,19 +182,28 @@ const FileUpload = ({ closeModal }) => { // edge and never reaches the backend. The raw nginx HTML that comes // back says nothing useful, so name the real constraint and the way // around it. - if (err?.response?.status === 413) { + if (controller.signal.aborted) { + // The user cancelled, or the modal closed. Not a failure. + } else if (err?.response?.status === 413) { setError( "This model is too large to upload over the network (the limit is about 16 MB " + "in a browser-hosted Codespace). Load a bundled model from Example Models " + "instead, or run GLIMPSE locally to open files of any size.", ); + } else if (err?.code === "ECONNABORTED" || err?.code === "ETIMEDOUT") { + setError( + "The server stopped responding while handling this model. It may still be " + + "parsing, or it may have run out of memory — check that the backend is " + + "running, then try again.", + ); } else { setError(errorText(err, "The server could not parse these files.")); } } finally { + abortRef.current = null; setUploading(false); setStatus(null); - setTimeout(() => setProgress(0), 500); + timerRef.current = setTimeout(() => setProgress(0), 500); } }; @@ -224,6 +257,17 @@ const FileUpload = ({ closeModal }) => { {status}

)} + )} diff --git a/src/components/SimulationCharts.jsx b/src/components/SimulationCharts.jsx index e5f08278..5c41844f 100644 --- a/src/components/SimulationCharts.jsx +++ b/src/components/SimulationCharts.jsx @@ -70,7 +70,9 @@ const SimulationCharts = () => { const processOutput = useCallback( (output) => { - const { timestamp, Analog } = output; + const { timestamp } = output ?? {}; + // Matches CustomPlot: a frame can arrive without Analog. + const Analog = Array.isArray(output?.Analog) ? output.Analog : []; const ts = new Date(timestamp * 1000).toLocaleTimeString(); // ── Voltage (PNV) ────────────────────────────────────────────────── diff --git a/src/components/agents/AgentsView.jsx b/src/components/agents/AgentsView.jsx index da9c9c4f..1d305a40 100644 --- a/src/components/agents/AgentsView.jsx +++ b/src/components/agents/AgentsView.jsx @@ -23,6 +23,13 @@ const DEPTH_LABELS = { // pixels wide, and the useful first view is the top of the tree. const SMALL_ROSTER = 60; +// SVG text doesn't wrap or ellipsize, so a long name would run over its +// neighbours. The caps are what fits a device chip at each of its two sizes. +const clip = (text, max) => { + const value = text ?? ""; + return value.length > max ? `${value.slice(0, max - 1)}…` : value; +}; + /** * The distributed-agent architecture for the loaded model: a stack of message * buses with the agents that sit on each and the field devices they carry. @@ -39,24 +46,32 @@ const AgentsView = () => { const [zoom, setZoom] = useState(1); const [pan, setPan] = useState({ x: 0, y: 0 }); const [expanded, setExpanded] = useState(() => new Set()); + const [devicesExpanded, setDevicesExpanded] = useState(() => new Set()); const [depthLevel, setDepthLevel] = useState(null); const dragRef = useRef(null); const frameRef = useRef(null); useEffect(() => { - const sync = () => { + // A new model means none of the old drill-down applies. + const resetToRoster = () => { setRoster(graphHelper.agents); setExpanded(new Set()); + setDevicesExpanded(new Set()); setDepthLevel(null); }; - window.addEventListener("graph-loaded", sync); - window.addEventListener("graph-cleared", sync); - const unsubscribe = socketClientHelper.on("agents-update", sync); + // A liveness ping is not a new model. agents-update is how status arrives + // for the roster already on screen, so clearing the user's drill-down and + // depth on every one of them collapsed the diagram mid-interaction. + const refreshRoster = () => setRoster(graphHelper.agents); + + window.addEventListener("graph-loaded", resetToRoster); + window.addEventListener("graph-cleared", resetToRoster); + const unsubscribe = socketClientHelper.on("agents-update", refreshRoster); return () => { - window.removeEventListener("graph-loaded", sync); - window.removeEventListener("graph-cleared", sync); + window.removeEventListener("graph-loaded", resetToRoster); + window.removeEventListener("graph-cleared", resetToRoster); unsubscribe(); }; }, []); @@ -78,13 +93,21 @@ const AgentsView = () => { const activeLevel = depthLevel && levelsPresent.includes(depthLevel) ? depthLevel : defaultLevel; + // One switch area carries a dozen devices, and a bus is sized to hold its own + // contents — so drawing every device is exactly what stretches those bars off + // the screen. From the switch-area level down the devices start folded into a + // chip per bus, and each bus opens on click. + const collapseDevices = activeLevel === "switch" || activeLevel === "secondary"; + const layout = useMemo( () => layoutAgentBuses(roster, { maxDepth: activeLevel ? depthOfLevel(activeLevel) : 0, expanded, + collapseDevices, + devicesExpanded, }), - [roster, activeLevel, expanded], + [roster, activeLevel, expanded, collapseDevices, devicesExpanded], ); const c = surfaceFor(darkMode); @@ -105,10 +128,19 @@ const AgentsView = () => { setPan({ x: 0, y: 0 }); }, [layout.width, layout.height]); + // Re-frame only on changes the user made at the top level — a new roster, or a + // new depth. Firing on every layout change meant expanding one device chip + // reset zoom and pan and threw the diagram back to the top-left, mid-click. + const fitToViewRef = useRef(fitToView); useLayoutEffect(() => { - fitToView(); + fitToViewRef.current = fitToView; }, [fitToView]); + const hasExtent = layout.width > 0; + useLayoutEffect(() => { + if (hasExtent) fitToViewRef.current(); + }, [roster, depthLevel, hasExtent]); + const onWheel = (e) => { // Trackpad and wheel both arrive here; a multiplicative step keeps the // zoom rate even across the range instead of crawling when zoomed out. @@ -152,6 +184,13 @@ const AgentsView = () => { setView("graph"); }; + const toggleDevices = (busId) => + setDevicesExpanded((prev) => { + const next = new Set(prev); + if (!next.delete(busId)) next.add(busId); + return next; + }); + const revealChildren = (busId) => setExpanded((prev) => { const next = new Set(prev); @@ -198,6 +237,7 @@ const AgentsView = () => { onChange={(level) => { setDepthLevel(level); setExpanded(new Set()); + setDevicesExpanded(new Set()); }} options={levelsPresent.map((level) => ({ label: DEPTH_LABELS[level] ?? level, @@ -276,6 +316,49 @@ const AgentsView = () => { {bus.label} + {/* Devices folded into one chip; clicking + opens just this bus's row. */} + {bus.deviceChip && ( + toggleDevices(bus.busId)} + style={{ cursor: "pointer" }} + > + + {bus.deviceChip.collapsed + ? `Show the ${bus.deviceChip.count} device(s) on ${bus.label}` + : `Hide the devices on ${bus.label}`} + + + + {bus.deviceChip.collapsed + ? `${bus.deviceChip.count} device${bus.deviceChip.count === 1 ? "" : "s"}` + : "Hide devices"} + + + )} + {bus.chip && ( { {/* Devices */} {layout.devices.map(({ device, busId, x, y, width, height }) => ( - - {`${device.name}${device.phases ? ` · ${device.phases}` : ""}`} + + {/* The chip carries the name and CIM class; + the role label and phases, which every + chip of a kind shares, stay in the hover. */} + + {[ + device.name, + device.cimType, + device.type, + device.phases && `phases ${device.phases}`, + ] + .filter(Boolean) + .join("\n")} + { y={height / 2} textAnchor="middle" dominantBaseline="middle" - fontSize={10} fill="#1f1f1f" > - {device.type} + + {clip(device.name || device.mrid, 24)} + + + {clip(device.cimType || device.type, 27)} + ))} diff --git a/src/components/agents/agent-bus-layout.js b/src/components/agents/agent-bus-layout.js index f26a9eef..94a420ca 100644 --- a/src/components/agents/agent-bus-layout.js +++ b/src/components/agents/agent-bus-layout.js @@ -21,12 +21,15 @@ // Kept free of React and of any color decision so the arithmetic can be reasoned // about (and tested) on its own; AgentsView paints what this returns. -const ROW_HEIGHT = 150; // vertical distance between bus levels +// Vertical distance between bus levels. A row has to clear the tallest stack a +// bus can hold — its devices chip, an opened device row and the "+N areas" chip +// — before the next row's agent boxes start, or the two collide. +const ROW_HEIGHT = 175; const BUS_HEIGHT = 12; const BOX_WIDTH = 96; const BOX_HEIGHT = 46; -const DEVICE_WIDTH = 78; -const DEVICE_HEIGHT = 24; +const DEVICE_WIDTH = 148; // two lines: the device's own name over its CIM class +const DEVICE_HEIGHT = 34; const GAP = 16; // horizontal breathing room between sibling subtrees const LABEL_GUTTER = 190; // left column holding the row labels const AGENT_BUS_GAP = 14; // between an agent box and the bus it sits on @@ -57,15 +60,14 @@ const ROWS = [ { level: "secondary", label: "Distribution Secondary\nMessage Buses" }, ]; +const rowWidth = (count, itemWidth) => count * itemWidth + Math.max(0, count - 1) * GAP; + /** * Width one bus needs for its own contents: its agents side by side, plus its * devices side by side, whichever is wider. */ -const intrinsicWidth = (agentCount, deviceCount, hasChip) => { - const agentsWidth = agentCount * BOX_WIDTH + Math.max(0, agentCount - 1) * GAP; - const devicesWidth = deviceCount * DEVICE_WIDTH + Math.max(0, deviceCount - 1) * GAP; - return Math.max(agentsWidth, devicesWidth, hasChip ? CHIP_WIDTH : 0, BOX_WIDTH); -}; +const intrinsicWidth = (agentCount, devicesWidth, hasChip) => + Math.max(rowWidth(agentCount, BOX_WIDTH), devicesWidth, hasChip ? CHIP_WIDTH : 0, BOX_WIDTH); /** * Arranges a roster into positioned bus bars, agent boxes and device chips. @@ -75,17 +77,26 @@ const intrinsicWidth = (agentCount, deviceCount, hasChip) => { * maxDepth - how many levels below the root to draw (0 draws the top row only) * expanded - bus ids whose children are drawn in full, ignoring both maxDepth * and the sibling cap. This is the drill-down. + * collapseDevices - draw each bus's devices as one "N devices" chip instead of + * a chip per device. A switch-area row carries a dozen devices and + * the bus is sized to hold them, so drawing them all is what makes + * those bars run off the screen. + * devicesExpanded - bus ids whose devices are drawn in full despite that. * @returns {{ * width: number, height: number, * rows: {level: string, label: string, y: number}[], - * buses: {busId, level, name, label, areaId, x, y, width, height, hiddenChildren, chip}[], + * buses: {busId, level, name, label, areaId, x, y, width, height, hiddenChildren, chip, deviceChip}[], * agents: {agent, x, y, width, height}[], * devices: {device, busId, x, y, width, height}[], * truncated: boolean, * }} */ -export const layoutAgentBuses = (roster, { maxDepth = Infinity, expanded } = {}) => { +export const layoutAgentBuses = ( + roster, + { maxDepth = Infinity, expanded, collapseDevices = false, devicesExpanded } = {}, +) => { const open = expanded ?? new Set(); + const devicesOpen = devicesExpanded ?? new Set(); const empty = { width: 0, height: 0, @@ -132,8 +143,15 @@ export const layoutAgentBuses = (roster, { maxDepth = Infinity, expanded } = {}) * Places one bus and everything under it, starting at `left`, and reports * how wide the whole subtree turned out. */ - const place = (busId, left, depth) => { + const place = (busId, left, depth, seen = new Set()) => { const bus = busById.get(busId); + // childrenOf is built from parent ids the roster supplies, so it can name + // a bus that isn't in busById, and those parent links can form a cycle. + // Either one would otherwise take the whole app down from inside a + // useMemo — an undefined read, or unbounded recursion. + if (!bus || seen.has(busId)) return 0; + const branch = new Set(seen).add(busId); + const busAgents = agentsByBus.get(busId) ?? []; const busDevices = busAgents.flatMap((agent) => agent.devices.map((device) => ({ device, agent })), @@ -156,24 +174,44 @@ export const layoutAgentBuses = (roster, { maxDepth = Infinity, expanded } = {}) let cursor = left; let childrenWidth = 0; children.forEach((childId, i) => { - const used = place(childId, cursor, depth + 1); + const used = place(childId, cursor, depth + 1, branch); + if (used === 0) return; // skipped: unknown bus, or a cycle const step = used + (i < children.length - 1 ? GAP : 0); cursor += step; childrenWidth += step; }); + // A collapsed bus still shows *that* it carries devices, and the chip is + // the control that opens them, so it only disappears when there are none. + const devicesCollapsed = collapseDevices && !devicesOpen.has(busId); + const drawnDevices = devicesCollapsed ? [] : busDevices; + const showDeviceChip = collapseDevices && busDevices.length > 0; + const width = Math.max( childrenWidth, - intrinsicWidth(busAgents.length, busDevices.length, hiddenChildren > 0), + intrinsicWidth( + busAgents.length, + Math.max( + rowWidth(drawnDevices.length, DEVICE_WIDTH), + showDeviceChip ? CHIP_WIDTH : 0, + ), + hiddenChildren > 0, + ), ); const rowIndex = ROWS.findIndex((row) => row.level === bus.level); const y = PADDING + (rowIndex < 0 ? depth : rowIndex) * ROW_HEIGHT; rowsUsed.add(bus.level); - // Devices hang below the bus; the "+N more" chip goes below them. - const devicesY = y + BUS_HEIGHT + 12; - const chipY = devicesY + (busDevices.length > 0 ? DEVICE_HEIGHT + 8 : 0); + // Below the bus, in order: the devices chip, the devices themselves, then + // the "+N areas" chip. Each is skipped when it has nothing to show, but + // the order never changes, so a bus doesn't reflow as it is opened. + let stack = y + BUS_HEIGHT + 12; + const deviceChipY = stack; + if (showDeviceChip) stack += CHIP_HEIGHT + 6; + const devicesY = stack; + if (drawnDevices.length > 0) stack += DEVICE_HEIGHT + 8; + const chipY = stack; buses.push({ busId, @@ -196,10 +234,20 @@ export const layoutAgentBuses = (roster, { maxDepth = Infinity, expanded } = {}) count: hiddenChildren, } : null, + deviceChip: showDeviceChip + ? { + x: left + (width - CHIP_WIDTH) / 2, + y: deviceChipY, + width: CHIP_WIDTH, + height: CHIP_HEIGHT, + count: busDevices.length, + collapsed: devicesCollapsed, + } + : null, }); // Agents sit above their bus, centered on it. - const agentsWidth = busAgents.length * BOX_WIDTH + Math.max(0, busAgents.length - 1) * GAP; + const agentsWidth = rowWidth(busAgents.length, BOX_WIDTH); let agentX = left + (width - agentsWidth) / 2; busAgents.forEach((agent) => { agents.push({ @@ -212,9 +260,8 @@ export const layoutAgentBuses = (roster, { maxDepth = Infinity, expanded } = {}) agentX += BOX_WIDTH + GAP; }); - const devicesWidth = busDevices.length * DEVICE_WIDTH + Math.max(0, busDevices.length - 1) * GAP; - let deviceX = left + (width - devicesWidth) / 2; - busDevices.forEach(({ device }) => { + let deviceX = left + (width - rowWidth(drawnDevices.length, DEVICE_WIDTH)) / 2; + drawnDevices.forEach(({ device }) => { devices.push({ device, busId, @@ -257,4 +304,12 @@ export const layoutAgentBuses = (roster, { maxDepth = Infinity, expanded } = {}) /** Depth needed to reach a given level, for the view's depth control. */ export const depthOfLevel = (level) => ROWS.findIndex((row) => row.level === level); -export const LAYOUT_CONSTANTS = { ROW_HEIGHT, BUS_HEIGHT, BOX_WIDTH, BOX_HEIGHT, LABEL_GUTTER }; +export const LAYOUT_CONSTANTS = { + ROW_HEIGHT, + BUS_HEIGHT, + BOX_WIDTH, + BOX_HEIGHT, + DEVICE_WIDTH, + DEVICE_HEIGHT, + LABEL_GUTTER, +}; diff --git a/src/components/graph/GraphRenderer.jsx b/src/components/graph/GraphRenderer.jsx index d5770a48..58c9b39a 100644 --- a/src/components/graph/GraphRenderer.jsx +++ b/src/components/graph/GraphRenderer.jsx @@ -11,6 +11,7 @@ import GraphEvents from "./GraphEvents"; import EdgeCurveProgram from "@sigma/edge-curve"; import { useGraph } from "../../contexts/GraphContext"; import Graph from "./Graph"; +import WebGLRecovery from "./WebGLRecovery"; import { EdgeRectangleProgram, createNodeCompoundProgram, @@ -293,6 +294,7 @@ const GraphRenderer = () => { > + {/* Renders nothing; owns the distribution-area contour layers for every consumer of the shared selection (area tree, agents). */} diff --git a/src/components/graph/WebGLRecovery.jsx b/src/components/graph/WebGLRecovery.jsx new file mode 100644 index 00000000..fda2a85d --- /dev/null +++ b/src/components/graph/WebGLRecovery.jsx @@ -0,0 +1,55 @@ +import { useEffect } from "react"; +import { useSigma } from "@react-sigma/core"; +import { useGraph } from "../../contexts/GraphContext"; +import { notify } from "../../utils/notify"; + +/** + * Recovers the graph when the browser takes the WebGL context away. + * + * A GPU driver reset — sleep/wake, a laptop switching GPUs, or simply too much + * pressure from a large model — drops the canvas context. Sigma does not notice, + * so the graph goes permanently blank with no error anywhere. The default action + * for `webglcontextlost` also prevents the context from ever being restored, so + * it has to be cancelled before anything else can work. + * + * Renders nothing. + */ +const WebGLRecovery = () => { + const sigma = useSigma(); + const { newGraphUpdate } = useGraph(); + + useEffect(() => { + const canvases = Object.values(sigma.getCanvases?.() ?? {}); + if (canvases.length === 0) return undefined; + + const onLost = (event) => { + // Without this the context is gone for good. + event.preventDefault(); + console.warn("[webgl] context lost — waiting for restore"); + notify.warning("The graphics context was lost. Restoring the graph…"); + }; + + const onRestored = () => { + console.warn("[webgl] context restored — rebuilding"); + // Remounting SigmaContainer rebuilds every program against the new + // context; nothing short of that brings the renderer back. + newGraphUpdate(); + }; + + canvases.forEach((canvas) => { + canvas.addEventListener("webglcontextlost", onLost); + canvas.addEventListener("webglcontextrestored", onRestored); + }); + + return () => { + canvases.forEach((canvas) => { + canvas.removeEventListener("webglcontextlost", onLost); + canvas.removeEventListener("webglcontextrestored", onRestored); + }); + }; + }, [sigma, newGraphUpdate]); + + return null; +}; + +export default WebGLRecovery; diff --git a/src/components/modals/LoadModelModal.jsx b/src/components/modals/LoadModelModal.jsx index c0f11856..1ddbbcd9 100644 --- a/src/components/modals/LoadModelModal.jsx +++ b/src/components/modals/LoadModelModal.jsx @@ -8,7 +8,7 @@ import GridAPPSDModelForm from "../forms/GridAPPSDModelForm"; import graphHelper from "../../graph-helper/GraphHelper"; import socketClientHelper from "../../socket-client-helper/SocketClientHelper"; import { useGraph } from "../../contexts/GraphContext"; -import { API_BASE_URL, FEATURES } from "../../config"; +import { API_BASE_URL, FEATURES, PARSE_TIMEOUT_MS } from "../../config"; import { confirmDiscardChanges, errorText } from "../../utils/notify"; import { loadAgentRoster } from "../../utils/agent-api"; @@ -99,6 +99,7 @@ const LoadModelModal = ({ onMount }) => { selectedGridappsdModels.map((m) => m.modelId), { headers: { "Content-Type": "application/json" }, + timeout: PARSE_TIMEOUT_MS, }, ); const { data: response } = await resPromise; diff --git a/src/config.js b/src/config.js index 2084b83f..c6cb1072 100644 --- a/src/config.js +++ b/src/config.js @@ -17,6 +17,22 @@ if (API_TOKEN) { axios.defaults.headers.common["Authorization"] = `Bearer ${API_TOKEN}`; } +/** + * Ceiling on any request that doesn't set its own. Without a default axios waits + * forever, so a backend that accepts a connection and then stalls leaves the UI + * spinning with nothing to recover from. + */ +export const REQUEST_TIMEOUT_MS = 30_000; + +/** + * For requests that parse a model server-side. IEEE 9500 takes ~6.5s and larger + * models legitimately take longer, so these get their own, much longer ceiling — + * a bound that exists to end a hang, not to pace a slow parse. + */ +export const PARSE_TIMEOUT_MS = 10 * 60_000; + +axios.defaults.timeout = REQUEST_TIMEOUT_MS; + export const MODE = (runtimeEnv && runtimeEnv.MODE) || import.meta.env.VITE_GLIMPSE_MODE || "desktop"; export const IS_HOSTED = MODE === "hosted"; diff --git a/src/graph-helper/GraphHelper.js b/src/graph-helper/GraphHelper.js index 5e2b5a32..37e7ee93 100644 --- a/src/graph-helper/GraphHelper.js +++ b/src/graph-helper/GraphHelper.js @@ -605,7 +605,7 @@ class GraphHelper { // save glm file data for exporting changes if (!this.isCIM) this.glmFileData = fileData; - const { graph, hasFixedNodes, hasGeoCoords, distributionAreas } = buildGraph(fileData, { + const { graph, hasFixedNodes, hasGeoCoords, distributionAreas, skipped } = buildGraph(fileData, { theme: this.#theme, nodeTypes: this.nodeTypes, edgeTypes: this.edgeTypes, @@ -619,6 +619,15 @@ class GraphHelper { this.hasGeoCoords = hasGeoCoords; this.distributionAreas = distributionAreas; + // The model still loads — say so rather than letting the gap go unnoticed. + // Dispatched rather than notified directly: utils/notify imports this + // module, so calling into it here would close an import cycle. + if (skipped > 0 && typeof window !== "undefined") { + window.dispatchEvent( + new CustomEvent("model-objects-skipped", { detail: { count: skipped } }), + ); + } + // A freshly loaded model matches its source file — nothing to save yet. this.clearDirty(); }; diff --git a/src/graph-helper/agents.js b/src/graph-helper/agents.js index 6659205f..e640b677 100644 --- a/src/graph-helper/agents.js +++ b/src/graph-helper/agents.js @@ -19,6 +19,16 @@ const LEVEL_TITLES = { const EMPTY = { model: null, source: null, buses: [], agents: [] }; +// Device chips show the object's own name and the CIM class it came from, so +// both are normalized here rather than read snake_case-or-camelCase at render. +const normalizeDevice = (device) => ({ + mrid: device.mrid ?? device["@id"] ?? "", + name: device.name ?? "", + type: device.type ?? "Device", + cimType: device.cim_type ?? device.cimType ?? device.class_type ?? "", + phases: device.phases ?? "", +}); + const shortAreaLabel = (name, parentName, level) => { const title = LEVEL_TITLES[level] ?? level; if (level === "system") return title; @@ -79,7 +89,9 @@ export const normalizeRoster = (payload) => { areaName, label: shortAreaLabel(areaName, parentNameOf(busId), level), status: agent.status ?? "unknown", - devices: Array.isArray(agent.devices) ? agent.devices : [], + devices: Array.isArray(agent.devices) + ? agent.devices.filter(Boolean).map(normalizeDevice) + : [], }; }), }; diff --git a/src/graph-helper/graph-builder.js b/src/graph-helper/graph-builder.js index 774eb456..c045292a 100644 --- a/src/graph-helper/graph-builder.js +++ b/src/graph-helper/graph-builder.js @@ -13,20 +13,44 @@ const bump = (counts, type) => { const idOf = (attributes) => attributes.id ?? attributes.name; +/** + * A model is third-party data, so one malformed object must not cost the whole + * load. Everything that can throw goes through here: the object is dropped, the + * reason is counted, and the build carries on. + */ +const skip = (skipped, reason, detail) => { + skipped.count += 1; + if (skipped.samples.length < 5) skipped.samples.push(`${reason}: ${detail}`); +}; + +/** Objects must carry an attributes bag before anything can be read off one. */ +const attributesOf = (obj) => + obj && typeof obj === "object" && obj.attributes && typeof obj.attributes === "object" + ? obj.attributes + : null; + // ── Pass 1: nodes ─────────────────────────────────────────────────────────── /** * @returns {boolean} whether any node carried coordinates from the model itself */ -const addNodes = (graph, objects, ctx) => { +const addNodes = (graph, objects, ctx, skipped) => { const { theme, nodeTypes, objectTypeCount, bounds } = ctx; let hasFixedNodes = false; for (const obj of objects) { - const attributes = obj.attributes; + const attributes = attributesOf(obj); + if (!attributes) { + skip(skipped, "object has no attributes", JSON.stringify(obj)?.slice(0, 80)); + continue; + } // the key at the top of the object, which can be "name" or "objectType" const objectType = obj.objectType ?? obj.name; const nodeID = idOf(attributes); + if (nodeID === undefined || nodeID === null || nodeID === "") { + skip(skipped, "node has no id or name", objectType); + continue; + } if (nodeTypes.length > 0 && nodeTypes.includes(objectType)) { const positioned = "x" in attributes && "y" in attributes; @@ -53,9 +77,7 @@ const addNodes = (graph, objects, ctx) => { try { graph.addNode(nodeID, node); } catch (err) { - console.log(err); - console.log(nodeID); - console.log(node); + skip(skipped, "node rejected", `${nodeID} (${err.message})`); } continue; @@ -66,7 +88,11 @@ const addNodes = (graph, objects, ctx) => { if (!nodeTypes.includes(objectType)) nodeTypes.push(objectType); bump(objectTypeCount.nodes, objectType); - graph.addNode(nodeID, createNode({ id: nodeID, objectType, attributes, theme })); + try { + graph.addNode(nodeID, createNode({ id: nodeID, objectType, attributes, theme })); + } catch (err) { + skip(skipped, "node rejected", `${nodeID} (${err.message})`); + } } } @@ -82,11 +108,12 @@ const growBounds = (bounds, { x, y }) => { // ── Pass 2: edges ─────────────────────────────────────────────────────────── -const addEdges = (graph, objects, ctx) => { +const addEdges = (graph, objects, ctx, skipped) => { const { theme, nodeTypes, edgeTypes, objectTypeCount } = ctx; for (const obj of objects) { - const attributes = obj.attributes; + const attributes = attributesOf(obj); + if (!attributes) continue; // already counted in the node pass const objectType = obj.objectType ?? obj.name; if (nodeTypes.includes(objectType) && "parent" in attributes) { @@ -96,26 +123,34 @@ const addEdges = (graph, objects, ctx) => { bump(objectTypeCount.edges, "parentChild"); - graph.addEdgeWithKey(edgeID, parent, nodeID, { - elementType: "edge", - group: "parentChild", - type: "straight", - ...theme.edgeOptions.parentChild, - length: "length" in attributes ? parseFloat(attributes.length) : null, - attributes: { to: parent, from: nodeID, id: edgeID }, - }); + try { + graph.addEdgeWithKey(edgeID, parent, nodeID, { + elementType: "edge", + group: "parentChild", + type: "straight", + ...theme.edgeOptions.parentChild, + length: "length" in attributes ? parseFloat(attributes.length) : null, + attributes: { to: parent, from: nodeID, id: edgeID }, + }); + } catch (err) { + skip(skipped, "parent link dropped", `${edgeID} (${err.message})`); + } continue; } if (edgeTypes.includes(objectType)) { bump(objectTypeCount.edges, objectType); - graph.addEdgeWithKey( - idOf(attributes), - attributes.from, - attributes.to, - createEdge({ objectType, attributes, theme }), - ); + try { + graph.addEdgeWithKey( + idOf(attributes), + attributes.from, + attributes.to, + createEdge({ objectType, attributes, theme }), + ); + } catch (err) { + skip(skipped, "edge dropped", `${idOf(attributes)} (${err.message})`); + } continue; } @@ -129,14 +164,18 @@ const addEdges = (graph, objects, ctx) => { bump(objectTypeCount.edges, objectType); if (!edgeTypes.includes(objectType)) edgeTypes.push(objectType); - graph.addEdgeWithKey(edgeID, edgeFrom, edgeTo, { - elementType: "edge", - group: objectType, - type: "straight", - length: attributes.length ?? null, - ...theme.edgeOptions[objectType], - attributes, - }); + try { + graph.addEdgeWithKey(edgeID, edgeFrom, edgeTo, { + elementType: "edge", + group: objectType, + type: "straight", + length: attributes.length ?? null, + ...theme.edgeOptions[objectType], + attributes, + }); + } catch (err) { + skip(skipped, "edge dropped", `${edgeID} (${err.message})`); + } } } }; @@ -247,13 +286,24 @@ const stampLatLng = (graph) => { */ export const buildGraph = (fileData, ctx) => { const graph = new MultiUndirectedGraph({ allowSelfLoops: true, type: "undirected" }); - const objects = Object.values(fileData).flatMap((file) => file.objects); + const skipped = { count: 0, samples: [] }; - const hasFixedNodes = addNodes(graph, objects, ctx) || Boolean(ctx.hasFixedNodes); + const objects = Object.values(fileData ?? {}).flatMap((file) => + Array.isArray(file?.objects) ? file.objects : [], + ); + + const hasFixedNodes = addNodes(graph, objects, ctx, skipped) || Boolean(ctx.hasFixedNodes); const hasGeoCoords = detectGeoCoords(graph, ctx.bounds, hasFixedNodes); const distributionAreas = collectDistributionAreas(graph); - addEdges(graph, objects, ctx); + addEdges(graph, objects, ctx, skipped); + + if (skipped.count > 0) { + console.warn( + `Skipped ${skipped.count} malformed object(s) while building the graph:`, + skipped.samples, + ); + } if (hasFixedNodes) placeFloatingNodes(graph, ctx.bounds, hasGeoCoords); else applyLayout(graph); @@ -262,5 +312,5 @@ export const buildGraph = (fileData, ctx) => { assignParallelEdgeCurvatures(graph); - return { graph, hasFixedNodes, hasGeoCoords, distributionAreas }; + return { graph, hasFixedNodes, hasGeoCoords, distributionAreas, skipped: skipped.count }; }; diff --git a/src/graph-helper/simulation.js b/src/graph-helper/simulation.js index e13cd19f..902222df 100644 --- a/src/graph-helper/simulation.js +++ b/src/graph-helper/simulation.js @@ -176,7 +176,9 @@ const applyDiscrete = (graph, live, discrete) => { * @param {Object} output - the `sim-output` payload: { Analog, Discrete } */ export const applySimulationOutput = ({ graph, live, theme }, output) => { - const { Analog, Discrete } = output; + // A sim-output frame comes off the broker, so no key is guaranteed present. + const Analog = Array.isArray(output?.Analog) ? output.Analog : []; + const Discrete = Array.isArray(output?.Discrete) ? output.Discrete : []; const nodesWithNewVoltage = recordVoltages(graph, live, Analog); for (const nodeId of nodesWithNewVoltage) refreshNodeHover(graph, live, nodeId); @@ -188,7 +190,7 @@ export const applySimulationOutput = ({ graph, live, theme }, output) => { /** Switch open/closed state pushed outside the regular measurement stream. */ export const applySwitchStates = (graph, simOutput) => { - for (const sw of simOutput.switches) { + for (const sw of simOutput?.switches ?? []) { const { equipment_mrid: switchID, value } = sw; if (!graph.hasEdge(switchID)) { @@ -207,7 +209,7 @@ export const applySwitchStates = (graph, simOutput) => { /** Capacitor section counts pushed outside the regular measurement stream. */ export const applyCapacitorStates = (graph, live, simOutput) => { - for (const cap of simOutput.capacitors) { + for (const cap of simOutput?.capacitors ?? []) { const { equipment_mrid: capID, value } = cap; if (!graph.hasNode(capID)) { diff --git a/src/index.jsx b/src/index.jsx index 95bb230c..c6d31399 100644 --- a/src/index.jsx +++ b/src/index.jsx @@ -1,7 +1,12 @@ import { createRoot } from "react-dom/client"; import "./styles/index.css"; import App from "./app/App"; +import ErrorBoundary from "./components/ErrorBoundary"; const root = createRoot(document.getElementById("root")); -root.render(); +root.render( + + + , +); diff --git a/src/socket-client-helper/SocketClientHelper.js b/src/socket-client-helper/SocketClientHelper.js index 1e8f9ea0..857b87fd 100644 --- a/src/socket-client-helper/SocketClientHelper.js +++ b/src/socket-client-helper/SocketClientHelper.js @@ -143,6 +143,25 @@ class SocketClientHelper { // Internal Setup + /** + * Run a graph mutation for an incoming socket event. + * + * These payloads come off the wire, so a malformed one can throw deep inside + * graphHelper. Unwrapped, that throw lands in socket.io's emitter and takes + * the rest of the handler — including the fan-out to subscribed components — + * with it. Reported and contained instead. + */ + #applyToGraph(event, fn) { + try { + fn(); + return true; + } catch (err) { + console.error(`[Socket] "${event}" could not be applied:`, err); + this.#emit("error", { type: event, message: err.message }); + return false; + } + } + #setupSocketListeners() { // Connection events this.socket.on("connect", () => { @@ -152,6 +171,15 @@ class SocketClientHelper { this.socket.on("disconnect", (reason) => { console.warn("[Socket] Disconnected:", reason); + // The backend holds the simulation, so a dropped socket means the run + // we were tracking is no longer ours to drive. Leaving the id set + // leaves the UI offering pause/stop buttons that emit into nothing + // and never get an ack back. + if (this.simulationState === "running" || this.simulationState === "paused") { + this.simulationID = null; + this.simulationState = "inactive"; + this.#emit("sim-state-change", "inactive"); + } this.#emit("connection-change", { connected: false, reason }); }); @@ -160,12 +188,19 @@ class SocketClientHelper { this.#emit("error", { type: "connection", message: err.message }); }); + // socket.io stops retrying after reconnectionAttempts and then goes + // quiet. Without this the socket is permanently dead with nothing said. + this.socket.io.on("reconnect_failed", () => { + console.error("[Socket] Gave up reconnecting."); + this.#emit("connection-change", { connected: false, exhausted: true }); + }); + // Simulation events this.socket.on("sim-output", (output) => { if (this.simulationState === "inactive") return; this.#emit("sim-output", output); - graphHelper.handleSimulationOutput(output); + this.#applyToGraph("sim-output", () => graphHelper.handleSimulationOutput(output)); }); this.socket.on("sim-log", (log) => { @@ -175,7 +210,7 @@ class SocketClientHelper { } if (log.processStatus === "COMPLETE") { - graphHelper.reset(); + this.#applyToGraph("sim-log", () => graphHelper.reset()); this.#emit("sim-state-change", "stopped"); } this.#emit("sim-log", log); @@ -191,11 +226,11 @@ class SocketClientHelper { }); this.socket.on("switch-state-update", (data) => { - graphHelper.updateSwitches(data); + this.#applyToGraph("switch-state-update", () => graphHelper.updateSwitches(data)); }); this.socket.on("capacitor-state-update", (data) => { - graphHelper.updateCapacitors(data); + this.#applyToGraph("capacitor-state-update", () => graphHelper.updateCapacitors(data)); }); this.socket.on("load-graph", (payload) => { @@ -210,29 +245,29 @@ class SocketClientHelper { }); this.socket.on("update-data", (data) => { - graphHelper.applyUpdate(data); - this.#emit("update-data", data); + if (this.#applyToGraph("update-data", () => graphHelper.applyUpdate(data))) + this.#emit("update-data", data); }); this.socket.on("add-node", (data) => { - graphHelper.addNode(data); - this.#emit("add-node", data); + if (this.#applyToGraph("add-node", () => graphHelper.addNode(data))) + this.#emit("add-node", data); }); this.socket.on("add-edge", (data) => { - graphHelper.addEdge(data); - this.#emit("add-edge", data); + if (this.#applyToGraph("add-edge", () => graphHelper.addEdge(data))) + this.#emit("add-edge", data); }); this.socket.on("delete-node", (id) => { - graphHelper.deleteNode(id); - this.#emit("delete-node", id); + if (this.#applyToGraph("delete-node", () => graphHelper.deleteNode(id))) + this.#emit("delete-node", id); }); this.socket.on("delete-edge", (id) => { - graphHelper.deleteEdge(id); - this.#emit("delete-edge", id); + if (this.#applyToGraph("delete-edge", () => graphHelper.deleteEdge(id))) + this.#emit("delete-edge", id); }); this.socket.on("agents-update", (data) => { - graphHelper.applyAgentUpdate(data); - this.#emit("agents-update", data); + if (this.#applyToGraph("agents-update", () => graphHelper.applyAgentUpdate(data))) + this.#emit("agents-update", data); }); } diff --git a/src/utils/parse-job.js b/src/utils/parse-job.js index b7cbe852..bb0222a8 100644 --- a/src/utils/parse-job.js +++ b/src/utils/parse-job.js @@ -1,9 +1,12 @@ import axios from "axios"; -import { API_BASE_URL } from "../config"; +import { API_BASE_URL, PARSE_TIMEOUT_MS } from "../config"; const FIRST_INTERVAL_MS = 500; const MAX_INTERVAL_MS = 5000; const BACKOFF = 1.5; +// A job whose worker tier is gone sits at "queued" indefinitely, and the poll +// itself stays healthy, so the loop needs its own ceiling to ever give up. +const MAX_WAIT_MS = PARSE_TIMEOUT_MS; const sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms)); @@ -28,12 +31,22 @@ const describe = (job) => { export const awaitParseJob = async (jobId, { onProgress, signal } = {}) => { let interval = FIRST_INTERVAL_MS; + const deadline = Date.now() + MAX_WAIT_MS; for (;;) { if (signal?.aborted) throw new Error("Upload cancelled."); + if (Date.now() > deadline) { + throw new Error( + "This model is still queued after a long wait. The server may have no parse " + + "workers running — try again later.", + ); + } const { data: job } = await axios.get(`${API_BASE_URL}/api/jobs/${jobId}`, { signal }); + if (!job || typeof job !== "object") { + throw new Error("The server returned an unreadable job status."); + } if (job.state === "failed") { throw new Error(job.error || "The server could not parse this model."); } From 0388a014f127dd341d88d26d17f591d1c7f238be Mon Sep 17 00:00:00 2001 From: itsMando Date: Fri, 11 Sep 2026 20:46:05 -0700 Subject: [PATCH 21/24] removed hosted conditional code and verbose comments --- .gitignore | 2 - Dockerfile.backend.hosted | 67 ---- README.md | 9 +- docker-compose.prod.yml | 107 ------ docker/40-glimpse-env.sh | 8 +- docker/45-glimpse-tls.sh | 34 -- docker/nginx.prod.conf | 87 ----- docs/HOSTED_DEPLOYMENT.md | 306 --------------- index.html | 2 +- local-server/cimgraph_patch.py | 35 -- local-server/cimhelper.py | 48 +-- local-server/glmhelper.py | 10 +- local-server/glmparser/__init__.py | 1 - local-server/glmparser/errors.py | 3 - local-server/glmparser/lexer.py | 54 +-- local-server/glmparser/parser.py | 1 + local-server/glmparser/writer.py | 17 - local-server/gridappsdhelper.py | 10 +- local-server/jobstore.py | 287 -------------- local-server/jsonhelper.py | 3 +- local-server/precompute_examples.py | 64 ---- local-server/pyproject.toml | 4 +- local-server/requirements-hosted.txt | 12 - local-server/schemas/json_upload.schema.json | 50 +-- local-server/schemas/theme_upload.schema.json | 22 +- local-server/server.py | 355 ++++-------------- local-server/server.spec | 4 +- local-server/tasks.py | 186 --------- scripts/verify-hosted-stack.sh | 167 -------- scripts/write-codespace-env.sh | 1 - src/components/AnimatedEdgeTicker.jsx | 14 +- src/components/ConnectionStatus.jsx | 7 +- src/components/DistributionAreaSelector.jsx | 10 - src/components/ErrorBoundary.jsx | 8 - src/components/ExampleModels.jsx | 3 - src/components/FileUpload.jsx | 34 +- src/components/SimulationCharts.jsx | 15 - src/components/SimulationIdBadge.jsx | 7 - src/components/SimulationLog.jsx | 13 - src/components/VisToolbar.jsx | 9 - src/components/forms/GridAPPSDModelForm.jsx | 3 +- src/components/forms/SimulationConfigForm.jsx | 29 -- .../forms/simulationConfigFields.js | 36 -- src/components/graph/Graph.jsx | 2 - src/components/graph/GraphControls.jsx | 89 +---- src/components/graph/GraphRenderer.jsx | 18 +- src/components/modals/LoadModelModal.jsx | 7 +- src/components/model-data-view/EditObject.jsx | 64 ++-- src/components/plots/CustomPlot.jsx | 17 +- .../plots/CustomSimulationCharts.jsx | 5 - src/components/plots/LiveButton.jsx | 6 - src/components/plots/PlotCreatorModal.jsx | 1 - src/config.js | 12 - src/contexts/GraphContext.jsx | 17 +- src/graph-helper/GraphHelper.js | 28 +- .../SocketClientHelper.js | 23 +- src/utils/agent-api.js | 4 +- src/utils/parse-job.js | 63 ---- 58 files changed, 242 insertions(+), 2258 deletions(-) delete mode 100644 Dockerfile.backend.hosted delete mode 100644 docker-compose.prod.yml delete mode 100644 docker/45-glimpse-tls.sh delete mode 100644 docker/nginx.prod.conf delete mode 100644 docs/HOSTED_DEPLOYMENT.md delete mode 100644 local-server/jobstore.py delete mode 100755 local-server/precompute_examples.py delete mode 100644 local-server/requirements-hosted.txt delete mode 100644 local-server/tasks.py delete mode 100755 scripts/verify-hosted-stack.sh delete mode 100644 src/utils/parse-job.js diff --git a/.gitignore b/.gitignore index 216a4a09..2817f00c 100644 --- a/.gitignore +++ b/.gitignore @@ -42,5 +42,3 @@ CLAUDE.md release/ local-server/build/ -# Local TLS certs for the hosted stack (generated, never committed) -docker/certs/ diff --git a/Dockerfile.backend.hosted b/Dockerfile.backend.hosted deleted file mode 100644 index b6fb9e05..00000000 --- a/Dockerfile.backend.hosted +++ /dev/null @@ -1,67 +0,0 @@ -# ============================================================================ -# GLIMPSE hosted backend — Flask under gunicorn, no Socket.IO, no GridAPPS-D. -# -# The same image serves both roles: `gunicorn server:app` for the web tier and -# `celery -A tasks worker` for the parse workers (see docker-compose.prod.yml). -# ============================================================================ - -# ---- builder: install Python deps into /usr/local -------------------------- -FROM python:3.12-slim AS builder - -COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/ -RUN apt-get update \ - && apt-get install -y --no-install-recommends git ca-certificates \ - && rm -rf /var/lib/apt/lists/* - -COPY local-server/requirements-hosted.txt ./requirements.txt -RUN uv pip install --system -r requirements.txt - -FROM builder AS precompute - -WORKDIR /app -COPY local-server/ ./ -COPY models/ ./models/ - -# Space-separated example ids, or "none" to skip (fast iteration builds). -ARG PRECOMPUTE_EXAMPLES="ieee123 glm3000 ieee9500" - -ENV GLIMPSE_MODE=hosted GLIMPSE_PRECOMPUTED_DIR=/app/models/precomputed - -RUN if [ "$PRECOMPUTE_EXAMPLES" = "none" ]; then \ - echo "skipping precompute; keeping source models so examples still load"; \ - mkdir -p "$GLIMPSE_PRECOMPUTED_DIR"; \ - else \ - python precompute_examples.py $PRECOMPUTE_EXAMPLES \ - && rm -rf /app/models/CIM; \ - fi - -# ---- runtime --------------------------------------------------------------- -FROM python:3.12-slim - -ENV PYTHONUNBUFFERED=1 \ - GLIMPSE_MODE=hosted \ - FLASK_HOST=0.0.0.0 \ - FLASK_PORT=5052 \ - GLIMPSE_MODELS_DIR=/app/models \ - GLIMPSE_PRECOMPUTED_DIR=/app/models/precomputed - -COPY --from=builder /usr/local /usr/local - -WORKDIR /app -COPY --from=precompute /app /app - -# Don't run as root. The home directory has to exist and be writable: gunicorn -# and various libraries fall back to $HOME for scratch state. -RUN useradd --system --uid 10001 --create-home --home-dir /home/glimpse glimpse \ - && chown -R glimpse:glimpse /app /home/glimpse -USER glimpse -ENV HOME=/home/glimpse - -EXPOSE 5052 - -CMD ["gunicorn", "--bind", "0.0.0.0:5052", \ - "--worker-class", "gthread", "--workers", "4", "--threads", "4", \ - "--preload", "--no-control-socket", \ - "--timeout", "1800", "--graceful-timeout", "30", \ - "--access-logfile", "-", "--error-logfile", "-", \ - "server:app"] diff --git a/README.md b/README.md index 48f71828..095955d3 100755 --- a/README.md +++ b/README.md @@ -283,11 +283,10 @@ The finished installer is written to the `release/` directory. The installed app ### Deployment & Security Configuration -> **Hosting GLIMPSE for several users?** See -> [docs/HOSTED_DEPLOYMENT.md](docs/HOSTED_DEPLOYMENT.md). The defaults below -> describe the desktop build, which is a _single-session_ server: one loaded -> model shared by every connected client. Set `GLIMPSE_MODE=hosted` for the -> multi-user web deployment. +> [!NOTE] +> GLIMPSE runs a _single-session_ server: one loaded model, shared by every +> connected client. It is built for one user at a time, whether that is the +> desktop app or a Docker container on a machine you control. The desktop app runs the backend bound to `127.0.0.1` (loopback only), so the defaults below are safe as-is. **A networked deployment is different**: the Docker backend binds to `0.0.0.0`, which makes it reachable by any client that can route to the port. Because the backend has no per-user login, treat the following environment variables as required hardening before exposing it beyond localhost. diff --git a/docker-compose.prod.yml b/docker-compose.prod.yml deleted file mode 100644 index eeaa71ab..00000000 --- a/docker-compose.prod.yml +++ /dev/null @@ -1,107 +0,0 @@ -services: - redis: - image: redis:7-alpine - command: > - redis-server --save "" - --appendonly no - --maxmemory ${REDIS_MAXMEMORY:-6gb} - --maxmemory-policy noeviction - healthcheck: - test: ["CMD", "redis-cli", "ping"] - interval: 5s - timeout: 3s - retries: 5 - - backend: - build: - context: . - dockerfile: Dockerfile.backend.hosted - args: - PRECOMPUTE_EXAMPLES: "${PRECOMPUTE_EXAMPLES:-ieee123 glm3000 ieee9500}" - environment: - GLIMPSE_MODE: hosted - GLIMPSE_REDIS_URL: redis://redis:6379/0 - CORS_ORIGINS: "${CORS_ORIGINS:-https://localhost}" - GLIMPSE_API_TOKEN: "${GLIMPSE_API_TOKEN:-}" - MAX_UPLOAD_MB: "${MAX_UPLOAD_MB:-128}" - GLIMPSE_JOB_TTL: "${GLIMPSE_JOB_TTL:-3600}" - GLIMPSE_MAX_QUEUE_DEPTH: "${GLIMPSE_MAX_QUEUE_DEPTH:-24}" - expose: - - "5052" - depends_on: - redis: - condition: service_healthy - healthcheck: - test: - [ - "CMD-SHELL", - 'python -c "import urllib.request;urllib.request.urlopen(''http://127.0.0.1:5052/'')"', - ] - interval: 10s - timeout: 5s - retries: 5 - mem_limit: 1g - - worker: - build: - context: . - dockerfile: Dockerfile.backend.hosted - args: - PRECOMPUTE_EXAMPLES: "${PRECOMPUTE_EXAMPLES:-ieee123 glm3000 ieee9500}" - # --concurrency 1: a parse peaks near 600 MB, so one at a time per - # container keeps a worker inside mem_limit. Add throughput with - # `--scale worker=N` (or more tasks on a larger instance), not with - # concurrency on a 2 GB box. - command: - [ - "celery", - "-A", - "tasks", - "worker", - "--queues", - "glimpse.parse", - "--concurrency", - "${WORKER_CONCURRENCY:-1}", - "--loglevel", - "info", - ] - environment: - GLIMPSE_MODE: hosted - GLIMPSE_REDIS_URL: redis://redis:6379/0 - GLIMPSE_JOB_TTL: "${GLIMPSE_JOB_TTL:-3600}" - depends_on: - redis: - condition: service_healthy - healthcheck: - # CMD-SHELL, not CMD: the node name has to be expanded, and it must - # name *this* container. A bare `inspect ping` passes as long as any - # worker on the broker replies, so a wedged replica would look - # healthy because a sibling answered for it. - test: ["CMD-SHELL", "celery -A tasks inspect ping -d celery@$$(hostname) --timeout 10"] - interval: 30s - timeout: 10s - retries: 3 - start_period: 30s - mem_limit: 2g - # Longer than the task time limit would be ideal, but a deploy cannot - # wait 30 minutes: acks_late means a parse cut short here is redelivered - # to another worker rather than lost, so this only bounds how long a - # deploy waits for a parse that is nearly done. - stop_grace_period: 120s - - frontend: - build: - context: . - dockerfile: Dockerfile.frontend - environment: - API_URL: "" - API_TOKEN: "${GLIMPSE_API_TOKEN:-}" - GLIMPSE_MODE: hosted - ports: - - "8080:80" - - "8443:443" - volumes: - - ./docker/nginx.prod.conf:/etc/nginx/conf.d/default.conf:ro - - ./docker/certs:/etc/nginx/certs:ro - depends_on: - - backend diff --git a/docker/40-glimpse-env.sh b/docker/40-glimpse-env.sh index 4d633e95..1c61bb70 100644 --- a/docker/40-glimpse-env.sh +++ b/docker/40-glimpse-env.sh @@ -10,10 +10,6 @@ API_URL="${API_URL-http://127.0.0.1:5052}" # Shared bearer token the browser must send. Must match the backend's # GLIMPSE_API_TOKEN. Empty = auth disabled. API_TOKEN="${API_TOKEN:-}" -# "hosted" hides the desktop-only UI (diagram tab, GridAPPS-D, simulation) whose -# endpoints the hosted backend doesn't register. Must match the backend's -# GLIMPSE_MODE. -MODE="${GLIMPSE_MODE:-desktop}" # Overridable so non-nginx callers (scripts/write-codespace-env.sh) can point # this at a built dist/ instead. HTML_DIR="${HTML_DIR:-/usr/share/nginx/html}" @@ -23,7 +19,7 @@ EXTRA_CONNECT_SRC="${EXTRA_CONNECT_SRC:-}" # 1) Expose runtime config to the app (read by src/config.js). cat > "${HTML_DIR}/env.js" </dev/null diff --git a/docker/nginx.prod.conf b/docker/nginx.prod.conf deleted file mode 100644 index f1df387b..00000000 --- a/docker/nginx.prod.conf +++ /dev/null @@ -1,87 +0,0 @@ -# GLIMPSE hosted frontend + reverse proxy. Stands in for the ALB locally, and -# works as-is on a single EC2 instance. - -# No upstream block on purpose. nginx resolves a name in `upstream` once, at -# config load, and caches the result for the life of the process — so a replica -# started or replaced later never receives traffic, and nginx keeps dialling the -# address of one that has gone away. Both were observed here: with three -# replicas up, one served zero requests while nginx logged "connection refused" -# against a stale address. -# -# Instead the backend host goes through a variable, which forces nginx to -# re-resolve per request against Docker's embedded DNS. Docker returns the live -# replica addresses in rotating order, giving plain round-robin with no ip_hash -# and no sticky cookie — which is the property this stack exists to test. -# An ALB tracks its targets itself, so this only matters locally. - -# Compress JSON hard: a parsed CIM model is ~27 MB raw and ~4 MB gzipped. -gzip on; -gzip_types application/json application/javascript text/css text/plain image/svg+xml; -gzip_min_length 1024; -gzip_comp_level 6; -gzip_proxied any; -gzip_vary on; - -server { - listen 80; - server_name _; - # Local TLS testing uses the mkcert/self-signed pair mounted at /etc/nginx/certs. - # Comment the redirect out to serve plain HTTP. - return 301 https://$host$request_uri; -} - -server { - listen 443 ssl; - http2 on; - server_name _; - - # Populated at startup by 45-glimpse-tls.sh: mounted certs if present, - # otherwise a generated self-signed pair. - ssl_certificate /etc/nginx/tls/glimpse.crt; - ssl_certificate_key /etc/nginx/tls/glimpse.key; - ssl_protocols TLSv1.2 TLSv1.3; - - root /usr/share/nginx/html; - index index.html; - - # Must be at least the backend's MAX_UPLOAD_MB, or nginx 413s a CIM upload - # before Flask ever sees it. IEEE 9500 alone is 56 MB. - client_max_body_size 128m; - - location / { - try_files $uri $uri/ /index.html; - } - - location /api/ { - # 127.0.0.11 is Docker's embedded DNS. A short TTL keeps the replica list - # current as containers come and go. - resolver 127.0.0.11 valid=5s ipv6=off; - set $glimpse_backend backend; - # $request_uri is required: with a variable in proxy_pass, nginx stops - # appending the matched path itself. - proxy_pass http://$glimpse_backend:5052$request_uri; - proxy_set_header Host $host; - proxy_set_header X-Real-IP $remote_addr; - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header X-Forwarded-Proto $scheme; - - # Already-gzipped responses (precomputed examples, job results) must pass - # through untouched rather than being re-encoded. - proxy_set_header Accept-Encoding $http_accept_encoding; - - # Uploading 56 MB takes a while; and without a job store configured the - # parse itself happens on this request. - client_body_timeout 300s; - proxy_send_timeout 300s; - proxy_read_timeout 1800s; - proxy_request_buffering off; - } - - # Health check, kept off the SPA fallback. - location = /healthz { - resolver 127.0.0.11 valid=5s ipv6=off; - set $glimpse_health backend; - proxy_pass http://$glimpse_health:5052/; - access_log off; - } -} diff --git a/docs/HOSTED_DEPLOYMENT.md b/docs/HOSTED_DEPLOYMENT.md deleted file mode 100644 index 7b69e5c5..00000000 --- a/docs/HOSTED_DEPLOYMENT.md +++ /dev/null @@ -1,306 +0,0 @@ -# Hosted deployment - -GLIMPSE ships in two shapes from one codebase, selected by `GLIMPSE_MODE`: - -| | `desktop` (default) | `hosted` | -|---|---|---| -| Users | One, on their own machine | Many, concurrently | -| Transport | Flask + Socket.IO on gevent, bound to loopback | Flask under gunicorn, behind a proxy | -| Features | Everything: GridAPPS-D, simulation, live agent feed, mermaid diagrams | Model upload, parse, inspect, export | -| Server state | Keeps the parsed model resident between requests | Keeps nothing | - -The hosted mode exists because the desktop server is a *single session*: one set of -helper singletons, one loaded model, one GridAPPS-D connection, and Socket.IO -broadcasts that reach every connected client. That is correct for one user at a -desk and actively wrong for several strangers sharing an instance. - -## What makes it multi-user - -**Responses are self-contained.** Parsing a CIM model also resolves every -*drawn* object's attributes and associations (`CIMHelper._build_object_details`), -and those ship with the model. The client never asks the server "tell me about -the object I am looking at" — it already knows — so the server needn't still be -holding that model, and no request depends on reaching the replica that served -the previous one. - -This is the property everything else rests on. `local-server/tests/` guards it, -in particular `test_inspection_works_across_replicas` and -`test_any_replica_can_serve_any_job`. If someone reintroduces server-retained -state, those fail; a single-instance smoke test would not notice. - -**Where that stops.** "Drawn" is the limit, and it is a real one. A model ships -details for the objects it renders; the associations on those objects point at -things it does not render — `BaseVoltage`, `Location`, `Terminal`, -`PerLengthImpedance` — and none of those travel with it. On IEEE 123 that is -*every one* of the 1,872 association targets. The data view renders them as -links, so in hosted mode a user can click one and get an empty panel. - -The desktop build answers those clicks from `/api/cim/objects`, against the model -it still holds; hosted mode has no such endpoint, by design. Closing this for -hosted means either shipping the full transitive closure with the model (much -larger payloads for something most users never click) or reintroducing a -server-side model (giving up the property above). Neither is obviously right, -which is why it is written down here rather than quietly fixed. Guarded by -`test_a_model_ships_no_details_for_what_it_only_points_at`. - -**Desktop-only endpoints are not registered.** `desktop_route` and -`desktop_socket_event` skip registration in hosted mode, so `/api/gridappsd/*`, -`/api/cim/objects`, `/api/cim/objects/mermaid` and the Socket.IO layer return 404 -rather than failing at request time. The frontend hides the matching UI via -`FEATURES` in `src/config.js`. `requirements-hosted.txt` omits `flask-socketio`, -`gevent`, and `gridappsd-python` entirely — if a hosted code path ever imports -one, the image fails to start instead of quietly working. - -**Measurements are never parsed.** Every consumer of CIM measurements is a -simulation feature, and every one of them is desktop-only: `/api/cim/measurements` -is a `desktop_route`, simulation output arrives over Socket.IO, and the frontend -reads measurement mRIDs only from the plot components. IEEE 9500 carries 24,003 -`Analog`/`Discrete` elements — a quarter of every object in the file — so -`cimhelper.MeasurementFreeXMLFile` skips them at parse time in hosted mode. -Worth about 12% of the parse and 1.7 MB of the payload, and free: the object -graph and the inspectable details are identical either way, because measurements -were never rendered. `test_skipping_measurements_costs_the_visualization_nothing` -is the guard on that. - -**cimgraph's edge construction is patched.** `local-server/cimgraph_patch.py` -replaces `ConnectionInterface.create_edge`, which dedupes list-valued -associations with a linear scan and is therefore O(n^2) in the size of the list -it is filling. Loading IEEE 9500 runs that scan 102,646,261 times — the single -largest block of self time in the parse. A set of object ids makes it O(1) and -takes about a third off the load, with byte-identical output (hashed and -asserted in `test_the_patch_changes_nothing_about_the_output`). - -It is a monkeypatch on a third-party library, so it checks that the code it is -replacing still looks the way it did when it was written and declines to patch -if not — a cim-graph upgrade falls back to the library's own implementation -rather than silently running a stale copy of it. `GLIMPSE_CIMGRAPH_PATCH=0` -turns it off at runtime. This belongs upstream in cim-graph; until it is there, -the patch keeps it in one reviewable place. - -**Editing is off.** Hosted GLIMPSE is model exploration only. `FEATURES.editing` -renders the attributes panel read-only, matching the backend, where -`/api/cim/objects` is not registered — without the flag the Save button appears -and every save fails on a 404. - -## Large models - -IEEE 9500 — the largest bundled model, 56 MB of CIM XML, ~13,600 graph objects — -parses in about 6.5 seconds and peaks around 600 MB of RSS. Two mechanisms exist, -for two different situations. - -**Bundled examples are precomputed at build time.** A bundled example is a fixed -input, so its parse result is identical for every visitor. `precompute_examples.py` -runs during the image build and stores each result as a gzipped payload; -`/api/examples/load` returns those bytes directly — roughly 1 ms instead of 6.5 s, -and none of the 600 MB. That headroom is the point: it is the difference between -a demo instance serving one visitor at a time and serving many. Precomputed -artifacts are byte-identical to parsing on demand — `build_example_payload` is -shared by both paths so they cannot drift. - -**User uploads can become jobs.** At 6.5 s a 9500-scale upload is comfortably a -synchronous request, and that remains the default: leave `GLIMPSE_REDIS_URL` -unset and there is no Redis, no Celery, and no worker tier to run. - -Set `GLIMPSE_REDIS_URL` when uploads arrive concurrently — several users at once -each pinning 600 MB in a web worker is how the web tier falls over — or when -uploads are much larger than the bundled models, where a parse could outlive a -load balancer's idle timeout and a dropped connection would waste the whole -thing. `/api/upload/cim` then answers `202` with a job id, a Celery worker tier -parses, and the client polls. - -With the job pipeline on, scale the tiers independently: web replicas stay small -(512 MB is ample, since they never parse), workers need ~2 GB each and set how -many parses run at once. - -## The parse pipeline - -### How a job flows - -1. `/api/upload/cim` writes the job record and the uploaded bytes to Redis - (`jobstore.py`), then publishes `tasks.parse_cim` with the job id as the task - id. The bytes never go into the broker message — a task stays a few hundred - bytes whatever the model weighs. -2. A Celery worker takes the task and calls `store.begin()`, which counts the - attempt and flips the job to `running`, then parses. -3. The worker writes the gzipped result back to Redis and marks the job `done`. -4. The client polls `/api/jobs/`, then collects `/api/jobs//result`. Any - web replica can answer both, because nothing about a job lives in a process. - -### When a worker dies - -A parse peaks near 600 MB, so an OOM kill is the realistic failure, and a rolling -deploy SIGTERMs workers mid-parse by design. The task runs with `task_acks_late` -and `task_reject_on_worker_lost`, so a task whose worker never finished it is -redelivered rather than dropped silently. - -That guarantee rests on two things this deployment has to provide itself: - -- **The upload outlives the attempt.** `jobstore` holds the uploaded bytes until - the job is *terminal*, not until it is first picked up — a redelivered task - with nothing left to parse would be worthless. Guarded by - `test_*_keeps_the_upload_for_a_redelivery`. -- **Redelivery is bounded.** A model that reliably kills whatever parses it would - otherwise be handed to every worker in turn, taking down the fleet one process - at a time. `begin()` counts attempts on the job record and fails the job past - `GLIMPSE_JOB_MAX_ATTEMPTS`, so the client gets a real error instead of polling - forever. Guarded by `test_*_bounds_attempts`. - -Parse *failures* are deliberately not retried. A malformed or unsupported model -fails identically every time, so a retry would burn minutes of CPU and hundreds -of MB to reach the same answer more slowly. The failures worth re-running are the -ones that kill the process outright, and `acks_late` already covers those. - -#### How fast recovery is, by failure - -Redis has no real ack, so the two failures recover on different mechanisms. -Measured on the compose stack, killing a worker mid-parse of IEEE 9500: - -| Failure | Mechanism | Observed | -|---|---|---| -| Parse child killed (what an OOM kill produces) | Pool raises `WorkerLostError`, task requeued at once | job completed on attempt 2, **~9 s** end to end | -| Rolling deploy / scale-in (SIGTERM) | Celery warm shutdown finishes the task first | no redelivery at all, within `stop_grace_period` | -| Whole container lost at once (instance loss, spot reclaim, `docker kill`) | Message sits in the broker's `unacked` set until the visibility timeout | up to `GLIMPSE_VISIBILITY_TIMEOUT` (20 min by default) | - -The last row is the one to size deliberately. A cgroup OOM kills the child — the -process holding the 600 MB — so the common memory failure takes the fast path; -losing the parent as well means nothing is left to notice, and only the -visibility timeout can recover it. Lower `GLIMPSE_PARSE_TIME_LIMIT` to whatever -your largest realistic model needs and the visibility timeout follows it down. - -`GLIMPSE_VISIBILITY_TIMEOUT` must stay above `GLIMPSE_PARSE_TIME_LIMIT`: kombu -re-queues a task whose worker has not finished within the visibility timeout, so -a shorter one would hand a long-but-healthy parse to a second worker while the -first was still running it — two workers, 600 MB each, on the same job. - -Nothing is lost in any of these cases: the task stays in the broker and the -upload stays in Redis until the job is terminal. What differs is only how long -the user waits. - -### Backpressure - -Every queued job holds its upload in Redis until a worker finishes with it, so -queue depth is a memory budget, not just a patience one: - -``` -worst-case resident uploads ~= GLIMPSE_MAX_QUEUE_DEPTH x MAX_UPLOAD_MB -``` - -Past that depth `/api/upload/cim` answers `429` with `Retry-After` rather than -accepting work it has nowhere to put. Redis runs `--maxmemory-policy noeviction` -for the same reason: with queued uploads and finished results both living there, -it is the system of record for work in flight, not a cache. An eviction policy -would silently discard a live job — or the queue list itself, dropping every -pending job at once — and users would see "unknown or expired job" with nothing -logged anywhere. Refusing the write instead lets the upload endpoint answer `503` -while jobs already accepted still finish. - -`GET /` reports `queue.depth` and `queue.maxDepth`. A depth sitting near the -maximum means the worker tier is undersized; it is the right signal to scale on. - -## Running it locally - -```bash -# Three replicas, deliberately with NO sticky sessions. -# TLS is self-provisioning; see "Prerequisites" below to supply your own cert. -docker compose -f docker-compose.prod.yml up --build -d --scale backend=3 - -./scripts/verify-hosted-stack.sh -``` - -Scale the tiers separately — `--scale worker=4` for parse throughput, `--scale -backend=3` for request capacity. Workers are plain Celery, so the usual -introspection works: - -```bash -docker compose -f docker-compose.prod.yml exec worker celery -A tasks inspect active -docker compose -f docker-compose.prod.yml exec worker celery -A tasks inspect stats -``` - -`PRECOMPUTE_EXAMPLES=none` skips the precompute step while iterating. The -verification script checks mode and feature gating, that -desktop-only endpoints 404, that JSON is gzipped, that examples load prebuilt -rather than parsing, and that a job uploaded to one replica can be polled and -collected from another. - -Run the backend suite with Redis available to include the job tests: - -```bash -cd local-server -GLIMPSE_TEST_REDIS_URL=redis://127.0.0.1:6379/1 python -m pytest tests -``` - -## Configuration - -| Variable | Default | Notes | -|---|---|---| -| `GLIMPSE_MODE` | `desktop` | `hosted` enables everything on this page | -| `GLIMPSE_REDIS_URL` | unset | Set it to move uploads onto the job pipeline (broker *and* job store) | -| `GLIMPSE_JOB_TTL` | `3600` | Seconds a job and its result stay collectable | -| `GLIMPSE_MAX_QUEUE_DEPTH` | `24` | Queued jobs before uploads are refused with `429`. Multiply by `MAX_UPLOAD_MB` to size Redis | -| `GLIMPSE_JOB_MAX_ATTEMPTS` | `2` | Times a job may be handed to a worker before it is failed. Bounds poison-pill redelivery | -| `GLIMPSE_PARSE_TIME_LIMIT` | `900` | Hard ceiling on one parse, seconds (~110x IEEE 9500) | -| `GLIMPSE_VISIBILITY_TIMEOUT` | time limit + 300 | Must exceed the time limit, and bounds recovery from whole-container loss — see "When a worker dies" | -| `GLIMPSE_WORKER_MAX_TASKS` | `1` | Parses before a worker child is recycled. Keeps RSS from ratcheting across jobs | -| `GLIMPSE_CIMGRAPH_PATCH` | `1` | `0` runs cimgraph's own `create_edge` instead of the patched one | -| `GLIMPSE_PARSE_QUEUE` | `glimpse.parse` | Celery queue name. The web tier reads its depth by this key, so change both or neither | -| `WORKER_CONCURRENCY` | `1` | Parses at once per worker container. Raise only with the RAM to match | -| `REDIS_MAXMEMORY` | `6gb` | Sized from the queue-depth formula above | -| `GLIMPSE_PRECOMPUTED_DIR` | `/precomputed` | Where prebuilt example payloads live | -| `CORS_ORIGINS` | dev ports | Pin to the real origin; never `*` in production | -| `MAX_UPLOAD_MB` | `65` | Raise it — IEEE 9500 alone is 56 MB. nginx's `client_max_body_size` must match or exceed it | -| `GLIMPSE_API_TOKEN` | unset | Shared bearer token. Note it is served to the browser in `env.js`, so it gates non-browser clients only — put real auth (ALB + OIDC) in front for anything sensitive | - -## A local-only wrinkle: nginx and DNS - -nginx resolves a hostname in an `upstream` block once, at config load, and caches -it for the process lifetime. In Docker, where replicas get new addresses when -they are recreated, that means a replica started later receives no traffic while -nginx keeps dialling one that has gone. Both were observed here — with three -replicas up, one served zero requests. - -`docker/nginx.prod.conf` therefore routes through a variable with an explicit -`resolver`, which forces re-resolution per request. `verify-hosted-stack.sh` -asserts that *every* replica serves traffic, because a proxy pinned to one -address passes every other check in the script while making the cross-replica -results meaningless. - -An ALB tracks its own targets, so none of this applies on EC2. - -## Moving to EC2 - -The compose stack maps over directly: nginx → ALB, the `backend` service → a -target group, `worker` → its own service scaled separately, `redis` → -ElastiCache. - -- **ElastiCache must be `noeviction`.** The default parameter group for a cache - is `volatile-lru`, which is wrong here for the reason given under - "Backpressure": these keys are work in flight, not cache. Set - `maxmemory-policy` in a custom parameter group, and size the node from - `GLIMPSE_MAX_QUEUE_DEPTH x MAX_UPLOAD_MB` plus headroom. -- **Scale the worker tier on queue depth**, not CPU. `GET /` reports - `queue.depth`; publish it as a CloudWatch metric and target it. CPU is a poor - proxy — an idle-but-backlogged fleet looks identical to an idle one when the - jobs are queued rather than running. -- **ALB idle timeout** defaults to 60s, which the job pipeline makes largely moot: - the upload returns `202` immediately and polls are short. It still bounds the - *upload* itself, so raise it if clients push very large files over slow links. -- **ACM certificates** and IAM/instance-profile behaviour. -- **Log delivery** — the containers log to stdout; wire up the `awslogs` driver - or the CloudWatch agent. Celery logs each task start and finish, so worker - throughput and failures are visible without extra instrumentation. - -## Prerequisites for local verification - -`scripts/verify-hosted-stack.sh` needs only `curl` and `python3`. - -TLS needs nothing: the frontend container generates a self-signed certificate on -startup when none is mounted, so `docker compose up` works from a clean checkout. -Browsers will warn on it. To use a trusted local certificate instead, drop one at -`docker/certs/glimpse.{crt,key}` and it takes precedence: - -```bash -mkcert -cert-file docker/certs/glimpse.crt -key-file docker/certs/glimpse.key localhost 127.0.0.1 -``` - -If `docker/certs/` was created by Docker it will be root-owned; `sudo chown -R -"$USER" docker/certs` before writing into it. diff --git a/index.html b/index.html index 54466d7a..86876d28 100644 --- a/index.html +++ b/index.html @@ -6,7 +6,7 @@ GLIMPSE diff --git a/local-server/cimgraph_patch.py b/local-server/cimgraph_patch.py index 087777b3..28a575fe 100644 --- a/local-server/cimgraph_patch.py +++ b/local-server/cimgraph_patch.py @@ -1,38 +1,3 @@ -"""A targeted speed patch for cimgraph's edge construction. - -cimgraph builds a model by calling `ConnectionInterface.create_edge` once per -association in the file. When the association is list-valued it dedupes before -appending: - - if not any(x is edge_object for x in obj_list): - -That scan is linear in the list's current length, so filling a list of n edges -costs O(n^2). It goes unnoticed on small models and dominates on large ones: -loading IEEE 9500 runs that generator expression 102,646,261 times, which is the -single largest block of self time in the whole parse. - -Replacing the scan with a set of object ids makes each append O(1) and takes -about a quarter off the load, with byte-identical output. Nothing else about the -library's behaviour changes. - -This is a monkeypatch on a third-party library, so it is deliberately cautious: - - * It verifies the code it is replacing still looks the way it did when this - was written, and declines to patch if not. A cim-graph upgrade that reworks - create_edge therefore falls back to the library's own implementation rather - than silently running a stale reimplementation of it. - * It can be switched off at runtime with GLIMPSE_CIMGRAPH_PATCH=0, without a - redeploy. - * The dedup state lives on the container object, not in a side table keyed by - id(). An id is only unique among live objects, so a side table can hand a - stale set to a new object that happens to reuse a collected one's address — - which would silently drop edges. Storing it on the object gives it exactly - the right lifetime. - -The proper home for this is upstream in cim-graph; it helps every consumer, not -just GLIMPSE. Until then, this keeps the fix in one reviewable place. -""" - from __future__ import annotations import inspect diff --git a/local-server/cimhelper.py b/local-server/cimhelper.py index c79e3220..f676c669 100644 --- a/local-server/cimhelper.py +++ b/local-server/cimhelper.py @@ -1,14 +1,18 @@ -import os import json +import os import threading -from uuid import UUID from dataclasses import fields, is_dataclass -from SPARQLWrapper import JSON as SPARQL_JSON, POST as SPARQL_POST, SPARQLWrapper -from cimgraph.databases.blazegraph.blazegraph import BlazegraphConnection -from cimgraph.models.feeder_model import FeederModel +from uuid import UUID + +import cimgraph.data_profile.cimhub_2023 as cim import cimgraph.utils as cim_utils +from cimgraph.databases.blazegraph.blazegraph import BlazegraphConnection from cimgraph.databases.fileparsers.xml_parser import XMLFile -import cimgraph.data_profile.cimhub_2023 as cim +from cimgraph.models.feeder_model import FeederModel +from SPARQLWrapper import JSON as SPARQL_JSON +from SPARQLWrapper import POST as SPARQL_POST +from SPARQLWrapper import SPARQLWrapper + import cimgraph_patch # Speeds up cimgraph's edge construction — see cimgraph_patch for what it @@ -16,26 +20,6 @@ # to run on the library's own implementation instead. cimgraph_patch.apply() -HOSTED_MODE = os.environ.get("GLIMPSE_MODE", "desktop").strip().lower() == "hosted" -MEASUREMENT_CLASSES = frozenset({"Analog", "Discrete"}) - - -class MeasurementFreeXMLFile(XMLFile): - @staticmethod - def _class_name(element) -> str: - return element.tag.split("}")[-1] - - def parse_nodes(self, element): - if self._class_name(element) in MEASUREMENT_CLASSES: - return None - return super().parse_nodes(element) - - def parse_edges(self, element): - if self._class_name(element) in MEASUREMENT_CLASSES: - return None - return super().parse_edges(element) - - def _env_default(name: str, value: str) -> None: if not os.environ.get(name, "").strip(): os.environ[name] = value @@ -273,10 +257,7 @@ def report(stage: str, step: int): cim_utils.get_all_location_data(self.FEEDERS[feeder_id]) elif filepath is not None: # For regular CIM file reading without multi-feeder support - # Hosted mode is model exploration only, so it never parses the - # measurements it has no feature to spend them on. - xml_reader = MeasurementFreeXMLFile if HOSTED_MODE else XMLFile - cim_file = xml_reader(filepath) + cim_file = XMLFile(filepath) filename = os.path.basename(filepath) self.FEEDERS[filename] = FeederModel(container=cim.Feeder(), connection=cim_file) feeder_id = filename @@ -425,7 +406,7 @@ def report(stage: str, step: int): "step": transformer_end.RatioTapChanger.step, "tap": transformer_end.RatioTapChanger.mRID, } - + new_edge["attributes"]["class_type"] = "regulator" break @@ -556,10 +537,7 @@ def report(stage: str, step: int): # Build measurement map: measurement MRID -> equipment info # This is used to map simulation output measurements to CIM objects. - # Hosted mode has no simulation and no measurements parsed, so there is - # nothing to map. - if not HOSTED_MODE: - self._build_measurement_map(feeder_id) + self._build_measurement_map(feeder_id) self.object_index[feeder_id] = { obj["attributes"]["id"]: { "name": obj["attributes"].get("name", ""), diff --git a/local-server/glmhelper.py b/local-server/glmhelper.py index f7282567..3d275524 100644 --- a/local-server/glmhelper.py +++ b/local-server/glmhelper.py @@ -1,9 +1,11 @@ -from glmparser import dump as glm_dump -from glmparser import load as glm_load -from werkzeug.utils import secure_filename +import io import os import zipfile -import io + +from werkzeug.utils import secure_filename + +from glmparser import dump as glm_dump +from glmparser import load as glm_load class GLMHelper: diff --git a/local-server/glmparser/__init__.py b/local-server/glmparser/__init__.py index 100d8ae2..c88cdfee 100644 --- a/local-server/glmparser/__init__.py +++ b/local-server/glmparser/__init__.py @@ -9,7 +9,6 @@ __all__ = ["load", "loads", "dump", "dumps", "version", "GlmParseError"] - def loads(text): """Parse GLM source text into the AST dict.""" return Parser(text).parse() diff --git a/local-server/glmparser/errors.py b/local-server/glmparser/errors.py index 56b83d50..8a759694 100644 --- a/local-server/glmparser/errors.py +++ b/local-server/glmparser/errors.py @@ -1,6 +1,3 @@ -"""Parse errors carrying enough context to point at the offending source line.""" - - class GlmParseError(Exception): """Raised when GLM source cannot be parsed. diff --git a/local-server/glmparser/lexer.py b/local-server/glmparser/lexer.py index e2e1b1ed..252354d2 100644 --- a/local-server/glmparser/lexer.py +++ b/local-server/glmparser/lexer.py @@ -1,62 +1,10 @@ -"""Streaming tokenizer for GridLAB-D .glm source. -One regex pass over the source, pulled through a single-token lookahead buffer. -Whitespace is skipped rather than tokenized -""" import re from .errors import GlmParseError -# The `word` group has five branches, in this order, and all five are needed: -# -# 0. `"[^"\n]*"` and `'[^'\n]*'` -- a quoted string, consumed WHOLE, including -# any `;` inside it. GLM genuinely uses quoted values (`starttime -# '2000-01-01 0:00:00';`). Without these branches a `;` inside quotes still -# lexes as a `semi` and terminates the value, so the writer's defensive -# quoting protects nothing: exporting `{"weird": "a;b"}` writes -# `weird "a;b";` and reads back as `{'weird': 'a', 'b"': ''}` -- the value -# truncated AND a junk attribute fabricated, silently. Must precede the -# ordinary-value branch so the whole quoted run is taken first. -# An unterminated quote falls through to branch 1, matching prior behavior. -# -# This is NOT full string support: `[^"\n]` excludes newline (so an -# unterminated quote cannot swallow the rest of the file, the same failure -# the `${...}` bound prevents) and there is no backslash-escape handling, -# because GLM has no escape mechanism to honor. Values carrying a `"`, or -# both a newline and a `;`, therefore cannot round-trip -- writer.py -# refuses to emit those rather than corrupting them silently. -# 1. `[^\s{}$;]+` -- the fast common path for ordinary identifiers and values. -# It excludes `$` so it stops cleanly at the start of a substitution. -# 2. `\$\{[^}\s;]*\}` -- a `${VSOURCE}` substitution, kept as ONE token. -# Without this the braces lex as lbrace/rbrace, and that stray rbrace -# silently closes the enclosing block early, corrupting every attribute -# after it. The `\s;` exclusion bounds the match to one line: with a plain -# `[^}]*`, an unterminated `${` runs on until the next `}` ANYWHERE in the -# file -- swallowing a brace that closes an unrelated block. Measured on -# `object node {\n name ${A\n}\nobject other {...}`: the loose form -# silently drops `object other` entirely (1 object parsed instead of 2). -# 3. `\$` -- a bare dollar sign not starting a substitution. Without this -# branch nothing matches a lone `$` and finditer skips it silently, so -# `a$b` tokenizes as `a`,`b` and a value of just `$` vanishes entirely. -# -# Branch 0 must come first: quoted strings must be consumed WHOLE. Branch 1 must -# come before branches 2-3 since it is the hot path, and putting it early costs -# nothing on `$` positions while keeping ordinary scanning at full speed. A -# single per-character alternation `(?:\$\{[^}]*\}|[^\s{};])+` also works but -# costs ~25% throughput. - -# line comment (discarded) -# the (?set|define|include)\b | \b(?Pclock|module|object|class|schedule)\b | (?P\{) diff --git a/local-server/glmparser/parser.py b/local-server/glmparser/parser.py index 0051912e..bca999fd 100644 --- a/local-server/glmparser/parser.py +++ b/local-server/glmparser/parser.py @@ -1,4 +1,5 @@ import uuid + from .lexer import EOF, Lexer # A value stops at any of these; `rbrace` and EOF are tolerated so a final diff --git a/local-server/glmparser/writer.py b/local-server/glmparser/writer.py index 1108de82..ed8de685 100644 --- a/local-server/glmparser/writer.py +++ b/local-server/glmparser/writer.py @@ -1,23 +1,6 @@ _INDENT = "\t" def _unrepresentable(text): - """Return a reason if this value cannot survive a GLM round-trip, else None. - - Derived from measured behavior, not guessed. Three ways a value breaks: - - - It starts or ends with a quote character. `_value_to_semicolon` strips - leading/trailing `'` and `"` off every value, so those characters do not - come back. - - It needs quoting (contains `;` or a newline) but itself contains a `"`. - The lexer's quoted-string branch ends at the first inner `"`, so the - quoted form is mis-lexed. - - It contains both a `;` and a newline. The quoted-string branch excludes - newline (that bound is what stops an unterminated quote swallowing the - rest of the file), so no quoting strategy covers this. - - An interior `"` with no `;` or newline is fine: `3"x5` round-trips exactly. - Refusing it would make a model with an inch mark permanently un-exportable. - """ if text[:1] in ('"', "'") or text[-1:] in ('"', "'"): return "starts or ends with a quote character, which the reader strips" if ";" in text or "\n" in text: diff --git a/local-server/gridappsdhelper.py b/local-server/gridappsdhelper.py index 73b1128e..635c0b4a 100644 --- a/local-server/gridappsdhelper.py +++ b/local-server/gridappsdhelper.py @@ -1,11 +1,11 @@ -from collections import OrderedDict -import os import logging +import os import socket -import json import time +from collections import OrderedDict from collections.abc import Callable from enum import Enum + from gridappsd import GridAPPSD, topics os.environ.setdefault("GRIDAPPSD_ADDRESS", "localhost") @@ -233,7 +233,7 @@ def start_simulation(self, sim_config: dict) -> dict: if not self.sim_id: raise GridAPPSDError(f"No simulation ID in response: {response}") - + # get current limits for each model object for ps_conf in sim_config["power_system_configs"]: message = { @@ -247,7 +247,7 @@ def start_simulation(self, sim_config: dict) -> dict: res = self.gapps.get_response(topics.CONFIG, message, timeout=30) for current in res["data"]["limits"]["currents"]: self.current_limit_map[current["id"]] = current - + self.sim_state = SimulationState.RUNNING logger.info(f"Simulation started: {self.sim_id}") return {"simulation_id": self.sim_id, "state": self.sim_state.value} diff --git a/local-server/jobstore.py b/local-server/jobstore.py deleted file mode 100644 index 5c546b20..00000000 --- a/local-server/jobstore.py +++ /dev/null @@ -1,287 +0,0 @@ -from __future__ import annotations - -import gzip -import json -import os -import threading -import time -import uuid -from dataclasses import asdict, dataclass, field - -# Job lifecycle. A job is terminal once it is DONE or FAILED. -QUEUED = "queued" -RUNNING = "running" -DONE = "done" -FAILED = "failed" -TERMINAL = (DONE, FAILED) - -# How long a finished job and its result stay collectable, and how long an -# accepted-but-unstarted job may sit before it is presumed abandoned. -RESULT_TTL_SECONDS = int(os.environ.get("GLIMPSE_JOB_TTL", "3600")) -MAX_ATTEMPTS = int(os.environ.get("GLIMPSE_JOB_MAX_ATTEMPTS", "2")) -PARSE_QUEUE = os.environ.get("GLIMPSE_PARSE_QUEUE", "glimpse.parse") - - -@dataclass -class Job: - id: str - state: str = QUEUED - stage: str = "queued" - filename: str = "" - error: str | None = None - attempts: int = 0 - created_at: float = field(default_factory=time.time) - started_at: float | None = None - finished_at: float | None = None - - @property - def elapsed(self) -> float: - end = self.finished_at or time.time() - return end - (self.started_at or self.created_at) - - def to_public_dict(self) -> dict: - body = asdict(self) - body["elapsed"] = round(self.elapsed, 1) - return body - - -class JobStore: - """Interface shared by both backends.""" - - def submit(self, filename: str, payload: bytes) -> Job: - raise NotImplementedError - - def get(self, job_id: str) -> Job | None: - raise NotImplementedError - - def result(self, job_id: str) -> bytes | None: - """The finished payload, gzipped, or None.""" - raise NotImplementedError - - def begin(self, job_id: str) -> tuple[Job, bytes] | None: - raise NotImplementedError - - def set_stage(self, job_id: str, stage: str) -> None: - raise NotImplementedError - - def complete(self, job_id: str, body: dict) -> None: - raise NotImplementedError - - def fail(self, job_id: str, error: str) -> None: - raise NotImplementedError - - def queue_depth(self) -> int: - """Parse tasks published but not yet picked up. Drives load shedding.""" - raise NotImplementedError - - -def _encode_result(body: dict) -> bytes: - # Stored gzipped and served through untouched, so the result is compressed - # exactly once no matter how many times it is polled for. - return gzip.compress(json.dumps(body).encode("utf-8"), compresslevel=6) - - -class MemoryJobStore(JobStore): - """In-process store. No cross-replica visibility — dev and tests only.""" - - def __init__(self) -> None: - self._lock = threading.Lock() - self._jobs: dict[str, Job] = {} - self._uploads: dict[str, bytes] = {} - self._results: dict[str, bytes] = {} - - def submit(self, filename: str, payload: bytes) -> Job: - job = Job(id=uuid.uuid4().hex, filename=filename) - with self._lock: - self._jobs[job.id] = job - self._uploads[job.id] = payload - return job - - def get(self, job_id: str) -> Job | None: - with self._lock: - return self._jobs.get(job_id) - - def result(self, job_id: str) -> bytes | None: - with self._lock: - return self._results.get(job_id) - - def begin(self, job_id: str) -> tuple[Job, bytes] | None: - with self._lock: - job = self._jobs.get(job_id) - payload = self._uploads.get(job_id) - if job is None or payload is None: - return None - if job.attempts >= MAX_ATTEMPTS: - self._fail_locked(job, _exhausted_message(job)) - return None - job.attempts += 1 - job.state = RUNNING - job.stage = "parsing" - job.started_at = time.time() - return job, payload - - def set_stage(self, job_id: str, stage: str) -> None: - with self._lock: - if job_id in self._jobs: - self._jobs[job_id].stage = stage - - def complete(self, job_id: str, body: dict) -> None: - with self._lock: - job = self._jobs.get(job_id) - if job is None: - return - self._results[job_id] = _encode_result(body) - job.state = DONE - job.stage = "done" - job.finished_at = time.time() - self._uploads.pop(job_id, None) - - def fail(self, job_id: str, error: str) -> None: - with self._lock: - job = self._jobs.get(job_id) - if job is not None: - self._fail_locked(job, error) - - def _fail_locked(self, job: Job, error: str) -> None: - job.state = FAILED - job.stage = "failed" - job.error = error - job.finished_at = time.time() - self._uploads.pop(job.id, None) - - def queue_depth(self) -> int: - # Nothing is queued in this backend: with no broker, the task runs - # inline (Celery eager mode) or not at all. - return 0 - - -def _exhausted_message(job: Job) -> str: - return ( - f"Parsing {job.filename or 'this model'} failed after {job.attempts} " - "attempts — the worker did not survive it. The model may be too large " - "for the available memory." - ) - - -class RedisJobStore(JobStore): - def __init__(self, url: str, ttl: int = RESULT_TTL_SECONDS) -> None: - self._url = url - self._ttl = ttl - self._client = None - self._client_pid: int | None = None - - @property - def _redis(self): - pid = os.getpid() - if self._client is None or self._client_pid != pid: - import redis # imported here so the memory backend needs no redis-py - - self._client = redis.Redis.from_url( - self._url, - socket_timeout=30, - socket_connect_timeout=5, - socket_keepalive=True, - health_check_interval=30, - ) - self._client_pid = pid - return self._client - - # -- key helpers -------------------------------------------------------- - @staticmethod - def _job_key(job_id: str) -> str: - return f"glimpse:job:{job_id}" - - @staticmethod - def _upload_key(job_id: str) -> str: - return f"glimpse:upload:{job_id}" - - @staticmethod - def _result_key(job_id: str) -> str: - return f"glimpse:result:{job_id}" - - def _write(self, job: Job) -> None: - # Stored as a single JSON string rather than a hash: the record is small, - # always read whole, and this keeps None/float round-tripping exact. - self._redis.set(self._job_key(job.id), json.dumps(asdict(job)), ex=self._ttl) - - def _read(self, job_id: str) -> Job | None: - raw = self._redis.get(self._job_key(job_id)) - return Job(**json.loads(raw)) if raw else None - - # -- JobStore ----------------------------------------------------------- - def submit(self, filename: str, payload: bytes) -> Job: - job = Job(id=uuid.uuid4().hex, filename=filename) - pipe = self._redis.pipeline() - pipe.set(self._upload_key(job.id), payload, ex=self._ttl) - pipe.set(self._job_key(job.id), json.dumps(asdict(job)), ex=self._ttl) - pipe.execute() - return job - - def get(self, job_id: str) -> Job | None: - return self._read(job_id) - - def result(self, job_id: str) -> bytes | None: - return self._redis.get(self._result_key(job_id)) - - def begin(self, job_id: str) -> tuple[Job, bytes] | None: - job = self._read(job_id) - payload = self._redis.get(self._upload_key(job_id)) - if job is None or payload is None: - # The job expired between being queued and being run. - return None - - if job.attempts >= MAX_ATTEMPTS: - self.fail(job_id, _exhausted_message(job)) - return None - - job.attempts += 1 - job.state = RUNNING - job.stage = "parsing" - job.started_at = time.time() - self._write(job) - return job, payload - - def set_stage(self, job_id: str, stage: str) -> None: - job = self._read(job_id) - if job is None: - return - job.stage = stage - self._write(job) - - def complete(self, job_id: str, body: dict) -> None: - job = self._read(job_id) - if job is None: - return - job.state = DONE - job.stage = "done" - job.finished_at = time.time() - pipe = self._redis.pipeline() - pipe.set(self._result_key(job_id), _encode_result(body), ex=self._ttl) - pipe.set(self._job_key(job_id), json.dumps(asdict(job)), ex=self._ttl) - pipe.delete(self._upload_key(job_id)) - pipe.execute() - - def fail(self, job_id: str, error: str) -> None: - job = self._read(job_id) - if job is None: - return - job.state = FAILED - job.stage = "failed" - job.error = error - job.finished_at = time.time() - pipe = self._redis.pipeline() - pipe.set(self._job_key(job_id), json.dumps(asdict(job)), ex=self._ttl) - pipe.delete(self._upload_key(job_id)) - pipe.execute() - - def queue_depth(self) -> int: - try: - return int(self._redis.llen(PARSE_QUEUE)) - except Exception: # noqa: BLE001 - depth is advisory; never fail a request on it - return 0 - - -def build_job_store() -> JobStore: - """The store this process should use, chosen by GLIMPSE_REDIS_URL.""" - url = os.environ.get("GLIMPSE_REDIS_URL", "").strip() - return RedisJobStore(url) if url else MemoryJobStore() diff --git a/local-server/jsonhelper.py b/local-server/jsonhelper.py index aa565116..3f765f2c 100644 --- a/local-server/jsonhelper.py +++ b/local-server/jsonhelper.py @@ -1,7 +1,8 @@ -import jsonschema import json import os +import jsonschema + class JSONHelper: # Keys that identify a NetworkX node-link data dump. NetworkX emits the edge diff --git a/local-server/precompute_examples.py b/local-server/precompute_examples.py deleted file mode 100755 index 07048402..00000000 --- a/local-server/precompute_examples.py +++ /dev/null @@ -1,64 +0,0 @@ -#!/usr/bin/env python3 - -import gzip -import json -import os -import sys -import time - - -def precompute(example_ids=None) -> int: - # Imported here so --help works without the (heavy) cimgraph import chain. - import server - - target_dir = server.PRECOMPUTED_DIR - os.makedirs(target_dir, exist_ok=True) - - ids = example_ids or list(server.EXAMPLE_MODELS) - failures = 0 - - for example_id in ids: - entry = server.EXAMPLE_MODELS.get(example_id) - if entry is None: - print(f"[precompute] unknown example: {example_id}", file=sys.stderr) - failures += 1 - continue - - path = server._example_model_path(example_id) - if path is None: - # The model file isn't in this build; the example won't be offered. - print(f"[precompute] skip {example_id}: model file not present") - continue - - print(f"[precompute] {example_id}: parsing {os.path.basename(path)} ...", flush=True) - started = time.time() - try: - body = server.build_example_payload(entry, path) - except Exception as exc: # noqa: BLE001 - report and continue to the next model - print(f"[precompute] FAILED {example_id}: {exc}", file=sys.stderr) - failures += 1 - continue - - destination = os.path.join(target_dir, f"{example_id}.json.gz") - # mtime=0 so rebuilds of an unchanged model produce an identical file and - # don't invalidate the Docker layer cache. - raw = json.dumps(body).encode("utf-8") - with gzip.GzipFile(destination, "wb", compresslevel=6, mtime=0) as handle: - handle.write(raw) - - print( - f"[precompute] {example_id}: {time.time() - started:.1f}s " - f"{len(raw) / 1024 / 1024:.2f} MB raw -> " - f"{os.path.getsize(destination) / 1024 / 1024:.2f} MB gz {destination}", - flush=True, - ) - - return failures - - -if __name__ == "__main__": - args = [a for a in sys.argv[1:] if not a.startswith("-")] - if "-h" in sys.argv or "--help" in sys.argv: - print(__doc__) - raise SystemExit(0) - raise SystemExit(1 if precompute(args or None) else 0) diff --git a/local-server/pyproject.toml b/local-server/pyproject.toml index c187ff15..3fc6f63a 100644 --- a/local-server/pyproject.toml +++ b/local-server/pyproject.toml @@ -20,9 +20,7 @@ dependencies = [ ] [dependency-groups] -# celery is a hosted-only runtime dependency (see requirements-hosted.txt), but -# the parse-job tests exercise the task module, so it belongs in the dev group. -dev = ["pytest>=8.0", "celery[redis]>=5.4"] +dev = ["pytest>=8.0"] [tool.pytest.ini_options] pythonpath = ["."] \ No newline at end of file diff --git a/local-server/requirements-hosted.txt b/local-server/requirements-hosted.txt deleted file mode 100644 index 3d2e8c06..00000000 --- a/local-server/requirements-hosted.txt +++ /dev/null @@ -1,12 +0,0 @@ -Flask -flask-cors -cim-graph -jsonschema -requests -wheel -setuptools - -# Hosted-only -gunicorn # WSGI server; no Socket.IO means no single-worker constraint -celery[redis] # parse queue and worker fleet (see tasks.py) -redis # job records, uploads, and results (see jobstore.py) diff --git a/local-server/schemas/json_upload.schema.json b/local-server/schemas/json_upload.schema.json index 5ab53014..6d1ad187 100644 --- a/local-server/schemas/json_upload.schema.json +++ b/local-server/schemas/json_upload.schema.json @@ -1,27 +1,27 @@ { - "$schema": "http://json-schema.org/draft-07/schema#", - "title": "JSON schema for validating json uploads", - "type": "object", - "properties": { - "objects": { - "type": "array", - "items": { - "type": "object", - "patternProperties": { - "name|objectType": { "type": "string" }, - "^elementType$": { "type": "string" }, - "^attributes$": { - "type": "object", - "patternProperties": { - "name|id": { "type": "string" } - }, - "additionalProperties": true - } - }, - "additionalProperties": false - } - } - }, - "required": ["objects"], - "additionalProperties": false + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "JSON schema for validating json uploads", + "type": "object", + "properties": { + "objects": { + "type": "array", + "items": { + "type": "object", + "patternProperties": { + "name|objectType": { "type": "string" }, + "^elementType$": { "type": "string" }, + "^attributes$": { + "type": "object", + "patternProperties": { + "name|id": { "type": "string" } + }, + "additionalProperties": true + } + }, + "additionalProperties": false + } + } + }, + "required": ["objects"], + "additionalProperties": false } diff --git a/local-server/schemas/theme_upload.schema.json b/local-server/schemas/theme_upload.schema.json index c0ab080f..99ab4084 100644 --- a/local-server/schemas/theme_upload.schema.json +++ b/local-server/schemas/theme_upload.schema.json @@ -1,13 +1,13 @@ { - "$schema": "http://json-schema.org/draft-07/schema#", - "title": "JSON schema for validating theme file uploads", - "type": "object", - "properties": { - "groups": { - "type": "object" - }, - "edgeOptions": { - "type": "object" - } - } + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "JSON schema for validating theme file uploads", + "type": "object", + "properties": { + "groups": { + "type": "object" + }, + "edgeOptions": { + "type": "object" + } + } } diff --git a/local-server/server.py b/local-server/server.py index c5d78d23..5dcd1867 100755 --- a/local-server/server.py +++ b/local-server/server.py @@ -1,29 +1,24 @@ -import os +import hmac import json +import os +import shutil import tempfile import traceback -import hmac -import threading -import shutil -import jobstore -from flask import Flask, request, jsonify, send_file -from werkzeug.exceptions import HTTPException + +import gevent +from flask import Flask, jsonify, request, send_file from flask_cors import CORS +from flask_socketio import SocketIO +from gevent.lock import BoundedSemaphore +from werkzeug.exceptions import HTTPException from werkzeug.utils import secure_filename + +import agenthelper from cimhelper import CIMHelper from glmhelper import GLMHelper +from gridappsdhelper import GridAPPSDHelper from jsonhelper import JSONHelper -HOSTED_MODE = os.environ.get("GLIMPSE_MODE", "desktop").strip().lower() == "hosted" - -if not HOSTED_MODE: - import gevent - from gevent.lock import BoundedSemaphore - from flask_socketio import SocketIO - - import agenthelper - from gridappsdhelper import GridAPPSDHelper - # ================================================================================================ # HELPERS # ================================================================================================ @@ -31,64 +26,26 @@ json_helper = JSONHelper() glm_helper = GLMHelper() cim_helper = CIMHelper() -gridappsd_helper = GridAPPSDHelper() if not HOSTED_MODE else None -cim_load_lock = threading.Lock() if HOSTED_MODE else BoundedSemaphore(1) +gridappsd_helper = GridAPPSDHelper() +cim_load_lock = BoundedSemaphore(1) def run_cim_parse(fn, **kwargs): with cim_load_lock: try: - if HOSTED_MODE: - result = fn(**kwargs) - else: - result = gevent.get_hub().threadpool.apply(fn, kwds=kwargs) + result = gevent.get_hub().threadpool.apply(fn, kwds=kwargs) except Exception: - # A parse that raised leaves the helper half-populated: hosted mode - # would keep a model resident it promises not to hold, and desktop - # mode would answer later requests from the *previous* model's - # measurement map. Clear it either way before propagating. + # A failed parse leaves the helper half-populated, so later requests + # would answer from the previous model's measurement map. cim_helper.release() raise - if HOSTED_MODE: - # Inside the lock: dropping it first lets this wipe state that the - # next thread has already started filling. - cim_helper.release() return result -job_store = jobstore.build_job_store() -ASYNC_UPLOADS = HOSTED_MODE and not isinstance(job_store, jobstore.MemoryJobStore) - -if ASYNC_UPLOADS: - # Imported only on the path that dispatches parses, so the desktop build - # never needs celery installed — it isn't in requirements.txt. - from tasks import parse_cim - -# Load shedding. Every queued job holds its uploaded bytes in Redis until a -# worker finishes with it, so this depth is a Redis memory budget as much as a -# wait-time one: the worst case is roughly GLIMPSE_MAX_QUEUE_DEPTH x -# MAX_UPLOAD_MB of uploads resident at once, and Redis runs noeviction so that -# it refuses writes rather than quietly dropping someone's job. Refusing early -# with a 429 the client can act on is a much better failure than accepting an -# upload Redis will then reject. -MAX_QUEUE_DEPTH = int(os.environ.get("GLIMPSE_MAX_QUEUE_DEPTH", "24")) - # agents-update is keyed by a model id the caller chooses, so the cache is # capped rather than left to grow for the life of the process. MAX_CACHED_AGENT_ROSTERS = 32 -def desktop_route(rule, **options): - if HOSTED_MODE: - return lambda fn: fn - return app.route(rule, **options) - - -def desktop_socket_event(event): - """socketio.on(), skipped entirely in hosted mode (no Socket.IO there).""" - if HOSTED_MODE: - return lambda fn: fn - return socketio.on(event) - # ================================================================================================ # FLASK APP SETUP # ================================================================================================ @@ -127,13 +84,11 @@ def desktop_socket_event(event): allow_headers=allowed_headers, supports_credentials=allow_credentials, ) -socketio = ( - SocketIO(app, async_mode="gevent", cors_allowed_origins=cors_origins, allow_upgrades=True) - if not HOSTED_MODE - else None +socketio = SocketIO( + app, async_mode="gevent", cors_allowed_origins=cors_origins, allow_upgrades=True ) -_hub = gevent.get_hub() if not HOSTED_MODE else None +_hub = gevent.get_hub() def emit_threadsafe(event: str, payload): """socketio.emit() from a non-greenlet thread. See _hub above.""" @@ -145,18 +100,6 @@ def emit_threadsafe(event: str, payload): "yes", ) -def gzipped_json_response(payload: bytes): - if "gzip" not in request.accept_encodings: - import gzip as _gzip - - return app.response_class(_gzip.decompress(payload), mimetype="application/json") - - response = app.response_class(payload, mimetype="application/json") - response.headers["Content-Encoding"] = "gzip" - response.headers["Content-Length"] = str(len(payload)) - response.headers["Vary"] = "Accept-Encoding" - return response - def error_body(exc, tb, message=None, extra=None): """Build an error response body. Always logs the traceback server-side, but only exposes it to the client when EXPOSE_TRACEBACKS is set.""" @@ -190,12 +133,11 @@ def _unhandled_error(exc): return error_body(exc, traceback.format_exc(), message=f"Server error: {exc}"), 500 -if not HOSTED_MODE: - # Without this an exception inside a socket handler returns nothing at all — - # the caller's ack callback simply never fires and the script hangs. - @socketio.on_error_default - def _socket_error(exc): - return error_body(exc, traceback.format_exc()) +# Without this an exception inside a socket handler returns nothing at all — +# the caller's ack callback simply never fires and the script hangs. +@socketio.on_error_default +def _socket_error(exc): + return error_body(exc, traceback.format_exc()) EXPORT_BASE_DIR = os.path.abspath( @@ -244,7 +186,7 @@ def _require_api_token(): return jsonify({"error": "Unauthorized"}), 401 return None -@desktop_socket_event("connect") +@socketio.on("connect") def _authenticate_socket(auth=None): if not API_TOKEN: return True @@ -302,22 +244,8 @@ def _example_model_path(example_id): return path if os.path.isfile(path) else None -# --------------------------------------------------------------------------- -# Precomputed example payloads -# --------------------------------------------------------------------------- -PRECOMPUTED_DIR = os.path.abspath( - os.environ.get("GLIMPSE_PRECOMPUTED_DIR", "").strip() - or os.path.join(MODELS_DIR or os.path.dirname(os.path.abspath(__file__)), "precomputed") -) - -def _precomputed_path(example_id): - # Path to an example's prebuilt payload (gzipped JSON), or None. - candidate = os.path.join(PRECOMPUTED_DIR, f"{example_id}.json.gz") - return candidate if os.path.isfile(candidate) else None - - def _example_available(example_id) -> bool: - return bool(_precomputed_path(example_id) or _example_model_path(example_id)) + return _example_model_path(example_id) is not None def build_example_payload(entry, path): @@ -365,11 +293,6 @@ def load_example(): if entry is None or not _example_available(example_id): return jsonify({"error": f"Unknown or unavailable example model: {example_id}"}), 404 - prebuilt = _precomputed_path(example_id) - if prebuilt: - with open(prebuilt, "rb") as handle: - return gzipped_json_response(handle.read()) - path = _example_model_path(example_id) try: return jsonify(build_example_payload(entry, path)) @@ -384,7 +307,7 @@ def load_example(): # ================================================================================================ -@desktop_route("/api/cim/objects", methods=["POST"]) +@app.route("/api/cim/objects", methods=["POST"]) def get_object(): try: if not request.is_json: @@ -409,7 +332,7 @@ def get_object(): return jsonify(error_body(e, tb)), 500 -@desktop_route("/api/cim/objects", methods=["DELETE"]) +@app.route("/api/cim/objects", methods=["DELETE"]) def delete_object(): try: if not request.is_json: @@ -445,7 +368,7 @@ def delete_object(): return jsonify(error_body(e, tb)), 500 -@desktop_route("/api/cim/objects/mermaid", methods=["POST"]) +@app.route("/api/cim/objects/mermaid", methods=["POST"]) def get_object_mermaid(): try: if not request.is_json: @@ -630,36 +553,6 @@ def export_glm(): # ================================================================================================ -def enqueue_parse(path): - """Store an upload and hand it to a worker. None if it could not be taken. - - The job record and the uploaded bytes are written before the task is - published, so a worker can never be handed an id whose record does not exist - yet. If publishing then fails, the job is marked failed rather than left - sitting at "queued" with no worker ever coming for it. - """ - with open(path, "rb") as handle: - payload = handle.read() - - try: - job = job_store.submit(os.path.basename(path), payload) - except Exception as exc: # noqa: BLE001 - realistically Redis refusing a write - print(f"[upload] could not store upload: {exc}") - return None - - try: - # The task carries only the id; the bytes stay in Redis under the job, so - # a 56 MB model is never copied into a broker message. Reusing the job id - # as the task id keeps the two addressable as one thing. - parse_cim.apply_async(args=[job.id], task_id=job.id) - except Exception as exc: # noqa: BLE001 - broker unreachable - job_store.fail(job.id, "The server could not queue this model for parsing.") - print(f"[upload] could not publish parse task for {job.id}: {exc}") - return None - - return job - - @app.route("/api/upload/cim", methods=["POST"]) def cim_to_glimpse(): # Validate presence of 'files' in form-data @@ -685,65 +578,21 @@ def cim_to_glimpse(): if not paths: return {"error": "No valid files received."}, 400 - if ASYNC_UPLOADS: - # A large CIM parse outlives any sane HTTP timeout, so don't try to - # answer on this request. Hand the bytes to a worker and return a - # job the client can poll — from any replica, since the job lives in - # the shared store rather than in this process. - if len(paths) > 1: - return {"error": "Upload one CIM file at a time."}, 400 - - depth = job_store.queue_depth() - if depth >= MAX_QUEUE_DEPTH: - # Retry-After is an estimate, not a promise: it assumes the - # queue drains at roughly the rate the bundled models parse at. - return ( - { - "error": "The parse queue is full. Please try again shortly.", - "queueDepth": depth, - }, - 429, - {"Retry-After": str(min(300, max(10, depth * 10)))}, - ) - - job = enqueue_parse(paths[0]) - if job is None: - return { - "error": "The server is at capacity and could not accept this " - "upload. Please try again shortly." - }, 503 - - return ( - { - "jobId": job.id, - "state": job.state, - "statusUrl": f"/api/jobs/{job.id}", - "resultUrl": f"/api/jobs/{job.id}/result", - "queueDepth": depth, - }, - 202, - ) - - # See run_cim_parse: serialized per process, and in hosted mode the - # parsed graphs are released as soon as the details are extracted. + # See run_cim_parse: serialized per process. glimpse_structure_data, object_details = run_cim_parse( cim_helper.cim_to_gjs, filepaths=paths ) - if HOSTED_MODE and cim_helper.count_objects(glimpse_structure_data) == 0: - # See worker.run_job: an unreadable model parses to an empty graph - # rather than raising, which would otherwise read as a successful - # upload of a model with nothing in it. + if cim_helper.count_objects(glimpse_structure_data) == 0: + # An unreadable model parses to an empty graph rather than raising, + # which would otherwise load a blank canvas with no explanation. return { "error": "No CIM objects could be read from the uploaded file(s). " "Check that they are valid CIM XML models." }, 400 - # `objectDetails` is what makes this response self-contained: the client - # gets every object's attributes and associations up front instead of - # calling back to /api/cim/objects against a server that would have to - # still be holding this exact model. Wrapped in the same - # { data, themeData } envelope the other upload endpoints use. + # Drawn objects ship their attributes and associations up front; objects + # the model only points at are fetched from /api/cim/objects. return { "data": glimpse_structure_data, "themeData": None, @@ -760,7 +609,7 @@ def cim_to_glimpse(): shutil.rmtree(tmpdir, ignore_errors=True) -@desktop_route("/api/export/export-cim", methods=["POST"]) +@app.route("/api/export/export-cim", methods=["POST"]) def export_cim_file(): # CIM structural export (adding / rewiring objects and writing a new XML) is # unfinished: cim_helper.export_cim and its cimbuilder dependencies are still @@ -771,7 +620,7 @@ def export_cim_file(): return jsonify({"error": "CIM structural export is not implemented yet."}), 501 -@desktop_route("/api/export/export-cim-coordinates", methods=["POST"]) +@app.route("/api/export/export-cim-coordinates", methods=["POST"]) def export_cim_coordinates(): cim_data = request.get_json() if not cim_data: @@ -794,7 +643,7 @@ def export_cim_coordinates(): return "", 204 -@desktop_route("/api/cim/measurements", methods=["GET"]) +@app.route("/api/cim/measurements", methods=["GET"]) def get_cim_measurements(): # Expose the measurement map built at CIM model-load time so the frontend plot # creator can list device measurements before a simulation starts. Returns an @@ -810,7 +659,7 @@ def get_cim_measurements(): # ================================================================================================ # GridAPPS-D INTERACTION ENDPOINTS # ================================================================================================ -@desktop_route("/api/gridappsd/models", methods=["POST"]) +@app.route("/api/gridappsd/models", methods=["POST"]) def get_models(): req_data = request.get_json() @@ -862,7 +711,7 @@ def load_models(): return error_body(e, tb), 500 -@desktop_route("/api/gridappsd/agents", methods=["GET"]) +@app.route("/api/gridappsd/agents", methods=["GET"]) def get_agents(): model_id = request.args.get("model") or "" source = request.args.get("source") or "derived" @@ -894,7 +743,7 @@ def get_agents(): return jsonify(error_body(e, tb)), 500 -@desktop_route("/api/gridappsd/model-info", methods=["GET"]) +@app.route("/api/gridappsd/model-info", methods=["GET"]) def get_gridappsd_models(): try: if not gridappsd_helper.is_connected(): @@ -908,7 +757,7 @@ def get_gridappsd_models(): return error_body(e, tb), 503 -@desktop_route("/api/gridappsd/status", methods=["GET"]) +@app.route("/api/gridappsd/status", methods=["GET"]) def get_gridappsd_status(): try: # Non-destructive: try_connect() tears down the live connection (and with @@ -952,7 +801,7 @@ def get_gridappsd_status(): # ================================================================================================ # GLIMPSE WEBSOCKET EVENTS # ================================================================================================ -@desktop_socket_event("load-graph") +@socketio.on("load-graph") def load_graph(data): try: # Accept GLIMPSE objects format or NetworkX node-link data and normalize @@ -971,7 +820,7 @@ def load_graph(data): return error_body(e, tb) -@desktop_socket_event("update") +@socketio.on("update") def update_data(data): # Update node/edge color, size, and/or hidden state on the connected frontends. try: @@ -1007,7 +856,7 @@ def update_data(data): return error_body(e, tb) -@desktop_socket_event("add-node") +@socketio.on("add-node") def add_node(new_node_data): if not isinstance(new_node_data, dict) or "attributes" not in new_node_data: return {"error": "add-node requires an object with an 'attributes' key."} @@ -1015,7 +864,7 @@ def add_node(new_node_data): return {"status": "ok"} -@desktop_socket_event("add-edge") +@socketio.on("add-edge") def add_edge(new_edge_data): if not isinstance(new_edge_data, dict) or "attributes" not in new_edge_data: return {"error": "add-edge requires an object with an 'attributes' key."} @@ -1023,7 +872,7 @@ def add_edge(new_edge_data): return {"status": "ok"} -@desktop_socket_event("delete-node") +@socketio.on("delete-node") def delete_node(node_id): if not node_id: return {"error": "delete-node requires a node id."} @@ -1031,7 +880,7 @@ def delete_node(node_id): return {"status": "ok"} -@desktop_socket_event("delete-edge") +@socketio.on("delete-edge") def delete_edge(edge_id): if not edge_id: return {"error": "delete-edge requires an edge id."} @@ -1039,7 +888,7 @@ def delete_edge(edge_id): return {"status": "ok"} -@desktop_socket_event("agents-update") +@socketio.on("agents-update") def agents_update(payload): if not isinstance(payload, dict) or not isinstance(payload.get("agents"), list): return {"error": "agents-update requires an object with an 'agents' list."} @@ -1063,7 +912,7 @@ def agents_update(payload): # ─── SocketIO Event Handlers ────────────────────────────────────── -@desktop_socket_event("start-simulation") +@socketio.on("start-simulation") def handle_start_simulation(config): try: result = gridappsd_helper.start_simulation(config) @@ -1109,7 +958,7 @@ def on_sim_output(headers, message: dict): sim_output["Analog"].append(measurment_output) - + if measurment_mRID in active_measurement_map["Discrete"]: mapping = active_measurement_map["Discrete"].get(measurment_mRID) @@ -1136,7 +985,7 @@ def on_sim_output(headers, message: dict): measurment_output["normal_limit"] = normal_limit sim_output["Discrete"].append(measurment_output) - + emit_threadsafe("sim-output", sim_output) def on_sim_log(headers, message): @@ -1154,7 +1003,7 @@ def on_sim_log(headers, message): return {"error": {"message": str(e)}} -@desktop_socket_event("sim-input") +@socketio.on("sim-input") def handle_sim_input(input_data): try: gridappsd_helper.send_simulation_input(input_data) @@ -1163,7 +1012,7 @@ def handle_sim_input(input_data): return {"error": str(e)} -@desktop_socket_event("pause-simulation") +@socketio.on("pause-simulation") def handle_pause_simulation(sim_id): try: return gridappsd_helper.pause_simulation(sim_id) @@ -1171,7 +1020,7 @@ def handle_pause_simulation(sim_id): return {"error": str(e)} -@desktop_socket_event("resume-simulation") +@socketio.on("resume-simulation") def handle_resume_simulation(sim_id): try: return gridappsd_helper.resume_simulation(sim_id) @@ -1179,7 +1028,7 @@ def handle_resume_simulation(sim_id): return {"error": str(e)} -@desktop_socket_event("stop-simulation") +@socketio.on("stop-simulation") def handle_stop_simulation(sim_id): try: return gridappsd_helper.stop_simulation(sim_id) @@ -1187,60 +1036,6 @@ def handle_stop_simulation(sim_id): return {"error": str(e)} -# ================================================================================================ -# PARSE JOB ENDPOINTS -# ================================================================================================ -# Only registered when a shared job store is configured; otherwise uploads are -# synchronous and there is nothing to poll. - - -def job_route(rule, **options): - if not ASYNC_UPLOADS: - return lambda fn: fn - return app.route(rule, **options) - - -@job_route("/api/jobs/", methods=["GET"]) -def get_job(job_id): - """Poll a parse job. Any replica can answer for any job.""" - job = job_store.get(job_id) - if job is None: - # Also what an expired job looks like — jobs are TTL'd, not kept forever. - return jsonify({"error": "Unknown or expired job."}), 404 - - body = job.to_public_dict() - - # How much work is waiting, so a queued user gets a reason for the wait - # rather than an indefinite spinner. Deliberately the current depth and - # not this job's position: position would mean walking the queue on - # every poll, and under the load this is here to survive that cost is - # paid by every waiting client at once. - if job.state == jobstore.QUEUED: - body["queueDepth"] = job_store.queue_depth() - return jsonify(body), 200 - - -@job_route("/api/jobs//result", methods=["GET"]) -def get_job_result(job_id): - """The finished payload, in the same shape a synchronous upload returns.""" - job = job_store.get(job_id) - if job is None: - return jsonify({"error": "Unknown or expired job."}), 404 - if job.state == jobstore.FAILED: - return jsonify({"error": job.error or "Parse failed."}), 500 - - # 409 rather than 404: the job exists, it just isn't finished. Lets the - # client tell "not yet" apart from "never was". - if job.state != jobstore.DONE: - return jsonify({"error": "Job is not finished.", "state": job.state}), 409 - - payload = job_store.result(job_id) - if payload is None: - return jsonify({"error": "Result expired."}), 410 - - return gzipped_json_response(payload) - - # ================================================================================================ # HEALTH CHECK AND BASIC ENDPOINTS # ================================================================================================ @@ -1248,25 +1043,12 @@ def get_job_result(job_id): @app.route("/") def hello(): - """Basic API information endpoint (also the container/LB health check).""" - body = { + """Basic API information endpoint (also the container health check).""" + return { "api": "GLIMPSE CIM-Graph Flask Backend", "version": "0.8.6", - "mode": "hosted" if HOSTED_MODE else "desktop", - "features": { - "mermaid": not HOSTED_MODE, - "gridappsd": not HOSTED_MODE, - "simulation": not HOSTED_MODE, - "asyncUploads": ASYNC_UPLOADS, - }, } - # Surfaced for the load balancer's operators and for autoscaling: a depth - # that stays near maxDepth means the worker tier is undersized. - if ASYNC_UPLOADS: - body["queue"] = {"depth": job_store.queue_depth(), "maxDepth": MAX_QUEUE_DEPTH} - return body - # ================================================================================================ # MAIN APPLICATION ENTRY POINT @@ -1276,15 +1058,10 @@ def hello(): port = int(os.environ.get("FLASK_PORT", 5052)) # Bind to loopback for local dev; containers set FLASK_HOST=0.0.0.0 host = os.environ.get("FLASK_HOST", "127.0.0.1") - if HOSTED_MODE: - # Convenience only. The hosted deployment runs `gunicorn server:app` - # with several worker processes — see docker/ — and never reaches here. - app.run(host=host, port=port, debug=False) - else: - socketio.run( - app, - host=host, - port=port, - debug=False, - log_output=True, - ) + socketio.run( + app, + host=host, + port=port, + debug=False, + log_output=True, + ) diff --git a/local-server/server.spec b/local-server/server.spec index f72ee514..bcc37a83 100755 --- a/local-server/server.spec +++ b/local-server/server.spec @@ -1,7 +1,7 @@ -# -*- mode: python ; coding: utf-8 -*- +import sys from PyInstaller.utils.hooks import collect_data_files -import sys + sys.setrecursionlimit(sys.getrecursionlimit() * 5) datas = [] diff --git a/local-server/tasks.py b/local-server/tasks.py deleted file mode 100644 index 0165f001..00000000 --- a/local-server/tasks.py +++ /dev/null @@ -1,186 +0,0 @@ -"""Celery app and the CIM parse task. - -The parse runs here, in its own fleet of worker processes, rather than in the -web tier: a CIM parse is seconds to minutes of pure CPU and peaks near 600 MB of -RSS for the largest bundled model. Keeping it out of the web workers means a -slow parse cannot starve health checks or fast requests, and a rolling deploy of -the web tier cannot kill a parse in flight. - -Celery owns dispatch and redelivery. Everything the client actually reads — the -job record it polls and the finished payload it collects — lives in jobstore, on -the same Redis, so any web replica can answer for any job. - -Run the workers with: - - celery -A tasks worker --queues glimpse.parse --concurrency 1 -""" - -from __future__ import annotations - -import os -import tempfile -import time -import traceback - -from celery import Celery -from werkzeug.utils import secure_filename - -import jobstore - -# Imported at module scope, in the worker parent, on purpose. The prefork pool -# forks its children from this process, so importing the (heavy) parse stack -# here means every child inherits it copy-on-write. Deferring it into the task -# would make each child import cimgraph itself, which with -# worker_max_tasks_per_child=1 would be several seconds added to every job. -import cimhelper - -# The worker never serves HTTP, but it must parse the way the hosted server -# does — no Socket.IO, no GridAPPS-D, helpers released after every parse. -os.environ.setdefault("GLIMPSE_MODE", "hosted") - -BROKER_URL = os.environ.get("GLIMPSE_REDIS_URL", "").strip() - -# Hard ceiling on a single parse. IEEE 9500 (56 MB, ~13,600 objects) parses in -# about 8 s in this image, so 15 minutes is ~110x headroom; the limit exists to -# stop one pathological upload from occupying a worker forever. The soft limit -# fires first and raises inside the task, which lets it record a real error on -# the job instead of the worker being killed and the client polling a job stuck -# at "parsing" until its TTL. -# -# Keep this as low as your largest realistic model allows. It sets the floor for -# the visibility timeout below, which in turn bounds how long a job waits after -# an ungraceful loss of the whole worker container. -PARSE_TIME_LIMIT = int(os.environ.get("GLIMPSE_PARSE_TIME_LIMIT", "900")) -PARSE_SOFT_TIME_LIMIT = int(os.environ.get("GLIMPSE_PARSE_SOFT_TIME_LIMIT", str(PARSE_TIME_LIMIT - 60))) - -# Redis has no real ack: kombu re-queues a task whose worker has not finished -# within the visibility timeout. If that were shorter than the time limit, a -# long-but-healthy parse would be handed to a second worker while the first was -# still running it — two workers, 600 MB each, on the same job. Keeping it above -# the hard limit means redelivery only ever happens after the first attempt is -# genuinely over. -# -# It is also the recovery time for the one failure the pool cannot see: the -# whole container disappearing at once (instance loss, spot reclaim, `docker -# kill`). A lost *child* — what an OOM kill actually produces — is caught by the -# pool and redelivered in seconds; a lost parent leaves the message parked in -# the broker's unacked set until this expires. Deploys don't hit either path, -# because a warm shutdown finishes the task first. -VISIBILITY_TIMEOUT = int(os.environ.get("GLIMPSE_VISIBILITY_TIMEOUT", str(PARSE_TIME_LIMIT + 300))) - -celery_app = Celery("glimpse", broker=BROKER_URL or None) - -celery_app.conf.update( - task_default_queue=jobstore.PARSE_QUEUE, - task_routes={"tasks.parse_cim": {"queue": jobstore.PARSE_QUEUE}}, - # No result backend on purpose. A parsed 9500 is ~27 MB of JSON, and it is - # already stored — gzipped, once — by jobstore. Letting Celery keep its own - # copy of every return value would double the Redis footprint that this - # deployment is sized around for nothing: the client polls /api/jobs/, - # never Celery. - task_ignore_result=True, - # The reliability pair. acks_late holds the ack until the task finishes, so a - # worker that is OOM-killed or replaced mid-parse has its task redelivered - # rather than dropped; reject_on_worker_lost is what makes that also apply to - # a hard kill, which no exception handler can catch. jobstore.MAX_ATTEMPTS - # bounds the resulting redelivery so a model that reliably kills its worker - # cannot take down the whole fleet in sequence. - task_acks_late=True, - task_reject_on_worker_lost=True, - # A parse occupies its worker for the whole task, so prefetching a second one - # would leave it queued behind a job of unknown length while another worker - # sat idle. One at a time is what makes the queue depth mean anything. - worker_prefetch_multiplier=1, - task_time_limit=PARSE_TIME_LIMIT, - task_soft_time_limit=PARSE_SOFT_TIME_LIMIT, - broker_transport_options={"visibility_timeout": VISIBILITY_TIMEOUT}, - broker_connection_retry_on_startup=True, - # Recycle the child process after every parse. cimgraph's object graph is - # large and the allocator does not reliably return it to the OS, so RSS - # ratchets upward across parses in a long-lived process — which on a 2 GB - # worker ends as an OOM kill several jobs in. The replacement is forked from - # the parent, which imported the parse stack above, so this costs a fork - # rather than a cold start. - worker_max_tasks_per_child=int(os.environ.get("GLIMPSE_WORKER_MAX_TASKS", "1")), - worker_send_task_events=True, - task_send_sent_event=True, -) - - -def run_parse(store: jobstore.JobStore, job: jobstore.Job, payload: bytes) -> None: - """Parse one uploaded model into the store. Never raises. - - Split out from the task so it can be tested directly, without a broker. - """ - from celery.exceptions import SoftTimeLimitExceeded - - # A fresh helper per job: nothing carries over from the previous parse, and - # the whole object graph becomes collectable the moment this returns. - helper = cimhelper.CIMHelper() - tmpdir = tempfile.mkdtemp(prefix="glimpse_job_") - try: - filename = secure_filename(job.filename) or "model.xml" - path = os.path.join(tmpdir, filename) - with open(path, "wb") as handle: - handle.write(payload) - - started = time.time() - print( - f"[parse] {job.id}: parsing {filename} " - f"({len(payload) / 1024 / 1024:.1f} MB, attempt {job.attempts})", - flush=True, - ) - - data, object_details = helper.cim_to_gjs(filepaths=[path]) - - if helper.count_objects(data) == 0: - # cimgraph logged and returned an empty graph instead of raising. - # Reporting success here would load a blank canvas with no - # explanation of what went wrong. - store.fail( - job.id, - f"No CIM objects could be read from {filename}. " - "Check that it is a valid CIM XML model.", - ) - print(f"[parse] {job.id}: parsed to an empty graph; failing", flush=True) - return - - store.set_stage(job.id, "serializing") - store.complete( - job.id, - {"data": data, "themeData": None, "objectDetails": object_details, "isCIM": True}, - ) - print(f"[parse] {job.id}: done in {time.time() - started:.1f}s", flush=True) - except SoftTimeLimitExceeded: - store.fail(job.id, f"Parsing took longer than {PARSE_SOFT_TIME_LIMIT}s and was stopped.") - print(f"[parse] {job.id}: exceeded the soft time limit", flush=True) - except Exception as exc: # noqa: BLE001 - a bad upload must not kill the worker - traceback.print_exc() - store.fail(job.id, str(exc)) - finally: - import shutil - - shutil.rmtree(tmpdir, ignore_errors=True) - - -@celery_app.task(name="tasks.parse_cim") -def parse_cim(job_id: str) -> None: - """Parse the upload behind `job_id`. Failures are reported on the job. - - The task takes only an id: the uploaded bytes stay in Redis under the job, - so a 56 MB model is never carried around inside a broker message. - - Deliberately no automatic retry. A parse failure here is deterministic — a - malformed or unsupported model fails identically every time — so retrying - would burn minutes of CPU and hundreds of MB to reach the same answer more - slowly. The failures worth re-running are the ones that kill the process - outright, and acks_late already redelivers those. - """ - store = jobstore.build_job_store() - started = store.begin(job_id) - if started is None: - # Expired, already terminal, or out of attempts — begin() has recorded - # whichever it was. Nothing to run. - print(f"[parse] {job_id}: nothing to run", flush=True) - return - run_parse(store, *started) diff --git a/scripts/verify-hosted-stack.sh b/scripts/verify-hosted-stack.sh deleted file mode 100755 index 753edc4a..00000000 --- a/scripts/verify-hosted-stack.sh +++ /dev/null @@ -1,167 +0,0 @@ -#!/usr/bin/env bash -# Verify a running GLIMPSE hosted stack behaves the way EC2 will. -# -# docker compose -f docker-compose.prod.yml up --build -d --scale backend=3 -# ./scripts/verify-hosted-stack.sh -# -# The interesting checks are the ones a single-replica smoke test cannot make: -# that no request depends on reaching the replica that handled the previous one. -set -uo pipefail - -command -v python3 >/dev/null || { echo "This script needs python3."; exit 2; } - -# Small stand-in for jq so the script has no dependency beyond python3. -# jsonq reads JSON on stdin, prints the expression, "" on any error. -# `d` is the parsed document. -jsonq() { - python3 -c ' -import json, sys -try: - d = json.load(sys.stdin) - v = eval(sys.argv[1], {"d": d}) - if isinstance(v, bool): print(str(v).lower()) - elif isinstance(v, (list, tuple)): print(" ".join(str(x) for x in v)) - elif v is None: print("") - else: print(v) -except Exception: - print("") -' "$1" -} - -BASE="${GLIMPSE_BASE_URL:-https://localhost:8443}" -CURL=(curl -sS --insecure) # --insecure: local certs are self-signed -PASS=0; FAIL=0 - -ok() { printf ' \033[32mPASS\033[0m %s\n' "$1"; PASS=$((PASS+1)); } -bad() { printf ' \033[31mFAIL\033[0m %s\n' "$1"; FAIL=$((FAIL+1)); } -note() { printf '\n\033[1m%s\033[0m\n' "$1"; } - -note "1. Reachability and mode" -health=$("${CURL[@]}" "$BASE/healthz" || echo '{}') -[[ $(jsonq 'd["mode"]' <<<"$health") == hosted ]] \ - && ok "backend reports hosted mode" || bad "expected hosted mode, got: $health" -[[ $(jsonq 'd["features"]["mermaid"]' <<<"$health") == false ]] \ - && ok "mermaid is off (desktop-only feature)" || bad "mermaid should be disabled" -[[ $(jsonq 'd["features"]["asyncUploads"]' <<<"$health") == true ]] \ - && ok "async uploads enabled (job store configured)" || bad "async uploads should be on" - -note "2. Desktop-only endpoints are absent" -for path in /api/cim/objects/mermaid /api/gridappsd/status /api/cim/measurements; do - code=$("${CURL[@]}" -o /dev/null -w '%{http_code}' "$BASE$path") - [[ $code == 404 ]] && ok "$path -> 404" || bad "$path -> $code (expected 404)" -done - -note "3. Example listing" -listed=$("${CURL[@]}" "$BASE/api/examples" | jsonq '[e["id"] for e in d["examples"]]') -[[ -n $listed ]] && ok "examples offered: $listed" || bad "no examples offered" -first_example=${listed%% *} - -note "4. Compression" -# Deliberately measured on a model payload, not on /api/examples: that response -# is a few hundred bytes, below nginx's gzip_min_length, so it proves nothing. -if [[ -n $first_example ]]; then - enc=$("${CURL[@]}" -H 'Accept-Encoding: gzip' -X POST "$BASE/api/examples/load" \ - -H 'Content-Type: application/json' -d "{\"id\":\"$first_example\"}" \ - -o /dev/null -D - | tr -d '\r' | awk -F': ' '/[Cc]ontent-[Ee]ncoding/{print $2}') - [[ $enc == gzip ]] && ok "model payloads are gzipped" || bad "expected gzip, got '${enc:-none}'" -else - bad "no example available to test compression against" -fi - -note "5. Examples load without parsing on demand" -# Generous enough to absorb TLS, transfer of a ~4 MB body and a loaded machine, -# while staying well under the ~6.5s an on-demand IEEE 9500 parse costs. -PREBUILT_MAX_MS=${PREBUILT_MAX_MS:-3000} -for id in ieee123 ieee9500; do - if ! grep -qw "$id" <<<"$listed"; then - bad "$id not offered"; continue - fi - start=$(date +%s%N) - size=$("${CURL[@]}" -H 'Accept-Encoding: gzip' -X POST "$BASE/api/examples/load" \ - -H 'Content-Type: application/json' -d "{\"id\":\"$id\"}" -o /dev/null -w '%{size_download}') - ms=$(( ($(date +%s%N) - start) / 1000000 )) - # A prebuilt payload is a file read plus transfer; parsing IEEE 9500 costs - # ~6.5s and ~600 MB on top of that. The gap is what distinguishes them, so - # the threshold has to sit between the two rather than merely be "not slow". - if (( ms < PREBUILT_MAX_MS )); then - ok "$id loaded in ${ms}ms (${size} bytes) — served prebuilt" - elif (( ms < 60000 )); then - bad "$id took ${ms}ms — parsed on demand; this build has no precomputed artifact for it" - else - bad "$id took ${ms}ms — far slower than a parse should be" - fi -done - -note "6. Upload is handed to a worker, not answered inline" -model="${GLIMPSE_TEST_MODEL:-models/CIM/IEEE123.xml}" -if [[ ! -f $model ]]; then - bad "no model at $model (set GLIMPSE_TEST_MODEL)" -else - resp=$("${CURL[@]}" -X POST "$BASE/api/upload/cim" -F "files=@$model") - job=$(jsonq 'd.get("jobId","")' <<<"$resp") - [[ -n $job ]] && ok "upload accepted as job $job" || bad "expected a jobId, got: $resp" - - if [[ -n $job ]]; then - note "7. Any replica can serve the job (round-robin, no stickiness)" - # Each curl is a new connection, so nginx round-robins across replicas. - # A poll landing on a replica that never saw the upload must still work. - state=queued - waited=0 - for _ in $(seq 1 240); do - state=$(jsonq 'd["state"]' <<<"$("${CURL[@]}" "$BASE/api/jobs/$job")") - [[ $state == done || $state == failed ]] && break - # Still queued long after submission means nothing is consuming the - # queue. Say so and stop, rather than polling out the full timeout: - # a stack brought up without the worker service otherwise looks like - # a slow parse for eight minutes. - if [[ $state == queued ]] && (( waited >= 30 )); then - bad "job still queued after ${waited}s — is the 'worker' service running?" - break - fi - sleep 2 - waited=$((waited + 2)) - done - if [[ $state == done ]]; then - ok "job finished (polled across replicas)" - elif [[ $state != queued ]]; then - bad "job ended in state '$state'" - fi - - if [[ $state == done ]]; then - body=$("${CURL[@]}" --compressed "$BASE/api/jobs/$job/result") - details=$(jsonq 'sum(len(v) for v in d["objectDetails"].values())' <<<"$body") - objects=$(jsonq 'sum(len(v["objects"]) for v in d["data"].values())' <<<"$body") - [[ ${details:-0} -gt 0 ]] \ - && ok "result carries $details object details for $objects objects" \ - || bad "result has no objectDetails — inspection would need the server" - fi - fi -fi - -note "8. Traffic really is spread over every replica" -# Counting replicas is not enough. nginx will happily pin every request to one -# address and pass every other check in this script, which would make the -# cross-replica results above meaningless. Measure the distribution instead. -containers=$(docker compose -f docker-compose.prod.yml ps -q backend 2>/dev/null) -replicas=$(wc -l <<<"$containers") -if (( replicas < 2 )); then - bad "only $replicas replica — rerun with --scale backend=3 for a real test" -else - ok "$replicas backend replicas running" - before=$(for c in $containers; do docker logs "$c" 2>&1 | grep -c 'GET /api/examples' || true; done) - for _ in $(seq 1 15); do "${CURL[@]}" -o /dev/null "$BASE/api/examples"; done - served=0 - idx=0 - for c in $containers; do - idx=$((idx+1)) - now=$(docker logs "$c" 2>&1 | grep -c 'GET /api/examples' || true) - was=$(sed -n "${idx}p" <<<"$before") - (( now > was )) && served=$((served+1)) - done - (( served == replicas )) \ - && ok "all $replicas replicas served traffic (no stickiness)" \ - || bad "only $served of $replicas replicas served traffic — nginx is pinning to a subset" -fi - -printf '\n\033[1m%d passed, %d failed\033[0m\n' "$PASS" "$FAIL" -exit $(( FAIL > 0 )) diff --git a/scripts/write-codespace-env.sh b/scripts/write-codespace-env.sh index 8e1797c7..2706e94d 100755 --- a/scripts/write-codespace-env.sh +++ b/scripts/write-codespace-env.sh @@ -30,7 +30,6 @@ if [ -n "${CODESPACE_NAME:-}" ] && [ -n "${GITHUB_CODESPACES_PORT_FORWARDING_DOM fi API_URL="" \ -GLIMPSE_MODE="${GLIMPSE_MODE:-desktop}" \ API_TOKEN="${GLIMPSE_API_TOKEN:-}" \ HTML_DIR="$DIST" \ EXTRA_CONNECT_SRC="$EXTRA" \ diff --git a/src/components/AnimatedEdgeTicker.jsx b/src/components/AnimatedEdgeTicker.jsx index 47043e68..81d31dc0 100644 --- a/src/components/AnimatedEdgeTicker.jsx +++ b/src/components/AnimatedEdgeTicker.jsx @@ -6,17 +6,10 @@ const AnimatedEdgeTicker = () => { const sigma = useSigma(); useEffect(() => { + const RECHECK_MS = 250; let frameId; let running = true; let wasPulsing = false; - - // Whether any edge is animated is a whole-graph question, and asking it - // every frame cost a full edge scan 60x a second forever — ~20k - // iterations per frame on a 9500-bus feeder, with or without a running - // simulation. findEdge short-circuits on the first hit, and the answer is - // cached between checks: edges start and stop animating on simulation - // output, so resolving that a fraction of a second late is not visible. - const RECHECK_MS = 250; let cachedHasAnimated = false; let checkedAt = 0; @@ -40,15 +33,10 @@ const AnimatedEdgeTicker = () => { ); if (hasAnimatedEdges(now)) { - // Full refresh already re-applies the pulse to the focused edge. sigma.refresh({ skipIndexation: true }); } else if (pulsing) { - // Only the focused edge changes each frame, so repaint just it. - // Its z-order was already established by the full refresh in focus(). sigma.refresh({ partialGraph: { edges: [pulseId] }, skipIndexation: true }); } else if (wasPulsing && pulseId && graph.hasEdge(pulseId)) { - // Pulse just ended — one last repaint locks in the steady emphasis - // instead of leaving the edge frozen mid-pulse. sigma.refresh({ partialGraph: { edges: [pulseId] }, skipIndexation: true }); } diff --git a/src/components/ConnectionStatus.jsx b/src/components/ConnectionStatus.jsx index 34821635..ec971e1f 100644 --- a/src/components/ConnectionStatus.jsx +++ b/src/components/ConnectionStatus.jsx @@ -2,7 +2,6 @@ import { useEffect, useState } from "react"; import { Button, Tag, Tooltip } from "antd"; import { DisconnectOutlined, ReloadOutlined } from "@ant-design/icons"; import socketClientHelper from "../socket-client-helper/SocketClientHelper"; -import { FEATURES } from "../config"; import { notify } from "../utils/notify"; /** @@ -17,13 +16,11 @@ const ConnectionStatus = () => { // Seeded from the live socket: the singleton connects at import, before this // ever mounts, so the first connection-change may already have fired. const [state, setState] = useState(() => ({ - connected: !FEATURES.simulation || socketClientHelper.isConnected(), + connected: socketClientHelper.isConnected(), exhausted: false, })); useEffect(() => { - if (!FEATURES.simulation) return undefined; - const unsubConn = socketClientHelper.on("connection-change", ({ connected, exhausted }) => { setState((prev) => { if (connected && !prev.connected) notify.success("Reconnected to the GLIMPSE server."); @@ -44,7 +41,7 @@ const ConnectionStatus = () => { }; }, []); - if (!FEATURES.simulation || state.connected) return null; + if (state.connected) return null; return ( })); const DistributionAreaSelector = () => { - // The tree can be resolved synchronously when the component mounts with a - // graph already loaded; graph load/clear events update it afterwards. const [treeData, setTreeData] = useState(() => { const current = graphHelper.distributionAreas; return Object.keys(current).length > 0 ? buildTreeData(current) : []; }); const { darkMode } = useGraph(); - - // The selection, its colors and the WebGL contour layers all live outside - // this component — the agent markers drive the same highlight, so there is - // one shared controller and AreaHighlightLayers does the drawing. const areaHighlight = useAreaHighlight(); const { selection, colors } = areaHighlight; @@ -42,8 +36,6 @@ const DistributionAreaSelector = () => { // Listen for graph load/clear events useEffect(() => { const handleGraphLoaded = () => { - // The selection outlives a remount, so a new model would otherwise - // inherit area ids belonging to the previous one. areaHighlight.clear(); setTreeData(buildTreeData(graphHelper.distributionAreas)); }; @@ -64,8 +56,6 @@ const DistributionAreaSelector = () => { if (treeData.length === 0) return null; - // Same palette the graph legend panels use, so both float over the canvas - // as the same kind of surface in either theme. const c = darkMode ? { bg: "rgba(31,31,31,0.92)", text: "#e0e0e0", border: "#3a3a3a" } : { bg: "rgba(255,255,255,0.92)", text: "#1f1f1f", border: "#e0e0e0" }; diff --git a/src/components/ErrorBoundary.jsx b/src/components/ErrorBoundary.jsx index 8f77e739..847a5d6d 100644 --- a/src/components/ErrorBoundary.jsx +++ b/src/components/ErrorBoundary.jsx @@ -1,14 +1,6 @@ import React from "react"; import { Button, Result, Typography } from "antd"; -/** - * Last line of defence for a render that throws. - * - * Without this, one bad node in a model payload — or any other throw during - * render — unmounts the whole tree and leaves a blank page with no way back. - * The graph lives in a module singleton rather than React state, so remounting - * the tree is not enough to recover; a reload is the honest offer. - */ class ErrorBoundary extends React.Component { state = { error: null }; diff --git a/src/components/ExampleModels.jsx b/src/components/ExampleModels.jsx index 99126050..0d729e4e 100644 --- a/src/components/ExampleModels.jsx +++ b/src/components/ExampleModels.jsx @@ -7,9 +7,6 @@ import socketClientHelper from "../socket-client-helper/SocketClientHelper"; import { API_BASE_URL, PARSE_TIMEOUT_MS } from "../config"; import { confirmDiscardChanges, errorText, reportError } from "../utils/notify"; -// Bundled sample models the backend ships with (see EXAMPLE_MODELS in -// local-server/server.py). Parsing happens server-side, so loading one goes -// through the same { data, themeData } response shape as the upload endpoints. const ExampleModels = ({ closeModal }) => { const { newGraphUpdate } = useGraph(); const [examples, setExamples] = useState([]); diff --git a/src/components/FileUpload.jsx b/src/components/FileUpload.jsx index 06426936..cfe427bc 100644 --- a/src/components/FileUpload.jsx +++ b/src/components/FileUpload.jsx @@ -7,7 +7,6 @@ import graphHelper from "../graph-helper/GraphHelper"; import socketClientHelper from "../socket-client-helper/SocketClientHelper"; import { API_BASE_URL, PARSE_TIMEOUT_MS } from "../config"; import { confirmDiscardChanges, errorText } from "../utils/notify"; -import { awaitParseJob, isJobHandoff } from "../utils/parse-job"; const { Dragger } = Upload; @@ -87,7 +86,6 @@ const FileUpload = ({ closeModal }) => { // Set once the bytes are up and the server is parsing. Distinct from // `progress`, which only tracks the transfer — a big CIM model spends // seconds uploading and minutes parsing. - const [status, setStatus] = useState(null); const [error, setError] = useState(null); // Aborts the upload and the job poll together — on unmount, and on Cancel. const abortRef = useRef(null); @@ -129,9 +127,8 @@ const FileUpload = ({ closeModal }) => { try { setUploading(true); setProgress(0); - setStatus(null); - let { data: response } = await axios.post(`${API_BASE_URL}/${endpoint}`, formData, { + const { data: response } = await axios.post(`${API_BASE_URL}/${endpoint}`, formData, { signal: controller.signal, timeout: PARSE_TIMEOUT_MS, onUploadProgress: (progressEvent) => { @@ -142,18 +139,6 @@ const FileUpload = ({ closeModal }) => { if ("error" in response) throw new Error(response.error); - // The hosted backend hands large CIM parses to a worker and answers - // with a job instead of a model. Poll it out to the same payload a - // synchronous upload would have returned. - if (isJobHandoff(response)) { - setStatus("Queued…"); - response = await awaitParseJob(response.jobId, { - onProgress: setStatus, - signal: controller.signal, - }); - if (response && "error" in response) throw new Error(response.error); - } - if (graphHelper.graph.order > 0) { graphHelper.clearGraphData(); window.dispatchEvent(new CustomEvent("graph-cleared")); @@ -202,7 +187,6 @@ const FileUpload = ({ closeModal }) => { } finally { abortRef.current = null; setUploading(false); - setStatus(null); timerRef.current = setTimeout(() => setProgress(0), 500); } }; @@ -245,18 +229,16 @@ const FileUpload = ({ closeModal }) => {

{uploading && (
- {/* Once parsing starts the transfer bar is finished and - meaningless, so show the server's status instead. */} - {status ? ( - + {progress === 100 ? ( + <> + +

+ Parsing model… +

+ ) : ( )} - {status && ( -

- {status} -

- )}
); -/** - * Left-hand drawer for editing the GridAPPS-D simulation configuration before - * a run. The shared simulation_config is edited once; every loaded feeder gets - * its own power_system_config section. Edits persist (per model id) via - * socketClientHelper.applySimulationConfig until reset or app reload. - */ const SimulationConfigForm = ({ open, onClose }) => { const [form] = Form.useForm(); const { token } = theme.useToken(); const models = graphHelper.selectedGridappsdModels ?? []; - // Drives the interval field's locked state; the switch is elsewhere in the - // form, so a watch is needed to re-render on toggle. const runRealtime = Form.useWatch(["simulation_config", "run_realtime"], form); // Flatten a full gridappsd config object into form values. @@ -164,9 +152,6 @@ const SimulationConfigForm = ({ open, onClose }) => { simulation_config: { ...config.simulation_config, start_time: dayjs.unix(Number(config.simulation_config.start_time) || dayjs().unix()), - // A stored config could predate the real-time rule; the interval - // field is locked, so it has to open with a value the user could - // not otherwise correct. interval: config.simulation_config.run_realtime ? REALTIME_INTERVAL : config.simulation_config.interval, @@ -177,9 +162,6 @@ const SimulationConfigForm = ({ open, onClose }) => { ), }); - // duration/publish_period/interval/run_realtime validate against each other, - // and antd's `dependencies` only cascades to fields the user has already - // touched — so revalidate the whole timing group on any change to it. const handleValuesChange = (changedValues) => { const changedTiming = changedValues.simulation_config; if (!changedTiming || !TIMING_FIELD_KEYS.some((key) => key in changedTiming)) return; @@ -194,9 +176,6 @@ const SimulationConfigForm = ({ open, onClose }) => { ); }; - // Rebuild from the stored config each time the drawer opens, so unsaved - // edits from a cancelled visit are discarded. The reset drops their - // validation errors too — every value is re-set on the next line. useEffect(() => { if (open) { form.resetFields(); @@ -224,16 +203,11 @@ const SimulationConfigForm = ({ open, onClose }) => { start_time: values.simulation_config.start_time.unix(), }; - // Defensive: a field that somehow never registered (undefined in - // `values`) is skipped, leaving that section of the stored config - // unchanged rather than crashing JSON.parse. const advancedConfig = {}; for (const { key } of ADVANCED_CONFIG_FIELDS) { if (values[key] !== undefined) advancedConfig[key] = JSON.parse(values[key]); } - // Merge the edited fields over each feeder's current config so - // untouched values (e.g. simulation_output) survive. const powerSystemConfigsByModelId = {}; models.forEach((model, index) => { const config = socketClientHelper.buildPowerSystemConfig(model); @@ -259,9 +233,6 @@ const SimulationConfigForm = ({ open, onClose }) => { onClose(); }; - // forceRender mounts collapsed panel content so every Form.Item registers - // with the form up front — otherwise validateFields() omits fields of - // panels that were never expanded. const feederPanels = models.map((model, index) => ({ key: model.modelId, label: `Feeder: ${model.modelName ?? model.modelId}`, diff --git a/src/components/forms/simulationConfigFields.js b/src/components/forms/simulationConfigFields.js index 28fc8a4a..faf88a43 100644 --- a/src/components/forms/simulationConfigFields.js +++ b/src/components/forms/simulationConfigFields.js @@ -1,53 +1,19 @@ -// Field definitions for SimulationConfigForm. Each entry describes one key of -// the default config objects in SocketClientHelper (powerSystemConfig / -// gridappsdConfiguration) and how to render it. -// -// input types: "text" | "number" (numeric string, precision kept) | "switch" -// (boolean) | "select" (options) | "datetime" (epoch seconds) | "json" -// -// Optional per-field keys: `rules` (extra antd validation rules, appended to the -// required rule) and `disabledWhen(context)` (locks the input based on the -// render context the form passes to renderFields). - -// Add config field keys here (e.g. "duration", "use_houses", "encoding") to -// render that field greyed-out in the form. Values still submit with their -// current defaults — the input is just locked. export const DISABLED_CONFIG_FIELDS = []; - export const isFieldDisabled = (key) => DISABLED_CONFIG_FIELDS.includes(key); - const YES_NO_OPTIONS = [ { value: "y", label: "Yes (y)" }, { value: "n", label: "No (n)" }, ]; -// Timing rules for simulation_config. GridAPPS-D only accepts runs whose -// duration, publish_period and interval line up, so the form enforces: -// -// 1. interval must divide publish_period evenly. -// 2. interval is pinned to 1 s while run_realtime is on (the input is locked -// rather than validated — there is nothing else valid to type). -// 3. with run_realtime off, interval and publish_period must each be a -// factor or a multiple of 60 s. -// 4. interval must divide duration evenly. - const DURATION_MIN = 1; const PUBLISH_PERIOD_MIN = 3; const INTERVAL_MIN = 1; -// The interval GridAPPS-D requires when the run follows the wall clock (rule 2). export const REALTIME_INTERVAL = 1; - -// These four constrain each other, so an edit to any one of them can invalidate -// another; SimulationConfigForm revalidates the group as a whole on change. export const TIMING_FIELD_KEYS = ["duration", "publish_period", "interval", "run_realtime"]; export const VALIDATED_TIMING_FIELDS = ["duration", "publish_period", "interval"]; const simulationConfigPath = (key) => ["simulation_config", key]; - -// The number inputs run in stringMode, so values arrive as strings. null means -// "not a usable number", which keeps the cross-field checks quiet while a -// related field is still being typed into. const toWholeSeconds = (value, min) => { const seconds = Number(value); return Number.isInteger(seconds) && seconds >= min ? seconds : null; @@ -94,8 +60,6 @@ const intervalRule = ({ getFieldValue }) => ({ return reject(`Interval must be a whole number of seconds (${INTERVAL_MIN} or more)`); } - // Rule 2 — an interval of 1 satisfies rules 1, 3 and 4 by definition, so - // this is the only check that matters in real time. if (getFieldValue(simulationConfigPath("run_realtime"))) { return interval === REALTIME_INTERVAL ? Promise.resolve() diff --git a/src/components/graph/Graph.jsx b/src/components/graph/Graph.jsx index 6e78abb8..ec2b2f82 100644 --- a/src/components/graph/Graph.jsx +++ b/src/components/graph/Graph.jsx @@ -9,11 +9,9 @@ const Graph = () => { const { graphUpdateTrigger } = useGraph(); useEffect(() => { - // loadGraph copies graphHelper.graph (standalone) into sigma's internal graph loadGraph(graphHelper.graph); console.log("graph loaded with order:", graphHelper.graph.order); - // Store sigma reference graphHelper.sigmaInstance = sigma; graphHelper.graph = sigma.getGraph(); diff --git a/src/components/graph/GraphControls.jsx b/src/components/graph/GraphControls.jsx index 39caa0bc..77fd7458 100644 --- a/src/components/graph/GraphControls.jsx +++ b/src/components/graph/GraphControls.jsx @@ -1,9 +1,8 @@ -import { useCallback, useEffect, useRef, useState } from "react"; +import { useCallback, useEffect, useRef } from "react"; import { Button, Tooltip, Space } from "antd"; import { useCamera, useFullScreen, useSigma } from "@react-sigma/core"; import { useWorkerLayoutForceAtlas2 } from "@react-sigma/layout-forceatlas2"; import bindLeafletLayer from "@sigma/layer-leaflet"; -import L from "leaflet"; import "leaflet/dist/leaflet.css"; import { BiZoomIn, BiZoomOut } from "react-icons/bi"; import { MdFilterCenterFocus, MdFullscreen, MdFullscreenExit, MdOutlineMap } from "react-icons/md"; @@ -13,33 +12,18 @@ import { useGraph } from "../../contexts/GraphContext"; import { useShortcut } from "../../hooks/useShortcut"; import "../../styles/GraphControls.css"; -// Tile sources for the map background: OSM standard in light mode, CARTO's -// dark-matter tiles in dark mode. Both hosts must stay allowed in the CSP -// img-src of index.html. -const MAP_TILES = { - light: { - urlTemplate: "https://tile.openstreetmap.org/{z}/{x}/{y}.png", - attribution: - '© OpenStreetMap contributors', - }, - dark: { - urlTemplate: "https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}{r}.png", - attribution: - '© OpenStreetMap contributors © CARTO', - }, +const MAP_TILE_LAYER = { + urlTemplate: "https://tile.openstreetmap.org/{z}/{x}/{y}.png", + attribution: + '© OpenStreetMap contributors', }; const GraphControls = () => { - const { darkMode } = useGraph(); + const { darkMode, mapShown, setMapShown } = useGraph(); const sigma = useSigma(); const { zoomIn, zoomOut } = useCamera(); const { toggle: toggleFullScreen, isFullScreen } = useFullScreen(); - // Map background (only for graphs whose x/y are real lon/lat). Binding the - // leaflet layer reprojects every node's x/y to the map's coordinate space, - // so the pre-map positions are saved and restored on unbind — otherwise a - // later remount (or an export) would see the projected coordinates. - const [mapShown, setMapShown] = useState(false); const mapLayerRef = useRef(null); // { clean, map, ... } returned by bindLeafletLayer const savedPositionsRef = useRef(null); // Map captured before binding @@ -61,51 +45,24 @@ const GraphControls = () => { // Make sure the worker is torn down when the controls unmount. useEffect(() => () => kill(), [kill]); - // Read through a ref so bindMap itself never changes identity. The re-bind - // effect below keys on the sigma instance alone; if bindMap changed with - // darkMode, that effect would fire during the theme render — while - // useSigma() still returns the instance about to be destroyed — which is - // the crash it exists to avoid. - const darkModeRef = useRef(darkMode); - useEffect(() => { - darkModeRef.current = darkMode; - }, [darkMode]); - // Takes the instance explicitly rather than closing over `sigma`, so a // caller always binds to the instance it has actually checked. const bindMap = useCallback((instance) => { mapLayerRef.current = bindLeafletLayer(instance, { - tileLayer: MAP_TILES[darkModeRef.current ? "dark" : "light"], + tileLayer: MAP_TILE_LAYER, }); - // bindLeafletLayer projects node x/y into the map's coordinate space, - // but sigma keeps normalizing the render through the custom bbox that - // GraphEvents pinned from the *original* coordinates, so the layer's - // first sync flings map and camera to a nonsense location. Drop the - // stale bbox and re-render — normalization then follows the projected - // coordinates (GraphEvents re-pins the bbox from them) — and reframe; - // the layer's afterRender hook flies the map to the matching view. instance.setCustomBBox(null); instance.refresh(); instance.getCamera().setState({ x: 0.5, y: 0.5, ratio: 1, angle: 0 }); }, []); - // `restoreView: false` is the unmount path: React tears down parents first, - // so the sigma instance is already killed — touching its bbox/camera there - // schedules a render on the dead instance and crashes. Restoring the node - // positions is still needed (the graph object survives into the next mount). const unbindMap = useCallback((restoreView = true) => { if (mapLayerRef.current) { mapLayerRef.current.clean(); mapLayerRef.current = null; } - // Restore positions by node id into whatever graph is CURRENT, via the - // graphHelper singleton. Instances captured at bind time can be - // orphaned before the map is turned off: toggling dark mode hands - // react-sigma a new settings object, which rebuilds the whole Sigma - // instance (and its graph) while the map stays bound. On a new-file - // load the node ids won't match and this is a harmless no-op. const positions = savedPositionsRef.current; if (positions) { graphHelper.graph.updateEachNodeAttributes((node, attrs) => { @@ -133,38 +90,6 @@ const GraphControls = () => { mapShownRef.current = mapShown; }, [mapShown]); - // Dark mode: swap the tile source on the existing leaflet map. - // - // This used to clean the layer and re-bind it, which crashed. Toggling the - // theme hands react-sigma a new settings object, so it tears down and - // rebuilds the Sigma instance — and because this component lives *inside* - // SigmaContainer, React runs this effect before the parent's, while - // useSigma() still returns the instance that is about to be killed. - // Re-binding there called setCustomBBox/refresh/setState on a dying - // instance, which is precisely the crash unbindMap's `restoreView` flag - // exists to avoid. Only models with real coordinates offer the map at all, - // which is why this only ever showed up on IEEE 9500. - // - // Swapping tiles touches leaflet only, never sigma, so it is safe whatever - // state the instance is in. Re-binding to the rebuilt instance is handled - // separately, below, once that instance actually exists. - useEffect(() => { - const layer = mapLayerRef.current; - if (!layer?.map) return; - - const { urlTemplate, attribution } = MAP_TILES[darkMode ? "dark" : "light"]; - layer.map.eachLayer((existing) => { - if (existing instanceof L.TileLayer) layer.map.removeLayer(existing); - }); - L.tileLayer(urlTemplate, { attribution }).addTo(layer.map); - }, [darkMode]); - - // Re-bind after react-sigma replaces the Sigma instance (which the theme - // toggle does). By the time `sigma` is a new object the container has - // finished building it, so this is the first point at which binding is - // safe. The old instance's own "kill" handler already cleaned its layer; - // node x/y are recomputed from the lat/lng the builder stamped, so the - // positions survive the round trip. useEffect(() => { if (!mapShownRef.current || !sigma) return; if (mapLayerRef.current) mapLayerRef.current.clean(); diff --git a/src/components/graph/GraphRenderer.jsx b/src/components/graph/GraphRenderer.jsx index 58c9b39a..1340fa08 100644 --- a/src/components/graph/GraphRenderer.jsx +++ b/src/components/graph/GraphRenderer.jsx @@ -88,22 +88,28 @@ const dimEdgeAttrs = (attrs) => { }; const GraphRenderer = () => { - const { graphUpdateTrigger, darkMode } = useGraph(); + const { graphUpdateTrigger, darkMode, mapShown } = useGraph(); + + // Everything drawn on the canvas follows the background it sits on, not the + // app chrome. The leaflet map's tiles are light in both themes (see + // GraphControls), so while the map is up the graph keeps its light colors — + // otherwise dark mode's pale overhead lines all but vanish over the tiles. + const canvasDark = darkMode && !mapShown; useEffect(() => { - setCanvasDarkMode(darkMode); - setSeverityDarkMode(darkMode); + setCanvasDarkMode(canvasDark); + setSeverityDarkMode(canvasDark); // Repaints every element that is still carrying its themed color, which // is what makes the theme's light/dark color pairs take effect. - graphHelper.setDarkMode(darkMode); - areaHighlight.setDarkMode(darkMode); + graphHelper.setDarkMode(canvasDark); + areaHighlight.setDarkMode(canvasDark); if (graphHelper.sigmaInstance) graphHelper.sigmaInstance.refresh(); // The DOM panels rendered inside the SigmaContainer read their colors from // the module state set above (the flattened theme, the severity scale). // Their own render pass runs before this effect, so a darkMode-keyed effect // in them would read the previous mode's colors — they wait on this instead. window.dispatchEvent(new CustomEvent("graph-theme-changed")); - }, [darkMode]); + }, [canvasDark]); const BorderImageNodeProgram = useMemo(() => { const NodeBorderCustomProgram = createNodeBorderProgram({ diff --git a/src/components/modals/LoadModelModal.jsx b/src/components/modals/LoadModelModal.jsx index 1ddbbcd9..a5d5a82c 100644 --- a/src/components/modals/LoadModelModal.jsx +++ b/src/components/modals/LoadModelModal.jsx @@ -8,7 +8,7 @@ import GridAPPSDModelForm from "../forms/GridAPPSDModelForm"; import graphHelper from "../../graph-helper/GraphHelper"; import socketClientHelper from "../../socket-client-helper/SocketClientHelper"; import { useGraph } from "../../contexts/GraphContext"; -import { API_BASE_URL, FEATURES, PARSE_TIMEOUT_MS } from "../../config"; +import { API_BASE_URL, PARSE_TIMEOUT_MS } from "../../config"; import { confirmDiscardChanges, errorText } from "../../utils/notify"; import { loadAgentRoster } from "../../utils/agent-api"; @@ -29,10 +29,9 @@ const LoadModelModal = ({ onMount }) => { // Only offer the GridAPPS-D tab when the broker is actually reachable. // Re-checked every time the modal opens so a broker started after app - // launch is picked up. Skipped entirely in hosted mode, where the endpoint - // isn't registered and every probe would just 404. + // launch is picked up. useEffect(() => { - if (!open || !FEATURES.gridappsd) return; + if (!open) return; let cancelled = false; axios diff --git a/src/components/model-data-view/EditObject.jsx b/src/components/model-data-view/EditObject.jsx index 7c63b2d8..f31cddf3 100644 --- a/src/components/model-data-view/EditObject.jsx +++ b/src/components/model-data-view/EditObject.jsx @@ -5,7 +5,7 @@ import AttributesTable from "./AttributesTable"; import MermaidDiagram from "./MermaidDiagram"; import graphHelper from "../../graph-helper/GraphHelper"; import { useGraph } from "../../contexts/GraphContext"; -import { API_BASE_URL, FEATURES } from "../../config"; +import { API_BASE_URL } from "../../config"; import { formatVoltageLines, formatPowerLines } from "../../utils/live-measurements"; import { errorText, notify } from "../../utils/notify"; @@ -89,22 +89,18 @@ const EditObject = ({ object, onNavigate, simActive = false }) => { return { id, elementType: type, attributes: { ...attrs.attributes } }; }); const [mermaidContent, setMermaidContent] = useState(() => { - if (!object || !isCIM || !FEATURES.mermaid) return null; + if (!object || !isCIM) return null; return getCachedMermaid(object.feederId, object.mRID); }); const [mermaidLoading, setMermaidLoading] = useState( - () => - Boolean(object) && - isCIM && - FEATURES.mermaid && - !getCachedMermaid(object.feederId, object.mRID), + () => Boolean(object) && isCIM && !getCachedMermaid(object.feederId, object.mRID), ); const [saving, setSaving] = useState(false); // Set when this object had no detail record shipped with the model, so one // has to be fetched. See the effect below. const [detailLoading, setDetailLoading] = useState( () => - Boolean(object?.mRID && object?.feederId) && isCIM && !objectToEdit && FEATURES.objectLookup, + Boolean(object?.mRID && object?.feederId) && isCIM && !objectToEdit, ); const [detailError, setDetailError] = useState(null); @@ -113,7 +109,7 @@ const EditObject = ({ object, onNavigate, simActive = false }) => { const detailRequestRef = useRef(0); useEffect(() => { - if (!object || !isCIM || objectToEdit || !FEATURES.objectLookup) return; + if (!object || !isCIM || objectToEdit) return; // Without both ids there is nothing to ask for; detailLoading was // initialized false for exactly this case, so there is no state to undo. @@ -149,10 +145,9 @@ const EditObject = ({ object, onNavigate, simActive = false }) => { fetchDetail(); }, [object, isCIM, objectToEdit]); - // Diagram only. Attributes and associations came with the model, so nothing - // else here needs the network — and in hosted mode nothing here runs at all. + // Diagram only — the object's attributes and associations are already resolved. useEffect(() => { - if (!object || !isCIM || !FEATURES.mermaid) return; + if (!object || !isCIM) return; const { feederId, mRID } = object; @@ -306,8 +301,8 @@ const EditObject = ({ object, onNavigate, simActive = false }) => { attributes={objectToEdit.attributes} readOnlyAttributes={READ_ONLY_ATTRIBUTES} onNavigate={onNavigate} - onChange={FEATURES.editing ? handleChange : undefined} - onSave={FEATURES.editing ? handleSave : undefined} + onChange={handleChange} + onSave={handleSave} feederId={currentFeederId} saving={saving} liveRows={liveRows} @@ -329,29 +324,24 @@ const EditObject = ({ object, onNavigate, simActive = false }) => { /> ), }, - // Desktop only: the diagram is rendered from the live - // cimgraph object, which the hosted backend does not retain. - ...(FEATURES.mermaid - ? [ - { - key: "mermaid", - label: "Diagram", - children: mermaidLoading ? ( -
- -
- ) : ( - - ), - }, - ] - : []), + // Rendered server-side from the live cimgraph object. + { + key: "mermaid", + label: "Diagram", + children: mermaidLoading ? ( +
+ +
+ ) : ( + + ), + }, ] : []), ]; diff --git a/src/components/plots/CustomPlot.jsx b/src/components/plots/CustomPlot.jsx index a7d3ae52..eb95d700 100644 --- a/src/components/plots/CustomPlot.jsx +++ b/src/components/plots/CustomPlot.jsx @@ -28,9 +28,6 @@ const yAxisLabel = (plot) => { } }; -// Pull the plotted scalar out of a single measurement, matching the legacy -// _getNextMeasurementValue: voltage/power use magnitude (power in kVA) or angle, -// tap uses the discrete value. const extractValue = (plot, measurement) => { if (!measurement) return null; switch (plot.measurementType) { @@ -70,11 +67,8 @@ const CustomPlot = ({ plot, onRemove }) => { const processOutput = useCallback( (output) => { const ts = new Date(output.timestamp * 1000).toLocaleTimeString(); - - // Index every incoming measurement by its mRID so each plotted - // component can look up its own value regardless of ordering. Tap - // (Pos) measurements arrive as Discrete, voltage/power as Analog. const byMrid = new Map(); + for (const m of [...(output.Analog ?? []), ...(output.Discrete ?? [])]) { if (m.measurement_mrid) byMrid.set(m.measurement_mrid, m); } @@ -86,8 +80,6 @@ const CustomPlot = ({ plot, onRemove }) => { plot.components.forEach((component, i) => { const value = extractValue(plot, byMrid.get(component.id)); const arr = d.series[i]; - // Carry forward the previous value when a component reports nothing - // this step so line lengths stay aligned with the timestamp axis. const next = value === null || value === undefined || !isFinite(value) ? arr.length > 0 @@ -111,12 +103,6 @@ const CustomPlot = ({ plot, onRemove }) => { return socketClientHelper.on("sim-output", processOutput); }, [processOutput]); - // ── ECharts theming (matches SimulationCharts) ───────────────────────── - // The declarative option deliberately omits every `data` field. ReactECharts - // re-applies this option (merge mode) on each render — e.g. a dark-mode toggle - // — and because the accumulated point data lives only in the imperative - // setOption calls above, leaving `data` out here preserves the live series - // instead of wiping them, all without reading the ref during render. const text = darkMode ? "#cccccc" : "#333333"; const bg = darkMode ? "#1f1f1f" : "#fafafa"; const gridLine = darkMode ? "#2e2e2e" : "#ebebeb"; @@ -124,7 +110,6 @@ const CustomPlot = ({ plot, onRemove }) => { const option = { backgroundColor: bg, textStyle: { color: text }, - // Extra bottom room for the zoom slider. grid: { left: 52, right: 10, top: 38, bottom: TIMELINE_GRID_BOTTOM }, tooltip: { trigger: "axis", confine: true, textStyle: { fontSize: 10 } }, legend: { diff --git a/src/components/plots/CustomSimulationCharts.jsx b/src/components/plots/CustomSimulationCharts.jsx index 375038ec..8dd0fa60 100644 --- a/src/components/plots/CustomSimulationCharts.jsx +++ b/src/components/plots/CustomSimulationCharts.jsx @@ -8,8 +8,6 @@ import PlotCreatorModal from "./PlotCreatorModal"; import "../../styles/CustomPlots.css"; import { notify } from "../../utils/notify"; -// Fold one measurement descriptor into the catalog, grouped as -// catalog[measurementType][equipmentName] = { equipmentType, phases: { : mRID } }. const indexMeasurement = (catalog, m) => { const type = m.measurement_type; const name = m.equipment_name; @@ -36,9 +34,6 @@ const CustomSimulationCharts = () => { const [catalog, setCatalog] = useState({}); const [loadingCatalog, setLoadingCatalog] = useState(false); - // Fetch the measurement map the backend builds at CIM model-load time, so the - // picker is populated before a simulation ever starts (no dependency on the - // live output stream). Empty for non-CIM models. const openCreator = async () => { setCreatorOpen(true); setLoadingCatalog(true); diff --git a/src/components/plots/LiveButton.jsx b/src/components/plots/LiveButton.jsx index e2403e5a..dad4750c 100644 --- a/src/components/plots/LiveButton.jsx +++ b/src/components/plots/LiveButton.jsx @@ -1,12 +1,6 @@ import { useEffect, useState } from "react"; import socketClientHelper from "../../socket-client-helper/SocketClientHelper"; -// Shown on a timeline chart once the user has scrolled away from the newest -// samples during a live run — one click jumps back to the live edge. -// -// Hidden when the view is already following, and while no run is streaming: a -// finished run has no live edge to return to, and the button would only be -// telling the user their scroll position is "wrong" when it isn't. const LiveButton = ({ following, onResume }) => { const isStreaming = (state) => state === "running" || state === "paused"; const [streaming, setStreaming] = useState(() => isStreaming(socketClientHelper.simulationState)); diff --git a/src/components/plots/PlotCreatorModal.jsx b/src/components/plots/PlotCreatorModal.jsx index a9230780..f6957ea5 100644 --- a/src/components/plots/PlotCreatorModal.jsx +++ b/src/components/plots/PlotCreatorModal.jsx @@ -135,7 +135,6 @@ const PlotCreatorModal = ({ open, close, catalog, loading = false, onCreate }) = - - - - Edge Type{" "} - - - - - } - name="edgeType" - rules={[{ required: true, message: "Please select an edge type" }]} - > - - - - - To Node{" "} - - - - - } - name="toNode" - rules={[{ required: true, message: "Please select a destination node" }]} - > - - - - - Node ID{" "} - - - - - } - name="nodeID" - rules={[ - { required: true, message: "Please enter a node ID" }, - { - pattern: /^[a-zA-Z0-9_-]+$/, - message: "ID can only contain letters, numbers, hyphens, and underscores", - }, - ]} - > - - - - - Connection - - - - Connect To{" "} - - - - - } - name="connectTo" - rules={[{ required: true, message: "Please select a node to connect to" }]} - > - - +
+ {children}
, document.getElementById("portal"), ); }; -export default NewObjectModal; +export const NewNodeModal = ({ open, close }) => { + const { nodeTypes, nodeIDs, edgeTypes } = useGraphOptions(open); + const hasNoGraph = graphHelper.graph.order === 0; + + return ( + + ) + } + onCreate={(values) => graphHelper.newNodeWithEdge(values)} + > + Node Definition + + } + name="nodeType" + rules={[{ required: true, message: "Please select a node type" }]} + > + + + + Connection + + + } + name="connectTo" + rules={[{ required: true, message: "Please select a node to connect to" }]} + > + + + + ); +}; + +export const NewEdgeModal = ({ open, close }) => { + const { nodeIDs, edgeTypes } = useGraphOptions(open); + const hasNoGraph = graphHelper.graph.order === 0; + const hasNoNodes = graphHelper.graph.order < 2; + + let notice = null; + if (hasNoGraph) { + notice = ( + + ); + } else if (hasNoNodes) { + notice = ( + + ); + } + + return ( + graphHelper.newEdge(values)} + > + Edge Definition + + } + name="edgeID" + rules={[{ required: true, message: "Please enter an edge ID" }, ID_RULE]} + > + + + + } + name="edgeType" + rules={[{ required: true, message: "Please select an edge type" }]} + > + + + + } + name="toNode" + rules={[{ required: true, message: "Please select a destination node" }]} + > + trigger.parentElement} /> diff --git a/src/components/modals/UpdateRegulatorModal.jsx b/src/components/modals/UpdateRegulatorModal.jsx index 34a66f31..45f63b2e 100644 --- a/src/components/modals/UpdateRegulatorModal.jsx +++ b/src/components/modals/UpdateRegulatorModal.jsx @@ -1,10 +1,10 @@ -import React, { useState, useEffect, useMemo } from "react"; +import { useState, useEffect, useMemo } from "react"; import ReactDOM from "react-dom"; import { Modal, Form, Select, InputNumber, Button, Divider, Space, Tag, Spin, theme } from "antd"; import graphHelper from "../../graph-helper/GraphHelper"; import socketClientHelper from "../../socket-client-helper/SocketClientHelper"; -import { v4 as uuidv4 } from "uuid"; import { notify } from "../../utils/notify"; +import { emitDifferences } from "./device-control"; // Control modes mirror the legacy gridappsd-viz RegulatorControlMenu. const CONTROL_MODE = { @@ -12,6 +12,11 @@ const CONTROL_MODE = { LINE_DROP_COMPENSATION: "LINE_DROP_COMPENSATION", }; +const CONTROL_MODE_OPTIONS = [ + { label: "Manual", value: CONTROL_MODE.MANUAL }, + { label: "Line drop compensation", value: CONTROL_MODE.LINE_DROP_COMPENSATION }, +]; + // A regulator edge carries per-phase tap-changer info under a phase key // (e.g. "AN"/"BN"/"CN"), each of the shape { step, tap } where `tap` is the // RatioTapChanger mRID for that phase and `step` is its current tap position. @@ -36,7 +41,7 @@ const UpdateRegulatorModal = ({ open, close, object }) => { const [form] = Form.useForm(); const { token } = theme.useToken(); const [loading, setLoading] = useState(false); - const [simulationState, setSimulationState] = useState("inactive"); // inactive | idle | running | paused | stopped + const [simulationState, setSimulationState] = useState(() => socketClientHelper.simulationState); // Mirrors the "controlMode" form field (set below on open, changed by the // Select) so the phase inputs can switch between the two layouts. @@ -81,14 +86,7 @@ const UpdateRegulatorModal = ({ open, close, object }) => { form.setFieldsValue(initial); }, [open, phaseValues, loadError, form]); - useEffect(() => { - const unsubSimState = socketClientHelper.on("sim-state-change", (simState) => { - setSimulationState(simState); - }); - return () => { - unsubSimState(); - }; - }); + useEffect(() => socketClientHelper.on("sim-state-change", setSimulationState), []); const handleSave = async () => { try { @@ -97,7 +95,6 @@ const UpdateRegulatorModal = ({ open, close, object }) => { if (socketClientHelper.simulationState !== "running") { notify.error("Simulation is not running. Cannot update tap positions."); - setLoading(false); return; } @@ -154,25 +151,10 @@ const UpdateRegulatorModal = ({ open, close, object }) => { if (forwardDifferences.length === 0) { notify.info("No changes to apply."); - setLoading(false); return; } - const inputMessage = { - command: "update", - input: { - simulation_id: socketClientHelper.simulationID, - message: { - timestamp: Math.floor(Date.now() / 1000), - difference_mrid: uuidv4(), - reverse_differences: reverseDifferences, - forward_differences: forwardDifferences, - }, - }, - }; - - console.log(inputMessage); - socketClientHelper.socket.emit("sim-input", inputMessage); + emitDifferences(reverseDifferences, forwardDifferences); // Optimistically reflect new tap steps in the local graph so reopening // the modal shows the requested state before the sim echoes it back. @@ -208,11 +190,6 @@ const UpdateRegulatorModal = ({ open, close, object }) => { const deviceName = attributes.attributes?.name || attributes.attributes?.mRID || object; const hasPhases = phases.length > 0; - const controlModeOptions = [ - { label: "Manual", value: CONTROL_MODE.MANUAL }, - { label: "Line drop compensation", value: CONTROL_MODE.LINE_DROP_COMPENSATION }, - ]; - return ReactDOM.createPortal( { <>